:root {
  --bg: #fff8e8;
  --paper: #fffdf6;
  --ink: #243028;
  --soft: #67736b;
  --line: rgba(36, 48, 40, .12);
  --green: #294a34;
  --leaf: #77975a;
  --lemon: #f8cb38;
  --orange: #ef8a2b;
  --cream: #fff0bd;
  --shadow: 0 18px 42px rgba(67, 42, 8, .16);
  --radius: 8px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --section-title-size: clamp(1.42rem, 6.4vw, 2.05rem);
  --section-title-line: 1.38;
  --font-body: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", system-ui, sans-serif;
  --font-accent: "Cormorant Garamond", Georgia, serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(248, 203, 56, .18), transparent 28rem),
    linear-gradient(90deg, #f6efd9, #fff8e8 24%, #fff8e8 76%, #f6efd9);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 500;
  line-height: 1.82;
  letter-spacing: .02em;
  padding-bottom: calc(78px + var(--safe-bottom));
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p { margin-top: 0; }

.page-shell {
  width: min(100%, 460px);
  margin: 0 auto;
  min-height: 100vh;
  background: var(--bg);
  box-shadow: 0 0 70px rgba(33, 34, 21, .12);
  overflow: clip;
}

/* PC 3カラム土台（モバイル既定: 中央列のみ。※@media より前に置く＝後勝ち回避） */
.layout-pc { display: block; }
.side-col { display: none; }

/* ===== Topbar ===== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: transparent;
  transition: background .25s ease, box-shadow .25s ease;
}
.topbar.is-scrolled {
  background: rgba(255, 253, 246, .96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, .65);
  box-shadow: 0 10px 28px rgba(63, 45, 15, .08);
}
.brand {
  display: inline-flex;
  align-items: center;
  width: 96px;
  height: 46px;
}
.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lang-switch {
  display: inline-flex;
  padding: 3px;
  border-radius: 999px;
  background: rgba(36, 48, 40, .08);
}
.lang-btn {
  min-width: 34px;
  padding: 5px 9px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--soft);
  font-weight: 900;
  font-size: .76rem;
  letter-spacing: .04em;
  cursor: pointer;
}
.lang-btn.is-active { background: var(--ink); color: #fff; }

.menu-button {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  display: grid;
  place-content: center;
  gap: 5px;
  cursor: pointer;
}
.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 999px;
  transition: transform .22s ease, opacity .22s ease;
}
.menu-button[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-button[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.drawer {
  position: fixed;
  z-index: 29;
  top: 72px;
  left: 50%;
  width: min(calc(100vw - 28px), 432px);
  transform: translateX(-50%);
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 18px;
  background: rgba(255, 253, 246, .98);
  box-shadow: var(--shadow);
}
.drawer a {
  display: block;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}
.drawer a:last-child { border-bottom: 0; }
.drawer .drawer-cta {
  margin-top: 8px;
  text-align: center;
  border-radius: 999px;
  background: var(--lemon);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  align-items: flex-end;
  padding: 0 20px 108px;
  overflow: hidden;
}

/* FV: モック画像をそのままFVに使用（山田指示 2026-06-06）。HTML再現を取りやめ画像採用。
   中央カラム幅が固定のため、PC/タブレットでも引き伸ばさず一定サイズで表示される。 */
.hero.hero--mock {
  min-height: 0;
  margin-top: -66px; /* トップバー(66px)の下へ潜らせ、写真を最上部までフルブリードにする（ヘッダーを写真に重ねる） */
  padding: 0;
  display: block;
  overflow: visible;
}
.hero--mock .hero-mock {
  display: block;
  width: 100%;
  height: auto;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  transform: scale(1.04);
  animation: heroZoom 16s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-tint {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 23%, rgba(255, 228, 112, .18), transparent 16rem),
    linear-gradient(180deg, rgba(22, 31, 24, .05), rgba(22, 31, 24, .12) 34%, rgba(22, 31, 24, .76) 76%, rgba(22, 31, 24, .92)),
    linear-gradient(90deg, rgba(22, 31, 24, .56), rgba(22, 31, 24, .08) 72%);
}

.hero-copy { position: relative; z-index: 1; color: #fff; }
.hero-kicker,
.kicker {
  margin-bottom: 10px;
  color: var(--orange);
  font-family: var(--font-accent);
  font-size: .84rem;
  font-style: italic;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero-kicker { color: #ffe17a; text-shadow: 0 2px 12px rgba(0,0,0,.35); }
h1 {
  margin-bottom: 14px;
  font-size: clamp(3.35rem, 14.7vw, 4.55rem);
  line-height: .94;
  letter-spacing: -.04em;
  text-shadow: 0 3px 28px rgba(0,0,0,.38);
}
.hero-title .hero-line { display: block; white-space: nowrap; }
.hero-title .hero-place { margin-bottom: 3px; font-size: .72em; letter-spacing: -.025em; }
.hero-title .hero-accent {
  color: #ffe05c;
  text-shadow: 0 3px 24px rgba(0,0,0,.42), 0 0 34px rgba(255,224,92,.28);
}
.hero-lead {
  max-width: 21.8em;
  margin-bottom: 16px;
  font-size: .98rem;
  font-weight: 800;
  line-height: 1.75;
  text-shadow: 0 2px 16px rgba(0,0,0,.45);
}
.hero-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.hero-pills span {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 253, 246, .9);
  color: var(--ink);
  font-size: .76rem;
  font-weight: 900;
}
.hero-actions { display: grid; grid-template-columns: 1.2fr .8fr; gap: 10px; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 52px;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease;
}
.btn:active { transform: translateY(1px); }
.primary { background: var(--lemon); color: var(--ink); box-shadow: 0 14px 24px rgba(248, 203, 56, .24); }
.glass { border: 1px solid rgba(255,255,255,.5); background: rgba(255,255,255,.12); color: #fff; backdrop-filter: blur(8px); }
.dark { background: var(--ink); color: #fff; }
.line { background: #06c755; color: #fff; }
.block { width: 100%; }
.arw { font-weight: 900; }

/* ===== Quick info ===== */
.quick-info {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  width: calc(100% - 28px);
  margin: -34px auto 0;
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(255,253,246,.94);
  box-shadow: var(--shadow);
}
.quick-info div { padding: 6px 4px; border-right: 1px solid var(--line); }
.quick-info div:nth-child(2) { border-right: 0; }
.quick-info span {
  display: block;
  color: var(--orange);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.quick-info strong { display: block; font-size: .92rem; line-height: 1.35; }
.quick-info a {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-weight: 900;
}

/* ===== Sections ===== */
.section { padding: 62px 20px; }
.section.first { padding-top: 52px; }
.warm {
  background:
    radial-gradient(circle at 100% 0%, rgba(248, 203, 56, .35), transparent 14rem),
    #fff0bd;
}
.pale { background: #f5f9e8; }
.section-head { margin-bottom: 24px; }
.section-head h2,
.owner-card h2,
.reserve h2 {
  margin-bottom: 12px;
  font-size: var(--section-title-size);
  line-height: var(--section-title-line);
  letter-spacing: -.03em;
}
.section-head > p,
.reserve p { color: var(--soft); font-size: .96rem; }
.note {
  margin: 16px 0 0;
  color: var(--soft);
  font-size: .8rem;
  line-height: 1.7;
}

/* ===== Way cards (4つの楽しみ方) ===== */
.way-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.way-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 218px;
  padding: 0 14px 16px;
  overflow: hidden;
  border-radius: var(--radius);
  color: #fff;
  box-shadow: var(--shadow);
}
.way-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(22,31,24,.04) 18%, rgba(22,31,24,.34) 56%, rgba(22,31,24,.82) 100%),
    linear-gradient(135deg, rgba(248,203,56,.16), transparent 44%);
}
.way-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.way-card span,
.way-card strong,
.way-card small { position: relative; z-index: 3; }
.way-card span {
  position: absolute;
  top: 10px;
  left: 10px;
  right: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 30px;
  border: 1px solid rgba(255,255,255,.74);
  border-radius: 999px;
  background: rgba(248,203,56,.92);
  color: var(--green);
  font-family: var(--font-accent);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(24,30,25,.18);
}
.way-card strong {
  display: inline;
  width: fit-content;
  margin-bottom: 7px;
  color: #fff;
  font-size: 1.36rem;
  line-height: 1.32;
  letter-spacing: 0;
  text-shadow: 0 2px 12px rgba(0,0,0,.38);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  box-shadow: inset 0 -.48em rgba(248,203,56,.82);
  border-radius: 5px;
}
.way-card small {
  display: block;
  margin-top: 8px;
  color: rgba(255,255,255,.94);
  font-weight: 900;
  font-size: .76rem;
  line-height: 1.45;
  text-shadow: 0 2px 10px rgba(0,0,0,.54);
}

/* ===== Experience ===== */
.experience-list { display: grid; gap: 10px; margin-top: 28px; }
.experience-card {
  display: grid;
  grid-template-columns: minmax(112px, 34%) 1fr;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid rgba(36, 48, 40, .08);
  box-shadow: 0 10px 24px rgba(67, 42, 8, .10);
}
.experience-card img { width: 100%; height: 100%; min-height: 170px; object-fit: cover; }
.experience-card div { padding: 15px 14px 14px 12px; }
.label {
  display: flex;
  width: fit-content;
  margin-bottom: 8px;
  padding: 4px 9px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255,250,232,.96), rgba(255,239,184,.88));
  color: #8a5512;
  font-size: .7rem;
  font-weight: 900;
  line-height: 1.4;
  box-shadow: inset 0 -1px 0 rgba(138,85,18,.12), 0 5px 12px rgba(138,85,18,.08);
}
.experience-card h3 {
  display: inline;
  margin-bottom: 0;
  color: var(--ink);
  font-size: 1.04rem;
  line-height: 1.5;
  letter-spacing: .01em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  box-shadow: inset 0 -.42em rgba(248, 203, 56, .34);
}
.experience-card h3.is-long {
  white-space: nowrap;
  font-size: clamp(.8rem, 3.65vw, 1.04rem);
}
.experience-card p:not(.label) {
  margin: 8px 0 10px;
  color: var(--soft);
  font-size: .76rem;
  font-weight: 800;
  line-height: 1.65;
}
.experience-card strong {
  display: block;
  color: var(--orange);
  font-family: var(--font-accent);
  font-size: 1.18rem;
  line-height: 1.3;
}
.experience-card small { color: var(--soft); font-family: inherit; font-size: .68rem; }
.exp-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
  font-size: .78rem;
  color: var(--green);
}

/* ===== Steps (体験の流れ) ===== */
.steps {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.steps.journey {
  grid-auto-flow: column;
  grid-auto-columns: minmax(264px, 78%);
  margin-inline: -20px;
  padding: 0 30px 10px 20px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.steps.journey::-webkit-scrollbar { display: none; }
.step {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 214px;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .74);
  border-radius: var(--radius);
  background: var(--ink);
  box-shadow: 0 14px 30px rgba(67, 42, 8, .1);
}
.steps.journey .step::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(24, 32, 26, .04) 22%, rgba(24, 32, 26, .38) 54%, rgba(24, 32, 26, .88) 100%),
    linear-gradient(135deg, rgba(248, 203, 56, .16), transparent 50%);
}
.steps.journey .step:not(:last-child)::after {
  content: "›";
  position: absolute;
  z-index: 3;
  top: 50%;
  right: -21px;
  transform: translateY(-50%);
  display: grid;
  place-content: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 50%;
  background: var(--lemon);
  color: var(--green);
  font-family: var(--font-accent);
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 10px 20px rgba(67, 42, 8, .16);
}
.steps.journey .step {
  scroll-snap-align: start;
  overflow: visible;
}
.step-num {
  position: absolute;
  z-index: 2;
  left: 16px;
  top: 16px;
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 3px 8px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 999px;
  background: rgba(255, 253, 246, .9);
  color: var(--green);
  font-family: var(--font-accent);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1;
  box-shadow: none;
}
.steps.journey .step-num::before { content: "STEP 0"; }
.step-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0;
  object-fit: cover;
  box-shadow: none;
}
.step > div {
  position: relative;
  z-index: 2;
  min-width: 0;
}
.step h4 {
  margin-bottom: 6px;
  color: #fffdf6;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .36);
}
.step p {
  margin: 0;
  color: rgba(255, 253, 246, .88);
  font-size: .82rem;
  font-weight: 800;
  line-height: 1.68;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .34);
}
.steps.visual {
  margin: 24px 0 0;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 0;
}
.steps.visual .step {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}
.steps.visual .step::after { content: none; }
.step-photo {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}
.steps.visual .step-body {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;
  min-height: 0;
  padding: 16px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.steps.visual .step-num {
  position: static;
  display: grid;
  place-content: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 1rem;
  box-shadow: none;
}
.steps.visual .step-num::before { content: none; }
.steps.visual .step h4 {
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 1.04rem;
  text-shadow: none;
}
.steps.visual .step p {
  color: var(--soft);
  font-size: .9rem;
  font-weight: 500;
  line-height: 1.72;
  text-shadow: none;
}

/* ===== Menu ===== */
.menu-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.menu-list li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 16px;
  border-bottom: 1px solid var(--line);
  font-size: .92rem;
  font-weight: 900;
}
.menu-list li:last-child { border-bottom: 0; }
.menu-list b { color: var(--orange); white-space: nowrap; }

.menu-products {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(214px, 68%, 286px);
  gap: 12px;
  margin-inline: -20px;
  padding: 0 20px 18px;
  overflow-x: auto;
  scrollbar-width: none;
}
.menu-products::-webkit-scrollbar { display: none; }
.menu-products.is-grabbing { cursor: grabbing; }
.menu-products.is-auto-scroll {
  display: block;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}
.auto-scroll-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(214px, 68vw, 286px);
  gap: 12px;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}
.menu-products article {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}
.menu-product-photo {
  position: relative;
  overflow: hidden;
  background: #f7edd1;
}
.menu-product-photo > img:first-child {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.logo-decal {
  position: absolute;
  left: 50%;
  bottom: 31%;
  width: 23%;
  max-width: 58px;
  transform: translateX(-50%);
  opacity: .72;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 1px 1px rgba(255, 255, 255, .34));
  pointer-events: none;
}
.menu-products h3 {
  margin: 13px 12px 5px;
  font-size: .95rem;
  line-height: 1.42;
}
.menu-products p:not(.price) {
  margin: 0 12px 8px;
  color: var(--soft);
  font-size: .76rem;
  font-weight: 700;
  line-height: 1.62;
}
.menu-products .price {
  margin: 0 12px 14px;
  color: var(--orange);
  font-family: var(--font-accent);
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.1;
}

.menu-board {
  margin-top: 6px;
  text-align: right;
}
.board-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 13px;
  border: 1px solid rgba(42, 82, 55, .22);
  border-radius: 999px;
  background: rgba(255, 253, 246, .72);
  color: var(--green);
  cursor: pointer;
  font-weight: 900;
  font-size: .82rem;
  line-height: 1;
  list-style: none;
}
.board-label:hover { background: rgba(42, 82, 55, .06); }
.board-label::-webkit-details-marker { display: none; }
.board-label::after {
  content: "+";
  display: grid;
  place-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(42, 82, 55, .1);
  font-size: .92rem;
  line-height: 1;
}
.menu-board[open] .board-label { margin-bottom: 12px; }
.menu-board[open] .board-label::after {
  content: "-";
  padding-bottom: 2px;
}
.board-link {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.board-link img { width: 100%; }
.board-zoom {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(36,48,40,.86);
  color: #fff;
  font-size: .78rem;
  font-weight: 900;
}
.board-cap { margin: 10px 2px 0; color: var(--soft); font-size: .8rem; }

/* ===== Gift ===== */
.gift-label {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
}
.gift-label .kicker {
  margin-bottom: 0;
  line-height: 1;
}
.badge-store {
  display: inline-flex;
  align-items: center;
  margin: 0;
  min-height: 25px;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid rgba(42, 82, 55, .18);
  background: linear-gradient(135deg, var(--green), #244431);
  color: #fff !important;
  box-shadow: 0 7px 16px rgba(35, 66, 47, .14);
  font-size: .68rem !important;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .04em;
}
.gift-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(172px, 54%, 238px);
  gap: 10px;
  margin-inline: -20px;
  padding: 0 20px 8px;
  overflow-x: auto;
  scrollbar-width: none;
}
.gift-scroll::-webkit-scrollbar { display: none; }
.gift-scroll.is-grabbing { cursor: grabbing; }
.gift-scroll.is-auto-scroll {
  display: block;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}
.gift-scroll .auto-scroll-track {
  grid-auto-columns: clamp(172px, 54vw, 238px);
  gap: 10px;
}
.gift-scroll article {
  padding: 8px 8px 13px;
  border-radius: 10px;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.gift-scroll img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 6px; }
.gift-scroll h3 { margin: 11px 3px 4px; font-size: .92rem; line-height: 1.35; }
.gift-scroll .price { margin: 0 3px; color: var(--orange); font-family: var(--font-accent); font-size: 1.12rem; font-weight: 700; }

/* ===== Owner / Producer ===== */
.owner-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}
.owner-card > img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: center 42%; }
.owner-card > div { padding: 20px; }
.owner-award {
  display: block;
  margin: 0 0 14px;
  padding: 11px 12px;
  border-radius: var(--radius);
  background: var(--cream);
  color: #7d5214;
  font-size: .86rem;
  font-weight: 900;
}
.owner-name { margin: 0 0 12px; font-size: 1.22rem; font-weight: 900; line-height: 1.4; }
.owner-name span { display: block; margin-top: 2px; color: var(--soft); font-size: .82rem; font-weight: 700; }
.owner-message { margin: 0; color: var(--soft); font-size: .94rem; }
.owner-supervise { margin-top: 20px; }

/* 実写真のエディトリアル見せ（店紹介・口コミウォール） */
.about-photo, .voice-wall {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-photo { margin: 22px 0 0; }
.about-photo img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.voice-wall { margin: 0 0 18px; }
.voice-wall img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }

figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 9px 12px;
  border-radius: var(--radius);
  background: rgba(255,253,246,.92);
  font-size: .82rem;
  font-weight: 900;
  line-height: 1.5;
}

/* ===== Voice ===== */
.google-review-summary {
  display: grid;
  justify-items: center;
  gap: 5px;
  margin: -4px 0 18px;
  padding: 16px 20px 15px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 8%, rgba(248,203,56,.2), transparent 42%),
    rgba(255,253,246,.95);
  box-shadow: 0 16px 34px rgba(67, 42, 8, .13);
  text-align: center;
}
.google-review-brand {
  color: var(--green);
  font-size: .82rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.google-review-score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--ink);
  font-size: 3.08rem;
  font-weight: 900;
  line-height: 1;
}
.review-max {
  margin-left: 4px;
  color: var(--green);
  font-size: .48em;
  font-weight: 900;
  line-height: 1;
  vertical-align: .32em;
}
.review-citrus {
  position: relative;
  width: 36px;
  height: 36px;
  border: 3px solid rgba(255,253,246,.86);
  border-radius: 50%;
  background:
    conic-gradient(from -12deg, rgba(255,255,255,.62) 0 7deg, transparent 7deg 45deg, rgba(255,255,255,.62) 45deg 52deg, transparent 52deg 90deg, rgba(255,255,255,.62) 90deg 97deg, transparent 97deg 135deg, rgba(255,255,255,.62) 135deg 142deg, transparent 142deg 180deg, rgba(255,255,255,.62) 180deg 187deg, transparent 187deg 225deg, rgba(255,255,255,.62) 225deg 232deg, transparent 232deg 270deg, rgba(255,255,255,.62) 270deg 277deg, transparent 277deg 315deg, rgba(255,255,255,.62) 315deg 322deg, transparent 322deg 360deg),
    radial-gradient(circle at 50% 50%, #fff9d7 0 17%, transparent 18%),
    linear-gradient(135deg, #ffe05c, var(--lemon));
  box-shadow: 0 7px 16px rgba(104,65,13,.15);
  transform: rotate(-10deg);
}
.review-citrus::after {
  content: "";
  position: absolute;
  right: -7px;
  top: -2px;
  width: 15px;
  height: 9px;
  border-radius: 999px 0 999px 0;
  background: linear-gradient(135deg, #8fad61, var(--leaf));
  transform: rotate(22deg);
}
.review-leaf {
  position: relative;
  width: 32px;
  height: 28px;
}
.review-leaf::before,
.review-leaf::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 13px;
  border-radius: 999px 0 999px 0;
  background: linear-gradient(135deg, #8fad61, var(--leaf));
  box-shadow: 0 2px 0 rgba(41,74,52,.14);
  transform-origin: left center;
}
.review-leaf::before {
  left: 1px;
  top: 5px;
  transform: rotate(24deg);
}
.review-leaf::after {
  left: 8px;
  bottom: 2px;
  transform: rotate(-16deg);
}
.stars {
  color: #f4bd2f;
  font-size: 1.18rem;
  letter-spacing: .05em;
  text-shadow: 0 1px 0 rgba(104,65,13,.12);
}
.google-review-meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 1px;
  flex-wrap: wrap;
}
.google-review-count {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 13px;
  border-radius: 999px;
  background: rgba(248,203,56,.26);
  color: var(--green);
  font-size: .82rem;
  font-weight: 900;
  line-height: 1;
}
.voice-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.voice-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}
.voice-avatar {
  display: grid;
  place-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--cream);
  font-size: 1.45rem;
}
.voice-card p {
  margin: 0 0 10px;
  font-size: .95rem;
  font-weight: 800;
  line-height: 1.72;
}
.voice-name {
  display: block;
  color: var(--soft);
  font-size: .8rem;
  font-weight: 900;
  line-height: 1.5;
}

/* ===== Access ===== */
.access-img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.info-list {
  margin: 16px 0;
  padding: 4px 16px;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}
.info-list div { padding: 14px 0; border-bottom: 1px solid var(--line); }
.info-list div:last-child { border-bottom: 0; }
.info-list dt { color: var(--green); font-weight: 900; margin-bottom: 4px; }
.info-list dd { margin: 0; color: var(--soft); font-size: .9rem; }
.info-list dd strong { color: var(--ink); }
.map-embed {
  margin: 0 0 16px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.map-embed iframe { display: block; width: 100%; height: 240px; border: 0; }

/* ===== FAQ ===== */
.faq-list {
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 0; }
.faq-item summary {
  position: relative;
  list-style: none;
  padding: 16px 44px 16px 16px;
  font-weight: 900;
  font-size: .94rem;
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--orange);
  font-size: 1.3rem;
  font-weight: 900;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin: 0; padding: 0 16px 18px; color: var(--soft); font-size: .9rem; }

/* ===== Reserve ===== */
.reserve {
  padding: 72px 20px;
  color: #fff;
  background:
    linear-gradient(rgba(28, 54, 35, .9), rgba(28, 54, 35, .9)),
    url("images/generated/hero-citrus-rich.jpg") center / cover;
}
.reserve .kicker { color: #ffe05c; }
.reserve p { color: rgba(255,255,255,.84); }
.reserve .btn {
  position: relative;
  min-height: 58px;
  margin-top: 12px;
  border: 1px solid transparent;
  font-size: 1rem;
  letter-spacing: .02em;
  box-shadow: none;
}
.reserve .btn::after {
  content: "›";
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  margin-left: 4px;
  border-radius: 50%;
  font-family: var(--font-accent);
  font-size: 1.35rem;
  line-height: 1;
}
.reserve .primary {
  background: linear-gradient(180deg, #ffe376, #f6ca45);
  color: var(--ink);
  border-color: rgba(255, 246, 189, .9);
  box-shadow: 0 14px 26px rgba(0, 0, 0, .18), inset 0 1px 0 rgba(255, 255, 255, .45);
}
.reserve .primary::after {
  background: rgba(36, 48, 40, .12);
  color: var(--ink);
}
.reserve .line {
  background: rgba(255, 253, 246, .1);
  color: #fffdf6;
  border-color: rgba(255, 253, 246, .62);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
}
.reserve .line::after {
  background: rgba(255, 253, 246, .16);
  color: #fffdf6;
}
.instagram {
  display: block;
  margin-top: 18px;
  color: rgba(255,255,255,.88);
  font-weight: 900;
  font-size: .92rem;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ===== Footer ===== */
.footer {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 30px 20px;
  color: rgba(255,255,255,.76);
  background: #18241b;
}
.footer img { width: 64px; height: 64px; object-fit: contain; }

/* ===== Sticky CTA ===== */
.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 12px;
  z-index: 40;
  width: min(calc(100vw - 24px), 436px);
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: .38fr .62fr;
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 999px;
  background: rgba(255,253,246,.94);
  backdrop-filter: blur(14px);
  box-shadow: 0 14px 34px rgba(34, 38, 21, .2);
}
.sticky-cta a {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
}
.sticky-sub { color: var(--green); background: #eef4df; }
.sticky-main { color: var(--ink); background: var(--lemon); }

/* ===== Reveal（見やすさを制約に、リッチに：上品イージング＋stagger） ===== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .8s cubic-bezier(.22, 1, .36, 1), transform .8s cubic-bezier(.22, 1, .36, 1);
  transition-delay: var(--rd, 0ms);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; will-change: auto; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ===== 体験詳細ページ ===== */
.topbar-back {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 900;
  font-size: .9rem;
  color: var(--green);
}
.exp-hero { min-height: 440px; align-items: flex-end; padding-bottom: 44px; }
.exp-hero .hero-img { object-position: center; }
.exp-hero h1 { font-size: clamp(2.5rem, 11.5vw, 3.5rem); line-height: 1.0; }
.exp-hero h1 span { color: #ffe05c; text-shadow: 0 3px 24px rgba(0,0,0,.42); }
.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}
.hero-tags li {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,253,246,.92);
  color: var(--ink);
  font-size: .8rem;
  font-weight: 900;
}
.section-head.center { text-align: center; }
.detail-lead { color: var(--soft); font-size: .98rem; }
.detail-photo {
  margin: 20px 0 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.detail-photo img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.callout {
  margin: 16px 0 0;
  padding: 13px 14px;
  border-radius: var(--radius);
  background: var(--cream);
  color: #7d5214;
  font-size: .84rem;
  line-height: 1.7;
}
.other-exp { display: grid; gap: 10px; }
.other-exp a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  font-weight: 900;
}
.other-exp .arw { color: var(--orange); }
.footer .foot-mark { font-family: var(--font-accent); letter-spacing: .2em; font-weight: 700; color: rgba(255,255,255,.9); }
.reserve-bar {
  position: fixed;
  left: 50%;
  bottom: 12px;
  z-index: 40;
  transform: translateX(-50%);
  width: min(calc(100vw - 24px), 436px);
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  background: var(--lemon);
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(34, 38, 21, .24);
}

@media (min-width: 461px) {
  .topbar { top: 10px; margin: 0 10px; border-radius: 999px; }
}

@media (max-width: 380px) {
  .hero { min-height: 720px; padding-inline: 18px; padding-bottom: 108px; }
  h1 { font-size: 3.18rem; }
  .hero-actions { grid-template-columns: 1fr; }
  .way-cards { gap: 10px; }
  .way-card { min-height: 206px; padding: 0 12px 14px; }
  .way-card span { left: 8px; top: 8px; min-width: 34px; height: 28px; font-size: .96rem; }
  .way-card strong { font-size: 1.14rem; line-height: 1.34; }
  .way-card small { margin-top: 7px; font-size: .69rem; }
  .gift-scroll { grid-auto-columns: clamp(166px, 58%, 214px); }
  .steps.journey { grid-auto-columns: minmax(242px, 80%); }
  .steps.journey .step { min-height: 198px; padding: 14px; }
  .steps.journey .step-num { left: 14px; top: 14px; font-size: .68rem; }
  .steps.journey .step h4 { font-size: 1.05rem; }
  .steps.journey .step p { font-size: .74rem; line-height: 1.62; }
  .steps.visual .step { grid-template-columns: 1fr; gap: 0; }
  .steps.visual .step-num { width: 40px; height: 40px; font-size: 1rem; }
  .steps.visual .step-body { min-height: 0; padding: 16px; }
  .steps.visual .step h4 { font-size: 1.04rem; }
  .steps.visual .step p { font-size: .9rem; }
}

/* ===== PC（1100px 超）— V2方式の3カラム（左=ロゴ+キャッチ / 中央=LP / 右=営業情報） ===== */
@media (min-width: 1100px) {
  body {
    padding-bottom: 0;
    background:
      radial-gradient(circle at 22% 18%, rgba(248,203,56,.16), transparent 55%),
      radial-gradient(circle at 82% 80%, rgba(239,138,43,.10), transparent 50%),
      linear-gradient(160deg, #fdfaf2 0%, #fbf3e2 55%, #fdfaf2 100%);
  }
  .layout-pc {
    display: grid;
    grid-template-columns: 1fr min(460px, 42vw) 1fr;
    align-items: start;
    min-height: 100vh;
  }
  .side-col {
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
    justify-content: center;
    padding: 60px 48px;
  }
  .side-left { align-items: center; text-align: center; }
  .side-logo {
    width: 148px;
    height: auto;
    margin: 0 0 20px;
    filter: drop-shadow(0 12px 20px rgba(67, 42, 8, .08));
  }
  .side-name {
    display: none;
    margin: 0 0 22px;
    font-size: 1.34rem;
    font-weight: 900;
    line-height: 1.5;
    letter-spacing: .08em;
    color: var(--ink);
  }
  .side-name span {
    display: block;
    margin-top: 4px;
    font-family: var(--font-accent);
    font-style: italic;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: .16em;
    color: var(--orange);
  }
  .side-tagline {
    margin: 0;
    font-size: 1.05rem;
    line-height: 2.2;
    font-weight: 600;
    letter-spacing: .04em;
    color: var(--ink);
  }
  .side-tagline-en {
    margin: 22px 0 0;
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.15rem;
    letter-spacing: .08em;
    color: var(--orange);
  }
  .side-right {
    align-items: stretch;
    justify-content: center;
    gap: 16px;
  }
  .side-card {
    position: relative;
    overflow: hidden;
    padding: 24px 26px 24px;
    border: 1px solid rgba(42, 82, 55, .12);
    border-radius: 18px;
    background:
      linear-gradient(145deg, rgba(255, 253, 246, .96), rgba(255, 247, 222, .9));
    box-shadow: 0 20px 46px rgba(67, 42, 8, .12);
  }
  .side-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 18px;
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.08rem;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--orange);
  }
  .side-hours {
    position: relative;
    z-index: 1;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .side-hours > div {
    display: grid;
    grid-template-columns: 66px 1fr;
    gap: 14px;
    align-items: center;
  }
  .side-hours dt {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    border-radius: 999px;
    background: rgba(42, 82, 55, .08);
    color: var(--green);
    flex: none;
    font-weight: 900;
    font-size: .76rem;
  }
  .side-hours dd {
    margin: 0;
    color: var(--ink);
    font-size: 1.02rem;
    font-weight: 900;
    line-height: 1.45;
  }
  .side-hours dd a {
    color: var(--orange);
    font-weight: 900;
  }
  .side-map {
    position: relative;
    z-index: 1;
    margin-top: 16px;
    overflow: hidden;
    border: 1px solid rgba(42, 82, 55, .12);
    border-radius: 14px;
    background: rgba(255, 253, 246, .72);
  }
  .side-map iframe {
    display: block;
    width: 100%;
    height: 132px;
    border: 0;
    filter: saturate(.82) contrast(.92);
  }
  .side-map-link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    color: var(--green);
    font-size: .78rem;
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 4px;
  }
  .side-map-link::after {
    content: "›";
    color: var(--orange);
    font-family: var(--font-accent);
    font-size: 1.05rem;
    line-height: 1;
  }
  .side-note {
    position: relative;
    z-index: 1;
    margin: 12px 0 0;
    padding: 9px 12px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .56);
    color: var(--soft);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .02em;
    line-height: 1.6;
  }
  .side-cta {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ffe070, #f6c83d);
    color: var(--ink);
    font-weight: 900;
    letter-spacing: .04em;
    text-align: center;
    box-shadow: 0 12px 24px rgba(184, 129, 17, .16), inset 0 1px 0 rgba(255, 255, 255, .45);
  }
  .page-shell { width: 100%; margin: 0; box-shadow: 0 0 100px -34px rgba(47, 58, 63, .36); }
  .sticky-cta, .reserve-bar { display: none; }
}

@media (min-width: 1500px) {
  .layout-pc { grid-template-columns: 1fr min(460px, 34vw) 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}
