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

cmn

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

.section_form {
  margin: 0px auto;
  max-width: 1200px;
  padding: 80px 8% 100px;
  background: #F9F9F9;
  box-sizing: border-box;
  border-radius: 10px;
}

.section_form .inner {
  background: #FFF;
  border-radius: 10px;
  padding: 60px 80px 80px;
  box-sizing: border-box;
  text-align: left;
}


@media screen and (max-width: 760px) {
  .section_form {
    max-width: 100%;
    padding: 8% 3% 8%;
  }

  .section_form .inner {
    max-width: 100%;
    padding: 8% 6% 10%;
  }
}


.section_form .form_title {
  margin-bottom: 40px;
  line-height: 1.0;
  text-align: center;
}

.section_form .form_title .phrase {
  background: #3DADA5;
  color: #FFF;
  display: inline-block;
  padding: 0 20px;
  line-height: 45px;
  font-size: 18px;
  border-radius: 30px;
  margin-bottom: 25px;
  position: relative;
  font-weight: 700;
}

.section_form .form_title .phrase::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  height: calc(60px / 2);
  width: 28px;
  clip-path: polygon(50% 100%, 100% 0%, 0 0%);
  background: #3DADA5;
}

.section_form .form_title h2 {
  font-size: 42px;
  font-weight: 700;
}

.section_form .form_title h2 em {
  color: #3DADA5;
}

.section_form .notice {
  display: block;
  opacity: .6;
  font-size: .8em;
  margin-top: 8px;
}

.section_form .notice a {
  display: inline-block;
  text-decoration: underline;
}

@media screen and (max-width: 760px) {
  .section_form .form_title {
    margin-bottom: 5%;
  }

  .section_form .form_title .phrase {
    padding: 0 3%;
    line-height: 32px;
    font-size: 12px;
    margin-bottom: 4%;
  }

  .section_form .form_title .phrase::after {
    bottom: -10px;
    height: calc(40px / 2);
    width: 18px;
  }

  .section_form .form_title h2 {
    font-size: 22px;
  }

  .section_form .notice {
    font-size: .8em;
    margin-top: 8px;
  }

  .section_form .notice a {
    display: inline-block;
    text-decoration: underline;
  }
}


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

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;
  border-radius: 30px;
  background: rgba(0,0,0,.03);
  border: 1px solid rgba(0,0,0,.1);
  font-size: 1.6rem;
  font-weight: 500;
  padding: 0 20px;
}

.section_form .step_box .box.current {
  background: #F6AB1A;
  border-color: #F6AB1A;
  color: #FFF;
}

.section_form .step_box .arrow {
    line-height: 1;
    width: 8px;
    height: 8px;
    border: 2px solid #000;
    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: 240px;
  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: #3DADA5;
  color: #FFF;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 30px;
  border-radius: 20px;
  padding: 0 10px;
  min-width: 60px;
  text-align: center;
}

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

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

.section_form input {
  width: 90%;
  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"],
.section_form input[type="radio"] {
  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(../image/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 .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: 90%;
  height: 120px;
  padding: 25px;
  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: 484px;
  height: 60px;
}

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

.section_form .btn_submit input {
  height: 60px;
  padding: 0 25px;
  background: linear-gradient(to right,#5FB3B6, #036EB8);
  color: #FFF;
  border: none;
  font-size: 1.8rem;
  box-sizing: border-box;
  border-radius: 40px;
  font-weight: 700;
  transition: .3s;
  width: 100%;
}

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

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

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

.section_form label {
  height: 25px;
  line-height: 25px;
  display: inline-block;
}

@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.5rem;
    padding-top: 0;
    padding-right: 0;
    margin-bottom: 1%;
    font-weight: 700;
  }

  .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: 90%;
    height: 50px;
    padding: 0 5%;
    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: 88%;
    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;
  }
}

