@charset "UTF-8";

    /* -----------------------------
       Reset
    ----------------------------- */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: 'Open Sans', sans-serif;
      background-color: #1C1C1C; /* ダーク系背景 */
      color: #ECECEC;
    }
    a {
      text-decoration: none;
      color: inherit;
    }
    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    /* -----------------------------
       Main Colors
    ----------------------------- */
    :root {
      --gold: #C8A165;   /* ゴールド系 */
      --dark-bg: #1C1C1C;
      --light-bg: #2A2A2A; 
      --white: #FFFFFF;
      --gray: #ECECEC;
    }

    /* -----------------------------
       Header
    ----------------------------- */
    header {
      position: sticky;
      top: 0;
      z-index: 999;
      background-color: rgba(28, 28, 28, 0.95); /* 透明度で背景画像と重ならないように */
      backdrop-filter: blur(4px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 24px;
      border-bottom: 1px solid rgba(200, 161, 101, 0.2);
    }

    .logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--gold);
    }
    nav ul {
      list-style: none;
      display: flex;
      gap: 20px;
    }
    nav ul li {
      cursor: pointer;
      transition: color 0.3s;
    }
    nav ul li:hover {
      color: var(--gold);
    }

    .search-bar input {
      background: #2A2A2A;
      border: 1px solid #444;
      padding: 6px 12px;
      border-radius: 4px;
      color: #FFF;
      outline: none;
    }
    .search-bar input::placeholder {
      color: #AAA;
    }

    /* -----------------------------
       Hero Section
    ----------------------------- */
    .hero {
      position: relative;
      height: 60vh;
      min-height: 400px;
      background: url('https://via.placeholder.com/1200x800?text=Luxury+Spa+Background') center/cover no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .hero-overlay {
      position: absolute;
      top: 0; 
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.4); /* 半透明オーバーレイ */
    }
    .hero-content {
      position: relative;
      text-align: center;
      color: #FFF;
      max-width: 800px;
      z-index: 1; /* オーバーレイより前面 */
    }
    .hero-content h1 {
      font-family: 'Playfair Display', serif;
      font-size: 3rem;
      margin-bottom: 10px;
    }
    .hero-content .rating {
      color: var(--gold);
      margin-bottom: 16px;
      font-size: 1.2rem;
    }
    .hero-content p {
      font-size: 1.1rem;
      margin-bottom: 20px;
      line-height: 1.6;
    }
    .cta-btn {
      display: inline-block;
      padding: 12px 24px;
      border: 2px solid var(--gold);
      color: var(--gold);
      border-radius: 4px;
      font-weight: 600;
      transition: all 0.3s;
    }
    .cta-btn:hover {
      background-color: var(--gold);
      color: #1C1C1C;
    }

    /* -----------------------------
       Salon Info Section
    ----------------------------- */
    .salon-info {
      max-width: 1100px;
      margin: 40px auto;
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      padding: 0 20px;
    }
    .info-text {
      flex: 1 1 400px;
    }
    .info-text h2 {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      margin-bottom: 16px;
      color: var(--gold);
    }
    .info-text p {
      margin-bottom: 12px;
      line-height: 1.6;
    }
    .info-details p {
      margin-bottom: 6px;
    }
    .book-now-btn {
      display: inline-block;
      margin-top: 20px;
      padding: 12px 24px;
      background-color: var(--gold);
      color: #1C1C1C;
      font-weight: 600;
      border-radius: 4px;
      transition: background 0.3s;
    }
    .book-now-btn:hover {
      background-color: #dab98c;
    }

    .info-map {
      flex: 1 1 400px;
    }
    .info-map iframe {
      width: 100%;
      height: 300px;
      border: 2px solid var(--gold);
      border-radius: 8px;
    }

    /* -----------------------------
       Gallery
    ----------------------------- */
    .gallery {
      max-width: 1100px;
      margin: 40px auto;
      padding: 0 20px;
    }
    .gallery h2 {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      margin-bottom: 16px;
      color: var(--gold);
    }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 12px;
    }
    .gallery-grid img {
      border-radius: 4px;
      cursor: pointer;
      transition: transform 0.2s;
      object-fit: cover;
      height: 140px;
    }
    .gallery-grid img:hover {
      transform: scale(1.03);
    }

    /* -----------------------------
       Services
    ----------------------------- */
    .services {
      max-width: 1100px;
      margin: 40px auto;
      padding: 0 20px;
    }
    .services h2 {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      margin-bottom: 16px;
      color: var(--gold);
    }
    .service-item {
      display: flex;
      justify-content: space-between;
      border-bottom: 1px solid rgba(200, 161, 101, 0.3);
      padding: 12px 0;
      align-items: center;
    }
    .service-name {
      font-weight: 600;
    }
    .service-price {
      color: var(--gold);
      font-weight: 600;
    }

    /* -----------------------------
       Reviews
    ----------------------------- */
    .reviews {
      max-width: 1100px;
      margin: 40px auto;
      padding: 0 20px;
    }
    .reviews h2 {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      margin-bottom: 16px;
      color: var(--gold);
    }
    .review {
      margin-bottom: 20px;
      border-bottom: 1px dashed rgba(255,255,255,0.2);
      padding-bottom: 10px;
    }
    .review .review-rating {
      color: var(--gold);
      margin-bottom: 5px;
      font-size: 1.1rem;
    }
    .review h3 {
      font-weight: 600;
      margin-bottom: 5px;
    }
    .review p {
      line-height: 1.6;
    }
    .add-review-btn {
      display: inline-block;
      margin-top: 20px;
      padding: 10px 20px;
      background: transparent;
      border: 2px solid var(--gold);
      color: var(--gold);
      border-radius: 4px;
      font-weight: 600;
      transition: background 0.3s;
    }
    .add-review-btn:hover {
      background: var(--gold);
      color: #1C1C1C;
    }

    /* -----------------------------
       Footer
    ----------------------------- */
    footer {
      background-color: #2A2A2A;
      padding: 20px;
      text-align: center;
      color: #FFF;
      margin-top: 40px;
    }
    footer p {
      margin-bottom: 10px;
    }
    .social-links a {
      display: inline-block;
      margin: 0 6px;
      color: #FFF;
      border: 1px solid #FFF;
      border-radius: 50%;
      width: 30px;
      height: 30px;
      line-height: 30px;
      text-align: center;
      transition: background 0.3s;
    }
    .social-links a:hover {
      background-color: var(--gold);
      border-color: var(--gold);
      color: #1C1C1C;
    }

    /* -----------------------------
       Modal (Image Preview)
    ----------------------------- */
    .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.7);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 9999;
    }
    .modal-overlay img {
      max-width: 80%;
      max-height: 80%;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    }

/* =========================================
   Reservation Form & Bootstrap Overrides
   (append to your existing luxury CSS)
========================================= */

/* 
  Bootstrapベースのクラスに対する簡易オーバーライド。
  ※ 既にBootstrapを読み込んでいる場合、後から読み込むCSSで上書きします。
*/

/* テーブル全体 */
.table,
.table-bordered,
.table-sm {
  color: var(--gray);
  background-color: transparent; /* デフォルトの白背景を消す */
  border-color: rgba(200, 161, 101, 0.3) !important; /* ゴールド系の薄いライン */
}

/* テーブルの枠線やセル */
.table-bordered> :not(caption)>* {
  border-width: 1px;
  border-color: rgba(200, 161, 101, 0.3) !important;
}

/* テーブルのヘッダー行 */
.table thead th {
  background-color: var(--light-bg);
  color: var(--gray);
  border-color: rgba(200, 161, 101, 0.3) !important;
}

/* テーブルのthセル */
.table th {
  color: var(--gold);
  font-weight: 600;
  background-color: transparent;
  border-color: rgba(200, 161, 101, 0.3) !important;
}

/* テーブル内の tdセル */
.table td {
  border-color: rgba(200, 161, 101, 0.3) !important;
}

/* table_appointmentなど独自クラスのテーブル */
.table_appointment {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1rem;
}

.table_appointment th,
.table_appointment td {
  padding: 8px;
  border-bottom: 1px dashed rgba(200, 161, 101, 0.3);
}

/* ラベルや見出し */
h5 {
  color: var(--gold);
  margin-top: 1rem;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

/* フォーム系(Bootstrap .form-control, .form-selectなど) */
.form-control,
.form-select {
  background-color: #2A2A2A;
  border: 1px solid #444;
  color: #FFF;
  font-family: 'Open Sans', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: none; /* 余計なアウトラインを消す */
}

.form-control::placeholder {
  color: #AAA;
}

/* is-invalid クラス（バリデーションエラー時の枠線強調） */
.form-control.is-invalid,
.form-select.is-invalid {
  border-color: #d9534f !important; /* 赤系 */
  box-shadow: 0 0 0 0.2rem rgba(217,83,79,0.25);
}

/* ボタン関連 */
.btn {
  font-weight: 600;
  border-radius: 4px;
}

/* Bootstrapの .btn-primary をゴールド系に */
.btn-primary {
  background-color: var(--gold) !important;
  border-color: var(--gold) !important;
  color: #1C1C1C !important;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #dab98c !important; 
  border-color: #dab98c !important;
  color: #1C1C1C !important;
}

/* btn-outline-primary のオーバーライド */
.btn-outline-primary {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
}
.btn-outline-primary:hover {
  background-color: var(--gold) !important;
  color: #1C1C1C !important;
}

/* 
  ボタン型のチェック（セラピスト選択部分）
  <input type="checkbox" class="btn-check" id="therapistX" ... >
  <label class="btn btn-outline-primary" for="therapistX">Therapist</label>
*/
.btn-check:checked + .btn-outline-primary {
  background-color: var(--gold) !important;
  border-color: var(--gold) !important;
  color: #1C1C1C !important;
}

/* 予約ボタンなど */
.btn-pill {
  border-radius: 50px !important; /* pill風 */
}

/* .btn.btn-primary （Make Reservationボタンなど） */
.btn.btn-primary {
  background-color: var(--gold);
  color: #1C1C1C;
  border: 2px solid var(--gold);
}

/* ラジオボタンで時刻を選択する .button-radio */
.button-radio input[type="radio"] {
  display: none;
}

.button-radio label {
  line-height: 18px;
  display: inline-block;
  color: #FFF;
  padding: 4px 8px;
  margin: 6px 4px;
  border: 1px solid var(--gold);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 0.9rem;
}

.button-radio input[type="radio"]:checked + label {
  background-color: var(--gold);
  color: #1C1C1C;
}

/* text-center, などBootstrapユーティリティクラスはデフォルトのまま */

/* 
  モーダル（予約確認ダイアログ）のデザイン調整 
  すでにBootstrapのクラスが入っているので、色味を上書き
*/
.modal-content {
  background-color: var(--light-bg);
  color: var(--gray);
  border: 1px solid rgba(200, 161, 101, 0.3);
}

.modal-header,
.modal-footer {
  border-color: rgba(200, 161, 101, 0.3);
}

.modal-title {
  color: var(--gold);
}

/* 閉じるボタン */
.btn-close {
  filter: invert(100%);
}

/* 
  メッセージや注意書き 
*/
.error_span {
  color: #ff7b7b;
  font-weight: 600;
}

.my-appointment-container {
  max-width: 800px;  /* 予約フォームを収める上限幅 */
  margin: 40px auto; /* 横中央寄せ・上部に余白 */
  padding: 0 20px;   /* 両端に少しゆとり */
}
