@charset "UTF-8";
/**************************************

cmn

**************************************/

.section_form {
  margin: 0px auto;
  background: #FFF;
  padding: 80px 5% 100px;
  box-sizing: border-box;
}

@media screen and (max-width: 760px) {
  .main_inquiry .container_inner,
  .main_contact .container_inner {
    padding: 0 3%;
  }

  .section_form {
    padding: 8% 0;
  }
}


/**************************************

form

**************************************/

.section_form .step_box {
  text-align: center;
  margin-bottom: 50px;
}

.section_form .step_box p {
  display: inline-block;
  vertical-align: middle;
}

.section_form .step_box .box {
  min-width: 220px;
  height: 50px;
  line-height: 45px;
  background: rgba(0,0,0,.03);
  border: 1px solid rgba(27,37,77,.1);
  font-size: 1.6rem;
  font-weight: 500;
  padding: 0 20px;
  color: #1B254D;
}

.section_form .step_box .box.current {
  background: #1B254D;
  color: #FFF;
}

.section_form .step_box .arrow {
    line-height: 1;
    width: 8px;
    height: 8px;
    border: 2px solid #1B254D;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transition: .3s;
    transform: rotate(45deg);
    margin: 0 10px 0 5px;
}

.section_form .input_block > dl {
  padding: 15px 0;
  display: flex;
}

.section_form .form_tit {
  width: 280px;
  display: inline-block;
  vertical-align: top;
  height: 50px;
  font-size: 1.6rem;
  padding-top: 10px;
  position: relative;
  padding-right: 70px;
  line-height: 1.4;
}

.section_form .form_tit .required {
  position: absolute;
  top: 10px;
  right: 20px;
  background: #187DBD;
  color: #FFF;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 26px;
  padding: 0 10px;
  min-width: 60px;
  text-align: center;
}

.section_form .form_input {
  width: 560px;
  display: inline-block;
  vertical-align: top;
}

.section_form .form_input.radio {
  padding-top: 10px;
}

.section_form input {
  width: 100%;
  height: 50px;
  padding: 0 20px;
  background: #F0F0F0;
  border: none;
  font-size: 1.6rem;
  border-radius: 4px;
  box-sizing: border-box;
  margin: 0;
}

.section_form .select_box.tel select {
  width: 150px;
}

.section_form input[type="checkbox"] {
  width: 24px;
  height: 24px;
  padding: 0;
  background: #F0F0F0;
  border: none;
  font-size: 1.6rem;
  border-radius: 3px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

.section_form input[type="checkbox"]:checked,
.section_form input[type="radio"]:checked {
  background: url(../images/common/icon_check.svg) top center no-repeat;
  background-size: 100% auto;
}

.section_form input[type="radio"] {
  width: 24px;
  height: 24px;
  padding: 0;
  background: #F0F0F0;
  border: none;
  font-size: 1.6rem;
  border-radius: 12px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

.section_form input[type="file"] {
  height: 50px;
  padding: 10px 0;
  background: none;
  border-radius: 0;
}

.section_form input#file-upload-button {
  border: 1px solid #1B254D;
  background: #FFF;
  color: #1B254D;
  width: 160px;
}

.section_form .notice {
  font-size: 1.2rem;
  opacity: #828282;
}

.section_form .box_select {
  width: 48%;
  display: inline-block;
  margin-bottom: 10px;
}

.section_form .box_select label {
  line-height: 24px;
  display: inline-block;
  vertical-align: top;
  font-weight: 500;
  width: calc(100% - 50px);
  line-height: 1.4;
  padding: 4px 0 0;
}

.section_form input::placeholder,
.section_form textarea::placeholder {
  color: #121212;
  opacity: .15;
}

.section_form .select_box {
  position: relative;
  display: inline-block;
}

.section_form .select_box::after {
  position: absolute;
  top: 20px;
  right: 20px;
  display: block;
  width: 4px;
  height: 4px;
  content: " ";
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
  border-top: 1px #000 solid;
  border-left: 1px #000 solid;
}

.section_form select {
  height: 50px;
  padding: 0 50px 0 20px;
  background: #F5F5F5;
  border: none;
  font-size: 1.4rem;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 4px;
  box-sizing: border-box;
  color:#121212;
  appearance: none;
}

.section_form input#e_age {
  width: 100px;
}

.section_form textarea {
  width: 100%;
  height: 180px;
  padding: 15px 20px;
  background: #F0F0F0;
  border: none;
  border-radius: 4px;
  font-size: 1.6rem;
}

.section_form .policy_block {
  border: 1px solid rgba(80,69,58,.15);
  border-radius: 10px;
  margin-top: 80px;
}

.section_form .policy_block .box_inner {
  overflow-y: scroll;
  height: 260px;
  padding: 50px;
}

.section_form .policy_block .catch {
  font-size: 2.0rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

.section_form .agree_box {
  text-align: center;
  margin-top: 30px;
}

.section_form .agree_box .txt {
  font-size: 1.2rem;
}

.section_form .agree_box .txt a {
  text-decoration: underline;
}

.section_form .btn_submit {
  margin: 30px auto 0;
  position: relative;
  width: 460px;
  height: 60px;
}

.section_form .btn_submit::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: url(../img/cmn/arrow_w.svg) center center no-repeat;
  background-size: 10px auto;
  transition: .3s;
}

.section_form .btn_submit input {
  height: 60px;
  padding: 0 25px;
  background: #1B254D;
  color: #FFF;
  border: none;
  font-size: 1.4rem;
  box-sizing: border-box;
  border-radius: 0;
  font-weight: 500;
  transition: .3s;
}

.section_form .btn_submit input.disabled {
  opacity: .3;
  pointer-events: none;
}

.section_form .btn_submit input:not(.disabled):hover {
  background: #000;
}

.section_form .error_txt {
  color: #187DBD;
  font-weight: bold;
  font-size: .9em;
}

.section_form .policy_txt a {
  text-decoration: underline;
}

@media screen and (max-width: 761px) {
  .section_form .step_box {
    margin-bottom: 6%;
  }

  .section_form .step_box .box {
    min-width: 36%;
    height: 36px;
    line-height: 32px;
    font-size: 1.3rem;
    padding: 0 5%;
  }

  .section_form .step_box .arrow {
    width: 6px;
    height: 6px;
    margin: 0 6px 0 5px;
  }

  .section_form .input_block > dl {
    padding: 2.5% 0;
    display: block;
  }

  .section_form .form_tit {
    width: 100%;
    display: block;
    height: auto;
    font-size: 1.4rem;
    padding-top: 0;
    padding-right: 0;
    margin-bottom: 1%;
  }

  .section_form .form_tit .required {
    position: relative;
    top: auto;
    right: auto;
    font-size: 1.1rem;
    line-height: 26px;
    padding: 2px 3% 3px;
    min-width: 45px;
    margin-left: 3%;
  }

  .section_form .form_input {
    width: 100%;
    display: block;
  }

  .section_form .form_input.radio {
    padding-top: 10px;
  }

  .section_form input {
    width: 100%;
    height: 50px;
    padding: 0 4%;
    font-size: 1.6rem;
  }

  .section_form .select_box.tel select {
    width: 150px;
  }

  .section_form input[type="checkbox"] {
    width: 24px;
    height: 24px;
    font-size: 1.6rem;
    margin-right: 10px;
  }

  .section_form input[type="radio"] {
    width: 24px;
    height: 24px;
    font-size: 1.6rem;
    margin-right: 10px;
  }

  .section_form .box_select {
    width: 48%;
    margin-bottom: 10px;
  }

  .section_form .box_select label {
    line-height: 24px;
    width: calc(100% - 50px);
    padding: 4px 0 0;
  }

  .section_form select {
    height: 50px;
    padding: 0 50px 0 20px;
    font-size: 1.4rem;
  }

  .section_form input#e_age {
    width: 100px;
  }

  .section_form textarea {
    width: 100%;
    height: 120px;
    padding: 6%;
    font-size: 1.6rem;
  }

  .section_form .agree_box {
    margin-top: 2%;
    text-align: left;
  }

  .section_form .agree_box .txt {
    font-size: 1.1rem;
  }

  .section_form .btn_submit {
    margin: 4% auto 0;
    width: 100%;
    height: 60px;
  }

  .section_form .btn_submit::after {
    width: 60px;
    height: 60px;
  }

  .section_form .btn_submit input {
    height: 60px;
    padding: 0 5%;
  }
}

/**************************************

form_thanks

**************************************/
.thanks_block {
  text-align: center;
  line-height: 1.8;
}
.thanks_block .btn_more {
  text-align: center;
  margin-top: 60px;
}
.thanks_block h3 {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.4;

  margin-bottom: 40px;
}

@media screen and (max-width: 761px) {
  .thanks_block {
    text-align: center;
    line-height: 1.6;
  }
  .thanks_block .btn_more {
    margin-top: 6%;
  }
  .thanks_block h3 {
    font-size: 2.6rem;
    margin-bottom: 6%;
  }

  .thanks_block .txt {
    text-align: left;
  }
}

