@charset "UTF-8";
/**************************************/
/**************************************/
/**************************************/
/* -------------------------
 * 共通
 * ------------------------- */
/* 改行 */
.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;
}

/* -------------------------
 * トップテキスト
 * ------------------------- */
.contact__ttl {
  font-size: var(--f22);
  font-weight: 500;
  text-align: center;
}

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

/* -------------------------
 * 共通
 * ------------------------- */
.contact__content {
  display: grid;
  grid-template-columns: 49.6rem 1fr;
  gap: 6rem 12%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 834px) {
  .contact__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/* -------------------------
 * サイド
 * ------------------------- */
.contact__side-main-txt {
  line-height: 1.36;
  font-size: var(--f22);
}
@media (max-width: 834px) {
  .contact__side-main-txt {
    text-align: center;
  }
}

.contact__side-note {
  margin-block: 4.8rem 6.5rem;
}
@media (max-width: 834px) {
  .contact__side-note {
    margin-block: 2rem 4rem;
  }
}

.contact__side-tel-label {
  font-size: var(--f18);
  line-height: 1.67;
}
@media (max-width: 834px) {
  .contact__side-tel-label {
    text-align: center;
  }
}

.contact__side-tel {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  padding: 0.6rem 2rem;
  background-color: #676e73;
  font-weight: 500;
  font-size: var(--f28);
  color: #fff;
  text-align: center;
  margin-block: 2rem 1.2rem;
}
@media (max-width: 834px) {
  .contact__side-tel {
    margin-inline: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 1rem;
  }
}

@media (max-width: 834px) {
  .contact__side-tel-info {
    text-align: center;
  }
}

/* -------------------------
 * フォーム
 * ------------------------- */
.contact__table {
  margin-bottom: 9rem;
}
@media (max-width: 834px) {
  .contact__table {
    margin-bottom: 4rem;
  }
}
.contact__table input {
  background-color: #e8e9ea;
  border: none;
  border-radius: 0;
  height: 7rem;
  width: 100%;
  padding: 1rem 2.8rem;
}
@media (max-width: 834px) {
  .contact__table input {
    padding-inline: 1rem;
    height: 5rem;
  }
}

textarea {
  background-color: #e8e9ea;
  border: none;
  border-radius: 0.5rem;
  width: 100%;
  height: 25rem;
  resize: vertical;
  padding: 1.5rem;
}
@media (max-width: 834px) {
  textarea {
    height: 30rem;
  }
}

.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;
  gap: 3rem;
  -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 {
    gap: 1.5rem;
  }
}
.contact__table-item + .contact__table-item {
  margin-top: 5rem;
}
@media (max-width: 834px) {
  .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: 1.6rem;
  font-size: var(--f16);
  white-space: nowrap;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 834px) {
  .contact__table-label {
    margin-top: 0;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    line-height: 1.7;
  }
}

.contact__table-parts {
  width: 100%;
  position: relative;
  font-size: var(--f16);
}

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

/* プレースホルダー */
input[type=text]:-ms-input-placeholder {
  color: #8e8e8d;
  font-size: 1.6rem;
}
input[type=text]::-ms-input-placeholder {
  color: #8e8e8d;
  font-size: 1.6rem;
}
input[type=text]::placeholder, input[type=text]:-ms-input-placeholder, input[type=text]::-ms-input-placeholder {
  color: #8e8e8d;
  font-size: 1.6rem;
}

/* -------------------------
 * ラジオボタン
 * ------------------------- */
.contact__table [type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  width: 4.1rem;
  height: 4.1rem;
  border: 0.2rem solid transparent;
  border-radius: 100vmax;
  background-color: #e8e9ea;
  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;
}
@media (max-width: 834px) {
  .contact__table [type=radio] {
    width: 2rem;
    height: 2rem;
    margin-top: 0em;
  }
}
.contact__table [type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 100vmax;
  background-color: #2e2e2e;
}
@media (max-width: 834px) {
  .contact__table [type=radio]:checked::after {
    width: 0.6rem;
    height: 0.6rem;
  }
}
.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: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 2;
  cursor: pointer;
}
@media (max-width: 834px) {
  .contact__radio-label {
    -webkit-column-gap: 0.8rem;
       -moz-column-gap: 0.8rem;
            column-gap: 0.8rem;
  }
}

.contact__table-parts--radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}

/* -------------------------
 * 郵便番号
 * ------------------------- */
.contact__table .p-postal-code {
  max-width: 38.4rem;
  margin-bottom: 2rem;
  margin-left: 1.6rem;
}
@media (max-width: 834px) {
  .contact__table .p-postal-code {
    max-width: 20rem;
    margin-left: 0.8rem;
    margin-bottom: 1rem;
  }
}

.contact__postal-mark {
  font-size: var(--f18);
  line-height: 1;
}

/* -------------------------
 * 生年月日（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;
  padding: 0.5em 1em;
}

.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__badge {
  border-radius: 100vmax;
  text-align: center;
  padding: 0.4rem 1.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(--f13);
  font-weight: 400;
  line-height: 1;
}

.contact__badge--required {
  border: 0.1rem solid var(--red);
  background: var(--red);
  color: #fff;
}

.contact__badge--optional {
  border: 0.1rem solid #000;
  color: #000;
}

/* -------------------------
 * エラー時
 * ------------------------- */
.contact__error-txt {
  color: var(--red);
  display: inline-block;
  margin-top: 1rem;
  margin-right: 1rem;
  white-space: nowrap;
  font-weight: 600;
}

.contact__error-bg {
  background-color: rgba(227, 36, 30, 0.1) !important;
}

/* -------------------------
 * 送信前チェック箇所
 * ------------------------- */
.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: 4.1rem;
  height: 4.1rem;
  border-radius: 100vmax;
  background-color: #e8e9ea;
  cursor: pointer;
}
@media (max-width: 834px) {
  .contact__agree-check {
    width: 2.8rem;
    height: 2.8rem;
  }
}
.contact__agree-check:checked::after {
  content: "";
  position: absolute;
  top: 1.3rem;
  left: 1.3rem;
  width: 1.5rem;
  height: 0.8rem;
  border-bottom: 0.2rem solid #222;
  border-left: 0.2rem solid #222;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media (max-width: 834px) {
  .contact__agree-check:checked::after {
    top: 0.9rem;
    left: 0.8rem;
    width: 1.2rem;
    height: 0.6rem;
  }
}

/* 同意チェックボックス */
.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: 1.8rem;
  font-size: var(--f16);
  font-weight: 500;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.contact__controller-checkbox label:hover {
  cursor: pointer;
}
@media (max-width: 834px) {
  .contact__controller-checkbox label {
    margin-inline: auto;
    gap: 0.5em;
  }
}

/* -------------------------
 * 送信ボタン
 * ------------------------- */
.contact__controller-submit a {
  text-decoration: none;
}

.contact__submit-btn {
  font-size: var(--f18);
  font-weight: 500;
  width: 28rem;
  max-width: none;
  height: 7rem;
  border-radius: 3.5rem;
  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-top: 4rem;
  cursor: pointer;
}
@media (max-width: 834px) {
  .contact__submit-btn {
    margin-top: 3rem;
  }
}
.contact__submit-btn:disabled {
  border: 1px solid #bbb;
  background-color: #bbb;
  cursor: default;
}

/* disabledでない時のみhoverを適用 */
.contact__submit-btn.base-btn--red[disabled]:hover {
  color: #fff;
  background-color: #bbb;
  pointer-events: none;
}
.contact__submit-btn.base-btn--red[disabled]:hover .btn-txt {
  -webkit-transform: translate(0, 0%);
          transform: translate(0, 0%);
}
.contact__submit-btn.base-btn--red[disabled]:hover .btn-txt:nth-child(1) {
  opacity: 1;
}
.contact__submit-btn.base-btn--red[disabled]:before {
  background-color: #bbb;
}

/* -------------------------
 * プライバシーポリシー
 * ------------------------- */
.contact__privacy-content {
  margin: 4.3rem auto 10rem;
  padding-right: 4rem;
  overflow-y: scroll;
  -ms-overflow-style: none;
  /* IE, Edge 対応 */
  scrollbar-width: none;
  /* Firefox 対応 */
  max-width: 1100px;
  max-height: 27rem;
}
.contact__privacy-content::-webkit-scrollbar {
  /* Chrome, Safari 対応 */
  display: none;
}
@media (max-width: 834px) {
  .contact__privacy-content {
    margin-block: 2rem 4rem;
  }
}

.simplebar-scrollbar::before {
  background: #222;
  border-radius: 100vmax;
  width: 0.6rem;
}

.simplebar-scrollbar.simplebar-visible::before {
  opacity: 1;
}

.contact__privacy-ttl {
  font-size: var(--f22);
  font-weight: 500;
  padding-bottom: 0.5rem;
  border-bottom: var(--line-gray);
}

.contact__privacy-sub-ttl {
  font-size: var(--f18);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 2rem;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8em;
}
.contact__privacy-sub-ttl::before {
  background: #2e2e2e;
  content: "";
  display: inline-block;
  width: 1.2rem;
  height: 0.6rem;
  border-radius: 3px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  margin-top: 0.7rem;
}
@media (max-width: 834px) {
  .contact__privacy-sub-ttl {
    margin-bottom: 1rem;
  }
}

.contact__privacy-heading {
  font-size: var(--f16);
  font-weight: 500;
  margin-bottom: 0.7rem;
  text-decoration: underline;
}
@media (max-width: 834px) {
  .contact__privacy-heading {
    margin-bottom: 0.3rem;
  }
}
.contact__privacy-heading:not(:first-child) {
  margin-top: 4rem;
}
@media (max-width: 834px) {
  .contact__privacy-heading:not(:first-child) {
    margin-top: 2.5rem;
  }
}

.contact__privacy-txt {
  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;
}
.contact__privacy-list > li {
  padding-left: 0.6em;
  position: relative;
}
.contact__privacy-list > li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 0.2rem;
  aspect-ratio: 1;
  background-color: #000;
  border-radius: 100vmax;
}

/* -------------------------
 * 送信完了ページ、エラーページ
 * ------------------------- */
.contact-result__ttl {
  font-size: var(--f22);
  font-weight: 500;
}

.contact-result__txt {
  margin-block: 5rem 12rem;
}
@media (max-width: 834px) {
  .contact-result__txt {
    margin-block: 3rem 5rem;
  }
}/*# sourceMappingURL=contact.css.map */