@charset "utf-8";
/* ===============================================
# タイトル
=============================================== */
.ttl_main{
  font-weight: bold;
  font-size: 150%;
  background-color: #62cce6;
  color: #fff;
  text-align: center;
  line-height: 1;
  padding: 22px 0;
  border-radius: 10px;
  margin-top: 20px;
}
@media screen and (max-width : 767px){
  .ttl_main{
    font-size:2.4rem;
    padding-right: 5px;
    padding-left: 5px;
  }
}

/* ===============================================
# section_form
=============================================== */
.section_form{
  background-color: #fff;
  border-radius: 10px;
  margin-top: 20px;
  padding: 40px 80px 90px;
}
.section_form .box_text{
  text-align: center;
  line-height: 1.5;
  margin-bottom:40px;
}
.section_form .box_text_end{
  text-align: center;
  line-height: 1.5;
  margin-bottom:50px;
  margin-top: 57px;
}
.section_form .box_step{
  text-align: center;
}
@media screen and (max-width : 767px){
  .section_form{
    margin-top:20px;
    padding: 20px 2.7% 70px;
  }
  .section_form .box_text{
    text-align: left;
    margin-bottom:35px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .section_form .box_text_end{
    text-align: left;
    margin-bottom:50px;
    margin-top: 40px;
    padding-left: 10px;
    padding-right: 10px;    
  }
}
/*formエリア*/
.section_form dl{
  margin-top: 40px;
}
.section_form dl dt{
  clear: both;
  float: left;
  width: 37%;
  font-weight: bold;
  padding: 22px 0;
  border-bottom: solid 1px #ebebeb;
}
.section_form dl dt::before{
  content: '任意';
  display: inline-block;
  border-radius: 2px;
  background-color: #beb0a6;
  color: #fff;
  padding: 5px;
  line-height: 1;
  margin-right: 12px;
}
.section_form dl dt.required::before{
  content: '必須';
  background-color: #62cce6;
}
.section_form dl dd{
  width: 63%;
  float: left;
  padding: 18px 0;
  border-bottom: solid 1px #ebebeb;
}

.section_form dl dt:last-of-type,
.section_form dl dd:last-of-type{
  border: none;
}

@media screen and (max-width : 767px){
  .section_form dl{
    margin-top: 35px;
  }
  .section_form dl dt{
    float: none;
    width: 100%;
    padding: 15px 0 0 0;
    border-bottom:none;
  }
  .section_form dl dt::before{
    padding: 5px;
    margin-right: 14px;
  }
  .section_form dl dd{
    width: 100%;
    float: none;
    padding: 15px 0 20px 0;
  }
}
/*エラー*/
.section_form dl dd .error{
  color: #ff6f52;
  margin-top: 10px;
}

/*トップへ戻る*/
.box_btn_top{
  padding-bottom: 30px;
}
.box_btn_top a{
  display: block;
  width: 118px;
  margin: 0 auto;
}


/*フォーム
-------------------------------------------*/
/* input */
.area_form input[type=text],
.area_form input[type=tel],
.area_form input[type=number],
.area_form input[type=button],
.area_form select,
.area_form textarea{
  margin: 0;
  padding: 0;
  background-color:#fff;
  border:1px solid #62cce6;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  box-sizing: border-box;
  vertical-align: top;
  font-size: 100%;
  line-height: 1.5;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
input[type="number"] {
  -moz-appearance:textfield;
}
.area_form input::-moz-focus-inner,
.area_form button::-moz-focus-inner{
  border: 0;
  padding: 0;
}
.area_form input[type=text],
.area_form input[type=tel],
.area_form input[type=number],
.area_form textarea,
.area_form select{
  padding:12px 0.5em;
  width: 100%;
}

.area_form textarea{
  height: 150px;
}

.area_form select{
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  -mox-appearance: none;
  z-index: 1;
  background: transparent;
  padding:10.5px 0.5em;
}
.area_form select::-ms-expand {
   display: none;
 }
.area_form .select{
  position: relative;
}
.area_form .select::after{
  position: absolute;
  top:12px;
  right: 17px;
  content: '▼';
  z-index: 0;
}

.box_btn{
  margin-top: 60px;
}
.box_btn button{
  font-weight: bold;
  text-align: center;
  font-size: 125%;
  border-radius: 40px;
  border-width: 0;
  background-color: rgb(255, 238, 126);
  max-width: 292px;
  width: 90%;
  line-height: 1;
  margin: 0 auto;
  padding: 30px 0;
}

@media screen and (max-width : 767px){
  .area_form input[type=text],
  .area_form input[type=number],
  .area_form input[type=tel],
  .area_form input[type=button],
  .area_form select,
  .area_form textarea{
    font-size: 16px;
  }
  .area_form input[type=text],
  .area_form input[type=number],
  .area_form input[type=tel],  
  .area_form textarea{
    padding:7px 0.5em;
    width: 100%;
  }
  

}

