/* ============================================================
   カフェひだまり — cafe warm / family-friendly template
   採寸元: cafe-steen.com（実測 2026-07-10 / common/css/common.css）
     生成り  #e9e1d1   … 地・帯
     タン    #d6cfc1   … 罫・境
     クリーム #f0e8d8   … 明るい地
     ゴールド #9c7f2a   … アクセント（差し色）
     本文    #333333 → 温espresso #43382e に寄せて採用
     ペールブルー #dce4f6 … やわらかい差し色（キッズ/設備）
   書体: brandon-grotesque × source-han-sans → Poppins × Zen Maru Gothic 代替
         （丸みのある幾何サンス × 丸ゴシックで、親子にやさしく品を保つ）
   方針: 濃いダーク全面は使わない。写真主体・余白・アースカラーで温かく。
   ============================================================ */

:root {
  --paper: #f6efe1;       /* ページ地（明るいクリーム） */
  --paper-2: #efe6d4;     /* 交互セクション */
  --sand: #e9e1d1;        /* 生成りの帯 */
  --tan: #d6cfc1;         /* タン */
  --cream: #f0e8d8;       /* クリーム */
  --ink: #43382e;         /* 見出し・ブランド（温espresso） */
  --text: #574b3e;        /* 本文 */
  --muted: #8a7c6a;       /* 補助テキスト */
  --gold: #9c7f2a;        /* 差し色（実測） */
  --gold-2: #b8983f;      /* 明るい金 */
  --gold-deep: #7d6420;   /* 濃い金（hover） */
  --sky: #dce4f6;         /* ペールブルー */
  --sky-ink: #5a6b90;     /* 青地の文字 */
  --white: #ffffff;
  --line: rgba(67, 56, 46, 0.15);
  --line-soft: rgba(67, 56, 46, 0.08);
  --sun: 232, 176, 75;    /* 陽だまりの微光（rgb） */

  --font-ja: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Noto Sans JP", sans-serif;
  --font-en: "Poppins", "Zen Maru Gothic", sans-serif;

  --r-lg: 26px;
  --r-md: 16px;
  --r-sm: 12px;
  --r-pill: 999px;
  --maxw: 1140px;
  --header-h: 76px;
  --shadow: 0 22px 50px -28px rgba(67, 56, 46, 0.5);
  --shadow-soft: 0 14px 34px -22px rgba(67, 56, 46, 0.45);
  --ease: cubic-bezier(0.22, 0.7, 0.24, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-ja);
  font-size: 15.5px;
  font-weight: 400;
  line-height: 1.95;
  letter-spacing: 0.03em;
  color: var(--text);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
em { font-style: normal; }

/* ---------- 共通見出し ---------- */

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(22px, 5vw, 56px);
}

.section { padding: clamp(72px, 11vw, 128px) 0; }
.section-alt { background: var(--paper-2); }
.section-sand { background: var(--sand); }

.eyebrow {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(var(--sun), 0.28);
  flex-shrink: 0;
}

.sec-title {
  font-size: clamp(1.55rem, 3.6vw, 2.35rem);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin-top: 20px;
}
.sec-title em { color: var(--gold); }

.sec-lead {
  margin-top: 24px;
  font-size: 0.98rem;
  line-height: 2.15;
  color: var(--text);
  max-width: 38em;
}

.sec-head { margin-bottom: clamp(40px, 6vw, 68px); }
.sec-head.center { text-align: center; }
.sec-head.center .eyebrow::before { display: none; }
.sec-head.center .sec-lead { margin-left: auto; margin-right: auto; }

/* ---------- ボタン / チップ ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  font-family: var(--font-ja);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}
.btn-arrow { font-family: var(--font-en); transition: transform 0.3s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #fff8e8;
  box-shadow: 0 14px 26px -14px rgba(124, 100, 32, 0.75);
}
.btn-primary:hover { background: linear-gradient(135deg, var(--gold), var(--gold-deep)); transform: translateY(-2px); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.72);
  border-color: var(--tan);
  color: var(--ink);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-deep); transform: translateY(-2px); }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--r-pill);
  background: var(--white);
  border: 1px solid var(--line-soft);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  box-shadow: 0 6px 16px -12px rgba(67, 56, 46, 0.5);
}
.chip::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.chip.chip-sky { background: var(--sky); border-color: transparent; color: var(--sky-ink); }
.chip.chip-sky::before { background: var(--sky-ink); }

/* ---------- ヘッダー（全ブレークポイント・横型） ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 300;
  background: rgba(246, 239, 225, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner {
  max-width: 1240px;
  margin: 0 auto;
  height: var(--header-h);
  padding: 0 clamp(18px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--ink);
}
.brand-en {
  font-family: var(--font-en);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}
.header-nav ul { display: flex; align-items: center; gap: clamp(16px, 2vw, 30px); }
.header-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink);
  padding: 6px 2px;
  position: relative;
  white-space: nowrap;
  transition: color 0.25s ease;
}
.header-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.header-nav a:hover::after,
.header-nav a.active::after { transform: scaleX(1); }
.header-nav a.active { color: var(--gold-deep); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.header-tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--r-pill);
  background: var(--gold);
  color: #fff8e8;
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  transition: background 0.3s ease, transform 0.3s ease;
}
.header-tel:hover { background: var(--gold-deep); transform: translateY(-1px); }
.header-tel small { font-family: var(--font-ja); font-size: 0.62rem; letter-spacing: 0.1em; opacity: 0.85; }

.hamburger { display: none; }

/* ---------- Hero（写真主体・意味が3秒でわかる） ---------- */

.hero {
  position: relative;
  min-height: min(86vh, 760px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(67, 48, 30, 0.5) 0%, rgba(67, 48, 30, 0.16) 46%, rgba(67, 48, 30, 0) 72%),
    linear-gradient(0deg, rgba(50, 38, 24, 0.42) 0%, rgba(50, 38, 24, 0) 40%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(28px, 6vw, 64px) clamp(22px, 5vw, 56px) clamp(40px, 6vw, 72px);
}
.hero-card {
  max-width: 660px;
  background: rgba(246, 239, 225, 0.9);
  backdrop-filter: blur(6px);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow);
  position: relative;
}
.hero-card::before {
  /* 陽だまりの微光 */
  content: "";
  position: absolute;
  top: -34px; right: -22px;
  width: 130px; height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--sun), 0.55), rgba(var(--sun), 0) 70%);
  pointer-events: none;
}
.hero-eyebrow { margin-bottom: 18px; }
.hero-title {
  font-size: clamp(1.95rem, 5vw, 2.9rem);
  font-weight: 700;
  line-height: 1.34;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.hero-title .lead-line {
  display: block;
  font-size: 0.52em;
  font-weight: 500;
  color: var(--gold-deep);
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.hero-lead {
  margin-top: 20px;
  font-size: 0.98rem;
  line-height: 2.05;
  color: var(--text);
  max-width: 30em;
}
.hero-points {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---------- お知らせ ---------- */

.news {
  background: var(--white);
  border-bottom: 1px solid var(--line-soft);
}
.news-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 22px clamp(22px, 5vw, 56px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
}
.news-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.news-label::before { content: "🌱"; font-size: 0.9rem; }
.news-list { display: flex; flex-direction: column; gap: 4px; }
.news-list li { display: flex; gap: 20px; font-size: 0.9rem; align-items: baseline; }
.news-date {
  font-family: var(--font-en);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--gold-deep);
  white-space: nowrap;
}
.news-text { color: var(--text); }

/* ---------- Welcome（はじめまして） ---------- */

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
}
.welcome-copy { position: relative; }
.welcome-photos {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
}
.welcome-photo-main {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-soft);
}
.welcome-photo-main img { width: 100%; height: 100%; object-fit: cover; }
.welcome-photo-sub {
  position: absolute;
  right: -18px;
  bottom: -34px;
  width: 44%;
  aspect-ratio: 1 / 1;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 6px solid var(--paper);
  box-shadow: var(--shadow-soft);
}
.welcome-photo-sub img { width: 100%; height: 100%; object-fit: cover; }

/* 手描き風の陽だまりマーク（純CSS・上品な範囲で1つ） */
.sun-mark {
  position: relative;
  width: 46px; height: 46px;
  margin-bottom: 24px;
}
.sun-mark::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold-2), var(--gold));
}
.sun-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    conic-gradient(from 0deg,
      var(--gold) 0 6deg, transparent 6deg 45deg,
      var(--gold) 45deg 51deg, transparent 51deg 90deg,
      var(--gold) 90deg 96deg, transparent 96deg 135deg,
      var(--gold) 135deg 141deg, transparent 141deg 180deg,
      var(--gold) 180deg 186deg, transparent 186deg 225deg,
      var(--gold) 225deg 231deg, transparent 231deg 270deg,
      var(--gold) 270deg 276deg, transparent 276deg 315deg,
      var(--gold) 315deg 321deg, transparent 321deg 360deg);
  -webkit-mask: radial-gradient(circle, transparent 46%, #000 47% 60%, transparent 61%);
          mask: radial-gradient(circle, transparent 46%, #000 47% 60%, transparent 61%);
  opacity: 0.9;
}

/* ---------- Favorites（3つのこだわり・写真交互） ---------- */

.favorites-list { display: flex; flex-direction: column; gap: clamp(48px, 7vw, 88px); }
.favorite-row {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.favorite-row.is-flip .favorite-photo { order: 2; }
.favorite-photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-soft);
}
.favorite-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.favorite-row:hover .favorite-photo img { transform: scale(1.04); }
.favorite-num {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
}
.favorite-title {
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-weight: 700;
  line-height: 1.6;
  color: var(--ink);
  margin-top: 14px;
}
.favorite-desc { margin-top: 18px; font-size: 0.96rem; line-height: 2.15; color: var(--text); }

/* ---------- Signature（人気の三品） ---------- */

.signature { position: relative; overflow: hidden; }
.signature-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  margin-bottom: clamp(44px, 6vw, 72px);
}
.signature-badge {
  width: 148px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 28%, var(--gold-2), var(--gold) 62%, var(--gold-deep));
  color: #fff8e8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  box-shadow: 0 20px 40px -20px rgba(124, 100, 32, 0.85);
  transform: rotate(-6deg);
}
.signature-badge-title { font-size: 1.24rem; font-weight: 700; letter-spacing: 0.06em; }
.signature-badge-sub {
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.9;
}
.signature-badge::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 248, 232, 0.55);
}

.signature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(22px, 3vw, 38px);
}
.signature-item {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.signature-item:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.signature-item:nth-child(2) { margin-top: clamp(0px, 3vw, 34px); }
.signature-item:nth-child(3) { margin-top: clamp(0px, 6vw, 68px); }
.signature-photo { aspect-ratio: 4 / 3; overflow: hidden; }
.signature-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.signature-item:hover .signature-photo img { transform: scale(1.05); }
.signature-body { padding: 22px 24px 26px; }
.signature-name { font-size: 1.08rem; font-weight: 700; color: var(--ink); letter-spacing: 0.03em; }
.signature-sub {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}
.signature-desc { margin-top: 12px; font-size: 0.88rem; line-height: 2; color: var(--muted); }
.signature-price {
  margin-top: 14px;
  font-family: var(--font-en);
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--gold-deep);
  letter-spacing: 0.02em;
}
.signature-footnote {
  margin-top: clamp(32px, 5vw, 48px);
  font-size: 0.82rem;
  color: var(--muted);
  text-align: center;
}
.signature-cta { text-align: center; margin-top: 26px; }

/* ---------- Space（親子にやさしい空間・明るい帯） ---------- */

.space { background: var(--sand); }
.space-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
}
.space-photo {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.space-photo img { width: 100%; height: clamp(300px, 42vw, 480px); object-fit: cover; }
.space-points {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.space-point {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--white);
  border-radius: var(--r-md);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  box-shadow: 0 8px 20px -16px rgba(67, 56, 46, 0.6);
}
.space-point::before {
  content: "";
  width: 26px; height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--sky);
  position: relative;
}
.space-point::after {
  content: "✓";
  position: absolute;
  margin-left: 7px;
  color: var(--sky-ink);
  font-size: 0.82rem;
  font-weight: 700;
  transform: translateX(-1px);
}

/* ---------- Gallery（写真グリッド） ---------- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 22px);
}
.gallery-item {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-soft);
}
.gallery-item:nth-child(1) { border-top-left-radius: var(--r-lg); }
.gallery-item:nth-child(4) { border-bottom-right-radius: var(--r-lg); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 16px 14px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(0deg, rgba(50, 38, 24, 0.72), rgba(50, 38, 24, 0));
}

/* ---------- FAQ ---------- */

.faq-container { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: 0 10px 24px -20px rgba(67, 56, 46, 0.6);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}
.faq-q-label {
  font-family: var(--font-en);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}
.faq-q-text { flex: 1; }
.faq-toggle { position: relative; width: 16px; height: 16px; flex-shrink: 0; }
.faq-toggle::before, .faq-toggle::after {
  content: "";
  position: absolute;
  top: 50%; left: 0;
  width: 100%; height: 2px;
  border-radius: 2px;
  background: var(--gold);
  transition: transform 0.35s var(--ease);
}
.faq-toggle::after { transform: rotate(90deg); }
.faq-item.is-open .faq-toggle::after { transform: rotate(0deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-item.is-open .faq-answer { max-height: 340px; }
.faq-answer-inner {
  padding: 0 22px 22px 58px;
  font-size: 0.92rem;
  line-height: 2.1;
  color: var(--text);
}

/* ---------- Visit（予約CTA・トップ末尾） ---------- */

.visit-photo { height: clamp(220px, 32vw, 340px); overflow: hidden; }
.visit-photo img { width: 100%; height: 100%; object-fit: cover; }
.visit {
  background: var(--paper-2);
  padding: clamp(64px, 9vw, 110px) clamp(22px, 5vw, 56px);
}
.visit-inner {
  max-width: 660px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: clamp(40px, 6vw, 68px) clamp(28px, 5vw, 56px);
  box-shadow: var(--shadow-soft);
  position: relative;
}
.visit-inner .eyebrow { justify-content: center; }
.visit-inner .eyebrow::before { display: none; }
.visit-title { font-size: clamp(1.4rem, 2.6vw, 1.85rem); font-weight: 700; color: var(--ink); margin-top: 16px; }
.visit-note { margin-top: 18px; font-size: 0.94rem; line-height: 2.1; color: var(--text); }
.visit-tel {
  display: inline-block;
  margin-top: 28px;
  font-family: var(--font-en);
  font-size: clamp(1.8rem, 3.6vw, 2.4rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold-deep);
}
.visit-tel small {
  display: block;
  font-family: var(--font-ja);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 6px;
}
.visit-buttons { margin-top: 30px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- フッター ---------- */

.footer {
  background: var(--cream);
  border-top: 1px solid var(--line-soft);
  padding: clamp(56px, 8vw, 88px) 0 0;
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 clamp(22px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
}
.footer-logo { font-size: 1.5rem; font-weight: 700; letter-spacing: 0.1em; color: var(--ink); }
.footer-logo-en {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 6px;
}
.footer-tagline { margin-top: 14px; font-size: 0.86rem; color: var(--muted); }
.footer-info { margin-top: 22px; font-size: 0.85rem; line-height: 2.1; color: var(--text); }
.footer-heading {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-links { margin-top: 20px; }
.footer-links li { padding: 4px 0; }
.footer-links a { font-size: 0.88rem; color: var(--text); transition: color 0.25s ease; }
.footer-links a:hover { color: var(--gold-deep); }
.footer-bottom {
  margin-top: clamp(44px, 6vw, 64px);
  padding: 22px 0;
  border-top: 1px solid var(--line-soft);
  text-align: center;
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--muted);
}

/* ---------- 下層ページ共通ヘッダー ---------- */

.page-header {
  background: var(--sand);
  padding: clamp(56px, 8vw, 92px) clamp(22px, 5vw, 56px) clamp(48px, 7vw, 72px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::after {
  content: "";
  position: absolute;
  top: -70px; right: -40px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--sun), 0.4), rgba(var(--sun), 0) 70%);
}
.page-header-en {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
}
.page-header-title { font-size: clamp(1.7rem, 3.6vw, 2.3rem); font-weight: 700; color: var(--ink); margin-top: 14px; }

/* ---------- メニューページ ---------- */

.menu-category { max-width: 820px; margin: 0 auto clamp(52px, 7vw, 80px); }
.menu-category:last-of-type { margin-bottom: 0; }
.menu-category-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--tan);
}
.menu-category-title { font-size: clamp(1.25rem, 2.2vw, 1.5rem); font-weight: 700; color: var(--ink); letter-spacing: 0.04em; }
.menu-category-en {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.menu-category-intro { margin-top: 14px; font-size: 0.88rem; line-height: 2; color: var(--muted); }
.menu-list { margin-top: 22px; }
.menu-item { padding: 18px 4px; border-bottom: 1px solid var(--line-soft); }
.menu-item-head { display: flex; align-items: baseline; gap: 12px; }
.menu-item-name { font-size: 1rem; font-weight: 700; color: var(--ink); letter-spacing: 0.02em; }
.menu-item-badge {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff8e8;
  background: var(--gold);
  border-radius: var(--r-pill);
  padding: 2px 10px;
  white-space: nowrap;
}
.menu-item-dots { flex: 1; border-bottom: 1px dotted var(--tan); transform: translateY(-4px); min-width: 20px; }
.menu-item-price { font-family: var(--font-en); font-size: 1.02rem; font-weight: 600; color: var(--gold-deep); white-space: nowrap; }
.menu-item-price small { font-family: var(--font-ja); font-size: 0.7rem; font-weight: 400; color: var(--muted); margin-left: 6px; }
.menu-item-desc { margin-top: 6px; font-size: 0.86rem; line-height: 2; color: var(--text); }
.menu-item-note {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--sky-ink);
  background: var(--sky);
  border-radius: var(--r-pill);
  padding: 2px 10px;
}
.menu-footnote {
  max-width: 820px;
  margin: clamp(40px, 6vw, 60px) auto 0;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--r-md);
  font-size: 0.82rem;
  line-height: 2;
  color: var(--muted);
}

/* ---------- お品書き（写真タイル型） ---------- */

/* カテゴリ帯ナビ（ヘッダー直下に貼りつく） */
.menu-nav { position: sticky; top: var(--header-h); z-index: 50; background: rgba(246, 239, 225, 0.95); backdrop-filter: saturate(1.1) blur(6px); border-bottom: 1px solid var(--line-soft); }
.menu-nav-list { display: flex; justify-content: center; flex-wrap: wrap; gap: 9px; padding: 12px 0; margin: 0; list-style: none; }
.menu-nav-list a { display: inline-block; padding: 7px 16px; border-radius: var(--r-pill); background: var(--white); border: 1px solid var(--line); font-size: 0.9rem; font-weight: 700; color: var(--ink); text-decoration: none; box-shadow: var(--shadow-soft); transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease); }
.menu-nav-list a:hover { background: var(--gold); border-color: var(--gold); color: #fff; transform: translateY(-1px); }
.menu-nav-list a{white-space:nowrap}

/* 看板メニュー: 写真タイルグリッド（まるみのある居心地） */
.menu-highlight { background: var(--paper); }
.htile-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 30px); }
.htile { display: flex; flex-direction: column; background: var(--white); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-soft); transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease); }
.htile:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.htile-photo { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.htile-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.htile:hover .htile-photo img { transform: scale(1.05); }
.htile-badge { position: absolute; top: 12px; left: 12px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; color: #fff; background: var(--gold); padding: 4px 13px; border-radius: var(--r-pill); box-shadow: 0 4px 12px rgba(67, 56, 46, 0.22); }
.htile-body { display: flex; flex-direction: column; flex: 1; padding: 18px 20px 20px; }
.htile-name { font-size: 1.16rem; font-weight: 700; color: var(--ink); letter-spacing: 0.02em; line-height: 1.45; }
.htile-desc { flex: 1; margin-top: 9px; font-size: 0.85rem; line-height: 1.85; color: var(--text); }
.htile-foot { margin-top: 15px; padding-top: 13px; border-top: 1px solid var(--line-soft); display: flex; justify-content: flex-end; align-items: baseline; }
.htile-price { font-family: var(--font-en); font-size: 1.32rem; font-weight: 700; letter-spacing: 0.01em; color: var(--gold-deep); }

/* 名物: 今週のおやつ（明るいクリームのカード） */
.weekly-card { max-width: 720px; margin: 0 auto; background: var(--white); border: 2px dashed var(--tan); border-radius: var(--r-lg); padding: clamp(30px, 4.5vw, 50px) clamp(24px, 5vw, 56px); box-shadow: var(--shadow-soft); text-align: center; }
.weekly-eyebrow { font-family: var(--font-en); font-size: 12px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--gold); }
.weekly-title { font-size: clamp(1.4rem, 2.8vw, 1.86rem); font-weight: 700; color: var(--ink); letter-spacing: 0.03em; margin-top: 10px; }
.weekly-lead { max-width: 480px; margin: 12px auto 0; font-size: 0.86rem; line-height: 1.95; color: var(--muted); }
.weekly-list { margin-top: clamp(24px, 3.5vw, 34px); text-align: left; }
.weekly-row { display: grid; grid-template-columns: auto 1fr auto; align-items: baseline; gap: 10px; padding: 13px 4px; border-bottom: 1px solid var(--line-soft); }
.weekly-name { font-size: 1.02rem; font-weight: 700; color: var(--ink); letter-spacing: 0.02em; }
.weekly-dots { border-bottom: 1px dotted var(--line); transform: translateY(-4px); }
.weekly-price { font-family: var(--font-en); font-size: 1.16rem; font-weight: 700; color: var(--gold-deep); white-space: nowrap; }
.weekly-note { grid-column: 2 / 4; justify-self: end; font-size: 0.75rem; color: var(--muted); margin-top: -4px; }
.weekly-footnote { margin-top: 20px; font-size: 0.78rem; color: var(--muted); }

/* フルメニュー: カテゴリ帯写真 + アンカー */
.menu-full .menu-category { scroll-margin-top: calc(var(--header-h) + 54px); }
.mcat-band { aspect-ratio: 16 / 5; overflow: hidden; margin-bottom: clamp(20px, 3vw, 30px); border-radius: var(--r-md); box-shadow: var(--shadow-soft); }
.mcat-band img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.mcat-band:hover img { transform: scale(1.04); }

/* ---------- 予約CTA（下層ページ末尾・コンパクト） ---------- */

.visit-compact {
  border-top: 1px solid var(--line-soft);
  background: var(--paper-2);
  padding: clamp(48px, 7vw, 76px) clamp(22px, 5vw, 56px);
}
.visit-compact-inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.visit-compact-eyebrow {
  display: inline-flex;
  font-family: var(--font-en);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}
.visit-compact-title { display: block; font-size: clamp(1.2rem, 2.2vw, 1.5rem); font-weight: 700; color: var(--ink); margin-top: 8px; }
.visit-compact-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- 店についてページ ---------- */

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.about-photo { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4 / 5; box-shadow: var(--shadow); }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }

.owner-block {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}
.owner-img { border-radius: var(--r-lg); overflow: hidden; aspect-ratio: 4 / 5; box-shadow: var(--shadow-soft); }
.owner-img img { width: 100%; height: 100%; object-fit: cover; }
.owner-role {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gold);
}
.owner-name { font-size: clamp(1.45rem, 2.6vw, 1.85rem); font-weight: 700; color: var(--ink); margin-top: 12px; letter-spacing: 0.06em; }
.owner-name-en { font-family: var(--font-en); font-size: 11px; letter-spacing: 0.2em; color: var(--muted); margin-top: 6px; }
.owner-bio { margin-top: 24px; font-size: 0.95rem; line-height: 2.2; color: var(--text); }
.owner-career { margin-top: 28px; display: flex; flex-direction: column; gap: 10px; }
.owner-career li {
  display: flex;
  gap: 14px;
  padding-left: 18px;
  position: relative;
  font-size: 0.86rem;
  color: var(--muted);
}
.owner-career li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.85em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

/* ---------- アクセスページ ---------- */

.access-layout {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}
.access-map { position: sticky; top: calc(var(--header-h) + 16px); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-soft); }
.access-map iframe { width: 100%; height: clamp(340px, 46vw, 520px); border: none; display: block; }
.access-info-block { display: grid; grid-template-columns: 92px 1fr; gap: 20px; padding: 20px 0; border-bottom: 1px solid var(--line-soft); }
.access-info-block:first-child { border-top: 1px solid var(--line-soft); }
.access-info-label {
  font-family: var(--font-en);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding-top: 6px;
}
.access-info-text { font-size: 0.92rem; line-height: 2.05; color: var(--text); }
.hours-table { border-collapse: collapse; width: 100%; }
.hours-table td { padding: 5px 0; font-size: 0.9rem; vertical-align: top; }
.hours-table td:first-child { white-space: nowrap; padding-right: 24px; color: var(--muted); }
.phone-link { color: var(--gold-deep); font-family: var(--font-en); font-weight: 600; letter-spacing: 0.04em; }

/* 道順ステップ（アクセスの見せ場） */
.route {
  margin-top: clamp(48px, 6vw, 72px);
}
.route-lead { max-width: 40em; margin: 0 auto clamp(32px, 4vw, 48px); text-align: center; font-size: 0.96rem; line-height: 2.1; color: var(--text); }
.route-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 44px);
  max-width: 980px;
  margin: 0 auto;
}
.route-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: clamp(26px, 3vw, 36px);
  box-shadow: var(--shadow-soft);
}
.route-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.route-card-head .badge {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--sand);
  display: grid; place-items: center;
  font-size: 1.1rem;
}
.route-card-title { font-size: 1.15rem; font-weight: 700; color: var(--ink); }
.route-card-sub { font-size: 0.8rem; color: var(--muted); }
.route-steps { display: flex; flex-direction: column; gap: 0; }
.route-step { display: grid; grid-template-columns: auto 1fr; gap: 16px; padding: 12px 0; position: relative; }
.route-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 15px; top: 42px; bottom: -4px;
  width: 2px;
  background: var(--tan);
}
.route-step-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #fff8e8;
  display: grid; place-items: center;
  font-family: var(--font-en);
  font-size: 0.82rem;
  font-weight: 600;
  z-index: 1;
}
.route-step-text { font-size: 0.9rem; line-height: 1.9; color: var(--text); padding-top: 3px; }
.access-amenities {
  margin-top: clamp(40px, 5vw, 60px);
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ---------- お問い合わせページ ---------- */

.contact-intro { max-width: 640px; margin: 0 auto clamp(40px, 6vw, 60px); text-align: center; }
.contact-form { max-width: 640px; margin: 0 auto; }
.form-group { margin-bottom: 24px; }
.form-label { display: block; font-size: 0.86rem; font-weight: 700; color: var(--ink); margin-bottom: 9px; }
.form-label .required {
  font-size: 0.66rem;
  font-weight: 500;
  color: #fff8e8;
  background: var(--gold);
  border-radius: var(--r-pill);
  padding: 1px 9px;
  margin-left: 10px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--white);
  border: 1.5px solid var(--tan);
  border-radius: var(--r-md);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(var(--sun), 0.22);
}
.form-textarea { min-height: 160px; resize: vertical; }
.form-select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%); background-position: calc(100% - 22px) 22px, calc(100% - 16px) 22px; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; }
.form-submit {
  display: block;
  margin: 32px auto 0;
  padding: 16px 64px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff8e8;
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  border: none;
  border-radius: var(--r-pill);
  cursor: pointer;
  box-shadow: 0 14px 26px -14px rgba(124, 100, 32, 0.75);
  transition: background 0.3s ease, transform 0.3s ease;
}
.form-submit:hover { background: linear-gradient(135deg, var(--gold), var(--gold-deep)); transform: translateY(-2px); }
.form-submit:disabled { opacity: 0.55; cursor: wait; }

.quick-contact {
  background: var(--sand);
  padding: clamp(56px, 8vw, 92px) clamp(22px, 5vw, 56px);
  text-align: center;
}
.quick-contact .eyebrow { justify-content: center; }
.quick-contact .eyebrow::before { display: none; }
.quick-contact-phone {
  display: inline-block;
  margin-top: 20px;
  font-family: var(--font-en);
  font-size: clamp(1.9rem, 3.8vw, 2.5rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold-deep);
}
.quick-contact-hours { margin-top: 12px; font-size: 0.86rem; color: var(--muted); }

/* ---------- SP: 固定CTAバー ---------- */

.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease);
  box-shadow: 0 -8px 24px -16px rgba(67, 56, 46, 0.6);
}
.mobile-cta-bar .m-btn {
  flex: 1;
  text-align: center;
  padding: 15px 0;
  font-size: 0.94rem;
  font-weight: 700;
}
.mobile-cta-bar .m-tel { background: var(--white); color: var(--ink); border-top: 1px solid var(--tan); }
.mobile-cta-bar .m-menu { background: linear-gradient(135deg, var(--gold-2), var(--gold)); color: #fff8e8; }

/* ---------- フェードイン ---------- */

.fade-in { opacity: 0; transform: translateY(26px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.is-hidden { display: none !important; }

/* ---------- レスポンシブ ---------- */

/* ナビ折りたたみは帯の折れ防止のため collapse を +140px 早める（タブレット検収基準・レイアウト用と分離） */
@media (max-width: 1100px) {
  .header-nav { display: none; }
  .header-nav.open {
    display: block;
    position: fixed;
    top: var(--header-h);
    left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    padding: 12px 0 20px;
  }
  .header-nav.open ul { flex-direction: column; gap: 0; }
  .header-nav.open li { width: 100%; text-align: center; }
  .header-nav.open a { display: block; padding: 13px 0; font-size: 1rem; }
  .header-nav.open a::after { display: none; }
  .header-tel small { display: none; }
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px; height: 44px;
    background: none; border: none; cursor: pointer;
  }
  .hamburger span { display: block; width: 24px; height: 2px; border-radius: 2px; background: var(--ink); transition: transform 0.3s var(--ease), opacity 0.3s ease; }
  .hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

@media (max-width: 960px) {
  .welcome-grid { grid-template-columns: 1fr; gap: 56px; }
  .welcome-photo-sub { width: 40%; right: 4%; bottom: -28px; }

  .favorite-row { grid-template-columns: 1fr; gap: 24px; }
  .favorite-row.is-flip .favorite-photo { order: 0; }

  .signature-head { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 24px; }
  .signature-head .sec-lead { margin-left: auto; margin-right: auto; }
  .signature-list { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .signature-item:nth-child(2), .signature-item:nth-child(3) { margin-top: 0; }

  .space-grid { grid-template-columns: 1fr; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .access-layout { grid-template-columns: 1fr; }
  .access-map { position: static; }
  .route-cols { grid-template-columns: 1fr; }

  .about-story { grid-template-columns: 1fr; }
  .owner-block { grid-template-columns: 1fr; }
  .owner-img { max-width: 340px; }

  .visit-compact-inner { flex-direction: column; text-align: center; }

  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer { padding-bottom: 74px; }
  .mobile-cta-bar { display: flex; }

  .htile-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .menu-nav-list { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; padding: 12px 4px; -webkit-overflow-scrolling: touch; }
  .menu-nav-list a { flex-shrink: 0; }
}

@media (max-width: 540px) {
  .news-inner { grid-template-columns: 1fr; gap: 10px; }
  .news-list li { flex-direction: column; gap: 0; }
  .space-points { grid-template-columns: 1fr; }
  .hero-card { max-width: 100%; }
  .htile-grid { grid-template-columns: 1fr; }
  .weekly-row { grid-template-columns: 1fr auto; }
  .weekly-dots { display: none; }
  .weekly-note { grid-column: 1 / 3; margin-top: 0; }
}

/* ---------- 動きの抑制 ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .fade-in { opacity: 1; transform: none; }
}
