@charset "UTF-8";
/**************************************/
/* ステップ */
/**************************************/
:root {
  /* 線 */
  --step-line: #dedede;
  /* アクティブ状態 */
  --step-active--bg: linear-gradient(90deg, #9c0000, #e0310c);
  /* 背景カラー */
  --step-active--num: #fff;
  /* 数字テキストカラー */
  --step-active--txt: #000;
  /* テキストカラー */
  /* 非アクティブ状態 */
  --step-disabled--bg: #bababa;
  /* 背景カラー */
  --step-disabled--num: #ddd;
  /* 数字テキストカラー */
  --step-disabled--txt: var(--step-disabled--bg);
  /* テキストカラー */
  /**************************************/
  /* フォーム要素 */
  /**************************************/
  /* 入力欄 */
  --input-bg: #fff;
  /* 背景 */
  --input-padding-pc: 1.5rem;
  /* 余白(PC) */
  --input-padding-sp: 1rem;
  /* 余白(SP) */
  /* ラジオボタン */
  --radio-dot: #3399fc;
  /* 中央の丸 */
  /* チェックボックス */
  --checkbox-mark: #222;
  /* チェックマーク */
  /* セレクトボックス */
  --select-mark: #222;
  /* 右端マーク */
  /* 同意チェック */
  --agree-check-mark: #3399fc;
  /* チェックマーク */
  --agree-check-mark-bg: #fff;
  /* チェックボックスの背景 */
  /* プレースホルダー */
  --place-holder--txt: #bbb;
  /* テキストカラー */
  --place-holder--fz: 1.6rem;
  /* フォントサイズ */
}

/* -------------------------
 * 共通
 * ------------------------- */
/* 改行 */
.br-sp {
  display: none;
}
@media (max-width: 834px) {
  .br-sp {
    display: block;
  }
}

.no-br-sp {
  display: block;
}
@media (max-width: 834px) {
  .no-br-sp {
    display: none;
  }
}

.contact__underline,
a.contact__underline:hover {
  text-decoration: underline;
}

.otheritem {
  margin-top: 0.5em;
}

/* ボタン */
.contact__btn {
  max-width: 34rem;
}

/* 入力例テキスト */
.contact__example {
  font-size: var(--f15);
  color: #898989;
  margin-top: 0.2em;
}

/* safariで入力時ズームさせない */
input,
textarea,
select {
  font-size: 1.6rem;
}

/* -------------------------
 * フォームのステップ
 * ------------------------- */
.contact__step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  width: 22rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto 6rem;
}
@media (max-width: 834px) {
  .contact__step {
    margin-bottom: 4rem;
  }
}
.contact__step::after {
  content: "";
  position: absolute;
  top: 3.5rem;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 8rem;
  height: 0.1rem;
  background-color: var(--step-line);
  z-index: 0;
}
.contact__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__step li.active .contact__step-num {
  background: var(--step-active--bg);
  color: var(--step-active--num);
}
.contact__step li.active .contact__step-txt {
  color: var(--step-active--txt);
}

.contact__step-num {
  width: 7rem;
  font-size: var(--f26);
  aspect-ratio: 1;
  background-color: var(--step-disabled--bg);
  border-radius: 100vmax;
  color: var(--step-disabled--num);
  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;
  z-index: 1;
  line-height: 1;
}

.contact__step-txt {
  color: var(--step-disabled--txt);
  text-align: center;
  margin-top: 0.7rem;
}

/* -------------------------
 * フォーカス
 * ------------------------- */
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=password]:focus,
textarea:focus {
  outline: none;
  -webkit-box-shadow: 0 0 5px rgba(183, 183, 183, 0.75);
          box-shadow: 0 0 5px rgba(183, 183, 183, 0.75);
}

/* -------------------------
 * プレースホルダー
 * ------------------------- */
input[type=text]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder, input[type=url]::-webkit-input-placeholder, input[type=search]::-webkit-input-placeholder, input[type=number]::-webkit-input-placeholder, input[type=password]::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: var(--place-holder--txt);
  font-size: var(--place-holder--fz);
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=url]::-moz-placeholder, input[type=search]::-moz-placeholder, input[type=number]::-moz-placeholder, input[type=password]::-moz-placeholder, textarea::-moz-placeholder {
  color: var(--place-holder--txt);
  font-size: var(--place-holder--fz);
}
input[type=text]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, input[type=url]:-ms-input-placeholder, input[type=search]:-ms-input-placeholder, input[type=number]:-ms-input-placeholder, input[type=password]:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: var(--place-holder--txt);
  font-size: var(--place-holder--fz);
}
input[type=text]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder, input[type=tel]::-ms-input-placeholder, input[type=url]::-ms-input-placeholder, input[type=search]::-ms-input-placeholder, input[type=number]::-ms-input-placeholder, input[type=password]::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: var(--place-holder--txt);
  font-size: var(--place-holder--fz);
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=url]::placeholder,
input[type=search]::placeholder,
input[type=number]::placeholder,
input[type=password]::placeholder,
textarea::placeholder {
  color: var(--place-holder--txt);
  font-size: var(--place-holder--fz);
}

/* -------------------------
 * トップテキスト
 * ------------------------- */
.contact__ttl {
  font-size: var(--f22);
  font-weight: bold;
  margin-bottom: 1em;
}

* + .contact__btn {
  margin-top: clamp(2rem, 7.1428571429vw, 12rem);
}

.contact-thanks .contact__ttl,
.contact-error .contact__ttl {
  text-align: center;
}
.contact-thanks .contact__ttl-txt,
.contact-error .contact__ttl-txt {
  text-align: center;
}
@media (max-width: 834px) {
  .contact-thanks .contact__ttl-txt,
  .contact-error .contact__ttl-txt {
    text-align: left;
  }
}

/* -------------------------
 * フォーム
 * ------------------------- */
.contact__form {
  padding-top: clamp(5rem, 4.7619047619vw, 8rem);
}

.contact__table input:not([type=checkbox]):not([type=radio]):not([type=file]) {
  background-color: var(--input-bg);
  border: 1px solid #e5e5e5;
  border-radius: 5px;
  height: 5.4rem;
  width: 100%;
  padding: var(--input-padding-pc);
}
@media (max-width: 834px) {
  .contact__table input:not([type=checkbox]):not([type=radio]):not([type=file]) {
    padding: var(--input-padding-sp);
  }
}
.contact__table textarea {
  border: 1px solid #e5e5e5;
  background-color: var(--input-bg);
  border-radius: 5px;
  width: 100%;
  min-height: 22.6rem;
  resize: vertical;
  padding: var(--input-padding-pc);
}
@media (max-width: 834px) {
  .contact__table textarea {
    padding: var(--input-padding-sp);
  }
}

.contact__table-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5em 4%;
  -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__table-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.contact__table-item + .contact__table-item {
  margin-top: 3rem;
}

.contact__table-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8em;
  font-size: var(--f19);
  white-space: nowrap;
  font-weight: 500;
  margin-top: 1rem;
}
@media (max-width: 834px) {
  .contact__table-label {
    margin-top: 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.contact__table-parts {
  width: 100%;
  position: relative;
}

.contact__table-inner--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5em 2.5em;
}

/* -------------------------
 * ラジオボタン
 * ------------------------- */
.contact__table [type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  width: 2rem;
  height: 2rem;
  border: 0.2rem solid transparent;
  border-radius: 100vmax;
  border: 1px solid #e5e5e5;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 0.2em;
  min-height: auto;
  padding: 0;
}
.contact__table [type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1rem;
  height: 1rem;
  border-radius: 100vmax;
  background-color: var(--radio-dot);
}
.contact__table [type=radio]:focus {
  outline: none;
}

.contact__radio-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.3rem;
     -moz-column-gap: 1.3rem;
          column-gap: 1.3rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 2;
  cursor: pointer;
}

/* -------------------------
 * チェックボックス
 * ------------------------- */
.contact__table [type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  width: 2rem;
  height: 2rem;
  border: 0.2rem solid transparent;
  background-color: var(--input-bg);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 0.4em;
  min-height: auto;
  padding: 0;
}
.contact__table [type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: -0.1rem;
  left: 0.4rem;
  left: 0.4rem;
  width: 1.5rem;
  height: 0.8rem;
  border-bottom: 0.2rem solid var(--checkbox-mark);
  border-left: 0.2rem solid var(--checkbox-mark);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.contact__table [type=checkbox]:focus {
  outline: none;
}

.contact__checkbox-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 1.3rem;
     -moz-column-gap: 1.3rem;
          column-gap: 1.3rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 2;
  cursor: pointer;
}

/* -------------------------
 * セレクトボックス
 * ------------------------- */
.contact__table select {
  background-color: var(--input-bg);
  border: none;
  border-radius: 0;
  height: 5.4rem;
  line-height: 1;
  margin-top: 1rem;
  width: 100%;
  position: relative;
  appearance: none;
  color: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: var(--input-padding-pc);
}
@media (max-width: 834px) {
  .contact__table select {
    padding: var(--input-padding-sp);
  }
}
.contact__table select:hover {
  cursor: pointer;
}

/* マーク */
.contact__input--select-mark {
  position: absolute;
  right: 1.6rem;
  top: 2em;
  margin: auto;
  content: "";
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  border-right: 0.1rem solid var(--select-mark);
  border-bottom: 0.1rem solid var(--select-mark);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  pointer-events: none;
}

/* -------------------------
 * 郵便番号
 * ------------------------- */
.contact__table .p-postal-code {
  max-width: 24rem;
}

.contact__postal-mark {
  font-size: 1.8rem;
  margin-top: 0.5em;
}

.contact__postal-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em;
}

.contact__postal-group + .contact__address-child {
  margin-top: 1rem;
}

.contact__address-child-label {
  font-size: var(--f16);
  margin-bottom: 0.5em;
  display: inline-block;
}

.contact__address-child + .contact__address-child {
  margin-top: 0.6em;
}

/* -------------------------
 * 生年月日(8桁入力)の入力欄スタイル
 * ------------------------- */
.contact__input--birthday-8digits {
  max-width: 20rem;
}

/* -------------------------
 * 生年月日(入力欄3つ)の入力欄スタイル
 * ------------------------- */
.contact__birthday-split {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

input.contact__input--birth-year,
input.contact__input--birth-month,
input.contact__input--birth-day {
  width: 9rem;
}

.contact__birthday-split-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 1.4rem;
}

/* -------------------------
 * ファイル添付
 * ------------------------- */
.contact__table input[type=file] {
  height: auto;
  padding: 0;
  white-space: nowrap;
  word-break: keep-all;
  background-color: transparent;
  cursor: pointer;
  min-width: 400px;
  display: inline-block;
  min-width: 450px;
  width: auto;
}

.contact__file-inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0;
}

.contact__file-label {
  cursor: pointer;
}
.contact__file-label + .contact__file-label {
  margin-top: 1rem;
}

.contact__file-note {
  font-size: var(--f14);
  color: #666;
  margin-bottom: 1rem;
}

/* ファイルを選択ボタンの装飾 */
input[type=file i]::-webkit-file-upload-button {
  background: #000;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  width: 200px;
  height: auto;
  padding-block: 0.5rem;
  border-radius: 100vmax;
  display: inline-block;
  cursor: pointer;
  margin-right: 1em;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  flex-shrink: 0;
}

input#file-upload-button:hover,
input[type=file i]::-webkit-file-upload-button:hover {
  opacity: 0.7;
  cursor: pointer;
}

/* -------------------------
 * 必須、任意のラベル
 * ------------------------- */
.contact__badge {
  text-align: center;
  padding: 0.3em 0.8em 0.3em;
  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;
  font-size: var(--f14);
  line-height: 1;
  border: 0.1rem solid #b7b7b7;
  background: #b7b7b7;
  color: #fff;
}

.contact__badge--required {
  border: 0.1rem solid #e60012;
  background: #e60012;
}

/* -------------------------
 * エラー時
 * ------------------------- */
.contact__error-txt {
  color: #e60012;
  display: block;
  margin-top: 0.5rem;
  margin-right: 1rem;
  white-space: nowrap;
  font-size: var(--f15);
}

/* -------------------------
 * 送信前チェック箇所
 * ------------------------- */
.contact__controller {
  font-size: var(--f16);
  font-weight: bold;
  text-align: center;
}

/* 同意チェックマーク */
.contact__agree-check {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  width: 2.2rem;
  height: 2.2rem;
  background-color: var(--agree-check-mark-bg);
  border: 1px solid #cdcdcd;
  cursor: pointer;
}
@media (max-width: 834px) {
  .contact__agree-check {
    width: 1.8rem;
    height: 1.8rem;
  }
}
.contact__agree-check:checked::after {
  content: "";
  position: absolute;
  top: -0.1rem;
  left: 0.4rem;
  width: 2rem;
  height: 1rem;
  border-bottom: 0.3rem solid var(--agree-check-mark);
  border-left: 0.3rem solid var(--agree-check-mark);
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* 同意チェックボックス */
.contact__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: 0.8em;
  font-size: var(--f18);
  color: #898989;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.contact__controller-checkbox label:hover {
  cursor: pointer;
}

/* -------------------------
 * 送信ボタン
 * ------------------------- */
.contact__controller-submit {
  margin-top: clamp(5rem, 8.3333333333vw, 14rem);
}
.contact__controller-submit a {
  text-decoration: none;
}

.contact__submit-btn {
  border: none;
  font-size: var(--f20);
  cursor: pointer;
}
.contact__submit-btn:disabled {
  background: #bbb;
  cursor: auto;
}

.btn--gradient.btn.contact__submit-btn {
  padding-block: 1.5em;
}

/* -------------------------
 * プライバシーポリシー
 * ------------------------- */
.contact__privacy {
  margin-top: clamp(5rem, 8.3333333333vw, 14rem);
}

.contact__privacy-content {
  background-color: #f2f2f2;
  margin: 0 auto clamp(2rem, 3.5714285714vw, 6rem);
  padding: clamp(4rem, 4.1666666667vw, 7rem) min(5%, 6.5rem);
  overflow-y: scroll;
  max-height: 27rem;
}

.contact__privacy-ttl {
  font-size: var(--f42);
  margin-bottom: clamp(3rem, 2.380952381vw, 4rem);
  text-align: center;
  font-weight: 500;
}

.contact__privacy-sub-ttl {
  font-size: var(--f30);
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 7rem;
}
@media (max-width: 834px) {
  .contact__privacy-sub-ttl {
    margin-bottom: 3rem;
  }
}

.contact__privacy-heading {
  font-size: var(--f20);
  color: #4f89c8;
  margin-bottom: 0.8em;
  border-bottom: 1px solid #4f89c8;
  padding-bottom: 0.7em;
}
.contact__privacy-heading:not(:first-child) {
  margin-top: 3rem;
}
@media (max-width: 834px) {
  .contact__privacy-heading:not(:first-child) {
    margin-top: 2.5rem;
  }
}

.contact__privacy-txt {
  line-height: 2;
}

.contact__privacy-signature {
  margin-top: 3rem;
  line-height: 2;
}

.contact__privacy-list {
  line-height: 2;
  padding-left: 1em;
}
.contact__privacy-list > li {
  padding-left: 1em;
  position: relative;
}
.contact__privacy-list > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 1.2rem;
  aspect-ratio: 1;
  background-color: #bbb;
  border-radius: 100vmax;
}

a.contact__tel-btn[href^="tel:"] {
  pointer-events: all;
  margin-top: 0.5em;
  font-size: var(--f20);
}

.contact-error__inner {
  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;
}/*# sourceMappingURL=contact.css.map */