@charset "UTF-8";

/* formWrap
***************************************************************/
.formWrap {
  background: linear-gradient(-45deg, #00e5c7 0%, #00c850 100%);
  width: 100%;
  padding: 218px 0 148px;
}
.form_titBox {
  width: 1150px;
  margin: 0 auto 98px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.form_flow {
  width: 504px;
}
.f_telBox {
  width: 450px;
  margin: 50px auto 0;
}
.f_telBox_txt1 {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0;
  line-height: 1.5;
}
.f_telBox_txt2 {
  display: block;
  font-size: 60px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.f_telBox_txt3 {
  font-size: 15px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0;
  line-height: 1.5;
}
.form_privacy {
  margin-top: 70px;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0;
  line-height: 1.7;
}
.form_privacy a {
  text-decoration: underline;
}
@media all and (min-width: 681px) {
  .form_privacy a:hover {
    text-decoration: none;
  }
}
@media all and (max-width: 680px) {
  .formWrap {
    padding: 90px 0;
  }
  .form_titBox {
    width: 100%;
    padding: 0 30px;
    margin-bottom: 30px;
    display: block;
  }
  .form_flow {
    width: 100%;
    margin: 40px auto 0;
  }
  .f_telBox {
    width: 320px;
    margin-top: 30px;
  }
  .f_telBox_txt1 {
    font-size: 16px;
  }
  .f_telBox_txt2 {
    font-size: 40px;
  }
  .f_telBox_txt3 {
    font-size: 12px;
  }
  .form_privacy {
    margin-top: 20px;
    font-size: 14px;
  }
}
@media all and (max-width: 370px) {
}

/* フォーム初期設定
***************************************************************/
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;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
select,
textarea,
button,
input[type="submit"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont,
    "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3",
    Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
  outline: none;
  text-align: left;
  color: #000;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
select,
textarea {
  padding: 10px 15px;
  background-color: #fff;
  border: 0;
  border-radius: 6px;
  font-size: 16px;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
select {
  width: 100%;
  height: 55px;
}
::placeholder {
  color: #b5b5b5;
  font-size: 15px;
}
input[type="date"]::-webkit-date-and-time-value {
  text-align: left;
}
textarea {
  width: 100%;
  height: 163px;
}
input[type="submit"],
button {
  cursor: pointer;
  font-weight: 400;
}
::-ms-expand {
  display: none;
}
select {
  padding-right: 30px;
  background-image: url(../img/common/ico_selecttri01.svg);
  background-size: 12px;
  background-position: center right 20px;
  background-repeat: no-repeat;
  cursor: pointer;
}
select.is-empty {
  color: #bcbcbc;
}
.form_item1_radio {
  display: flex;
  gap: 10px 30px;
}
.form_item1_radio label {
  display: flex;
  align-items: center;
  gap: 0 5px;
  position: relative;
}
.form_item1_radio input {
  position: absolute;
  opacity: 0;
}
.form_item1_radio_txt {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
}
.form_item1_radio_txt:before {
  content: "";
  background: #fff;
  border-radius: 100%;
  border: 1px solid #fff;
  display: inline-block;
  width: 20px;
  height: 20px;
  position: relative;
  top: 6px;
  margin-right: 10px;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 250ms ease;
}
.type_check .form_item1_radio_txt:before {
  border-radius: 0;
}
input[type="radio"]:checked + .form_item1_radio_txt:before,
input[type="checkbox"]:checked + .form_item1_radio_txt:before {
  background: linear-gradient(#00c850 0%, #00e5c7 100%);
  box-shadow: inset 0 0 0 3px #fff;
}
input[type="radio"]:focus + .form_item1_radio_txt:before,
input[type="checkbox"]:focus + .form_item1_radio_txt:before {
  outline: none;
  border-color: #fff;
}
input[type="radio"]:disabled + .form_item1_radio_txt:before,
.wpcf7-list-item
  input[type="checkbox"]:disabled
  + .form_item1_radio_txt:before {
  box-shadow: inset 0 0 0 4px #fff;
  border-color: #fff;
  background: #fff;
}
input[type="radio"] + .form_item1_radio_txt:empty:before,
input[type="checkbox"] + .form_item1_radio_txt:empty:before {
  margin-right: 0;
}
button {
  background: none;
  border: none;
  outline: none;
}
@media all and (min-width: 681px) {
}
@media all and (max-width: 680px) {
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  select,
  textarea {
    padding: 10px 15px;
  }
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="number"],
  select {
    height: 45px;
  }
  textarea {
    height: 135px;
  }
  ::placeholder {
    font-size: 13px;
  }
  .form_item1_radio_txt {
    font-size: 15px;
  }
  .form_item1_radio_txt:before {
    top: 3px;
  }
}
@media all and (max-width: 370px) {
}

/* form_contents
***************************************************************/
.form_contents {
  width: 854px;
  margin: 0 auto;
}
.form_item1 {
  width: 100%;
  display: flex;
}
.form_item1 + .form_item1 {
  margin-top: 20px;
}
.form_item1_dt1 {
  width: calc(100% - 598px);
  padding-right: 21px;
}
.form_item1_dd1 {
  width: 598px;
}
.form_item1_titBox {
  width: 100%;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.form_item1_tit1 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
}
.form_item1_type {
  width: 53px;
  padding: 4px 0;
  border-radius: 100px;
  background-color: #fff;
  font-size: 13px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0;
  line-height: 1;
}
.form_item1_type.required {
  background-color: #76ff02;
}
.form_item1_clm1 {
  display: flex;
  gap: 0 10px;
}
.form_item1_clm1_in {
  width: 100%;
}
.form_submit {
  margin-top: 30px;
}
.form_submit.back {
  margin-top: 35px;
}
.error_text {
  font-size: 15px;
  font-weight: 500;
  color: red;
}
.confirm_text {
  color: #fff;
  height: 55px;
  display: flex;
  align-items: center;
}
@media all and (min-width: 681px) {
  .form_item1_dd1.center {
    display: flex;
    align-items: center;
  }
}
@media all and (max-width: 680px) {
  .form_contents {
    width: 100%;
    padding: 0 30px;
  }
  .form_item1 {
    display: block;
  }
  .form_item1 + .form_item1 {
    margin-top: 20px;
  }
  .form_item1_dt1 {
    width: 100%;
    padding-right: 0;
  }
  .form_item1_dd1 {
    width: 100%;
  }
  .form_item1_titBox {
    width: 100%;
    padding-bottom: 9px;
    height: auto;
    display: flex;
    flex-flow: row-reverse;
    align-items: center;
    justify-content: flex-end;
    gap: 0 8px;
  }
  .form_item1_tit1 {
    font-size: 16px;
  }
  .form_item1_type {
    font-size: 12px;
  }
  .form_submit {
    margin-top: 20px;
  }
  .form_submit.back {
    margin-top: 20px;
  }
  .error_text {
    font-size: 14px;
  }
  .confirm_text {
    height: auto;
    display: block;
  }
}
@media all and (max-width: 370px) {
}

/* thanks_box
***************************************************************/
.thanks_tit1 {
  color: #fff;
  font-size: 30px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.thanks_txt1 {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 2;
  margin-top: 45px;
}
@media all and (min-width: 681px) {
}
@media all and (max-width: 680px) {
  .thanks_box {
    padding: 0 30px;
  }
  .thanks_tit1 {
    font-size: 22px;
  }
  .thanks_txt1 {
    font-size: 14px;
    text-align: justify;
    letter-spacing: 0;
    margin-top: 30px;
    margin-bottom: 40px;
  }
}
@media all and (max-width: 370px) {
}

/* コンテンツ
***************************************************************/
@media all and (min-width: 681px) {
}
@media all and (max-width: 680px) {
}
@media all and (max-width: 370px) {
}
