@charset "UTF-8";
/* CSS Document */
button, input, optgroup, select, textarea {
  -webkit-appearance: none; /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}
/*---------------------------------------------------
    フォーム 入力
---------------------------------------------------*/
.form-area {
  background-color: #ffffff;
  padding: 4.375vw;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
}
.form .form-inner {
  grid-row-gap: 40px;
  margin-bottom: 60px;
}
.form__steps {
  font-size: clamp(1.2rem, 1.375vw, 2.2rem);
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 80px;
  column-gap: 1.25vw;
}
.form__steps .step {
  color: #888888;
  text-align: center;
  width: 5.375vw;
  height: 5.375vw;
  max-width: 86px;
  max-height: 86px;
  border: solid 1px #888888;
  border-radius: 100px;
}
.form__steps .step.actived {
  color: #ffffff;
  border: solid 1px #dddddd;
  background-color: #dddddd;
}
.form__steps .step.active {
  color: var(--orange);
  border: solid 1px var(--orange);
}
.form__steps .step span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-weight: 600;
}
.form__steps .arrow {
  content: "";
  display: block;
  width: 3.875vw;
  max-width: 62px;
  height: 1px;
  background-color: #888888;
  position: relative;
}
.form__steps .arrow::after {
  content: "";
  display: block;
  width: 0.625vw;
  max-width: 10px;
  height: 0.625vw;
  max-height: 10px;
  border: 1px solid #888888;
  border-left: 0;
  border-bottom: 0;
  position: absolute;
  top: 50%;
  right: -1px;
  -webkit-transform: translateY(-0.5px) rotate(45deg);
  transform: translateY(-0.5px) rotate(45deg);
  transform-origin: top right;
}
/* フォーム */
.form dt {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  column-gap: 10px;
  font-family: var(--sp);
}
.form dt label {
  font-weight: 700;
}
.form dt span.required {
  color: #d90000;
  padding: 0 4px 1px;
  border: solid 1px #d90000;
  font-weight: 600;
  line-height: normal;
}
.form dd input, .form dd textarea {
  padding: 10px 20px;
  width: calc(100% - 40px);
  border: 1px solid #dddddd;
  background-color: #fafafa;
  font-weight: 400;
}
.form dd textarea {
  line-height: 2;
  resize: none;
}
/* チェックボックス、ラジオボタンデザイン */
.wpcf7-list-item input[type="checkbox"], .wpcf7-list-item input[type="radio"] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  vertical-align: middle;
}
.wpcf7-list-item input[type="checkbox"], .form-area .wpcf7-checkbox input[type="checkbox"], .form-area .wpcf7-radio input[type="radio"] {
  width: auto;
}
.form-area .privacy .wpcf7-list-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  appearance: initial;
  -webkit-transform: translateX(20px);
  transform: translateX(20px);
  position: absolute;
  top: 0;
  right: 20px;
  z-index: 1;
}
.radio-wrap .wpcf7-form-control-wrap {
  flex-shrink: initial;
}
.radio-wrap .wpcf7-checkbox, .radio-wrap .wpcf7-radio {
  width: 100%;
  grid-row-gap: 6px;
  display: flex;
  flex-wrap: wrap;
}
.radio-wrap .wpcf7-list-item {
  width: calc(100% / 3);
  margin: 0 0 0 0;
}
.wpcf7-list-item-label {
  position: relative;
  align-items: center;
  letter-spacing: normal;
  font-weight: 500;
  font-size: clamp(1.1rem, 1.11vw, 1.6rem);
  padding-left: 23px;
  cursor: pointer;
}
@media (max-width:768px) {
  .wpcf7-list-item-label {
    font-size: 1.4rem;
    padding-left: 28px;
  }
}
/* チェックボックスデザイン */
.wpcf7-list-item-label::before, .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
}
.wpcf7-list-item-label::before {
  border: 1px solid #dddddd;
  background-color: #fafafa;
  width: clamp(12px, 1.125vw, 18px);
  height: clamp(12px, 1.125vw, 18px);
  top: 2px;
  left: 0px;
}
.wpcf7-radio .wpcf7-list-item-label::before {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}
/*@media (max-width:1600px) {
  .wpcf7-radio .wpcf7-list-item-label::before {
    width: 1.2vw;
    height: 1.2vw;
  }
}*/
@media (max-width:1024px) {
  .wpcf7-radio .wpcf7-list-item-label::before {
    width: 12px;
    height: 12px;
    top: 2px;
  }
}
@media (max-width:768px) {
  .wpcf7-radio .wpcf7-list-item-label::before {
    width: 18px;
    height: 18px;
  }
}
.wpcf7-list-item-label::after {
  opacity: 0;
  border-bottom: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  opacity: 0;
  height: 0.3125vw;
  width: 0.625vw;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 6px;
  left: 3px;
}
.wpcf7-radio .wpcf7-list-item-label::after {
  background-color: var(--green);
  border: none;
  border-radius: 100%;
  width: 14px;
  height: 14px;
  top: 5px;
  left: 3px;
}
/*@media (max-width:1600px) {
  .wpcf7-radio .wpcf7-list-item-label::after {
    width: 0.8vw;
    height: 0.8vw;
    top: .4vw;
    left: .3vw;
  }
}*/
@media (max-width:1024px) {
  .wpcf7-radio .wpcf7-list-item-label::after {
    width: 10px;
    height: 10px;
    top: 4px;
    left: 2px;
  }
}
@media (max-width: 768px) {
  .wpcf7-radio .wpcf7-list-item-label::after {
    width: 14px;
    height: 14px;
    top: 5px;
    left: 3px;
  }
}
input[type="checkbox"]:checked + .wpcf7-list-item-label::before {
  background-color: var(--green);
}
input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
input[type="radio"]:checked + .wpcf7-list-item-label::before {
  background-color: #fafafa;
}
input[type="radio"]:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
::placeholder {
  color: #bbbbbb;
  font-weight: 400;
  font-family: "Outfit", "Noto Serif JP", serif;
}
.privacy {
  margin-bottom: 60px;
}
.privacy span.wpcf7-list-item.last {
  margin: 0;
}
/* 確認ボタン */
.confirmation-button span.wpcf7-list-item.last {
  margin: 0;
}
.confirmation-button span.wpcf7-list-item.last .wpcf7-list-item-label {
  padding-left: 0;
}
.confirmation-button {
  margin: 0 auto;
  padding: 0;
}
.form-area .confirmation-button .wpcf7-checkbox input[type="checkbox"] {
  appearance: initial;
  position: absolute;
  top: -27px;
  left: 0;
  z-index: 1;
  width: 266px;
  height: 67px;
}
.form-area #submit-button input[type="submit"] {
  appearance: initial;
  position: absolute;
  left: 0;
  z-index: 1;
  width: 266px;
  height: 67px;
  top: 50%;
  left: -40px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
  cursor: pointer;
}
.confirmation-button.disabled {
  color: #888888;
  cursor: not-allowed; /* クリック不可のカーソルを表示 */
  pointer-events: none;
}
.confirmation-button.disabled::before {
  background-color: #88888888;
}
.confirmation-button.disabled::after {
  border: 1px solid #88888888;
  border-left: 0;
  border-bottom: 0;
}
#confirm-button, #submit-button {
  cursor: pointer;
  position: relative;
}
#confirm-button .wpcf7-not-valid-tip, #submit-button .wpcf7-not-valid-tip {
  display: none !important;
}
#confirm-button .wpcf7-list-item-label::before, #confirm-button .wpcf7-list-item-label::after {
  display: none;
}
#submit-button input {
  border: none;
}
/* ファイル */
.form dd input[type="file"] {
  display: block;
  background: none;
  border: none;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  padding: 0;
  margin: 10px 0;
  position: relative;
}
.form dd input[type="file"]::before {
  content: "";
  width: 16px;
  height: 14px;
  background-image: url("../img/entry/file_icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  font-size: 1.6rem;
  pointer-events: none;
  position: absolute;
  top: 6px;
  left: 0;
}
.form dd input[type="file"]::file-selector-button {
  color: var(--orange);
  background-color: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--noto);
  font-weight: 600;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-margin: 0 16px;
  margin: 0 16px;
}
.dl_file dd {
  position: relative;
}
.form-area .form-inner dl dd .form_filename {
  display: inline-block;
  margin-left: 15px;
  position: absolute;
  top: 0;
  left: 192px;
}
@media (max-width: 768px) {
  .form dd input[type="file"]::file-selector-button {
    font-size: 1.4rem;
  }
  .form dd input[type="file"] {
    width: 100%;
  }
  .form-area .form-inner dl dd .form_filename {
    left: 170px;
  }
}
.form-area .form-inner dl dd .form_filename.confirmation {
  margin-left: 0;
}
.mw-wp-form_file {
  display: none;
}
.mwform-file-delete {
  display: block;
  margin-top: 5px;
}
.mwform-file-delete::after {
  content: "アップロードしたファイルを削除する";
}
.form-area #submit-button {
  position: relative;
  left: 30px;
}
/*---------------------------------------------------
    フォーム 完了
---------------------------------------------------*/
.thanks-txt {
  text-align: center;
  margin-bottom: 40px;
}
.thanks-txt p.sp {
  margin-bottom: 30px;
  font-size: clamp(1.2rem, 1.125vw, 1.8rem);
}
.top-buton {
  cursor: pointer;
}
/*---------------------------------------------------
    フォーム エラー
---------------------------------------------------*/
.valid-tip, .form-area .wpcf7-not-valid-tip {
  width: 100%;
  position: relative;
  font-size: clamp(1.2rem, 0.875vw, 1.4rem);
  color: #d90000;
  /* display: none; */
  column-gap: 8px;
  align-items: center;
  margin-top: 5px;
  font-weight: 600;
  font-family: var(--noto);
}
.form-area .wpcf7-not-valid-tip {
  display: none !important;
}
.form-area .dl_file .wpcf7-not-valid-tip {
  display: block !important;
}
.valid-tip {
  display: none;
}
.form-area .wpcf7-not-valid-tip::before, .valid-tip::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("../img/entry/error_icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: 5px;
  -webkit-transform: translateY(3px);
  transform: translateY(3px);
}
.form dd input, .form dd textarea {
  padding: 10px 20px;
  width: calc(100% - 40px);
  border: 1px solid #dddddd;
  background-color: #fafafa;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  /*---------------------------------------------------
  フォーム 入力
---------------------------------------------------*/
  .form-area {
    padding: 40px 15px 50px;
  }
  .form .form-inner {
    margin-bottom: 40px;
  }
  .form__steps {
    font-size: 1.4rem;
    margin-bottom: 40px;
    column-gap: 2.67vw;
  }
  .form__steps .step {
    width: 60px;
    height: 60px;
  }
  .form__steps .arrow {
    width: 22px;
  }
  .form__steps .arrow::after {
    width: 7px;
    height: 7px;
  }
  /* フォーム */
  .form dt span.required {
    font-size: 1.2rem;
  }
  .form dd input, .form dd textarea {
    padding: 8px 10px;
    width: calc(100% - 20px);
  }
  /* チェックボックスデザイン */
  .input-item input[type="checkbox"], .privacy input[type="checkbox"] {
    padding-left: 28px;
  }
  .privacy .wpcf7-list-item {
    margin: 0;
  }
  .wpcf7-list-item-label::before {
    width: 18px;
    height: 18px;
    top: 1px;
  }
  .wpcf7-list-item-label::after {
    height: 5px;
    width: 10px;
    left: 3px;
  }
  .radio-wrap .wpcf7-list-item {
    width: 100%;
  }
  .radio-wrap dd {
    grid-row-gap: 10px;
  }
  .radio-text {
    font-size: 1.4rem;
  }
  .privacy {
    margin-bottom: 50px;
    /*padding-right: 6vw;*/
  }
  .button-wrap {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    grid-row-gap: 40px;
  }
  /*---------------------------------------------------
    フォーム 完了
---------------------------------------------------*/
  .thanks-txt {
    text-align: left;
  }
  .thanks-txt p.sp {
    font-size: 1.6rem;
  }
  /*---------------------------------------------------
    フォーム エラー
---------------------------------------------------*/
  .valid-tip, .form-area .wpcf7-not-valid-tip {
    font-size: 1.4rem;
  }
}
/*
  -----------------------------------
戻るボタン
  -----------------------------------
  */
.back-button {
  cursor: pointer;
}
.back-button .circle {
  background-color: #dddddd;
}
.back-button:hover .circle {
  background-color: var(--orange);
}
.back-button.btn::before {
  right: auto;
  left: 1.5vw;
}
@media (max-width: 768px) {
  .back-button.btn::before {
    left: 27px;
  }
}
.back-button.btn::after {
  right: auto;
  left: calc(1.5vw - 1px);
  border-left: 1px solid #1d1d1d;
  border-right: 0;
  border-bottom: 0;
  transform-origin: top left;
  -webkit-transform: translateY(0.5px) rotate(-45deg);
  transform: translateY(0.5px) rotate(-45deg);
}
@media (max-width: 768px) {
  .back-button.btn::after {
    left: 26px;
  }
}
.back-button input {
  display: block;
  width: 100%;
}
.wpcf7-spinner {
  display: none !important;
}
/*---------------------------------------------------
    2025.02.28reCAPTCHA設置 表示
---------------------------------------------------*/
.grecaptcha-badge { visibility: visible; }