@charset "UTF-8";
/* -------------------------
 * フォームのステップ
 * ------------------------- */
.contact-form__step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 230px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto 60px;
}
@media (max-width: 834px) {
  .contact-form__step {
    margin-bottom: 40px;
  }
}

.contact-form__step::after {
  content: "";
  position: absolute;
  top: 4rem;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 90%;
  height: 1px;
  background-color: #eee;
  z-index: 0;
}

.contact-form__step li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact-form__step-num {
  width: 8rem;
  aspect-ratio: 1;
  background-color: #fff;
  border: 1px solid #424553;
  border-radius: 50%;
  color: #424553;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 32px;
  margin-bottom: 8px;
  z-index: 1;
  padding-top: 3px;
}

.contact-form__step-txt {
  font-size: 16px;
  text-align: center;
  color: #000;
  display: block;
}

.contact-form__step li.active .contact-form__step-num {
  color: #fff;
  background-color: #424553;
}
.contact-form__step li.active .contact-form__step-txt {
  color: #000;
}

/* -------------------------
 * フォームメッセージ
 * ------------------------- */
.contact-form__top-message {
  margin-bottom: 8rem;
}
@media (max-width: 639px) {
  .contact-form__top-message {
    margin-bottom: 30px;
  }
}

.contact-form__top-message-ttl {
  text-align: center;
  font-size: 24px;
  margin-bottom: 30px;
  font-weight: 500;
}
@media (max-width: 639px) {
  .contact-form__top-message-ttl {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

.contact-form__top-message-txt {
  padding-left: 1em;
  text-indent: -1em;
  text-align: center;
}
.contact-form__top-message-txt.--error-thanks {
  padding-left: 0em;
  text-indent: 0em;
}
@media (max-width: 499px) {
  .contact-form__top-message-txt {
    text-align: left;
  }
}

.contact-form__top-link-btn {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 14px;
  max-width: 240px;
  border-radius: 50px;
  border: 1px solid #000;
  font-size: 16px;
}
.contact-form__top-link-btn:hover {
  color: var(--cream);
  background: #000;
}

/* -------------------------
 * フォーム項目
 * ------------------------- */
/*バリデーションエラー*/
.contact-form .error {
  color: #ff5550;
  margin-top: 6px;
  display: block;
}

.contact-form__parts .error-bg {
  border: 1px solid #ff5550 !important;
}

/*入力欄*/
input:not([type=radio]),
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 10px;
  background-color: #f8f8f8;
  border: none;
}

textarea {
  min-height: 260px;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
}

/*必須*/
.require-txt {
  color: #fff;
  background: #ff5550;
  padding: 0px 8px;
  font-size: 14px;
  -ms-flex-item-align: center;
      align-self: center;
}

/*コンテンツ*/
.contact-form__parts {
  width: 100%;
}
.contact-form__parts:has(.form-date) input, .contact-form__parts:has(.form-tel) input {
  max-width: 320px;
}
.contact-form__parts .form-experience:hover {
  cursor: pointer;
}

/* ラジオボタン全体 */
.contact-form [type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  width: 24px;
  height: 24px;
  background: #f8f8f8;
  border-radius: 9999px;
  cursor: pointer;
}

/* 選択時に表示される中央の丸 */
.contact-form [type=radio]::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  background-color: #424553;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.contact-form [type=radio]:checked::after {
  opacity: 1;
}

/* ラジオボタンの配置・整列 */
.contact-form__radio-btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px 5%;
  height: 50px;
}

/* ラベルの整列・デザイン */
.item-label--radio-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 834px) {
  .otheritem {
    margin-top: 20px;
  }
}

.contact-form__parts input.p-postal-code {
  max-width: 240px;
  margin-bottom: 20px;
  margin-left: 10px;
}
@media (max-width: 834px) {
  .contact-form__parts input.p-postal-code {
    margin-bottom: 10px;
  }
}

.contact-form__parts input.p-extended-address {
  display: block;
}

.contact-form__item {
  display: grid;
  grid-template-columns: 24% 74%;
  gap: 30px 2%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media (max-width: 834px) {
  .contact-form__item {
    grid-template-columns: 1fr;
    row-gap: 10px;
  }
}

.contact-form__item + .contact-form__item {
  margin-top: 80px;
}
@media (max-width: 834px) {
  .contact-form__item + .contact-form__item {
    margin-top: 20px;
  }
}

.contact-form__label {
  font-weight: 500;
  max-width: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 16px;
}
@media (max-width: 834px) {
  .contact-form__label {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    gap: 10px;
  }
}

/* -------------------------
 * プライバシーポリシー
 * ------------------------- */
.privacy-policy {
  padding: 20px;
  border: solid 1px #eee;
  border-radius: 10px;
  max-width: 982px;
  width: 90%;
  margin: 100px auto 0;
}
@media (max-width: 834px) {
  .privacy-policy {
    margin-top: 50px;
    width: 100%;
  }
}
.privacy-policy p {
  font-size: 16px;
  line-height: 2.2;
}

.privacy-policy__ttl {
  text-align: center;
  margin-bottom: 40px;
}
.privacy-policy__ttl .en {
  font-size: 68px;
  color: #cfd2df;
  margin-bottom: 32px;
}
@media (max-width: 834px) {
  .privacy-policy__ttl .en {
    font-size: 40px;
    margin-bottom: 16px;
    line-height: 1.4;
  }
}
.privacy-policy__ttl .ja {
  font-size: 20px;
  font-weight: 500;
}

.privacy-policy__inner {
  max-height: 470px;
  overflow-y: scroll;
  scrollbar-width: auto;
  scrollbar-color: #eee transparent;
}
.privacy-policy__inner::-webkit-scrollbar {
  width: 12px;
}
.privacy-policy__inner::-webkit-scrollbar-thumb {
  background-color: #eee;
  border-radius: 3px;
}
.privacy-policy__inner::-webkit-scrollbar-track {
  background-color: transparent;
}
.privacy-policy__inner > p:first-of-type {
  margin-bottom: 30px;
}

.privacy-policy__content-inner {
  max-width: 781px;
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 834px) {
  .privacy-policy__content-inner {
    width: 100%;
  }
}

p + .privacy-policy__list {
  margin-top: 30px;
}

.privacy-policy__list-item + .privacy-policy__list-item {
  margin-top: 30px;
}

.privacy-policy__list-ttl {
  font-size: 17px;
  font-weight: normal;
  border-bottom: 1px solid #000;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.privacy-policy__detail-list {
  margin-top: 5px;
  padding-left: 2em;
}
@media (max-width: 499px) {
  .privacy-policy__detail-list {
    padding-left: 1em;
  }
}

.privacy-policy__detail-list-item {
  padding-left: 6px;
  position: relative;
  line-height: 1.8;
}
.privacy-policy__detail-list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 2px;
  aspect-ratio: 1;
  background-color: #000;
  border-radius: 50%;
}

.privacy-policy__controller-checkbox {
  text-align: center;
  margin-block: 60px 100px;
}
@media (max-width: 834px) {
  .privacy-policy__controller-checkbox {
    margin-block: 20px 40px;
  }
}
.privacy-policy__controller-checkbox label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
}
.privacy-policy__controller-checkbox .agree-check {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 20px;
  aspect-ratio: 1;
  min-height: auto;
  border-radius: 2px;
  background-color: #eee;
  cursor: pointer;
  position: relative;
}
.privacy-policy__controller-checkbox .agree-check:checked::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 4px;
  width: 13px;
  height: 7px;
  border-bottom: 2px solid #424553;
  border-left: 2px solid #424553;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* -------------------------
 * 送信ボタン
 * ------------------------- */
.contact-form-submit-btn:not(:disabled) {
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.contact-form-submit-btn:not(:disabled):hover {
  opacity: 0.7;
}

.privacy-policy__controller-submit {
  text-align: center;
}
.privacy-policy__controller-submit input {
  background-color: #424553;
  font-size: 16px;
  width: 100%;
  max-width: 28rem;
  padding-block: 20px;
  text-align: center;
  color: #fff;
  border-radius: 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.privacy-policy__controller-submit input:disabled {
  background-color: #dfdfdf;
  color: #fff;
}

.contact__go-top-btn {
  width: 150px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 20px;
  border: 1px solid #eee;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin: 0 auto;
}
.contact__go-top-btn:hover {
  opacity: 0.7;
}
@media (max-width: 834px) {
  .contact__go-top-btn {
    font-size: 1.8rem;
  }
}

.contact-form__link-underline {
  border-bottom: 1px solid #000;
  line-height: 1;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.contact-form__link-underline:hover {
  opacity: 0.7;
}/*# sourceMappingURL=contact.css.map */