@charset "UTF-8";
/**********************************************/
/* ステップ */
/**********************************************/
:root {
  /* 線 */
  --step-line: #999;
  /*メインカラー*/
  --contact-main-color: #555;
  /* -------------------------
  * アクティブ状態
  * ------------------------- */
  /* 背景カラー */
  --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: #ccc;
  /* 角丸 */
  --input-radius: 8px;
  /* 余白(PC) */
  --input-padding-pc: 1.5rem;
  /* 余白(SP) */
  --input-padding-sp: 1rem;
  /* -------------------------
  * ラジオボタン
  * ------------------------- */
  /* 中央の丸 */
  --radio-dot: #0066ff;
  /* -------------------------
  * チェックボックス
  * ------------------------- */
  /* チェックマーク */
  --checkbox-mark: #0066ff;
  /* -------------------------
  * セレクトボックス
  * ------------------------- */
  /* 右端マーク */
  --select-mark: #0066ff;
  /* -------------------------
  * 同意チェック
  * ------------------------- */
  /* チェックマーク */
  --agree-check-mark: #0066ff;
  /* チェックボックスの背景 */
  --agree-check-mark-bg: #fff;
  /* -------------------------
  * プレースホルダー
  * ------------------------- */
  /* テキストカラー */
  --place-holder--text: #bbb;
  /* フォントサイズ */
  --place-holder--fz: 1.6rem;
  /* -------------------------
  * 任意バッジ
  * ------------------------- */
  /* テキストカラー */
  --badge-optional-text: #fff;
  /* 背景カラー */
  --badge-optional-bg: #555;
  /* 枠線カラー */
  --badge-optional-border: #555;
  /* -------------------------
  * 必須バッジ
  * ------------------------- */
  /* テキストカラー */
  --badge-required-text: #fff;
  /* 背景カラー */
  --badge-required-bg: #db000f;
  /* 枠線カラー */
  --badge-required-border: #db000f;
  /* -------------------------
  * エラー
  * ------------------------- */
  /* テキストカラー */
  --error-text: #db000f;
  /* 背景カラー */
  --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: flex;
  position: relative;
  width: 22rem;
  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%;
  transform: translate(-50%, -50%);
  width: 8rem;
  height: 0.1rem;
  background-color: var(--step-line);
  z-index: 0;
}
.contact__step li {
  display: flex;
  flex-direction: column;
  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__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: flex;
  justify-content: 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-area {
  margin-block: 0 3rem;
}

.contact__title {
  font-size: var(--fsp32);
  font-weight: 600;
  text-align: center;
  margin-block: 0 2.5rem;
}

.contact__title-text {
  font-size: var(--fsp24);
  color: #555;
  font-weight: 500;
  line-height: 1.66;
  text-align: start;
}
@media (max-width: 834px) {
  .contact__title-text {
    text-align: left;
  }
}

.contact__title-texts {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact__title-texts > li {
  display: flex;
  align-items: flex-start;
}

/* -------------------------------------------
 * フォーム
 * -------------------------------------------*/
.contact__form {
  margin-top: 3.5rem;
}
.contact__table {
  margin: 5rem 0;
}
.contact__table input:not([type=checkbox]):not([type=radio]):not([type=file]) {
  background-color: var(--input-bg);
  border-radius: var(--input-radius);
  border: 1px solid var(--input-border);
  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: 1px solid var(--input-border);
  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: 1fr;
  gap: 1rem 4%;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 834px) {
  .contact__table-item {
    display: flex;
    flex-direction: column;
  }
}
.contact__table-item + .contact__table-item {
  margin-top: 3rem;
}

.contact__table-label {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 1rem;
  font-size: var(--fsp28);
  color: var(--cbk);
  white-space: nowrap;
  font-weight: 600;
  margin-top: 1rem;
}
@media (max-width: 834px) {
  .contact__table-label {
    margin-top: 0;
    justify-content: flex-start;
    margin-bottom: 0.5em;
  }
}

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

.contact__table-inner--flex {
  display: flex;
  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: 2px solid var(--input-border);
  border-radius: 100vmax;
  background-color: var(--input-bg);
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  min-height: auto;
  padding: 0;
}
.contact__table [type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 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 {
  font-size: var(--fsp28);
  font-weight: 600;
  line-height: 1.66;
  display: flex;
  align-items: center;
  -moz-column-gap: 1.3rem;
       column-gap: 1.3rem;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  margin-top: 1rem;
}

/* -------------------------------------------
 * チェックボックス
 * -------------------------------------------*/
.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;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 0.3em;
  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);
  transform: rotate(-45deg);
}
.contact__table [type=checkbox]:focus {
  outline: none;
}

.contact__checkbox-label {
  display: flex;
  -moz-column-gap: 1.3rem;
       column-gap: 1.3rem;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.66;
  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);
  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: flex;
  gap: 0.5em;
}

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

.contact__address-child-label {
  font-size: var(--fsp28);
  font-weight: 600;
  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;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 834px) {
  .contact__birthday-split {
    gap: 0.5em;
  }
}

.contact__birthday-split-field {
  display: flex;
  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 {
    -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: flex;
  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 {
  font-size: var(--f14);
  line-height: 1.4;
  font-weight: 400;
  border-radius: 7px;
  padding: 0.4rem 1rem 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  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 {
  border: 2px solid var(--error-text) !important;
  background-color: var(--error-bg) !important;
}

/* -------------------------------------------
 * 入力例テキスト
 * -------------------------------------------*/
.contact__example-text {
  font-size: var(--fsp22);
  color: var(--cbk5);
  font-weight: 400;
  margin-top: 0.5em;
}

/* -------------------------------------------
 * 送信前チェック箇所
 * -------------------------------------------*/
.contact__controller {
  line-height: 1.66;
}

.contact__privacy-note {
  margin-bottom: 2em;
}

.contact__privacy-note-link {
  text-decoration: underline;
  color: #db000f;
}
.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: 5px;
  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);
  transform: rotate(-45deg);
}

/* 同意チェックボックス */
.contact__controller-checkbox {
  border-radius: 15px;
  border: 1px solid #ccc;
  padding: 3rem 0;
}
.contact__controller-checkbox label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  font-size: var(--fsp28);
  font-weight: 500;
  color: var(--contact-main-color);
  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 {
  border: none;
  color: #fff;
  background-color: #0066ff;
  box-shadow: 0 4px 0 #0059c6;
  font-size: var(--fsp40);
  font-weight: 600;
  width: 100%;
  height: 8rem;
  border-radius: 15px;
  display: flex;
  align-items: 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;
  box-shadow: 0 4px 0 #494949;
}

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

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

.contact__privacy-sub-title {
  font-size: var(--fsp36);
  color: #010101;
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 2rem;
}
@media (max-width: 834px) {
  .contact__privacy-sub-title {
    margin-bottom: 3rem;
  }
}

.contact__privacy-heading {
  counter-increment: privacy-item;
  font-size: var(--fsp24);
  font-weight: 600;
  color: #010101;
  background: #f3f3f3;
  border-radius: 5px;
  padding: 2rem 2rem;
  margin-bottom: 1.5rem;
}
.contact__privacy-heading:not(:first-child) {
  margin-top: 3rem;
}
@media (max-width: 834px) {
  .contact__privacy-heading:not(:first-child) {
    margin-top: 3rem;
  }
}

.contact__privacy-text {
  font-size: var(--fsp24);
  line-height: 1.66;
  font-weight: 500;
}

.contact__privacy-signature {
  font-size: var(--fsp24);
  color: var(--cbk5);
  font-weight: 600;
  line-height: 1.66;
  margin-top: 3rem;
}

.contact__privacy-list {
  font-size: var(--fsp24);
  font-weight: 500;
  line-height: 1.66;
  padding-left: 0.5em;
  margin-top: 1rem;
}
.contact__privacy-list > li {
  padding-left: 1em;
  position: relative;
}
.contact__privacy-list > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 0.5rem;
  aspect-ratio: 1;
  background-color: #555;
  border-radius: 100vmax;
}/*# sourceMappingURL=contact.css.map */