@charset "UTF-8";
/**********************************************/
/* ステップ */
/**********************************************/
:root {
  /* 線 */
  --step-line: #999;
  /*メインカラー*/
  --contact-main-color: #171C60;
  /* -------------------------
  * アクティブ状態
  * ------------------------- */
  /* 背景カラー */
  --step-active--bg: var(--contact-main-color);
  /* 数字テキストカラー */
  --step-active--num: #fff;
  /* テキストカラー */
  --step-active--text: #000;
  /* -------------------------
  * 非アクティブ状態
  * ------------------------- */
  /* 背景カラー */
  --step-disabled--bg: #E8E8F0;
  /* 数字テキストカラー */
  --step-disabled--num: var(--step-active--bg);
  /* テキストカラー */
  --step-disabled--text: #A7A6BA;
  /**********************************************/
  /* フォーム要素 */
  /**********************************************/
  /* -------------------------
  * 入力欄
  * ------------------------- */
  /* 背景 */
  --input-bg: #fff;
  /* 枠線 */
  --input-border: #a7a7a7;
  /* 角丸 */
  --input-radius: 5px;
  /* 余白(PC) */
  --input-padding-pc: 1.5rem;
  /* 余白(SP) */
  --input-padding-sp: 1rem;
  /* -------------------------
  * ラジオボタン
  * ------------------------- */
  /* 中央の丸 */
  --radio-dot: #222;
  /* -------------------------
  * チェックボックス
  * ------------------------- */
  /* チェックマーク */
  --checkbox-mark: #222;
  /* -------------------------
  * セレクトボックス
  * ------------------------- */
  /* 右端マーク */
  --select-mark: #222;
  /* -------------------------
  * 同意チェック
  * ------------------------- */
  /* チェックマーク */
  --agree-check-mark: #222;
  /* チェックボックスの背景 */
  --agree-check-mark-bg: #fff;
  /* -------------------------
  * プレースホルダー
  * ------------------------- */
  /* テキストカラー */
  --place-holder--text: #bbb;
  /* フォントサイズ */
  --place-holder--fz: 1.6rem;
  /* -------------------------
  * 任意バッジ
  * ------------------------- */
  /* テキストカラー */
  --badge-optional-text: #fff;
  /* 背景カラー */
  --badge-optional-bg: #A7A7A7;
  /* 枠線カラー */
  --badge-optional-border: #A7A7A7;
  /* -------------------------
  * 必須バッジ
  * ------------------------- */
  /* テキストカラー */
  --badge-required-text: #fff;
  /* 背景カラー */
  --badge-required-bg: #EC1A39;
  /* 枠線カラー */
  --badge-required-border: #EC1A39;
  /* -------------------------
  * エラー
  * ------------------------- */
  /* テキストカラー */
  --error-text: #EC1A39;
  /* 背景カラー */
  --error-bg: #FDDAE0;
}

/* -------------------------------------------
 * 共通
 * -------------------------------------------*/
/* 改行 */
.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 {
  overflow-x: clip;
}

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

.otheritem {
  margin-top: 0.5em;
}

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-inline: auto;
  margin-bottom: clamp(3rem, 3.5714285714vw, 6rem) 0;
}
.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-text {
  color: var(--step-active--text);
}

.contact__title-area {
  margin-block: clamp(3rem, 3.5714285714vw, 6rem);
}

.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-text {
  color: var(--step-disabled--text);
  text-align: center;
  margin-top: 0.7rem;
}

/* -------------------------------------------
 * トップテキスト
 * -------------------------------------------*/
.contact__title {
  font-size: var(--f22);
  font-weight: 500;
  text-align: center;
  margin-block: clamp(1.5rem, 1.7857142857vw, 3rem);
}

.contact__title-text {
  text-align: center;
}
@media (max-width: 834px) {
  .contact__title-text {
    text-align: left;
  }
}

.contact__title-texts {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  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__title-texts > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.contact__title-texts > li::before {
  content: "※";
}

/* -------------------------------------------
 * フォーム
 * -------------------------------------------*/
.contact__form {
  padding-block: 8rem;
  padding: clamp(3rem, 3.5714285714vw, 6rem) 3%;
  background: #F5F5F5;
  border-radius: 2rem;
}
@media (max-width: 834px) {
  .contact__form {
    padding-block: 3rem;
    padding-inline: 5%;
  }
}

.contact__table {
  margin-bottom: clamp(3rem, 4.7619047619vw, 8rem);
}
.contact__table input:not([type=checkbox]):not([type=radio]):not([type=file]) {
  background-color: var(--input-bg);
  border-radius: var(--input-radius);
  border: none;
  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 {
  background-color: var(--input-bg);
  border: none;
  border-radius: var(--input-radius);
  width: 100%;
  height: 30rem;
  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: 27rem 1fr;
  gap: 0rem 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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2rem;
  font-size: var(--f17);
  color: var(--contact-main-color);
  white-space: nowrap;
  font-weight: 600;
  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;
    margin-bottom: 0.5em;
  }
}

.contact__table-label--no-margin-top {
  margin-top: 0;
}

.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 1em;
}

/* -------------------------------------------
 * ラジオボタン
 * -------------------------------------------*/
.contact__table [type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  width: 2rem;
  height: 2rem;
  border: none;
  border-radius: 100vmax;
  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.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;
  background-color: var(--input-bg);
  border: none;
  border-radius: var(--input-radius);
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  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: var(--input-radius);
  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;
}

/* -------------------------------------------
 * 郵便番号
 * -------------------------------------------*/
@media (max-width: 834px) {
  .contact__postal-body {
    width: 100%;
  }
}

.contact__table .p-postal-code {
  max-width: 24rem;
}
@media (max-width: 834px) {
  .contact__table .p-postal-code {
    max-width: none;
  }
}

.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;
}
@media (max-width: 834px) {
  .contact__input--birthday-8digits {
    max-width: 100%;
  }
}

/* -------------------------------------------
 * 生年月日(入力欄3つ)の入力欄スタイル
 * -------------------------------------------*/
.contact__birthday-split {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 2rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 834px) {
  .contact__birthday-split {
    gap: 0.5em;
  }
}

.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: 0 1.4rem;
  display: grid;
  grid-template-areas: "input unit" "example example";
}
@media (max-width: 834px) {
  .contact__birthday-split-field {
    -webkit-column-gap: 0.3em;
       -moz-column-gap: 0.3em;
            column-gap: 0.3em;
  }
}
.contact__birthday-split-field .contact__example-text {
  grid-area: example;
}

.contact__input--birth-year {
  grid-area: input;
}

.contact__input--birth-month {
  grid-area: input;
}

.contact__input--birth-day {
  grid-area: input;
}

.contact__birthday-unit {
  grid-area: unit;
}

/* -------------------------------------------
 * ファイル添付
 * -------------------------------------------*/
input[type=file] {
  background-color: transparent;
  cursor: pointer;
}

.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: var(--contact-main-color);
  margin-bottom: 1rem;
}

/* ファイルを選択ボタンの装飾 */
input[type=file i]::-webkit-file-upload-button {
  background: var(--contact-main-color);
  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 {
  border-radius: 16px;
  text-align: center;
  padding: 0.2rem 1.5rem 0.4rem;
  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;
  color: var(--badge-optional-text);
  background-color: var(--badge-optional-bg);
}

.contact__badge--required {
  background: var(--badge-required-bg);
  color: var(--badge-required-text);
}

/* -------------------------------------------
 * エラー時
 * -------------------------------------------*/
.contact__error-text {
  color: var(--error-text);
  display: block;
  margin-top: 0.5rem;
  margin-right: 1rem;
  white-space: nowrap;
}

.contact__error-bg {
  background-color: var(--error-bg) !important;
}

/* -------------------------------------------
 * 入力例テキスト
 * -------------------------------------------*/
.contact__example-text {
  font-size: var(--f14);
  color: #666;
  margin-top: 0.5em;
}

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

.contact__privacy-note {
  font-size: var(--f15);
  font-weight: 500;
  margin-bottom: 1em;
}

.contact__privacy-note-link {
  text-decoration: underline;
  color: #EC1A39;
}
.contact__privacy-note-link:hover {
  text-decoration: underline;
}

/* 同意チェックマーク */
.contact__agree-check {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  width: 2.4rem;
  height: 2.4rem;
  background-color: var(--agree-check-mark-bg);
  border: 1px solid var(--input-border);
  border-radius: var(--input-radius);
  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: 2rem;
  font-size: var(--f15);
  font-weight: 500;
  color: var(--contact-main-color);
  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(3rem, 3.5714285714vw, 6rem);
}
.contact__controller-submit a {
  text-decoration: none;
}

.contact__submit-button {
  background-color: #000;
  border: none;
  color: #fff;
  font-size: var(--f18);
  width: 24rem;
  height: 7rem;
  border-radius: 100vmax;
  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;
  margin-inline: auto;
  cursor: pointer;
}
@media (max-width: 834px) {
  .contact__submit-button {
    width: 100%;
  }
}
.contact__submit-button:disabled {
  background-color: #bbb;
}

/* -------------------------------------------
 * プライバシーポリシー
 * -------------------------------------------*/
.contact__privacy-content {
  counter-reset: privacy-item;
  color: var(--contact-main-color);
  background-color: var(--input-bg);
  margin: 0 auto 3rem;
  padding: 5em 5%;
  overflow-y: scroll;
  max-width: 1100px;
  max-height: 35rem;
  border-radius: var(--input-radius);
}
@media (max-width: 834px) {
  .contact__privacy-content {
    padding: 2em 5%;
    margin: 4rem auto 2rem;
  }
}

.contact__privacy-title {
  font-size: var(--f42);
  text-align: center;
  font-weight: 500;
}

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

.contact__privacy-heading {
  counter-increment: privacy-item;
  font-size: var(--f18);
  font-weight: 500;
  margin-bottom: 2rem;
}
@media (max-width: 834px) {
  .contact__privacy-heading {
    margin-bottom: 1rem;
  }
}
.contact__privacy-heading::before {
  content: counter(privacy-item) ". ";
}
.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-text {
  font-size: var(--f15);
  line-height: 2;
}

.contact__privacy-signature {
  font-size: var(--f15);
  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.7em;
  width: 0.8rem;
  aspect-ratio: 1;
  background-color: #bbb;
  border-radius: 100vmax;
}/*# sourceMappingURL=contact.css.map */