: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);
}

* { 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: "Hiragino Sans", "Yu Gothic", "YuGothic", system-ui, sans-serif;
  line-height: 1.78;
  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);
}

.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 (mock recreation) ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-bottom: 84px;
  font-family: 'Zen Maru Gothic', sans-serif;
}

/* 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: center;
  transform: scale(1.04);
  animation: heroZoom 16s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-tint {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .42) 0%, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0) 66%, rgba(255, 255, 255, .5) 100%);
}

/* 共用キッカー（section-head 用） */
.kicker {
  margin-bottom: 10px;
  color: var(--orange);
  font-family: Georgia, serif;
  font-size: .84rem;
  font-style: italic;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* 見出し＋リボン（上部） */
.hero-copy { position: relative; z-index: 2; padding: 80px 22px 0; }
.hero-title {
  margin: 0 0 16px;
  font-weight: 900;
  font-size: clamp(1.95rem, 9.6vw, 2.85rem);
  line-height: 1.18;
  letter-spacing: .01em;
  color: #27407a;
  text-shadow: 0 2px 16px rgba(255, 255, 255, .55);
}
.hero-title .hl { display: block; }
.hero-title .hl-2 { display: inline-flex; align-items: baseline; }
.hero-title .hl-em { color: #f3b417; }
.hero-title .hl-wo { font-size: .64em; color: #27407a; }
.hero-ribbon {
  display: inline-block;
  margin: 0;
  padding: 9px 24px;
  background: rgba(255, 255, 255, .9);
  font-size: clamp(.74rem, 3.7vw, .92rem);
  font-weight: 800;
  white-space: nowrap;
  color: #27407a;
  clip-path: polygon(0 0, 100% 0, calc(100% - 13px) 50%, 100% 100%, 0 100%, 13px 50%);
  filter: drop-shadow(0 5px 12px rgba(39, 64, 122, .16));
}
.hero-ribbon .rb-em { color: #e2890b; }

/* FRESH! バッジ */
.hero-badge {
  position: absolute;
  z-index: 2;
  left: 16px;
  top: 39%;
  width: 110px;
  height: 110px;
  display: grid;
  place-content: center;
  gap: 2px;
  text-align: center;
  border-radius: 50%;
  background: rgba(248, 216, 77, .92);
  color: #5d4406;
  box-shadow: 0 12px 26px rgba(176, 134, 16, .32);
}
.badge-lead { font-size: .73rem; font-weight: 900; line-height: 1.3; }
.badge-fresh { font-weight: 900; font-style: italic; font-size: 1.02rem; color: #de8709; letter-spacing: .04em; }
.badge-ill { width: 56px; height: 28px; margin: 1px auto 0; }

/* 下部3アイコン */
.hero-features {
  position: relative;
  z-index: 2;
  margin: auto 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 0 14px 6px;
  list-style: none;
}
.hero-features li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  font-size: .71rem;
  font-weight: 800;
  line-height: 1.4;
  color: #27407a;
  text-shadow: 0 1px 8px rgba(255, 255, 255, .6);
}
.hero-features .hf-ic { width: 40px; height: 40px; }

/* SCROLL */
.hero-scroll {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  padding: 4px 0 16px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .22em;
  color: #27407a;
}
.hero-scroll .sc-arw { font-size: 1.2rem; line-height: 1; animation: scBounce 1.6s ease-in-out infinite; }
@keyframes scBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* ===== 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: clamp(1.78rem, 9vw, 2.55rem);
  line-height: 1.3;
  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-auto-flow: column;
  grid-auto-columns: 78%;
  gap: 12px;
  margin-inline: -20px;
  padding: 0 20px 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}
.way-card {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  border-radius: var(--radius);
  color: #fff;
  scroll-snap-align: start;
  box-shadow: var(--shadow);
}
.way-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24,30,25,.08), rgba(24,30,25,.82));
}
.way-card img { width: 100%; height: 100%; object-fit: cover; }
.way-card span,
.way-card strong,
.way-card small { position: absolute; z-index: 1; left: 18px; right: 18px; }
.way-card span {
  top: 16px;
  right: auto;
  color: #ffe05c;
  font-family: Georgia, serif;
  font-weight: 800;
}
.way-card strong { bottom: 40px; font-size: 1.3rem; line-height: 1.25; }
.way-card small { bottom: 16px; color: rgba(255,255,255,.88); font-weight: 800; font-size: .8rem; }

/* ===== Experience ===== */
.experience-list { display: grid; gap: 14px; }
.experience-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}
.experience-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.experience-card div { padding: 18px; }
.label {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(248,203,56,.24);
  color: #8a5512;
  font-size: .76rem;
  font-weight: 900;
}
.experience-card h3 { margin-bottom: 8px; font-size: 1.2rem; line-height: 1.42; }
.experience-card p:not(.label) { color: var(--soft); font-size: .92rem; margin-bottom: 12px; }
.experience-card strong { color: var(--orange); font-family: Georgia, serif; font-size: 1.55rem; }
.experience-card small { color: var(--soft); font-family: inherit; font-size: .8rem; }
.exp-detail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
  font-size: .9rem;
  color: var(--green);
}

/* ===== Steps (体験の流れ) ===== */
.steps { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 12px; }
.step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}
.step-num {
  display: grid;
  place-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-family: Georgia, serif;
  font-weight: 800;
}
.step h4 { margin-bottom: 4px; font-size: 1.04rem; }
.step p { margin: 0; color: var(--soft); font-size: .9rem; }

/* ===== 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-board { margin-top: 6px; }
.board-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  font-weight: 900;
  font-size: .92rem;
}
.ml-tag {
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: .72rem;
  letter-spacing: .06em;
}
.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 ===== */
.badge-store {
  display: inline-flex;
  margin-top: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--green);
  color: #fff !important;
  font-size: .76rem !important;
  font-weight: 900;
}
.gift-scroll {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 74%;
  gap: 12px;
  margin-inline: -20px;
  padding: 0 20px 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}
.gift-scroll article {
  padding: 10px 10px 16px;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
  scroll-snap-align: start;
}
.gift-scroll img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 6px; }
.gift-scroll h3 { margin: 14px 4px 5px; font-size: 1.05rem; line-height: 1.4; }
.gift-scroll .price { margin: 0 4px; color: var(--orange); font-family: Georgia, serif; font-size: 1.3rem; font-weight: 700; }

/* ===== Craft ===== */
.craft-photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.craft-photo img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.craft-lead { margin: 18px 0 0; color: var(--soft); font-size: .96rem; }

/* ===== 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: 14px; padding-top: 14px; border-top: 1px solid var(--line); }
.farmer-photo {
  position: relative;
  margin: 16px 0 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.farmer-photo img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

/* 実写真のエディトリアル見せ（店紹介・口コミウォール） */
.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 ===== */
.voice-list { display: grid; gap: 12px; }
.voice-card {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}
.voice-avatar {
  display: grid;
  place-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cream);
  font-size: 1.4rem;
}
.voice-card p { margin: 0 0 6px; font-size: .94rem; }
.voice-name { color: var(--soft); font-size: .8rem; font-weight: 800; }

/* ===== Gallery ===== */
.gallery-strip {
  list-style: none;
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0 20px;
  margin-inline: -20px;
  overflow-x: auto;
  scrollbar-width: none;
}
.gallery-strip::-webkit-scrollbar { display: none; }
.gallery-strip.is-grabbing { cursor: grabbing; }
.gallery-strip li { flex: 0 0 auto; }
.gallery-strip img {
  height: 220px;
  width: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ===== 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 { margin-top: 12px; }
.instagram {
  display: block;
  margin-top: 18px;
  color: #fff;
  font-weight: 900;
  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);
  transition: opacity .3s ease, transform .3s ease;
}
.sticky-cta.is-hidden { opacity: 0; transform: translateX(-50%) translateY(18px); pointer-events: none; }
.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 ===== */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ===== 体験詳細ページ ===== */
.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: Georgia, serif; 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 { grid-auto-columns: 84%; }
  .gift-scroll { grid-auto-columns: 82%; }
}

/* ===== リオーダー追加: 外観プルーフ / フルブリード / 体験代表 / Menu実物 / Gift hero / つくり手統合 ===== */
.full-bleed { margin-inline: -20px; }

.proof { position: relative; padding: 0; margin: 0; }
.proof-figure { position: relative; margin: 0; overflow: hidden; }
.proof-figure img { width: 100%; height: clamp(300px, 66vw, 480px); object-fit: cover; }
.proof-figure::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(24,30,25,0) 38%, rgba(24,30,25,.74));
}
.proof-cap { position: absolute; z-index: 1; left: 22px; right: 22px; bottom: 22px; color: #fff; }
.proof-cap .kicker { color: #ffe17a; margin-bottom: 6px; }
.proof-cap strong { display: block; font-size: clamp(1.55rem, 7.6vw, 2.2rem); line-height: 1.2; letter-spacing: -.02em; text-shadow: 0 2px 18px rgba(0,0,0,.42); }
.proof-cap span { display: block; margin-top: 8px; font-size: .94rem; font-weight: 800; line-height: 1.6; text-shadow: 0 2px 14px rgba(0,0,0,.5); }

.exp-feature { position: relative; margin: 0 0 18px; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.exp-feature img { width: 100%; height: clamp(220px, 58vw, 380px); object-fit: cover; }

.menu-photos { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 0 0 18px; }
.menu-photos figure { position: relative; margin: 0; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.menu-photos img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.menu-photos figure:first-child { grid-column: 1 / -1; }
.menu-photos figure:first-child img { aspect-ratio: 16 / 10; }

.gift-hero { position: relative; margin: 0 0 14px; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.gift-hero img { width: 100%; height: clamp(220px, 58vw, 360px); object-fit: cover; }

.makers-sub { margin: 32px 2px 14px; font-size: 1.26rem; font-weight: 900; letter-spacing: -.01em; line-height: 1.4; }
.makers-sub:first-of-type { margin-top: 24px; }
.makers-block { margin-top: 14px; }

/* ===== 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(560px, 44vw) 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-name {
    margin: 0 0 26px;
    font-size: 1.5rem;
    font-weight: 900;
    line-height: 1.5;
    letter-spacing: .08em;
    color: var(--ink);
  }
  .side-name span {
    display: block;
    margin-top: 4px;
    font-family: Georgia, serif;
    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: Georgia, serif;
    font-style: italic;
    font-size: 1.15rem;
    letter-spacing: .08em;
    color: var(--orange);
  }
  .side-right { align-items: stretch; justify-content: center; gap: 20px; }
  .side-card {
    padding: 28px 26px 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: var(--shadow);
  }
  .side-card h3 {
    margin: 0 0 18px;
    font-family: Georgia, serif;
    font-style: italic;
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: .12em;
    color: var(--orange);
  }
  .side-hours { margin: 0; display: flex; flex-direction: column; gap: 12px; }
  .side-hours > div { display: flex; gap: 12px; align-items: baseline; }
  .side-hours dt { flex: none; width: 48px; font-weight: 900; font-size: .84rem; color: var(--ink); }
  .side-hours dd { margin: 0; font-size: .94rem; color: var(--soft); }
  .side-hours dd a { color: var(--orange); font-weight: 900; }
  .side-note { margin: 16px 0 0; font-size: .76rem; color: var(--soft); letter-spacing: .02em; }
  .side-cta {
    display: block;
    margin-top: 18px;
    padding: 14px 18px;
    border-radius: 999px;
    background: var(--lemon);
    color: var(--ink);
    font-weight: 900;
    letter-spacing: .06em;
    text-align: center;
    box-shadow: 0 14px 24px rgba(248, 203, 56, .24);
  }
  .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(560px, 38vw) 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;
  }
}
