/* ===========================
   Contact ページ専用スタイル
=========================== */

/* Web予約セクション
=========================== */
.contact-booking {
  padding: 120px 0 0;
  text-align: center;
}

.contact-booking-inner {
  padding: 0 10px 48px;
}

/* お問い合わせセクション
=========================== */
.contact-form-section {
  padding: 0 0 80px;
}

.contact-form-inner {
  padding: 40px 20px 0;
  text-align: center;
}

/* 共通：セクションタイトル
=========================== */
.contact-section-title {
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 32px;
  line-height: 1.67em;
  letter-spacing: 0.1em;
  color: var(--color-black);
  margin-bottom: 16px;
}

/* 共通：説明テキスト
=========================== */
.contact-section-text {
  font-family: var(--font-ja);
  font-weight: 400;
  font-size: 16px;
  line-height: 2em;
  color: var(--color-black);
  margin-bottom: 40px;
}

/* Web予約ボタン
=========================== */
.contact-btn-booking {
  display: inline-block;
  background: var(--color-dark-red);
  color: var(--color-white);
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.05em;
  padding: 18px 40px;
  text-decoration: none;
  transition: background 0.2s ease;
}

.contact-btn-booking:hover {
  background: var(--color-dark-red);
}

/* フォーム全体
=========================== */
.contact-form {
  text-align: left;
  margin-top: 32px;
}

/* フィールド単位
=========================== */
.contact-field {
  margin-bottom: 30px;
}

/* ラベル
=========================== */
.contact-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  color: var(--color-black);
  margin-bottom: 8px;
}

/* 必須バッジ
=========================== */
.contact-required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #b72c2c;
  color: var(--color-white);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 10px;
  line-height: 1;
  padding: 5px 5px;
  border-radius: 4px;
}

/* テキスト入力・メール・電話
=========================== */
.contact-input {
  display: block;
  width: 100%;
  background: #f2f2f2;
  border: 1px solid #585858;
  border-radius: 4px;
  padding: 5px 10px;
  font-family: var(--font-ja);
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-black);
  outline: none;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

#contact-tel {
  width: 36%;
}

.contact-input::placeholder {
  color: #585858;
}

.contact-input:focus {
  border-color: var(--color-gray-border);
}

/* テキストエリア
=========================== */
.contact-textarea {
  display: block;
  width: 100%;
  background: #f2f2f2;
  border: 1px solid #585858;
  border-radius: 4px;
  padding: 8px 10px;
  font-family: var(--font-ja);
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-black);
  outline: none;
  resize: vertical;
  transition: border-color 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.contact-textarea::placeholder {
  color: #585858;
}

.contact-textarea:focus {
  border-color: var(--color-gray-border);
}

/* 送信ボタン
=========================== */
.contact-submit-wrap {
  text-align: center;
  margin-top: 32px;
}

.contact-btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-red);
  color: var(--color-white);
  font-family: var(--font-ja);
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  padding: 18px 40px;
  border: none;
  cursor: pointer;
  transition:
    background 0.3s ease,
    color 0.3s ease;
  width: 100%;
  max-width: 256px;
}

.contact-btn-submit:hover {
  background: var(--color-dark-red);
}

/* 送信ボタンの矢印 */
.contact-btn-arrow {
  display: inline-block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* ===========================
   PC メディアクエリ（768px〜）
=========================== */
@media (min-width: 768px) {
  .contact-booking {
    padding: 160px 0 0;
  }

  .contact-booking-inner {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 0 64px;
  }

  .contact-form-inner {
    max-width: 736px;
    margin: 0 auto;
    padding: 48px 0 0;
  }

  .contact-section-title {
    font-size: 32px;
    line-height: 1.25em;
    margin-bottom: 20px;
  }

  .contact-btn-booking {
    max-width: 256px;
    width: 100%;
    padding: 20px 56px;
    font-size: 16px;
  }

  .contact-btn-submit {
    padding: 20px 20px;
    font-size: 16px;
  }

  #contact-tel {
    width: 17%;
  }

  .contact-btn-submit:hover {
    background: #e0e0e0;
    color: #272727;
  }

  .contact-btn-submit:hover .contact-btn-arrow {
    filter: brightness(0) invert(1) brightness(0.153);
  }
}
.contact_form__privacy {
  margin-bottom: 40px;
  margin-top: 40px;
}
.contact_form__checkbox-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
  color: var(--text-color);
  cursor: pointer;
}
body .contact-form-section .privacy_agree--note {
  text-align: center;
  margin-top: 10px;
}
.contact_form__checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  flex-shrink: 0;
}
.contact-form-section .contact_error {
  text-align: left;
}
/* end @media (min-width: 768px) */
