:root{
  --bg:#fdfaf2;               /* 生成りのオフホワイト */
  --paper:#ffffff;
  --tint:#fbf3e2;             /* やわらかいレモンクリーム */
  --tint-2:#f6ede0;
  --ink:#2f3a3f;             /* やわらかいチャコール（黒すぎない） */
  --ink-soft:#6f7a7e;
  --line:#ece2cf;
  --yellow:#f6c544;          /* メインCTA（少し落ち着かせたレモン） */
  --yellow-deep:#e6a92e;
  --orange:#e8893f;          /* 価格・アクセント（柔らかいオレンジ） */
  --leaf:#8aa06b;            /* くすみグリーン */
  --line-green:#06c755;      /* LINE導線 */
  --radius:18px;
  --radius-lg:26px;
  --shadow:0 22px 50px -28px rgba(47,58,63,.42);
  --shadow-soft:0 16px 38px -26px rgba(47,58,63,.40);
  --shadow-card:0 10px 30px -22px rgba(47,58,63,.5);
  --phone-w:460px;
  --gut:22px;
  --header-h:64px;
  --bar-h:68px;
  --font:"Zen Kaku Gothic New", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  --round:"Zen Maru Gothic", var(--font);
  --serif:"Cormorant Garamond", serif;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
html,body{margin:0;padding:0}
body{
  font-family:var(--font);
  color:var(--ink);
  background:var(--bg);
  line-height:1.85;
  font-size:16px;
  font-weight:500;
  letter-spacing:.01em;
  -webkit-text-size-adjust:100%;
  overflow-x:hidden;
  padding-bottom:calc(var(--bar-h) + env(safe-area-inset-bottom));
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
/* キーボード操作時のフォーカス可視化（マウス操作には出さない） */
a:focus-visible,button:focus-visible,summary:focus-visible,.btn:focus-visible{
  outline:2.5px solid var(--yellow-deep);outline-offset:3px;border-radius:8px;
}
.arw{margin-left:.4em;font-weight:600;font-family:var(--serif);font-size:1.15em;line-height:1}

/* ===== ヘッダー ===== */
.topbar{
  position:sticky;top:0;z-index:65;
  height:var(--header-h);
  display:flex;align-items:center;justify-content:space-between;
  padding:0 calc(var(--gut) + 4px);
  background:rgba(253,250,242,.82);
  backdrop-filter:saturate(1.15) blur(12px);
  -webkit-backdrop-filter:saturate(1.15) blur(12px);
  border-bottom:1px solid rgba(236,226,207,.7);
}
.brand{display:flex;align-items:center}
.brand img{height:40px;width:auto}
/* 右側グループ（言語切替） */
.topbar-right{display:flex;align-items:center;gap:10px}
/* 言語切替トグル（JP|EN・クリーム台座にアクティブ黄ピル） */
.lang-switch{
  display:inline-flex;align-items:center;gap:4px;
  background:var(--tint-2);border-radius:999px;padding:4px;
}
.lang-btn{
  border:0;background:transparent;cursor:pointer;
  font-family:var(--serif);font-weight:600;font-size:1rem;letter-spacing:.06em;
  color:var(--ink-soft);min-width:44px;padding:7px 13px;border-radius:999px;line-height:1;
  transition:background .2s ease, color .2s ease, box-shadow .2s ease;
}
.lang-btn.is-active{
  background:var(--yellow);color:var(--ink);
  box-shadow:0 2px 8px -3px rgba(230,169,46,.75);
}
.menu-toggle{
  width:48px;height:48px;border:0;background:transparent;cursor:pointer;
  display:flex;flex-direction:column;justify-content:center;align-items:center;gap:6.5px;
  padding:0;
}
.menu-toggle span{display:block;width:30px;height:2.4px;background:var(--ink);border-radius:2px;transition:transform .28s cubic-bezier(.4,0,.2,1), opacity .18s ease}
/* 開いたら × に変形 */
.menu-toggle[aria-expanded="true"] span:nth-child(1){transform:translateY(8.9px) rotate(45deg)}
.menu-toggle[aria-expanded="true"] span:nth-child(2){opacity:0}
.menu-toggle[aria-expanded="true"] span:nth-child(3){transform:translateY(-8.9px) rotate(-45deg)}

/* ===== ナビ（スライドイン） ===== */
.menu-panel{
  position:fixed;inset:var(--header-h) auto 0 0;width:min(82vw,320px);
  background:var(--paper);box-shadow:var(--shadow);
  transform:translateX(-100%);transition:transform .34s cubic-bezier(.4,0,.2,1);
  padding:24px 30px 40px;z-index:60;
  display:flex;flex-direction:column;gap:2px;
  overflow-y:auto;
}
.menu-panel:not([hidden]){transform:translateX(0)}
.menu-panel a{padding:15px 6px;border-bottom:1px solid var(--line);font-weight:500;letter-spacing:.06em}
.menu-panel a.cta-link{
  margin-top:18px;border:0;text-align:center;border-radius:999px;
  background:var(--yellow);color:var(--ink);font-weight:700;letter-spacing:.08em;
}

/* ===== ヒーロー ===== */
.hero{
  position:relative;overflow:hidden;
  display:flex;flex-direction:column;justify-content:flex-end;
  height:620px;max-height:88vh;min-height:540px;
  padding:96px var(--gut) 46px;
}
.hero-img{
  position:absolute;inset:0;width:100%;height:100%;
  object-fit:cover;object-position:32% center;z-index:0;
  animation:heroZoom 18s ease-out forwards;
}
@keyframes heroZoom{from{transform:scale(1.08)}to{transform:scale(1)}}
@media (prefers-reduced-motion: reduce){.hero-img{animation:none}}
.hero-overlay{
  position:absolute;inset:0;z-index:1;
  background:linear-gradient(180deg,rgba(47,58,63,.14) 0%,rgba(47,58,63,0) 32%,rgba(253,250,242,.04) 80%,var(--bg) 100%),
             linear-gradient(90deg,rgba(47,58,63,.24),rgba(47,58,63,0) 62%);
}
.hero-copy{position:relative;z-index:2}
.hero-eyebrow{
  display:inline-block;font-family:var(--round);font-weight:700;
  color:var(--ink);font-size:.96rem;letter-spacing:.06em;
  margin:0 0 14px;padding:7px 16px;border-radius:999px;
  background:rgba(255,255,255,.94);
  box-shadow:0 6px 18px -10px rgba(47,58,63,.55);
}
.hero-copy h1{
  font-family:var(--round);
  font-size:clamp(1.45rem,6.0vw,2.4rem);
  line-height:1.5;margin:0;color:#fff;font-weight:900;
  text-shadow:0 2px 18px rgba(47,58,63,.4);
  overflow-wrap:anywhere;
}
.hero-copy h1 span{
  background:linear-gradient(transparent 64%, rgba(246,197,68,.85) 64%);
  padding:0 .05em;
}
.hero-tags{
  list-style:none;margin:14px 0 0;padding:0;
  display:flex;flex-wrap:wrap;gap:8px;
}
.hero-tags li{
  background:rgba(255,255,255,.92);color:var(--ink);
  font-size:.74rem;font-weight:700;letter-spacing:.01em;white-space:nowrap;
  padding:6px 12px;border-radius:999px;
  box-shadow:0 4px 14px -8px rgba(47,58,63,.5);
}

/* ===== ボタン ===== */
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:15px 24px;border-radius:999px;font-weight:700;font-size:1rem;letter-spacing:.04em;
  box-shadow:var(--shadow-card);transition:transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.btn:hover{filter:brightness(1.03)}
.btn:active{transform:translateY(1px)}
.btn-primary{background:linear-gradient(135deg,#ff9e58,#f6c544);color:var(--ink)}
.btn-line{background:#fff7ec;color:var(--orange);border:1.6px solid #f3d6a9}
.btn-ghost{background:rgba(255,255,255,.9);color:var(--ink);border:1px solid var(--line)}
.btn.block{display:flex;width:100%}
.btn.big{padding:18px 24px;font-size:1.08rem}

/* ===== セクション共通 ===== */
.section{padding:62px 0;position:relative}
.section-inner{width:min(100% - calc(var(--gut)*2), 680px);margin-inline:auto;position:relative;z-index:1}
.section-inner.center,.center{text-align:center}
.tint{
  background:var(--tint);position:relative;overflow:hidden;
}
/* 柑橘のあしらい（背景にそっと） */
.tint::before{
  content:"";position:absolute;z-index:0;pointer-events:none;
  top:-50px;right:-56px;width:230px;height:230px;opacity:.85;
  transform:rotate(-12deg);
  background:no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cg fill='none' stroke='%23e6a92e' stroke-width='2'%3E%3Ccircle cx='50' cy='50' r='32'/%3E%3Ccircle cx='50' cy='50' r='24'/%3E%3Cg stroke-width='1.4'%3E%3Cline x1='50' y1='26' x2='50' y2='74'/%3E%3Cline x1='26' y1='50' x2='74' y2='50'/%3E%3Cline x1='33' y1='33' x2='67' y2='67'/%3E%3Cline x1='67' y1='33' x2='33' y2='67'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.tint::after{
  content:"";position:absolute;z-index:0;pointer-events:none;
  bottom:-34px;left:-34px;width:160px;height:160px;opacity:.8;
  transform:rotate(14deg);
  background:no-repeat center/contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M52 16 C28 26 20 52 30 76 C54 66 62 36 52 16 Z' fill='none' stroke='%238aa06b' stroke-width='2'/%3E%3Cline x1='44' y1='28' x2='39' y2='66' stroke='%238aa06b' stroke-width='1.4'/%3E%3C/svg%3E");
}
.section-head{margin-bottom:32px}
.section-head.center{text-align:center}
.section-tag{
  display:inline-block;font-family:var(--serif);font-style:italic;
  font-size:1.05rem;letter-spacing:.14em;font-weight:600;
  color:var(--orange);margin-bottom:2px;
}
.section-head h2{
  font-family:var(--round);
  font-size:clamp(1.45rem,5.4vw,1.95rem);
  line-height:1.5;margin:.2em 0 0;font-weight:900;
  overflow-wrap:anywhere;letter-spacing:.02em;
}
.section-head .leaf{
  display:block;width:34px;height:1px;background:var(--yellow-deep);
  margin:0 0 16px;
}
.section-head.center .leaf{margin-inline:auto}
.section-head.center h2::after{
  content:"";display:block;width:42px;height:2px;border-radius:2px;
  background:var(--yellow-deep);margin:14px auto 0;
}
.section-lead{margin:14px 0 0;font-size:.95rem;color:var(--ink-soft);line-height:1.95;letter-spacing:.02em}
.note{margin-top:22px;font-size:.78rem;color:var(--ink-soft);text-align:center;letter-spacing:.02em}
.lead{font-size:1rem;color:var(--ink-soft);margin:0;line-height:2;text-align:center}
.sp-br{display:inline}
/* 行末の孤立文字を防ぐ（対応ブラウザのみ。未対応は従来折返し） */
.hero-copy h1,.section-head h2,.reserve-section h2{text-wrap:balance}
.section-lead,.lead,.reserve-lead,.owner-message,.step p,.faq-item p,.voice-card p{text-wrap:pretty}

/* ===== 体験: 最人気フィーチャーカード ===== */
/* ===== 体験: 2列2行グリッド ===== */
.exp-grid{list-style:none;margin:0;padding:0;display:grid;grid-template-columns:1fr 1fr;gap:14px}
.exp-mini{
  background:var(--paper);border:1px solid var(--line);
  border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow-soft);
  display:flex;flex-direction:column;transition:transform .2s ease, box-shadow .2s ease;
}
.exp-mini:hover{transform:translateY(-3px);box-shadow:var(--shadow)}
.exp-mini-photo{position:relative;overflow:hidden}
.exp-badge{
  position:absolute;top:10px;left:10px;z-index:2;
  background:var(--orange);color:#fff;font-family:var(--round);font-weight:700;
  font-size:.74rem;letter-spacing:.04em;padding:5px 12px;border-radius:999px;
  box-shadow:var(--shadow-card);
}
.exp-mini-photo img{width:100%;height:118px;object-fit:cover;transition:transform .5s ease}
.exp-mini:hover .exp-mini-photo img{transform:scale(1.04)}
.exp-mini-body{padding:14px 14px 16px;display:flex;flex-direction:column;flex:1}
.exp-mini-body h4{font-family:var(--round);font-size:.98rem;margin:0 0 6px;font-weight:700;line-height:1.45}
.exp-mini-body .price{font-size:1.35rem;margin:0 0 12px !important}
.exp-mini-body .price small{font-size:.66rem;margin-left:5px;display:block}
.exp-mini-body .btn{margin-top:auto;padding:11px 14px;font-size:.86rem}

/* 共通 price */
.price{font-family:var(--serif);color:var(--orange);font-size:2rem;font-weight:600;letter-spacing:.02em}
.price small{font-family:var(--font);font-size:.78rem;color:var(--ink-soft);font-weight:500;margin-left:8px}

/* ===== 体験の流れ STEP ===== */
.steps{list-style:none;margin:30px 0 0;padding:0;display:flex;flex-direction:column;gap:16px}
.step{
  display:flex;gap:16px;align-items:flex-start;
  background:var(--paper);border:1px solid var(--line);border-radius:var(--radius);
  padding:18px 20px;box-shadow:var(--shadow-soft);
}
.step-num{
  flex:none;width:38px;height:38px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  background:var(--yellow);color:var(--ink);
  font-family:var(--serif);font-weight:600;font-size:1.25rem;
}
.step h4{font-family:var(--round);font-size:1.05rem;margin:2px 0 4px;font-weight:700}
.step p{margin:0;font-size:.88rem;color:var(--ink-soft);line-height:1.8}

/* ===== 3つの楽しみ方 ===== */
.enjoy-grid{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:14px}
.enjoy-card{
  background:var(--paper);border:1px solid var(--line);
  border-radius:var(--radius);box-shadow:var(--shadow-soft);overflow:hidden;
  transition:transform .2s ease, box-shadow .2s ease;
}
.enjoy-card:hover{transform:translateY(-3px);box-shadow:var(--shadow)}
.enjoy-card a{display:flex;align-items:center;gap:15px;padding:18px}
.enjoy-num{
  flex:none;width:34px;height:34px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  background:var(--yellow);color:var(--ink);
  font-family:var(--round);font-weight:700;font-size:1.05rem;line-height:1;
}
.enjoy-text{flex:1;display:flex;flex-direction:column}
.enjoy-name{font-family:var(--round);font-weight:700;font-size:1.05rem;letter-spacing:.02em;line-height:1.5}
.enjoy-desc{font-size:.8rem;color:var(--ink-soft);line-height:1.6;margin-top:2px}
.enjoy-more{flex:none;display:inline-flex;align-items:center;gap:3px;color:var(--orange);font-family:var(--round);font-weight:700;font-size:.78rem;white-space:nowrap;letter-spacing:.02em}
.enjoy-card .arw{color:var(--orange);font-family:var(--serif);font-size:1.1rem}

/* ===== ギャラリー（横スクロール） ===== */
.gallery-strip{
  list-style:none;margin:0;padding:4px var(--gut) 8px;display:flex;gap:12px;
  overflow-x:auto;-webkit-overflow-scrolling:touch;
}
.gallery-strip::-webkit-scrollbar{height:0}
.gallery-strip li{flex:none}
.gallery-strip.is-grabbing{cursor:grabbing}
.gallery-strip img{
  width:60vw;max-width:300px;aspect-ratio:4 / 3;height:auto;object-fit:cover;
  border-radius:var(--radius);box-shadow:var(--shadow-soft);
}

/* ===== FAQ ===== */
.faq-list{margin:0}
.faq-item{
  border-bottom:1px solid var(--line);
}
.faq-item summary{
  list-style:none;cursor:pointer;padding:18px 30px 18px 2px;position:relative;
  font-weight:500;font-size:.98rem;letter-spacing:.02em;
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{
  content:"+";position:absolute;right:6px;top:50%;transform:translateY(-50%);
  font-family:var(--serif);font-size:1.5rem;color:var(--orange);transition:transform .2s ease;
}
.faq-item[open] summary::after{content:"−"}
.faq-item p{margin:0 2px 20px;font-size:.9rem;color:var(--ink-soft);line-height:1.9}

/* ===== つくり手 ===== */
.craft-photo{margin:0 0 24px;border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-soft)}
.craft-photo img{width:100%;height:250px;object-fit:cover}

/* ===== 店主紹介 ===== */
.owner-card{display:flex;flex-direction:column;align-items:center;text-align:center}
.owner-photo{
  width:160px;height:160px;border-radius:50%;overflow:hidden;
  margin:0 0 22px;box-shadow:var(--shadow-soft);border:4px solid var(--paper);
}
.owner-photo img{width:100%;height:100%;object-fit:cover}
.owner-award{
  display:inline-block;margin:0 0 12px;
  background:#fff7e2;color:var(--yellow-deep);
  font-size:.82rem;font-weight:700;letter-spacing:.04em;
  padding:7px 16px;border-radius:999px;border:1px solid rgba(230,169,46,.4);
}
.owner-name{
  font-family:var(--round);font-weight:700;font-size:1.3rem;letter-spacing:.04em;
  margin:0 0 18px;line-height:1.5;
}
.owner-name span{
  display:block;font-family:var(--serif);font-style:italic;font-weight:500;
  font-size:.92rem;letter-spacing:.06em;color:var(--ink-soft);margin-top:6px;
}
.owner-message{margin:0;font-size:.96rem;color:var(--ink-soft);line-height:2.05;text-align:left}
.owner-supervise{margin-top:20px}

/* ===== カフェメニュー（横自動スクロール marquee） ===== */
.menu-marquee{margin-top:30px}
.menu-marquee + .menu-marquee{margin-top:24px}
.marquee-label{
  display:flex;align-items:baseline;gap:10px;
  width:min(100% - calc(var(--gut)*2), 680px);margin:0 auto 14px;
  font-family:var(--round);font-weight:700;font-size:1.06rem;letter-spacing:.04em;
}
.marquee-label .ml-tag{
  font-family:var(--serif);font-style:italic;font-weight:600;
  font-size:.86rem;letter-spacing:.1em;color:var(--orange);
}
/* 横スクロール: JSで自動送り＋ユーザーの手動スクロール/スワイプ/ドラッグを両立 */
.marquee-viewport{
  position:relative;padding:6px 0 10px;
  overflow-x:auto;overflow-y:hidden;-webkit-overflow-scrolling:touch;
  cursor:grab;
  -webkit-mask-image:linear-gradient(90deg,transparent,#000 5%,#000 95%,transparent);
          mask-image:linear-gradient(90deg,transparent,#000 5%,#000 95%,transparent);
}
.marquee-viewport.is-grabbing{cursor:grabbing}
.marquee-viewport::-webkit-scrollbar{height:0}
.marquee-track{display:flex;width:max-content}
.marquee-set{display:flex;gap:14px;margin:0;padding:0 14px 0 0;list-style:none;flex:0 0 auto}

.m-card{
  flex:0 0 auto;width:164px;height:226px;scroll-snap-align:center;
  background:var(--paper);border:1px solid var(--line);
  border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow-soft);
  display:flex;flex-direction:column;position:relative;
}
.m-badge{
  position:absolute;top:8px;left:8px;z-index:2;
  background:var(--orange);color:#fff;font-family:var(--round);font-weight:700;
  font-size:.68rem;letter-spacing:.04em;padding:3px 11px;border-radius:999px;
  box-shadow:var(--shadow-card);
}
.m-thumb{height:104px;flex:none;overflow:hidden}
.m-thumb img{width:100%;height:100%;object-fit:cover}
.m-icon{height:104px;flex:none;display:flex;align-items:center;justify-content:center;font-size:2.7rem;line-height:1}
.m-body{padding:11px 13px 14px;display:flex;flex-direction:column;flex:1;min-height:0}
.m-name{font-family:var(--round);font-weight:700;font-size:.84rem;line-height:1.4;margin:0;letter-spacing:.005em}
.m-en{font-family:var(--serif);font-style:italic;font-size:.67rem;color:var(--ink-soft);margin:3px 0 0;line-height:1.3;letter-spacing:.02em}
.m-price{font-family:var(--serif);color:var(--orange);font-weight:600;font-size:1.18rem;margin:auto 0 0;padding-top:6px}
.cat-lemon .m-icon{background:#fff6dd}
.cat-orange .m-icon{background:#ffeedc}
.cat-soft .m-icon{background:#fbf0e8}
.cat-food .m-icon{background:#f3ecdb}
.cat-coffee .m-icon{background:#ece3da}

/* ===== メニュー表（全品一覧・写真補正版） ===== */
.marquee-label.center{justify-content:center}
.menu-board{margin-top:28px;text-align:center}
.menu-board .board-link{
  display:inline-block;position:relative;width:100%;max-width:560px;
  border-radius:14px;overflow:hidden;background:#fff;
  box-shadow:0 22px 46px rgba(117,86,38,.16);border:1px solid var(--line);
}
.menu-board .board-link img{width:100%;height:auto;display:block}
.menu-board .board-cap{margin:12px 0 0;font-size:.8rem;color:var(--ink-soft);letter-spacing:.02em}

/* prefers-reduced-motion 時は JS が自動送りを止め、手動スクロールのみにする */

/* ===== お土産 ===== */
.badge-store{
  display:inline-block;margin-top:14px;background:transparent;color:var(--orange);
  font-size:.74rem;font-weight:700;letter-spacing:.1em;padding:5px 16px;border-radius:999px;
  border:1px solid var(--orange);
}
.gift-grid{list-style:none;margin:0;padding:0;display:grid;grid-template-columns:1fr 1fr;gap:18px}
.gift-grid>.gift-card:nth-child(3):last-child{grid-column:1 / -1;justify-self:center;width:calc(50% - 9px)}
.gift-card{text-align:center}
.gift-photo{border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow-soft);margin-bottom:12px}
.gift-photo img{width:100%;aspect-ratio:3 / 2;height:auto;object-fit:cover;transition:transform .5s ease}
.gift-card:hover .gift-photo img{transform:scale(1.04)}
.gift-card h3{font-size:.9rem;margin:0 4px 4px;font-weight:500;line-height:1.5}
.gift-card .price{font-size:1.25rem;margin:0 !important}

/* ===== お客様の声 ===== */
.voice-list{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:16px}
.voice-card{
  display:flex;gap:16px;align-items:center;text-align:left;
  background:var(--paper);border:1px solid var(--line);border-radius:var(--radius);
  padding:20px;box-shadow:var(--shadow-soft);
}
.voice-avatar{
  width:62px;height:62px;border-radius:50%;flex:none;
  display:flex;align-items:center;justify-content:center;
  font-size:1.7rem;background:var(--tint);border:1px solid var(--line);
}
.voice-card p{margin:0 0 8px;font-size:.92rem;line-height:1.85}
.voice-name{font-size:.76rem;color:var(--ink-soft);font-weight:700;letter-spacing:.04em}

/* ===== アクセス ===== */
.access-photo{margin:0 0 22px;border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-soft)}
.access-photo img{width:100%;aspect-ratio:16 / 10;height:auto;object-fit:cover}
.info-list{margin:0;display:flex;flex-direction:column;gap:0}
.info-list>div{display:flex;gap:14px;padding:15px 2px;border-bottom:1px solid var(--line);text-align:left}
.info-list dt{flex:none;width:84px;font-weight:700;font-size:.86rem;letter-spacing:.04em}
.info-list dd{margin:0;font-size:.92rem;color:var(--ink-soft)}
.info-list dd a{color:var(--orange);font-weight:700}
.info-list dd strong{color:var(--ink);font-weight:700}
.map-embed{margin-top:22px;border-radius:var(--radius-lg);overflow:hidden;box-shadow:var(--shadow-soft);line-height:0}
.map-embed iframe{width:100%;height:260px;border:0;display:block}
.map-btn{margin-top:14px}

/* ===== 予約セクション ===== */
.reserve-section{background:linear-gradient(180deg,var(--tint),var(--bg))}
.reserve-section .section-tag{font-size:1.1rem}
.reserve-section h2{font-family:var(--round);font-size:clamp(1.45rem,5.4vw,1.95rem);font-weight:900;margin:0;overflow-wrap:anywhere;letter-spacing:.02em}
.reserve-lead{color:var(--ink-soft);margin:12px 0 26px}
.reserve-section .btn{margin-bottom:12px}
.ig-link{display:inline-block;margin-top:10px;color:var(--ink-soft);font-weight:500;letter-spacing:.04em;border-bottom:1px solid var(--ink-soft)}

/* ===== フッター ===== */
.site-footer{text-align:center;padding:40px 0;background:var(--ink);color:#fff}
.site-footer .foot-logo{width:148px;height:auto;display:block;margin:0 auto 14px;opacity:.95}
.site-footer .foot-mark{font-family:var(--serif);font-style:italic;font-size:1.4rem;letter-spacing:.06em;display:block;margin-bottom:8px}
.site-footer small{font-size:.74rem;opacity:.7;letter-spacing:.06em}

/* ===== フローティングCTA（浮遊ピル＝予約 + 丸ボタン＝電話） ===== */
.float-cta{
  position:fixed;left:0;right:0;z-index:58;
  bottom:calc(env(safe-area-inset-bottom) + 8px);
  display:flex;align-items:center;justify-content:center;gap:10px;
  padding:0 16px;pointer-events:none;
}
.float-cta > a{pointer-events:auto}
.reserve-pill{
  display:inline-flex;align-items:center;gap:8px;
  background:linear-gradient(135deg,#ff9e58,#f6c544);color:var(--ink);
  font-family:var(--round);font-weight:900;font-size:1.05rem;letter-spacing:.03em;
  padding:14px 26px;border-radius:999px;
  box-shadow:0 16px 32px -10px rgba(232,137,63,.62);
  transition:transform .15s ease, box-shadow .15s ease;
}
.reserve-pill .cal{font-size:1.08rem}
.reserve-pill:active{transform:translateY(1px)}
.contact-fab{
  display:inline-flex;align-items:center;justify-content:center;
  width:54px;height:54px;border-radius:50%;flex:none;
  background:#fff;color:var(--orange);border:1.6px solid #f3d6a9;
  font-size:1.32rem;
  box-shadow:0 16px 32px -12px rgba(47,58,63,.5);
  transition:transform .15s ease;
}
.contact-fab:active{transform:translateY(1px)}

/* 詳細ページの固定CTA（index は float-cta、詳細ページは reserve-bar を浮遊ピルに） */
.reserve-bar{
  position:fixed;left:0;right:0;z-index:58;
  bottom:calc(env(safe-area-inset-bottom) + 8px);
  display:flex;align-items:center;justify-content:center;gap:8px;
  width:max-content;max-width:calc(100% - 32px);margin:0 auto;
  background:linear-gradient(135deg,#ff9e58,#f6c544);color:var(--ink);
  font-family:var(--round);font-weight:900;font-size:1.05rem;letter-spacing:.03em;
  padding:14px 28px;border-radius:999px;
  box-shadow:0 16px 32px -10px rgba(232,137,63,.62);
}
.reserve-bar .cal{font-size:1.05rem}

/* ===== モバイル既定（〜1099px）: 中央LPのみ。※必ず @media より前に置く（後勝ち回避） ===== */
.layout-pc{display:block}
.phone{width:100%;margin:0 auto;background:var(--bg)}
.side-col{display:none}

/* ===== PC（1100px 超）— 8.SAUNA 方式の3カラム ===== */
@media (min-width:1100px){
  body{padding-bottom:0}
  .layout-pc{
    display:grid;
    grid-template-columns:1fr min(var(--phone-w),42vw) 1fr;
    align-items:start;
    min-height:100vh;
    background:
      radial-gradient(circle at 22% 18%, rgba(246,197,68,.16), transparent 55%),
      radial-gradient(circle at 82% 80%, rgba(232,137,63,.10), transparent 50%),
      linear-gradient(160deg,#fdfaf2 0%, #fbf3e2 55%, #fdfaf2 100%);
  }
  .side-col{
    display:flex;flex-direction:column;
    position:sticky;top:0;height:100vh;justify-content:center;
    padding:60px 52px;
  }
  .side-left{align-items:center;text-align:center}
  .side-name{
    font-family:var(--round);font-weight:900;color:var(--ink);
    font-size:1.5rem;letter-spacing:.08em;margin:0 0 26px;line-height:1.5;
  }
  .side-name span{
    display:block;font-family:var(--serif);font-style:italic;font-weight:600;
    font-size:1.5rem;letter-spacing:.16em;color:var(--orange);margin-top:4px;
  }
  .side-tagline{
    font-family:var(--round);font-size:1.05rem;line-height:2.2;
    color:var(--ink);margin:0;font-weight:500;letter-spacing:.04em;
  }
  .side-tagline-en{
    font-family:var(--serif);font-style:italic;font-size:1.15rem;
    color:var(--orange);margin:22px 0 0;letter-spacing:.08em;
  }
  .side-right{align-items:stretch;justify-content:center;gap:20px}
  .side-card{
    background:var(--paper);border:1px solid var(--line);
    border-radius:var(--radius-lg);box-shadow:var(--shadow-soft);
    padding:28px 26px 30px;
  }
  .side-card h3{
    font-family:var(--serif);font-style:italic;font-size:1.15rem;letter-spacing:.12em;
    color:var(--orange);margin:0 0 18px;font-weight:600;
  }
  .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:700;font-size:.84rem;color:var(--ink)}
  .side-hours dd{margin:0;font-size:.94rem;color:var(--ink-soft)}
  .side-hours dd a{color:var(--orange);font-weight:700}
  .side-note{margin:16px 0 0;font-size:.76rem;color:var(--ink-soft);letter-spacing:.02em}
  .side-cta{
    display:block;margin-top:18px;text-align:center;
    background:var(--yellow);color:var(--ink);font-weight:700;letter-spacing:.06em;
    padding:14px 18px;border-radius:999px;box-shadow:var(--shadow-card);
    transition:filter .15s ease;
  }
  .side-cta:hover{filter:brightness(1.03)}
  .phone{
    width:100%;max-width:none;
    box-shadow:0 0 100px -34px rgba(47,58,63,.36);
    background:var(--bg);
  }
  .topbar{position:sticky}
  .hero{height:88vh;max-height:760px;min-height:600px}
  /* 中央カラム幅(460px)に収め「で、」の孤立改行を防ぐ */
  .hero-copy h1{font-size:2rem;line-height:1.45}
  .float-cta,.reserve-bar{display:none}
}

/* ===== さらに広い画面 ===== */
@media (min-width:1500px){
  .layout-pc{grid-template-columns:1fr min(var(--phone-w),34vw) 1fr}
}

/* ===== スクロールリビール演出 ===== */
[data-reveal]{
  opacity:0;transform:translateY(26px);
  transition:opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
  will-change:opacity, transform;
}
[data-reveal].is-in{opacity:1;transform:none}
/* 子要素を少し遅延させて連続的に出す */
[data-reveal-stagger] > *{
  opacity:0;transform:translateY(22px);
  transition:opacity .6s cubic-bezier(.4,0,.2,1), transform .6s cubic-bezier(.4,0,.2,1);
}
[data-reveal-stagger].is-in > *{opacity:1;transform:none}
[data-reveal-stagger].is-in > *:nth-child(2){transition-delay:.08s}
[data-reveal-stagger].is-in > *:nth-child(3){transition-delay:.16s}
[data-reveal-stagger].is-in > *:nth-child(4){transition-delay:.24s}

/* JS無効・モーション軽減時は常に表示 */
.no-js [data-reveal],
.no-js [data-reveal-stagger] > *{opacity:1;transform:none}
@media (prefers-reduced-motion: reduce){
  [data-reveal],[data-reveal-stagger] > *{
    opacity:1 !important;transform:none !important;transition:none !important;
  }
}

/* ===== 体験詳細ページ（experience/*.html）。既存クラスへの影響なし・加算のみ ===== */
.topbar-back{
  font-size:.82rem;font-weight:700;color:var(--orange);
  display:inline-flex;align-items:center;letter-spacing:.04em;
  white-space:nowrap;
}
.exp-hero{
  display:block;
  height:auto;
  min-height:0;
  max-height:none;
  padding:18px var(--gut) 34px;
  background:var(--bg);
}
.exp-hero .hero-img{
  position:relative;
  inset:auto;
  width:100%;
  height:auto;
  object-fit:contain;
  object-position:center;
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow-soft);
  animation:none;
}
.exp-hero .hero-overlay{display:none}
.exp-hero .hero-copy{
  position:relative;
  z-index:2;
  margin:-42px 12px 0;
  padding:18px 18px 16px;
  border:1px solid rgba(236,226,207,.9);
  border-radius:var(--radius);
  background:rgba(255,255,255,.94);
  box-shadow:var(--shadow-soft);
  -webkit-backdrop-filter:blur(8px);
  backdrop-filter:blur(8px);
}
.exp-hero .hero-eyebrow{
  color:var(--orange);
  text-shadow:none;
  margin-bottom:6px;
  font-size:1rem;
}
.exp-hero .hero-copy h1{
  color:var(--ink);
  text-shadow:none;
  font-size:clamp(1.55rem,7.4vw,2.2rem);
  line-height:1.28;
}
.exp-hero .hero-tags{margin-top:14px}
.exp-hero .hero-tags li{background:var(--tint);box-shadow:none}
.detail-lead{font-size:1rem;color:var(--ink-soft);line-height:2.05;margin:0}
.detail-photo{
  margin:22px 0 0;
  aspect-ratio:3 / 2;
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-soft);
}
.detail-photo img{width:100%;height:100%;object-fit:cover}
.callout{
  margin-top:22px;background:var(--tint);border-left:3px solid var(--yellow-deep);
  border-radius:12px;padding:14px 16px;font-size:.8rem;color:var(--ink-soft);
  line-height:1.85;text-align:left;
}
.other-exp{display:flex;flex-direction:column;gap:10px}
.other-exp a{
  display:flex;justify-content:space-between;align-items:center;
  background:var(--paper);border:1px solid var(--line);border-radius:var(--radius);
  padding:15px 18px;box-shadow:var(--shadow-soft);font-weight:700;font-size:.95rem;
  transition:transform .15s ease, box-shadow .15s ease;
}
.other-exp a:hover{transform:translateY(-2px);box-shadow:var(--shadow)}
.other-exp a .arw{color:var(--orange)}
.site-footer .topbar-back{display:inline-block;color:#fff;opacity:.85}
