@charset "UTF-8";
/**************************************

cmn

**************************************/

.section_form {
  margin: 0px auto;
  background: #FFF;
  padding: 10% 5% 0;
  /* border-radius: 20px; */
  box-sizing: border-box;
  text-align: left;
}

.section_form h2 {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  color: #0075C2;
  margin-bottom: 3%;
}

.main_entry .flow_box {
  margin: 40px 0 80px;
  display: flex;
  column-gap: 55px;
}

.main_entry .flow_box .box {
  position: relative;
  text-align: center;
}

.main_entry .flow_box .box:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 45px;
  right: -27px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #333333;
  border-right: 2px solid #333333;
  transform: rotate(45deg) translateY(-50%);
}

.main_entry .flow_box .box .icon {
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: #258853;
  position: relative;
}

.main_entry .flow_box .box:nth-child(2) .icon {
  background: #CD5C48;
}
.main_entry .flow_box .box:nth-child(3) .icon {
  background: #6C9CD0;
}
.main_entry .flow_box .box:nth-child(4) .icon {
  background: #D07E3B;
}

.main_entry .flow_box .box .icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.main_entry .flow_box .box .tit {
  font-weight: 700;
  margin-top: 18px;
  line-height: 1;
}

@media screen and (max-width: 760px) {
  .main_entry .container_inner {
    padding: 0 3%;
  }

  .section_form {
    padding: 7%;
  }

  .main_entry .lead {
    padding: 0 3%;
  }

  .main_entry .flow_box {
    margin: 4% 0 8%;
    padding: 0 3%;
    column-gap: 18px;
  }

  .main_entry .flow_box .box {
    flex-basis: 70px;
    text-align: center;
  }

  .main_entry .flow_box .box:not(:last-child)::after {
    top: 30px;
    right: -8px;
    width: 5px;
    height: 5px;
  }

  .main_entry .flow_box .box .icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
  }

  .main_entry .flow_box .box .icon img {
    transform: translate(-50%, -50%) scale(.8);
  }

  .main_entry .flow_box .box .tit {
    margin-top: 10%;
    font-size: 1.1rem;
  }
}


/**************************************

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: #FFF;
  border: 1px solid #333333;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 0 20px;
  color: #333333;
  border-radius: 30px;
}

.section_form .step_box .box.current {
  background: #333333;
  color: #FFF;
}

.section_form .step_box .arrow {
    line-height: 1;
    width: 8px;
    height: 8px;
    border: 2px solid #333333;
    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: #6C9CD0;
  color: #FFF;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 26px;
  padding: 0 10px;
  min-width: 60px;
  text-align: center;
  border-radius: 20px;
}

.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;
}

/* invalid表示用（JSで .invalid を付与） */
.section_form input.invalid,
.section_form select.invalid,
.section_form textarea.invalid {
  background:   #ffd6d7 !important;
}

.section_form .select_box.tel select {
  width: 150px;
}

.section_form .radio_box .list-item {
  padding-right: 40px;
}

.section_form .radio_box label > * {
  display: inline-block;
  vertical-align: middle;
}

.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;
  -webkit-appearance: none;
}

.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;
  -webkit-appearance: none;
}

.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 #333333 solid;
  border-left: 1px #333333 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: 20px;
}

.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;
  border-radius: 30px;
  background: #F0841A;
  color: #FFF;
  border: none;
  font-size: 1.4rem;
  box-sizing: border-box;
  font-weight: bold;
  transition: .3s;
}

.section_form .btn_submit input.disabled {
  opacity: .3;
  pointer-events: none;
}

.section_form .btn_submit input:disabled {
  opacity: .4;
  background: #BDBDBD; /* gray */
  color: #FFF;
  cursor: not-allowed;
}

.section_form .btn_submit input:not(:disabled):hover {
  background: #333333;
}

.section_form .error_txt {
  color: #6C9CD0;
  font-weight: bold;
  font-size: .9em;
}

.section_form .policy_txt a {
  text-decoration: underline;
}

@media screen and (max-width: 2000px) {
  .section_form .step_box {
    margin-bottom: 6%;
  }

  .section_form .step_box .box {
    min-width: 28%;
    height: 36px;
    line-height: 34px;
    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.8%;
    font-weight: bold;
  }

  .section_form .form_stit {
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 2%;
    margin-bottom: 1%;
    opacity: .6;
  }

  .section_form .notice {
    font-size: 1.2rem;
    opacity: .5;
    margin: 2% 0 0;
  }

  .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.column_box {
    display: flex;
    column-gap: 2%;
  }

  .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: 4px;
    margin-bottom: 8px;
  }

  .section_form input[type="radio"] {
    width: 24px;
    height: 24px;
    font-size: 1.6rem;
    margin-right: 4px;
  }

  .section_form input[type="date"]::-webkit-date-and-time-value {
    color: #333333;
    text-align: left;
  }

  .section_form input[type="date"]::-webkit-calendar-picker-indicator {
    display: block;
  }

  .section_form label {
    font-size: 1.4rem;
  }

  .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 .form_input a {
    text-decoration: underline;
  }

  .section_form input#e_age {
    width: 100px;
  }

  .section_form textarea {
    width: 100%;
    height: 120px;
    padding: 6%;
    font-size: 1.6rem;
    box-sizing: border-box;
  }

  .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: 2000px) {
  .thanks_block {
    text-align: center;
    line-height: 1.6;
  }
  .thanks_block .btn_more {
    margin-top: 6%;
  }
  .thanks_block h3 {
    font-size: 2.4rem;
    margin-bottom: 3%;
  }

  .thanks_block .txt {
    text-align: left;
    font-size: 1.4rem;
  }
  .thanks_block .notice {
    text-align: left;
    font-size: 1.2rem;
  }
}
