/* ========================================
   ザ・久米川卓球部 - たたき台 CSS
   ======================================== */

:root {
  --c-primary: #0c5cf2;
  --c-primary-dark: #0844b3;
  --c-accent: #ff5a2b;
  --c-bg: #ffffff;
  --c-bg-alt: #f5f7fb;
  --c-text: #1c2230;
  --c-text-sub: #5b6377;
  --c-border: #e3e7ef;
  --c-success: #19a974;
  --radius: 14px;
  --shadow-sm: 0 2px 6px rgba(15, 30, 60, 0.06);
  --shadow-md: 0 10px 30px rgba(15, 30, 60, 0.08);
  --font-jp: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP",
             "Yu Gothic", "Meiryo", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-jp);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: var(--c-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--c-border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: var(--c-text);
  text-decoration: none;
}
.logo-mark { font-size: 22px; }
.logo-text { font-size: 17px; letter-spacing: 0.02em; }
.nav { display: flex; gap: 22px; align-items: center; }
.nav a {
  color: var(--c-text-sub);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}
.nav a:hover { color: var(--c-primary); }
.nav-cta {
  background: var(--c-primary);
  color: #fff !important;
  padding: 8px 16px;
  border-radius: 999px;
}
.nav-cta:hover { background: var(--c-primary-dark); text-decoration: none; }
.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
}

/* ===== Top Banner (OPEN告知) ===== */
.top-banner {
  background: #fff;
  border-bottom: 1px solid var(--c-border);
}
.top-banner-link {
  display: block;
  max-width: 1200px;
  margin: 0 auto;
  line-height: 0;
  transition: opacity 0.2s;
}
.top-banner-link:hover { opacity: 0.92; text-decoration: none; }
.top-banner img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(135deg, #eef3ff 0%, #f7faff 60%, #ffffff 100%);
  padding: 36px 0 48px;
  border-bottom: 1px solid var(--c-border);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--c-accent);
  background: #fff2ec;
  padding: 6px 12px;
  border-radius: 999px;
  margin: 0 0 16px;
}
.hero h1 {
  font-size: clamp(24px, 3.2vw, 36px);
  line-height: 1.3;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.hero-lead {
  color: var(--c-text-sub);
  margin: 0 0 18px;
  font-size: 14px;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-note {
  margin-top: 18px;
  color: var(--c-text-sub);
  font-size: 13px;
}
.hero-image img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  aspect-ratio: 16/10;
  object-fit: cover;
  max-height: 280px;
  width: 100%;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-primary {
  background: var(--c-primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--c-primary-dark);
  transform: translateY(-1px);
  text-decoration: none;
}
.btn-ghost {
  background: #fff;
  border-color: var(--c-border);
  color: var(--c-text);
}
.btn-ghost:hover { background: var(--c-bg-alt); text-decoration: none; }

/* ===== Sections ===== */
.section {
  padding: 48px 0;
}
.section-alt {
  background: var(--c-bg-alt);
}
.section-title {
  text-align: center;
  font-size: clamp(20px, 2.4vw, 26px);
  margin: 0 0 10px;
  letter-spacing: 0.02em;
}
.section-title::after {
  content: "";
  display: block;
  width: 32px;
  height: 3px;
  margin: 8px auto 0;
  background: var(--c-primary);
  border-radius: 2px;
}
.section-lead {
  text-align: center;
  color: var(--c-text-sub);
  margin: 0 0 28px;
  font-size: 14px;
}

/* ===== Features ===== */
.features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.features li {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.features li:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  font-size: 36px;
  margin-bottom: 8px;
}
.features h3 {
  font-size: 16px;
  margin: 8px 0;
}
.features p {
  font-size: 13px;
  color: var(--c-text-sub);
  margin: 0;
}

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 14px;
}
.gallery-grid figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.gallery-grid img {
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s;
  max-height: 180px;
  width: 100%;
}
.gallery-grid figure:hover img { transform: scale(1.04); }
.gallery-grid figcaption {
  padding: 10px 12px;
  font-size: 12px;
  color: var(--c-text-sub);
  line-height: 1.5;
}
.gallery-grid figcaption small {
  font-size: 10px;
  color: var(--c-text-sub);
  opacity: 0.85;
}

/* 物販写真は右側に縦長で2行スパン */
.gallery-grid .gallery-shop {
  grid-column: 3;
  grid-row: 1 / span 2;
  border: 2px solid var(--c-primary);
}
.gallery-grid .gallery-shop img {
  aspect-ratio: 3/4;
  max-height: none;
  height: calc(100% - 48px);
  width: 100%;
  object-fit: cover;
}
.gallery-grid .gallery-shop figcaption {
  background: rgba(12, 92, 242, 0.06);
  color: var(--c-primary);
  font-weight: 700;
  text-align: center;
}

/* ===== Price ===== */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.price-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
}
.price-card-featured {
  border-color: var(--c-primary);
  box-shadow: 0 6px 24px rgba(12, 92, 242, 0.12);
}
.price-card .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-accent);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
}
.price-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
}
.price { margin: 12px 0 16px; }
.price .num {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--c-primary);
}
.price .unit {
  font-size: 14px;
  color: var(--c-text-sub);
  margin-left: 4px;
}
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}
.price-card li {
  font-size: 14px;
  padding: 6px 0;
  color: var(--c-text-sub);
  border-bottom: 1px dashed var(--c-border);
}
.price-card li:last-child { border-bottom: 0; }
.price-card li::before {
  content: "✓ ";
  color: var(--c-success);
  font-weight: 700;
}
.price-note {
  text-align: center;
  margin-top: 24px;
  color: var(--c-text-sub);
  font-size: 13px;
}

/* ===== 料金 + 予約 横並び ===== */
.section-split .split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: stretch;
}
.split-col {
  display: flex;
  flex-direction: column;
}
.split-col .section-title { text-align: center; margin-top: 0; }

/* 右ペイン: booking-list を伸ばして各行を均等に */
#reserve.split-col .booking-list {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
#reserve.split-col .booking-row {
  flex: 1 1 0;
  min-height: 56px;
}
#reserve.split-col .booking-note { margin-top: 12px; }

/* ===== 統合料金表 ===== */
.price-table {
  width: 100%;
  margin: 12px auto 12px;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  font-size: 13px;
}
.price-table th,
.price-table td {
  padding: 10px 12px;
  text-align: center;
  border-bottom: 1px solid var(--c-border);
}
.price-table tr:last-child th,
.price-table tr:last-child td { border-bottom: 0; }
.price-table thead th {
  background: var(--c-bg-alt);
  font-size: 13px;
  font-weight: 700;
  color: var(--c-text-sub);
  letter-spacing: 0.04em;
}
.price-table tbody th {
  text-align: left;
  font-weight: 700;
  background: var(--c-bg-alt);
  white-space: nowrap;
}
.price-table tbody th small {
  display: block;
  font-weight: 400;
  font-size: 11px;
  color: var(--c-text-sub);
  margin-top: 2px;
}
.price-table tbody td strong {
  font-size: 20px;
  color: var(--c-primary);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.price-table .row-featured td {
  background: rgba(12, 92, 242, 0.04);
}
.price-table .strike {
  text-decoration: line-through;
  color: #9aa1b2;
  font-size: 13px;
}
.price-table .accent {
  color: var(--c-accent);
  font-weight: 800;
  font-size: 18px;
}
.price-table .arrow {
  color: var(--c-text-sub);
  margin: 0 4px;
}

.benefits-inline {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 720px;
  margin: 0 auto;
}
.benefit-pill {
  background: rgba(12, 92, 242, 0.06);
  color: var(--c-primary);
  border: 1px dashed var(--c-primary);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
}

/* ===== OPEN banner ===== */
.open-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #ff5a2b 0%, #ff8a3d 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 12px 20px;
  margin: 0 auto 16px;
  max-width: 720px;
  box-shadow: 0 6px 18px rgba(255, 90, 43, 0.22);
}
.open-banner-tag {
  flex-shrink: 0;
  background: #fff;
  color: var(--c-accent);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: 999px;
}
.open-banner-text {
  margin: 0;
  font-size: 15px;
}
.open-banner-text strong {
  font-size: 18px;
  display: block;
  margin-bottom: 0;
}
.open-banner-sub {
  font-size: 13px;
  opacity: 0.95;
}
.open-banner-sub em {
  font-style: normal;
  font-weight: 800;
  background: #fff;
  color: var(--c-accent);
  padding: 1px 8px;
  border-radius: 4px;
  margin-left: 2px;
}
.open-banner-deadline {
  flex-shrink: 0;
  margin-left: auto;
  background: #fff;
  color: var(--c-accent);
  font-weight: 800;
  font-size: 14px;
  line-height: 1.3;
  text-align: center;
  padding: 10px 14px;
  border-radius: 10px;
  letter-spacing: 0.02em;
}

/* ===== Price section additions ===== */
.price-subhead {
  text-align: center;
  margin: 32px 0 18px;
  font-size: 18px;
  color: var(--c-text);
  position: relative;
}
.price-subhead::before,
.price-subhead::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--c-border);
  vertical-align: middle;
  margin: 0 14px;
}
.price-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 760px;
  margin: 0 auto;
}
.price-card-strike .price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
}
.num.strike {
  text-decoration: line-through;
  color: #9aa1b2 !important;
  font-size: 24px !important;
}
.num.accent {
  color: var(--c-accent) !important;
  font-size: 40px !important;
}
.arrow {
  font-size: 20px;
  color: var(--c-text-sub);
  margin: 0 4px;
}
.card-note {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--c-text-sub);
}
.card-note strong { color: var(--c-accent); }

.price-line {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin: 8px 0;
  padding: 6px 0;
  border-bottom: 1px dashed var(--c-border);
}
.price-line:last-of-type { border-bottom: 0; }
.price-line .cat {
  display: inline-block;
  background: var(--c-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  margin-right: 6px;
  min-width: 40px;
  text-align: center;
}
.price-line .cat-student {
  background: var(--c-success);
}
.price-line .num {
  font-size: 26px !important;
}

/* ===== Benefits ===== */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 760px;
  margin: 0 auto;
}
.benefit-card {
  background: #fff;
  border: 2px dashed var(--c-primary);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
}
.benefit-icon {
  font-size: 36px;
  margin-bottom: 6px;
}
.benefit-card h4 {
  margin: 6px 0 10px;
  font-size: 16px;
  color: var(--c-primary);
}
.benefit-card p {
  margin: 0;
  font-size: 14px;
  color: var(--c-text);
  line-height: 1.8;
}
.benefit-card strong { color: var(--c-accent); }

/* ===== Shop ===== */
.shop-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) 1fr;
  gap: 32px;
  align-items: start;
}
.shop-photo {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.shop-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}
.shop-photo figcaption {
  padding: 12px 16px;
  font-size: 13px;
  color: var(--c-text-sub);
  line-height: 1.6;
  text-align: center;
  background: #fff;
}
.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.shop-item {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
}
.shop-emoji { font-size: 40px; margin-bottom: 6px; }
.shop-item h3 { font-size: 15px; margin: 6px 0; }
.shop-item p { font-size: 13px; color: var(--c-text-sub); margin: 4px 0; }
.shop-price {
  font-weight: 700;
  color: var(--c-primary) !important;
  font-size: 15px !important;
  margin-top: 8px !important;
}

/* ===== Reservation ===== */
.reservation {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 32px;
  max-width: 880px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.form-row label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-text);
}
.form-row label.full { grid-column: 1 / -1; }
.req { color: var(--c-accent); }
.reservation input,
.reservation select,
.reservation textarea {
  font: inherit;
  padding: 10px 12px;
  border: 1px solid var(--c-border);
  border-radius: 8px;
  background: #fff;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.reservation input:focus,
.reservation select:focus,
.reservation textarea:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(12, 92, 242, 0.12);
}

.time-slots {
  grid-column: 1 / -1;
  border: 1px solid var(--c-border);
  border-radius: 10px;
  padding: 16px;
  margin: 0;
}
.time-slots legend {
  font-size: 14px;
  font-weight: 700;
  padding: 0 8px;
}
.slot-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin-top: 8px;
}
.slot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  border: 1px solid var(--c-border);
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.15s;
}
.slot input { display: none; }
.slot:hover { border-color: var(--c-primary); }
.slot.checked {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: #fff;
}
.slot.taken {
  background: repeating-linear-gradient(
    -45deg, #f4f4f4, #f4f4f4 4px, #fff 4px, #fff 8px
  );
  color: #b3b3b3;
  cursor: not-allowed;
  border-color: var(--c-border);
}
.slot-hint {
  font-size: 12px;
  color: var(--c-text-sub);
  margin: 12px 0 0;
}

.reservation-summary {
  background: var(--c-bg-alt);
  border-radius: 10px;
  padding: 20px 24px;
  margin: 8px 0 20px;
}
.reservation-summary h3 {
  margin: 0 0 12px;
  font-size: 16px;
}
.reservation-summary dl {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 6px 16px;
  margin: 0;
}
.reservation-summary dt {
  font-weight: 700;
  color: var(--c-text-sub);
  font-size: 14px;
}
.reservation-summary dd {
  margin: 0;
  font-size: 14px;
}
.sum-price {
  color: var(--c-primary);
  font-weight: 800 !important;
  font-size: 18px !important;
}
.sum-note {
  margin: 12px 0 0;
  font-size: 12px;
  color: var(--c-text-sub);
}

.form-actions { text-align: center; }
.reservation-result {
  margin-top: 20px;
  padding: 16px 20px;
  border-radius: 10px;
  background: #e7faf0;
  border: 1px solid #b7eccd;
  color: #0a6b3c;
  font-weight: 600;
}
.reservation-result.error {
  background: #fdecec;
  border-color: #f5b8b8;
  color: #a01616;
}

/* ===== Rules (inline) ===== */
.rules-inline {
  text-align: center;
  font-size: 13px;
  color: var(--c-text-sub);
  margin: -12px auto 0;
  max-width: 720px;
  line-height: 2;
}
.rules-inline .ok,
.rules-inline .ng {
  display: inline-block;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.08em;
  padding: 2px 8px;
  border-radius: 4px;
  margin-right: 4px;
  color: #fff;
}
.rules-inline .ok { background: var(--c-success); }
.rules-inline .ng { background: #e44; margin-left: 12px; }

/* ===== Booking (コンパクト行形式) ===== */
.booking-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 720px;
  margin: 0 auto;
}
.booking-row {
  display: grid;
  grid-template-columns: 28px 1fr auto auto;
  align-items: center;
  gap: 12px;
  padding: 9px 14px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-left: 4px solid var(--c-border);
  border-radius: 8px;
  text-decoration: none;
  color: var(--c-text);
  transition: all 0.15s;
}
.booking-row:hover {
  text-decoration: none;
  border-color: var(--c-primary);
  transform: translateX(2px);
  box-shadow: var(--shadow-sm);
}
.br-icon { font-size: 22px; line-height: 1; }
.br-title { font-weight: 700; font-size: 15px; }
.br-price {
  font-size: 12px;
  font-weight: 600;
  background: rgba(12, 92, 242, 0.08);
  color: var(--c-primary);
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
}
.br-cta {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-primary);
  white-space: nowrap;
}
.booking-row-primary { border-left-color: var(--c-primary); }
.booking-row-line { border-left-color: #06C755; }
.booking-row-line .br-price { background: rgba(6, 199, 85, 0.08); color: #06A146; }
.booking-row-line .br-cta { color: #06A146; }
.booking-row-tel { border-left-color: var(--c-text); }
.booking-row-tel .br-price { background: rgba(0,0,0,0.06); color: var(--c-text); font-size: 14px; }
.booking-row-tel .br-cta { color: var(--c-text); }

/* 旧 booking-card 系 (一部 footer 等で残るかもなので保持) */
.booking-channels,
.booking-primary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 0 auto 32px;
  max-width: 880px;
}

.booking-secondary {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 0 auto 40px;
  max-width: 880px;
}
.booking-sub-label {
  text-align: center;
  margin: 28px 0 14px;
  color: var(--c-text-sub);
  font-size: 13px;
  letter-spacing: 0.08em;
  position: relative;
}
.booking-sub-label::before,
.booking-sub-label::after {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--c-border);
  vertical-align: middle;
  margin: 0 14px;
}
.booking-price {
  display: inline-block;
  margin: 4px 0 12px !important;
  padding: 4px 12px;
  background: rgba(12, 92, 242, 0.08);
  color: var(--c-primary) !important;
  font-weight: 700;
  border-radius: 999px;
  font-size: 13px !important;
}
.booking-card-line .booking-price {
  background: rgba(6, 199, 85, 0.10);
  color: #06A146 !important;
}
.booking-tel-number {
  font-size: 22px !important;
  font-weight: 800 !important;
  color: var(--c-text) !important;
  letter-spacing: 0.04em;
  margin: 4px 0 8px !important;
}
.booking-secondary .booking-card {
  padding: 24px 20px 20px;
}
.booking-secondary .booking-icon {
  font-size: 36px;
}
.booking-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 2px solid var(--c-border);
  border-radius: var(--radius);
  padding: 32px 24px 24px;
  text-align: center;
  color: var(--c-text);
  text-decoration: none;
  transition: all 0.2s;
  overflow: hidden;
}
.booking-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}
.booking-card-primary {
  border-color: var(--c-primary);
  background: linear-gradient(180deg, #f7faff 0%, #fff 100%);
}
.booking-card-primary:hover {
  box-shadow: 0 12px 32px rgba(12, 92, 242, 0.18);
}
.booking-card-line {
  border-color: #06C755;
}
.booking-card-line:hover {
  box-shadow: 0 12px 32px rgba(6, 199, 85, 0.18);
}
.booking-card-tel {
  border-color: var(--c-text-sub);
}
.booking-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--c-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.05em;
}
.booking-icon {
  font-size: 44px;
  line-height: 1;
  margin-bottom: 12px;
}
.booking-card h3 {
  margin: 8px 0 12px;
  font-size: 18px;
  letter-spacing: 0.02em;
}
.booking-card p {
  margin: 0 0 18px;
  font-size: 14px;
  color: var(--c-text-sub);
  line-height: 1.7;
  flex-grow: 1;
}
.booking-cta {
  display: inline-block;
  padding: 12px 20px;
  background: var(--c-primary);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border-radius: 999px;
  margin-bottom: 12px;
  transition: background 0.15s;
}
.booking-card-line .booking-cta { background: #06C755; }
.booking-card-tel .booking-cta { background: var(--c-text); }
.booking-card:hover .booking-cta { filter: brightness(1.1); }
.booking-tech {
  display: block;
  color: var(--c-text-sub);
  font-size: 11px;
  letter-spacing: 0.08em;
}

.booking-features {
  background: var(--c-bg-alt);
  border-radius: var(--radius);
  padding: 28px 32px;
  max-width: 760px;
  margin: 0 auto 24px;
}
.booking-features-title {
  text-align: center;
  margin: 0 0 18px;
  font-size: 16px;
}
.booking-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 24px;
}
.booking-features li {
  font-size: 14px;
  color: var(--c-text);
  display: flex;
  gap: 8px;
  align-items: baseline;
}
.booking-features .check {
  color: var(--c-success);
  font-weight: 800;
}
.booking-note {
  text-align: center;
  font-size: 13px;
  color: var(--c-text-sub);
  margin: 0;
  line-height: 1.8;
}

/* ===== Access ===== */
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: start;
}
.access-info dl {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 12px 18px;
  margin: 0;
}
.access-info dt {
  font-weight: 700;
  color: var(--c-text-sub);
  font-size: 14px;
}
.access-info dd {
  margin: 0;
  font-size: 15px;
}

/* ===== Toast ===== */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(28, 34, 48, 0.95);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 9999;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.toast-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===== Footer ===== */
.site-footer {
  background: #1c2230;
  color: #cdd3df;
  padding: 40px 0;
  margin-top: 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}
.footer-logo {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 6px;
}
.footer-col { min-width: 0; }
.footer-tel { margin-top: 6px; }
.footer-tel a { color: #cdd3df; }
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-links a {
  color: #cdd3df;
  font-size: 13px;
  text-decoration: none;
}
.footer-links a:hover { color: #fff; text-decoration: underline; }
.footer-copy p { margin: 0 0 4px; font-size: 12px; opacity: 0.85; }

/* ===== Legal pages ===== */
.legal-page {
  padding: 48px 0 80px;
  background: #fff;
}
.legal-page h1 {
  font-size: 26px;
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--c-primary);
}
.legal-page h2 {
  font-size: 17px;
  margin: 32px 0 10px;
  color: var(--c-primary);
}
.legal-page p, .legal-page li {
  font-size: 14px;
  line-height: 1.9;
  color: var(--c-text);
}
.legal-page ul {
  padding-left: 22px;
  margin: 8px 0;
}
.legal-lead {
  background: var(--c-bg-alt);
  padding: 16px 20px;
  border-radius: 10px;
  margin: 0 0 24px;
}
.legal-dl {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 12px 24px;
  margin: 0;
  padding: 20px;
  background: var(--c-bg-alt);
  border-radius: 10px;
}
.legal-dl dt {
  font-weight: 700;
  color: var(--c-text-sub);
  font-size: 14px;
}
.legal-dl dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
}
.legal-note {
  background: #fff7ec;
  border-left: 3px solid var(--c-accent);
  padding: 12px 16px;
  font-size: 13px;
  color: var(--c-text-sub);
  margin: 24px 0 0;
}
.legal-meta {
  text-align: right;
  font-size: 12px;
  color: var(--c-text-sub);
  margin: 28px 0 0;
}
.legal-back {
  margin: 32px 0 0;
  text-align: center;
}
.legal-back a {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid var(--c-border);
  border-radius: 999px;
  color: var(--c-text);
  text-decoration: none;
  font-size: 13px;
}
.legal-back a:hover {
  border-color: var(--c-primary);
  color: var(--c-primary);
  text-decoration: none;
}
@media (max-width: 700px) {
  .legal-dl { grid-template-columns: 1fr; gap: 4px 0; padding: 16px; }
  .legal-dl dt { margin-top: 10px; }
  .legal-dl dt:first-child { margin-top: 0; }
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .section-split .split-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-inner { grid-template-columns: 1fr; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-grid .gallery-shop {
    grid-column: 1 / -1;
    grid-row: auto;
  }
  .gallery-grid .gallery-shop img { aspect-ratio: 16/9; height: auto; }
  .booking-row {
    grid-template-columns: 32px 1fr auto;
    gap: 10px;
  }
  .br-cta { display: none; }
  .price-grid { grid-template-columns: 1fr; }
  .price-grid-2 { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .open-banner { flex-direction: column; text-align: center; padding: 18px; }
  .booking-channels,
  .booking-primary,
  .booking-secondary { grid-template-columns: 1fr; }
  .booking-features ul { grid-template-columns: 1fr; }
  .booking-features { padding: 20px; }
  .shop-layout { grid-template-columns: 1fr; gap: 24px; }
  .shop-photo { max-width: 320px; margin: 0 auto; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .access-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .slot-grid { grid-template-columns: repeat(4, 1fr); }
  .nav { display: none; }
  .nav.open {
    display: flex;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 12px 20px;
    border-bottom: 1px solid var(--c-border);
    gap: 8px;
  }
  .nav-toggle { display: block; }
  .section { padding: 60px 0; }
  .reservation { padding: 20px; }
  .reservation-summary dl { grid-template-columns: 90px 1fr; }
  .access-info dl { grid-template-columns: 80px 1fr; }
}

@media (max-width: 480px) {
  .features { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr; }
  .slot-grid { grid-template-columns: repeat(3, 1fr); }
}
