@charset "utf-8";
/*================
Text
=================*/
h2{
        padding-bottom: 10px; 
        margin-top: 50px;
        }
h3{
    font-size: 25px;
    font-weight: bold;
    color:#000000;
    margin-top: 5px;
    text-align: left;
    border-bottom: 10px
    solid #21b8c5;
       }
 @media screen and (max-width: 480px){
        h3 {
        font-size: 1.8rem;
       }
      } 
h4{
   margin-top: 30px; 
   font-size: 25px; 
   font-weight: bold; 
   text-align: center;
       }
 @media screen and (max-width: 480px){
h4 {
    margin-top: 30px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}
}
h4 span{
    margin-top: 30px; 
    font-size: 20px; 
    font-weight: bold; 
    text-align: center;
            }
h5{
   margin-top: 5px; 
   padding-bottom: 20px; 
   font-size: 20px; 
   font-weight: bold; 
   text-align: center;
   color:#000000;
        }
@media screen and (max-width: 480px){
h5 {
    margin-top: 5px;
    font-size: 17px;
    padding-bottom: 20px;
    font-weight: bold;
    text-align: center;
    color:#000000;
    }
  }
h5 span{
  display: inline-block;
}
text1{  
        font-size: 18px;
        text-align: center;       
}

/*================
Button
=================*/
a.btn_blue {
  display: block;
  max-width: 350px;
  margin: 0 auto;
  padding: 1.5rem 3.0rem;
  background-color: #21B8C5;
  border-radius: 8px;
  box-sizing: border-box;
  text-decoration: none;
  transition: 0.3s;
}
a.btn_blue span.bl__text {
  display: block;
  position: relative;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
a.btn_blue:hover {
  background-color: #07a7c0;
}
a.btn_blue:hover span.bl__text:after {
  border-top: 3px solid #07a7c0;
  border-right: 3px solid #07a7c0;
}

a.btn_orange {
  display: block;
  max-width: 350px;
  margin: 0 auto;
  padding: 1.5rem 3.0rem;
  background-color: #ef7e00;
  border-radius: 8px;
box-sizing: border-box;
  text-decoration: none;
  transition: 0.3s;
}
a.btn_orange span.bl__text {
  display: block;
  position: relative;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
a.btn_orange:hover {
  background-color: #ec6206;
}
a.btn_orange:hover span.bl__text:after {
  border-top: 3px solid #ec6206;
  border-right: 3px solid #ec6206;
}


