/* ============================================================
   salon-hair-gallery — ギャラリー主導・かわいい系ヘアサロンテンプレート
   見本トーン: lamune-kyoto.com（実CSS採取 2026-07-06）
     配色: パステルソーダブルー #aaccee(52箇所で最多) / 濃茶インク #3c3835 / ミント #4bbe92
     持ち味: 写真グリッドの回遊性・小物の可愛さ。当テンプレでは
     「ポラロイド風コラージュのギャラリー」を主役に翻案。
   書体: Quicksand(欧文・丸み) + Zen Maru Gothic(和文丸ゴ)
   テーマ変数 --warm / --warm-dark / --warm-soft は config.theme で上書き可
   （変数名は他サロンテンプレと共通 = admin/ビルダー互換）
   ============================================================ */

:root {
  --warm: #aaccee;        /* アクセント（ソーダブルー） */
  --warm-dark: #5b8fc0;   /* アクセント濃（ラベル・リンク） */
  --warm-soft: #e9f2fa;   /* アクセント淡（帯・バッジ地） */
  --mint: #4bbe92;        /* 差しミント（バッジ・番号） */
  --base: #fdfcfa;        /* ページ地（あたたかい白） */
  --paper: #ffffff;
  --ink: #3c3835;         /* lamune実測の濃茶インク */
  --ink-soft: #8a837c;
  --line: #ece5dd;
  --panel: #d9e8f6;       /* パステル面（人気メニュー等） */
  --radius: 22px;
  --radius-sm: 14px;
  --shadow: 0 14px 34px rgba(90, 80, 60, 0.12);
  --shadow-sm: 0 5px 16px rgba(90, 80, 60, 0.09);
  --pop: 0 4px 0 rgba(60, 56, 53, 0.12);   /* ステッカー風の落ち影 */
  --font-en: "Quicksand", sans-serif;
  --font-jp: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: var(--font-jp);
  color: var(--ink);
  background: var(--base);
  font-size: 15.5px;
  line-height: 2.0;
  letter-spacing: 0.03em;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ---------- 共通パーツ ---------- */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

.section { padding: 104px 0; }
.section-compact { padding: 86px 0; }
.section.bg-alt { background: #f6f2ec; }
.section.is-hidden { display: none; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-en);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--warm-dark);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; width: 10px; height: 10px; border-radius: 50%;
  background: var(--mint);
  box-shadow: 14px 0 0 -2px var(--warm);
  margin-right: 12px;
}

.section-title {
  font-size: clamp(25px, 3.5vw, 36px);
  font-weight: 700; line-height: 1.55; letter-spacing: 0.04em;
}
.section-title em {
  font-style: normal;
  background: linear-gradient(transparent 66%, var(--warm) 66%, var(--warm) 94%, transparent 94%);
  padding: 0 2px;
}
.section-lead { color: var(--ink-soft); max-width: 620px; margin-top: 18px; }

/* ボタン: まるっとピル＋ステッカー影 */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-jp); font-size: 14.5px; font-weight: 700;
  letter-spacing: 0.06em; text-decoration: none;
  padding: 15px 34px; border-radius: 999px;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
  cursor: pointer;
}
.btn-arrow { font-family: var(--font-en); font-weight: 600; transition: transform 0.22s ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }
.btn-primary {
  background: var(--ink); color: #fff;
  box-shadow: var(--pop);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 7px 0 rgba(60, 56, 53, 0.14); }
.btn-secondary {
  background: var(--paper); color: var(--ink);
  border: 2px solid var(--warm); box-shadow: var(--pop);
}
.btn-secondary:hover { background: var(--warm-soft); transform: translateY(-3px); box-shadow: 0 7px 0 rgba(60, 56, 53, 0.1); }
.btn-ghost { background: transparent; color: inherit; border: 2px solid currentColor; opacity: 0.9; }
.btn-ghost:hover { opacity: 1; transform: translateY(-3px); }

/* fade-in（script.jsのIntersectionObserverと連動） */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- ヘッダー ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: rgba(253, 252, 250, 0.9);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(236, 229, 221, 0.8);
}
.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 74px; display: flex; align-items: center; justify-content: space-between;
}
.logo a {
  font-family: var(--font-en); font-size: 22px; font-weight: 700;
  letter-spacing: 0.1em; text-decoration: none; color: var(--ink);
}
.nav-list { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-list a {
  font-family: var(--font-en); font-size: 13.5px; font-weight: 600;
  letter-spacing: 0.1em; text-decoration: none; color: var(--ink-soft);
  padding: 6px 2px; position: relative; transition: color 0.22s ease;
}
.nav-list a::after {
  content: ""; position: absolute; left: 50%; bottom: -2px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--mint);
  transform: translateX(-50%) scale(0); transition: transform 0.22s ease;
}
.nav-list a:hover, .nav-list a.active { color: var(--ink); }
.nav-list a:hover::after, .nav-list a.active::after { transform: translateX(-50%) scale(1); }
.nav-list a.nav-reservation {
  background: var(--warm); color: var(--ink);
  font-family: var(--font-jp); font-weight: 700;
  padding: 10px 26px; border-radius: 999px;
  box-shadow: var(--pop);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}
.nav-list a.nav-reservation::after { display: none; }
.nav-list a.nav-reservation:hover { background: #bcd7f2; transform: translateY(-2px); }

.hamburger { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 8px; z-index: 110; }
.hamburger span { width: 26px; height: 2.5px; background: var(--ink); border-radius: 3px; transition: transform 0.3s ease, opacity 0.3s ease; }
.hamburger.active span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* ---------- ヒーロー ---------- */
.hero { position: relative; min-height: 88vh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
/* ソーダの泡（CSSのみ・ラムネの署名演出） */
.hero-overlay { position: absolute; inset: 0; }
.hero-overlay::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(253,252,250,0.04) 40%, rgba(253,252,250,0.5) 82%, var(--base) 100%);
}
.hero-overlay::after {
  content: ""; position: absolute; inset: -10% 0 0 0; pointer-events: none;
  background-image:
    radial-gradient(circle 7px at 12% 82%, rgba(170,204,238,0.55) 96%, transparent),
    radial-gradient(circle 4px at 18% 60%, rgba(170,204,238,0.4) 96%, transparent),
    radial-gradient(circle 9px at 86% 74%, rgba(170,204,238,0.5) 96%, transparent),
    radial-gradient(circle 5px at 78% 48%, rgba(255,255,255,0.55) 96%, transparent),
    radial-gradient(circle 6px at 92% 30%, rgba(170,204,238,0.35) 96%, transparent),
    radial-gradient(circle 3px at 8% 34%, rgba(255,255,255,0.5) 96%, transparent);
  animation: bubbleFloat 14s linear infinite;
}
@keyframes bubbleFloat {
  from { transform: translateY(0); }
  to { transform: translateY(-9%); }
}
@media (prefers-reduced-motion: reduce) { .hero-overlay::after { animation: none; } }

.hero-content {
  position: relative; z-index: 2;
  max-width: 1120px; width: 100%;
  margin: 0 auto; padding: 0 24px 90px;
}
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-en); font-size: 13px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--warm-dark);
  background: var(--paper);
  padding: 9px 22px; border-radius: 999px;
  box-shadow: var(--pop);
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-en);
  font-size: clamp(36px, 6vw, 66px);
  font-weight: 700; line-height: 1.2; letter-spacing: 0.02em;
  color: var(--ink);
  text-shadow: 0 2px 22px rgba(255, 255, 255, 0.75);
}
.hero-title em {
  font-style: normal; display: inline-block;
  background: linear-gradient(transparent 60%, var(--warm) 60%, var(--warm) 92%, transparent 92%);
  padding: 0 4px;
}
.hero-subtitle {
  margin-top: 20px; font-size: clamp(15px, 1.8vw, 17px); font-weight: 500;
  color: var(--ink); line-height: 2.1;
  text-shadow: 0 1px 14px rgba(255, 255, 255, 0.9);
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-scroll {
  position: absolute; right: 34px; bottom: 0; z-index: 2;
  font-family: var(--font-en); font-size: 11px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink-soft);
  writing-mode: vertical-rl; padding-bottom: 80px;
}
.hero-scroll::after {
  content: ""; position: absolute; left: 50%; bottom: 6px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--mint);
  animation: dotDrop 1.8s ease-in-out infinite;
}
@keyframes dotDrop {
  0% { transform: translate(-50%, -56px); opacity: 0; }
  40% { opacity: 1; }
  100% { transform: translate(-50%, 0); opacity: 0; }
}

/* ---------- コンセプト ---------- */
.concept { display: grid; grid-template-columns: 5fr 6fr; gap: 60px; align-items: center; margin-bottom: 88px; }
.concept-image { position: relative; }
.concept-image img {
  border-radius: var(--radius); box-shadow: var(--shadow);
  aspect-ratio: 4/3.4; object-fit: cover; width: 100%;
  transform: rotate(-1.6deg);
  border: 10px solid #fff;
}

/* 特徴3点: 破線ボーダーの白カード＋ミント番号（このテンプレは写真はギャラリーに集中） */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.feature {
  background: var(--paper); border-radius: var(--radius);
  padding: 36px 30px 32px; box-shadow: var(--shadow-sm);
  border: 2px dashed var(--warm);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.feature:hover { transform: translateY(-6px); border-color: var(--mint); box-shadow: var(--shadow); }
.feature-photo { display: none; } /* このテンプレでは特徴カードは文字ベース（写真はギャラリー主役） */
.feature-body { padding: 0; }
.feature-number {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 44px; height: 44px; padding: 0 14px;
  font-family: var(--font-en); font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: #fff;
  background: var(--mint); border-radius: 999px;
  margin-bottom: 18px;
}
.feature-title {
  font-family: var(--font-en); font-size: 20px; font-weight: 700; letter-spacing: 0.02em;
  line-height: 1.4; margin-bottom: 12px;
}
.feature-title-jp { display: block; font-family: var(--font-jp); font-size: 14px; font-weight: 700; color: var(--warm-dark); margin-top: 6px; }
.feature-desc { font-size: 13.5px; color: var(--ink-soft); }

/* ---------- ギャラリー（主役・ポラロイドコラージュ） ---------- */
.gallery { columns: 3; column-gap: 26px; max-width: 980px; margin: 0 auto; }
.gallery-item {
  break-inside: avoid; margin-bottom: 26px;
  background: #fff; padding: 10px 10px 30px;
  border-radius: 6px; box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-item:nth-child(3n+1) { transform: rotate(-1.6deg); }
.gallery-item:nth-child(3n+2) { transform: rotate(1.2deg); }
.gallery-item:nth-child(3n)   { transform: rotate(-0.6deg); }
.gallery-item:hover { transform: rotate(0deg) translateY(-6px) scale(1.02); box-shadow: var(--shadow); z-index: 2; position: relative; }
.gallery-item img { border-radius: 3px; width: 100%; }
.gallery-item:nth-child(odd) img { aspect-ratio: 3/3.6; object-fit: cover; }
.gallery-item:nth-child(even) img { aspect-ratio: 3/3.1; object-fit: cover; }
.gallery-caption { text-align: center; font-size: 13px; color: var(--ink-soft); margin-top: 40px; }

/* ---------- 人気メニュー（パステル面。ダークにしない） ---------- */
.section-dark { background: var(--panel); color: var(--ink); }
.section-dark .eyebrow { color: var(--warm-dark); }
.section-dark .section-lead { color: #6d6a64; }
.section-dark .section-title em {
  background: linear-gradient(transparent 66%, rgba(255, 255, 255, 0.9) 66%, rgba(255, 255, 255, 0.9) 94%, transparent 94%);
}

.menu-wrap { display: grid; grid-template-columns: 4fr 7fr; gap: 60px; align-items: start; }
.menu-list { display: flex; flex-direction: column; gap: 16px; }
.menu-item {
  display: flex; align-items: center; gap: 20px;
  background: var(--paper);
  border-radius: var(--radius-sm); padding: 20px 24px;
  box-shadow: var(--pop);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.menu-item:hover { transform: translateX(4px) translateY(-2px); box-shadow: 0 7px 0 rgba(60, 56, 53, 0.1); }
.menu-item-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px; flex-shrink: 0;
  font-family: var(--font-en); font-size: 12.5px; font-weight: 700;
  color: var(--warm-dark); background: var(--warm-soft); border-radius: 50%;
}
.menu-item-body { flex: 1; }
.menu-item-name { font-size: 15.5px; font-weight: 700; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.popular-badge {
  font-family: var(--font-en); font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--mint); color: #fff; padding: 3px 12px; border-radius: 999px;
}
.menu-item-desc { font-size: 13px; color: var(--ink-soft); margin-top: 4px; }
.menu-item-meta { text-align: right; white-space: nowrap; }
.menu-item-price { font-family: var(--font-en); font-size: 19px; font-weight: 700; }
.menu-item-price small { font-family: var(--font-jp); font-size: 10.5px; font-weight: 400; color: var(--ink-soft); margin-left: 4px; }
.menu-item-duration { font-size: 12px; color: var(--ink-soft); margin-top: 2px; }
.menu-note a.btn-secondary { background: var(--paper); }
.menu-intro-photo { margin-top: 34px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 8px solid #fff; transform: rotate(1.4deg); }
.menu-intro-photo img { width: 100%; aspect-ratio: 4/3.2; object-fit: cover; }

/* ライトセクション上のメニュー（menu.html） */
.section:not(.section-dark) .menu-item { border: 1px solid var(--line); }

.menu-category { margin-bottom: 68px; }
.menu-category:last-of-type { margin-bottom: 40px; }
.menu-category-title {
  font-size: 23px; font-weight: 700; margin-bottom: 26px;
  display: flex; align-items: baseline; gap: 14px;
}
.menu-category-title::before {
  content: ""; width: 12px; height: 12px; border-radius: 50%;
  background: var(--warm); box-shadow: 0 18px 0 -4px var(--mint);
  align-self: center; flex-shrink: 0;
}
.menu-category-title-en {
  font-family: var(--font-en); font-size: 12.5px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--warm-dark);
}
.menu-footnote { font-size: 13px; color: var(--ink-soft); }

/* ---------- クーポン（チケット風） ---------- */
.coupon-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.coupon-card {
  position: relative; background: var(--paper);
  border-radius: var(--radius); padding: 42px 28px 30px;
  box-shadow: var(--shadow-sm); border: 2px dashed var(--mint);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.coupon-card:hover { transform: translateY(-6px) rotate(-0.5deg); box-shadow: var(--shadow); }
.coupon-badge {
  position: absolute; top: -15px; left: 24px;
  font-family: var(--font-en); font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--warm); color: var(--ink); padding: 6px 18px; border-radius: 999px;
  box-shadow: var(--pop);
}
.coupon-badge.is-limited { background: #f7c85f; }
.coupon-badge.is-student { background: var(--mint); color: #fff; }
.coupon-title { font-size: 15.5px; font-weight: 700; line-height: 1.7; min-height: 3.4em; }
.coupon-price { font-family: var(--font-en); font-size: 34px; font-weight: 700; color: var(--warm-dark); margin: 14px 0 10px; }
.coupon-price small { font-family: var(--font-jp); font-size: 11px; font-weight: 400; color: var(--ink-soft); margin-left: 6px; }
.coupon-note { font-size: 12.5px; color: var(--ink-soft); }

/* ---------- インテリア ---------- */
.interior { display: grid; grid-template-columns: 6fr 5fr; gap: 60px; align-items: center; }
.interior-img img {
  border-radius: var(--radius); box-shadow: var(--shadow);
  aspect-ratio: 4/3; object-fit: cover; width: 100%;
  border: 10px solid #fff; transform: rotate(1.4deg);
}

/* ---------- レビュー（吹き出しカード） ---------- */
.reviews-intro { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.reviews-intro .section-lead { margin-left: auto; margin-right: auto; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.review-card {
  position: relative;
  background: var(--paper); border-radius: var(--radius);
  padding: 32px 28px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.review-card::after {
  content: ""; position: absolute; left: 40px; bottom: -12px;
  width: 24px; height: 24px; background: var(--paper);
  transform: rotate(45deg); border-radius: 4px;
  box-shadow: 6px 6px 12px rgba(90, 80, 60, 0.06);
}
.review-stars { color: #f2b53c; font-size: 15px; letter-spacing: 0.12em; margin-bottom: 10px; }
.review-menu-name {
  display: inline-block; align-self: flex-start;
  font-size: 11.5px; font-weight: 700; color: var(--warm-dark);
  background: var(--warm-soft); padding: 4px 14px; border-radius: 999px;
  margin-bottom: 16px;
}
.review-text { font-size: 14px; flex: 1; }
.review-author { font-size: 12.5px; color: var(--ink-soft); margin-top: 18px; padding-top: 14px; border-top: 1px dashed var(--line); }

/* ---------- FAQ ---------- */
.faq-intro { text-align: center; margin-bottom: 48px; }
.faq-container { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--paper); border-radius: var(--radius-sm); box-shadow: var(--shadow-sm); overflow: hidden; border: 1px solid var(--line); }
.faq-question {
  width: 100%; display: flex; align-items: center; gap: 16px;
  background: none; border: none; cursor: pointer; text-align: left;
  font-family: var(--font-jp); font-size: 15px; font-weight: 700; color: var(--ink);
  padding: 20px 24px;
}
.faq-q-label {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 38px; height: 38px; flex-shrink: 0;
  font-family: var(--font-en); font-size: 12px; font-weight: 700;
  color: var(--ink); background: var(--warm); border-radius: 50%;
}
.faq-q-text { flex: 1; }
.faq-toggle { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq-toggle::before, .faq-toggle::after {
  content: ""; position: absolute; inset: 50% auto auto 0;
  width: 100%; height: 2.5px; border-radius: 3px; background: var(--mint);
  transform: translateY(-50%); transition: transform 0.3s ease;
}
.faq-toggle::after { transform: translateY(-50%) rotate(90deg); }
.faq-item.is-open .faq-toggle::after { transform: translateY(-50%) rotate(0deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.is-open .faq-answer { max-height: 300px; }
.faq-answer-inner { padding: 0 24px 22px 78px; font-size: 14px; color: var(--ink-soft); }

/* ---------- 予約CTA ---------- */
.reservation-section { position: relative; padding: 124px 24px; text-align: center; overflow: hidden; }
.reservation-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.reservation-section::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(253, 252, 250, 0.92), rgba(217, 232, 246, 0.9));
}
.reservation-inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
.reservation-eyebrow { justify-content: center; }
.reservation-title { font-size: clamp(25px, 3.3vw, 34px); font-weight: 700; letter-spacing: 0.05em; }
.reservation-note { color: var(--ink-soft); margin-top: 16px; }
.reservation-buttons { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.reservation-buttons .btn-ghost { color: var(--ink); border-color: var(--ink-soft); }

/* コンパクト予約帯（下層ページ） */
.reservation-compact { background: var(--panel); color: var(--ink); padding: 42px 24px; }
.reservation-compact-inner {
  max-width: 1120px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 26px; flex-wrap: wrap;
}
.reservation-compact-eyebrow {
  display: block; font-family: var(--font-en); font-size: 12px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--warm-dark); margin-bottom: 6px;
}
.reservation-compact-title { font-size: 20px; font-weight: 700; }
.reservation-compact-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.reservation-compact .btn-ghost { color: var(--ink); border-color: rgba(60, 56, 53, 0.35); }

/* ---------- 下層ページ共通ヘッダー ---------- */
.page-header {
  padding: 164px 24px 70px; text-align: center;
  background:
    radial-gradient(circle 8px at 18% 78%, rgba(170, 204, 238, 0.5) 96%, transparent),
    radial-gradient(circle 5px at 26% 40%, rgba(75, 190, 146, 0.35) 96%, transparent),
    radial-gradient(circle 10px at 82% 66%, rgba(170, 204, 238, 0.45) 96%, transparent),
    radial-gradient(circle 6px at 74% 30%, rgba(255, 255, 255, 0.8) 96%, transparent),
    linear-gradient(180deg, var(--warm-soft), var(--base));
}
.page-header-title-en {
  font-family: var(--font-en); font-size: 13px; font-weight: 700;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--warm-dark); margin-bottom: 12px;
}
.page-header-title { font-size: clamp(27px, 3.9vw, 38px); font-weight: 700; letter-spacing: 0.06em; }

/* ---------- スタッフ（丸アバター） ---------- */
.staff-intro { text-align: center; margin-bottom: 60px; }
.staff-intro .section-lead { margin: 0 auto; }
.staff-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; max-width: 860px; margin: 0 auto; }
.staff-card {
  background: var(--paper); border-radius: var(--radius);
  padding: 40px 30px 36px; box-shadow: var(--shadow-sm); text-align: center;
  border: 1px solid var(--line);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.staff-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.staff-image-wrap {
  width: 190px; height: 190px; margin: 0 auto 24px;
  border-radius: 50%; overflow: hidden;
  border: 5px solid var(--warm-soft); outline: 2px dashed var(--warm); outline-offset: 4px;
}
.staff-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.staff-image-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-en); font-size: 56px; font-weight: 700; color: var(--warm-dark);
  background: var(--warm-soft);
}
.staff-role {
  font-family: var(--font-en); font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--mint); margin-bottom: 8px;
}
.staff-name { font-size: 22px; font-weight: 700; letter-spacing: 0.08em; margin-bottom: 14px; }
.staff-desc { font-size: 13.5px; color: var(--ink-soft); text-align: left; }
.staff-qualifications { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.staff-qualification {
  font-size: 11.5px; font-weight: 700; color: var(--warm-dark);
  background: var(--warm-soft); padding: 4px 14px; border-radius: 999px;
}

/* ---------- アクセス ---------- */
.access-layout { display: grid; grid-template-columns: 5fr 6fr; gap: 52px; align-items: start; }
.access-info-block { padding: 22px 0; border-bottom: 1px dashed var(--line); display: grid; grid-template-columns: 120px 1fr; gap: 18px; }
.access-info-block:first-child { padding-top: 0; }
.access-info-label {
  font-family: var(--font-en); font-size: 12px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--warm-dark); padding-top: 3px;
}
.access-info-text { font-size: 14.5px; }
.access-info-text .phone-link { font-family: var(--font-en); font-size: 20px; font-weight: 700; color: var(--ink); text-decoration: none; }
.access-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 8px solid #fff; }
.access-map iframe { width: 100%; height: 440px; border: 0; display: block; }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table th, .hours-table td { padding: 10px 4px; font-size: 14px; text-align: left; border-bottom: 1px dashed var(--line); }
.hours-table th { font-weight: 700; white-space: nowrap; padding-right: 22px; }

/* ---------- お問い合わせ ---------- */
.contact-intro { text-align: center; margin-bottom: 50px; }
.contact-intro .section-lead { margin: 0 auto; }
.contact-form {
  max-width: 640px; margin: 0 auto;
  background: var(--paper); border-radius: var(--radius);
  padding: 46px 42px; box-shadow: var(--shadow-sm); border: 1px solid var(--line);
}
.form-group { margin-bottom: 26px; }
.form-label { display: block; font-size: 13.5px; font-weight: 700; margin-bottom: 8px; }
.form-label .required { color: #d16456; font-size: 11px; margin-left: 6px; }
.form-input, .form-select, .form-textarea {
  width: 100%; font-family: var(--font-jp); font-size: 15px; color: var(--ink);
  background: var(--base); border: 2px solid var(--line); border-radius: var(--radius-sm);
  padding: 12px 16px; transition: border-color 0.22s ease, box-shadow 0.22s ease;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--warm);
  box-shadow: 0 0 0 4px rgba(170, 204, 238, 0.3);
}
.form-textarea { min-height: 150px; resize: vertical; }
.form-submit { width: 100%; border: none; margin-top: 6px; }

.quick-contact {
  max-width: 640px; margin: 44px auto 0; text-align: center;
  background: var(--warm-soft); border-radius: var(--radius); padding: 34px 30px;
  border: 2px dashed var(--warm);
}
.quick-contact-phone { display: block; font-family: var(--font-en); font-size: 30px; font-weight: 700; color: var(--ink); text-decoration: none; margin: 8px 0 4px; }
.quick-contact-hours { font-size: 12.5px; color: var(--ink-soft); }

/* ---------- フッター ---------- */
.footer { background: var(--ink); color: rgba(253, 252, 250, 0.85); padding: 68px 24px 0; }
.footer-inner {
  max-width: 1120px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
}
.footer-logo { font-family: var(--font-en); font-size: 24px; font-weight: 700; letter-spacing: 0.1em; color: #fff; margin-bottom: 18px; }
.footer-info { font-size: 13px; line-height: 2.1; opacity: 0.8; }
.footer-heading {
  font-family: var(--font-en); font-size: 12px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--warm); margin-bottom: 16px;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-family: var(--font-en); font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-decoration: none; opacity: 0.8; transition: opacity 0.22s ease, color 0.22s ease; }
.footer-links a:hover { opacity: 1; color: var(--warm); }
.footer-bottom {
  max-width: 1120px; margin: 52px auto 0; padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--font-en); font-size: 11.5px; letter-spacing: 0.08em; opacity: 0.6;
}

/* ---------- 写真帯 ---------- */
.photo-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 0 8px; }
.photo-strip-item { overflow: hidden; border-radius: var(--radius-sm); }
.photo-strip-item img { width: 100%; height: clamp(190px, 25vw, 320px); object-fit: cover; transition: transform 0.5s ease; }
.photo-strip-item:hover img { transform: scale(1.04); }

/* ---------- モバイル固定CTA ---------- */
.mobile-cta-bar { display: none; }

/* ============================================================
   レスポンシブ
   ============================================================ */
@media (max-width: 960px) {
  .concept, .interior, .menu-wrap, .access-layout { grid-template-columns: 1fr; gap: 44px; }
  .features, .coupon-grid, .reviews-grid { grid-template-columns: 1fr 1fr; }
  .gallery { columns: 2; }
}

@media (max-width: 720px) {
  body { font-size: 14.5px; }
  .section { padding: 72px 0; }
  .section-compact { padding: 60px 0; }

  .nav-list {
    position: fixed; inset: 0; z-index: 105;
    flex-direction: column; justify-content: center; gap: 30px;
    background: rgba(253, 252, 250, 0.97);
    opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
  }
  .nav-list.open { opacity: 1; pointer-events: auto; }
  .nav-list a { font-size: 17px; }
  .hamburger { display: flex; }

  .hero { min-height: 84vh; }
  .hero-content { padding-bottom: 72px; }
  .hero-scroll { display: none; }
  .hero-buttons .btn { flex: 1; min-width: 150px; }

  .features, .coupon-grid, .reviews-grid, .staff-grid { grid-template-columns: 1fr; }
  .gallery { columns: 2; column-gap: 14px; }
  .gallery-item { padding: 6px 6px 18px; margin-bottom: 14px; }
  .menu-item { flex-wrap: wrap; gap: 8px 16px; padding: 18px 20px; }
  .menu-item-meta { width: 100%; display: flex; align-items: baseline; justify-content: flex-end; gap: 14px; text-align: right; }

  .coupon-title { min-height: 0; }
  .reservation-compact-inner { flex-direction: column; text-align: center; }
  .access-info-block { grid-template-columns: 1fr; gap: 4px; }
  .access-map iframe { height: 320px; }
  .contact-form { padding: 34px 22px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }

  .photo-strip { grid-template-columns: 1fr; }
  .photo-strip-item:nth-child(n+2) { display: none; }

  .mobile-cta-bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    background: rgba(253, 252, 250, 0.94);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    border-top: 1px solid var(--line);
  }
  .mobile-cta-bar .btn { padding: 13px 10px; font-size: 14px; }
  body { padding-bottom: 68px; }
  .footer { padding-bottom: 8px; }
}
