/* ============================================================
   セイハチ珈琲 — スタイルシート
   style.css
   ============================================================ */


/* ════════════════════════════════
   カスタムプロパティ（デザイントークン）
════════════════════════════════ */
:root {
  --saffron:      #FFC24F;
  --saffron-light:#FFD98A;
  --saffron-deep: #C8880A;
  --linen:        #F5F0E8;
  --linen-dark:   #E5DDD0;
  --wood:         #C8A882;
  --wood-dark:    #8A6840;
  --bark:         #4A2E1A;
  --ink:          #1A1008;
  --body-text:    #3A2D1E;
  --caption:      #5A4A38;
  --white:        #FEFCF8;

  /* 営業状況バー */
  --sb-h:       38px;
  --sb-open:    #1F7A40;
  --sb-prep:    #C87010;
  --sb-holiday: #5A6270;
  --sb-roast:   #6B2F10;
}


/* ════════════════════════════════
   リセット・ベース
════════════════════════════════ */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-size: clamp(1.2rem, calc(1rem + 0.625vw), 1.7rem);
  background-color: var(--white);
  color: var(--body-text);
  overflow-x: hidden;
  line-height: 1.7;
}

/* 背景テクスチャ */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image:
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(180,155,120,0.04) 2px, rgba(180,155,120,0.04) 4px),
    repeating-linear-gradient(0deg,  transparent, transparent 3px, rgba(180,155,120,0.03) 3px, rgba(180,155,120,0.03) 6px);
  pointer-events: none;
  z-index: 0;
}


/* ════════════════════════════════
   営業状況バー
════════════════════════════════ */
#status-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  height: var(--sb-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  font-size: clamp(1.5rem, calc(1.3rem + 0.625vw), 2rem);
  letter-spacing: 0.05em;
  color: #fff;
  background: var(--sb-prep);
  transition: background 0.5s ease;
  overflow: hidden;
  white-space: nowrap;
}
#status-bar.is-open    { background: var(--sb-open); }
#status-bar.is-prep    { background: var(--sb-prep); }
#status-bar.is-holiday { background: var(--sb-holiday); }
#status-bar.is-roast   { background: var(--sb-roast); }

/* 左側：ステータス表示 */
#sb-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

#sb-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 2px 10px;
  border-radius: 100px;
  font-size: clamp(1.5rem, calc(1.3rem + 0.625vw), 2rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  background: rgba(255,255,255,0.22);
  border: 1px solid rgba(255,255,255,0.35);
}

#sb-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
}
#sb-dot.pulse {
  animation: sb-pulse 1.8s ease-in-out infinite;
}
@keyframes sb-pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.7); }
}

/* 中央：時間帯スロット or 次回案内 */
#sb-center {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center;
  min-width: 0;
  overflow: hidden;
}

.sb-slot {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: clamp(1.3rem, calc(1.1rem + 0.625vw), 1.8rem);
  font-weight: 500;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s;
  flex-shrink: 0;
}
.sb-slot.active {
  background: rgba(255,255,255,0.28);
  border-color: rgba(255,255,255,0.55);
  font-weight: 700;
}
.sb-slot.inactive {
  opacity: 0.42;
}

.sb-check {
  font-size: clamp(1.5rem, calc(1.3rem + 0.625vw), 2rem);
  line-height: 1;
}

#sb-next {
  font-size: clamp(1.5rem, calc(1.3rem + 0.625vw), 2rem);
  opacity: 0.95;
}
#sb-next strong {
  font-weight: 700;
  opacity: 1;
}

/* 右側：設定ボタン */
#sb-right {
  flex-shrink: 0;
}

#sb-settings-btn {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 6px;
  color: rgba(255,255,255,0.85);
  width: 26px; height: 26px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 13px;
  line-height: 1;
  transition: background 0.2s, color 0.2s;
  padding: 0;
}
#sb-settings-btn:hover {
  background: rgba(255,255,255,0.3);
  color: #fff;
}


/* ════════════════════════════════
   設定パネル
════════════════════════════════ */
#sb-panel {
  position: fixed;
  top: var(--sb-h);
  right: 0;
  z-index: 299;
  width: min(340px, 100vw);
  background: var(--ink);
  border: 1px solid rgba(200,168,130,0.25);
  border-top: none;
  border-radius: 0 0 0 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
  padding: 20px;
  transform: translateY(-110%);
  opacity: 0;
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1), opacity 0.28s ease;
  pointer-events: none;
}
#sb-panel.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
#sb-panel h3 {
  font-family: 'Shippori Mincho', serif;
  font-size: 13px;
  letter-spacing: 0.22em;
  color: var(--saffron);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.sb-panel-modes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 14px;
}

.sb-mode-btn {
  padding: 9px 8px;
  border-radius: 10px;
  border: 1.5px solid rgba(200,168,130,0.25);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.7);
  font-size: 12px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  letter-spacing: 0.06em;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
  line-height: 1.4;
}
.sb-mode-btn:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.sb-mode-btn.selected {
  border-color: var(--saffron);
  background: rgba(255,194,79,0.12);
  color: var(--saffron-light);
  font-weight: 600;
}
.sb-mode-btn[data-mode="normal"].selected   { border-color: #4AAF6A; background: rgba(74,175,106,0.15); color: #7DD4A0; }
.sb-mode-btn[data-mode="roasting"].selected { border-color: #C07850; background: rgba(109,51,24,0.3);   color: #D4906A; }
.sb-mode-btn[data-mode="holiday"].selected  { border-color: #9BA3AF; background: rgba(107,114,128,0.2); color: #C4CAD4; }

.sb-panel-note-area {
  margin-bottom: 14px;
  display: none;
}
.sb-panel-note-area.visible { display: block; }

.sb-panel-note-area label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 5px;
}

.sb-panel-note-area input {
  width: 100%;
  padding: 8px 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,168,130,0.25);
  border-radius: 8px;
  color: #fff;
  font-size: 12px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  letter-spacing: 0.04em;
  outline: none;
}
.sb-panel-note-area input:focus {
  border-color: var(--saffron);
}

.sb-panel-save {
  width: 100%;
  padding: 10px;
  background: var(--saffron);
  border: none;
  border-radius: 100px;
  color: var(--bark);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-family: 'Zen Kaku Gothic New', sans-serif;
  cursor: pointer;
  transition: background 0.2s;
}
.sb-panel-save:hover { background: var(--saffron-light); }

.sb-panel-reset {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-size: 10.5px;
  color: rgba(255,255,255,0.28);
  letter-spacing: 0.06em;
}

/* スマホ対応（営業バー） */
@media (max-width: 480px) {
  #status-bar { padding: 0 10px; }
  #sb-badge   { padding: 2px 7px; }
  .sb-slot    { padding: 2px 6px; }
  #sb-center  { gap: 5px; }
}


/* ════════════════════════════════
   ナビゲーション
════════════════════════════════ */
nav {
  position: fixed;
  top: var(--sb-h); left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  background: rgba(254,252,248,0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(200,168,130,0.3);
}

.nav-logo {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(2.5rem, calc(2.3rem + 0.625vw), 3rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--ink);
  text-decoration: none;
}
.nav-logo span { color: var(--saffron-deep); }

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.nav-links a {
  font-size: clamp(1.5rem, calc(1.3rem + 0.625vw), 2rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--caption);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--saffron-deep); }

/* 右側グループ（ナビリンク＋SNS＋ハンバーガー） */
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* SNSアイコン */
.nav-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px;
  border-radius: 9px;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.nav-social-link:hover {
  opacity: 0.78;
  transform: translateY(-1px);
}

/* Instagram */
.nav-social-link:not(.nav-social-line):not(.nav-social-store) {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.nav-social-link:not(.nav-social-line):not(.nav-social-store) svg {
  width: 20px; height: 20px;
  stroke: #fff;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ネットストア */
.nav-social-store {
  background: #FFC24F;
}
.nav-social-store svg {
  width: 20px; height: 20px;
  stroke: #fff;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* LINE */
.nav-social-line {
  background: #06C755;
}
.nav-social-line svg {
  width: 34px; height: 34px;
}

/* ハンバーガーボタン */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  transition: background 0.2s;
}
.nav-hamburger:hover { background: rgba(200,168,130,0.15); }
.nav-hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.2s ease;
}

/* モバイルメニューオーバーレイ */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,16,8,0.45);
  z-index: 99;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav-overlay.open { opacity: 1; }

.nav-close { display: none; }


/* ════════════════════════════════
   ヒーロー
════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(100px + var(--sb-h)) 36px 80px;
  overflow: hidden;
  background-image: url('./260413p1.webp');
  background-size: cover;
  background-position: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(160deg, rgba(28,14,4,0.72) 0%, rgba(44,24,8,0.64) 60%, rgba(18,8,2,0.78) 100%);
}
.hero > * { position: relative; z-index: 1; }

.hero-eyebrow {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(1.7rem, calc(1.5rem + 0.625vw), 2.2rem);
  letter-spacing: 0.28em;
  color: rgba(255,194,79,0.9);
  margin-bottom: 22px;
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
}
.hero-title {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(5rem, calc(4.8rem + 0.625vw), 5.5rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.1;
  text-align: center;
  color: #FEFCF8;
  margin-bottom: 10px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  opacity: 0;
  animation: fadeUp 0.8s 0.4s forwards;
}
.hero-title-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(2.3rem, calc(2.1rem + 0.625vw), 2.8rem);
  font-weight: 300;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 0.8s 0.55s forwards;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 26px;
  background: var(--saffron);
  border-radius: 100px;
  font-size: clamp(2rem, calc(1.8rem + 0.625vw), 2.5rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--bark);
  margin-bottom: 52px;
  opacity: 0;
  animation: fadeUp 0.8s 0.7s forwards;
}
.hero-badge svg {
  width: 16px; height: 16px;
  stroke: var(--bark); stroke-width: 1.8;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
}
.hero-tagline {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(2.3rem, calc(2.1rem + 0.625vw), 2.8rem);
  font-weight: 400;
  line-height: 2.1;
  text-align: center;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.08em;
  max-width: 450px;
  opacity: 0;
  animation: fadeUp 0.8s 0.85s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  animation: fadeUp 0.8s 1.2s forwards;
}
.hero-scroll span {
  font-size: clamp(1.8rem, calc(1.6rem + 0.625vw), 2.3rem);
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.4);
}
.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}


/* ════════════════════════════════
   セクション共通
════════════════════════════════ */
section { position: relative; z-index: 1; padding: 76px 0; }

.section-label {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(2.3rem, calc(2.1rem + 0.625vw), 2.8rem);
  letter-spacing: 0.35em;
  color: var(--saffron-deep);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::after {
  content: '';
  flex: 0 0 28px; height: 1px;
  background: var(--saffron-deep);
  opacity: 0.5;
}

.section-title {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(3.5rem, calc(3.3rem + 0.625vw), 3.8rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.4;
  margin-bottom: 24px;
  color: var(--ink);
}

.divider {
  width: 40px; height: 2px;
  background: var(--saffron);
  margin-bottom: 32px;
  border-radius: 2px;
}

/* コンテナ */
.container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* スクロールアニメ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.75s ease, transform 0.75s ease;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}
.reveal.visible { opacity: 1; transform: translateY(0); }


/* ════════════════════════════════
   店舗情報
════════════════════════════════ */
.info {
  background-image: url('./260413p2.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.info::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(245,240,232,0.93);
  z-index: 0;
}
.info > .reveal { position: relative; z-index: 1; }

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(180,148,110,0.35);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(254,252,248,0.97);
  box-shadow: 0 4px 24px rgba(80,50,20,0.08);
}
.info-row {
  display: flex;
  padding: 22px;
  gap: 18px;
  align-items: flex-start;
  border-bottom: 1px solid rgba(200,168,130,0.2);
}
.info-row:last-child { border-bottom: none; }

.info-icon {
  width: 42px; height: 42px;
  background: var(--saffron);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-icon svg {
  width: 20px; height: 20px;
  stroke: var(--bark); stroke-width: 1.6;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
}

.info-content dt {
  font-size: clamp(2.3rem, calc(2.1rem + 0.625vw), 2.8rem);
  letter-spacing: 0.2em;
  color: var(--saffron-deep);
  font-weight: 500;
  margin-bottom: 5px;
  font-family: 'Shippori Mincho', serif;
}
.info-content dd {
  font-size: clamp(2rem, calc(1.8rem + 0.625vw), 2.5rem);
  line-height: 1.7;
  color: var(--body-text);
  letter-spacing: 0.03em;
}
.info-content dd.address-main {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(2rem, calc(1.8rem + 0.625vw), 2.5rem);
  font-weight: 500;
  color: var(--ink);
}
.info-content dd.sub {
  font-size: clamp(1.7rem, calc(1.5rem + 0.625vw), 2.2rem);
  color: var(--caption);
  margin-top: 3px;
}

.map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 11px 20px;
  background: var(--saffron);
  border-radius: 100px;
  font-size: clamp(1.7rem, calc(1.5rem + 0.625vw), 2.2rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--bark);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.map-btn:hover { background: var(--saffron-deep); color: #fff; }
.map-btn svg {
  width: 15px; height: 15px;
  stroke: var(--bark); stroke-width: 1.8;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}
.map-btn:hover svg { stroke: #fff; }


/* ════════════════════════════════
   メニュー
════════════════════════════════ */
.menu { background: var(--white); }
.menu-categories { display: flex; flex-direction: column; gap: 34px; }

.menu-category-label {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(2.3rem, calc(2.1rem + 0.625vw), 2.8rem);
  letter-spacing: 0.22em;
  color: var(--saffron-deep);
  font-weight: 500;
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.menu-category-label svg {
  width: 16px; height: 16px;
  stroke: var(--saffron-deep); stroke-width: 1.6;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
}

.menu-items { display: flex; flex-wrap: wrap; gap: 10px; }
.menu-item {
  padding: 9px 18px;
  border: 1.5px solid var(--linen-dark);
  border-radius: 100px;
  font-size: 15px;
  letter-spacing: 0.06em;
  color: var(--body-text);
  background: var(--linen);
}
.menu-item.highlight {
  background: var(--saffron);
  border-color: var(--saffron);
  color: var(--bark);
  font-weight: 500;
}

.beans-block {
  margin-top: 34px;
  padding: 24px 22px;
  background: linear-gradient(135deg, var(--bark) 0%, #2E1508 100%);
  border-radius: 18px;
  color: var(--white);
}
.beans-block .beans-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 17px;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.beans-nums { display: flex; gap: 28px; margin-bottom: 14px; }
.beans-num { text-align: center; }
.beans-num .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--saffron);
  line-height: 1;
}
.beans-num .num-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}
.beans-block p {
  font-size: 14px;
  line-height: 1.95;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
}

.menu-note {
  margin-top: 28px;
  padding: 20px 22px;
  background: var(--linen);
  border-radius: 14px;
  font-size: clamp(2rem, calc(1.8rem + 0.625vw), 2.5rem);
  line-height: 1.9;
  color: var(--body-text);
  letter-spacing: 0.04em;
  display: flex; gap: 14px; align-items: flex-start;
}
.menu-note svg {
  width: 22px; height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--saffron-deep); stroke-width: 1.6;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
}
.menu-note strong {
  color: var(--ink);
  font-weight: 500;
  display: block;
  margin-bottom: 3px;
}


/* ════════════════════════════════
   価格表
════════════════════════════════ */
.price-sections { display: flex; flex-direction: column; gap: 28px; }

.price-section-title {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(2.3rem, calc(2.1rem + 0.625vw), 2.8rem);
  letter-spacing: 0.22em;
  color: var(--saffron-deep);
  font-weight: 500;
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.price-section-title svg {
  width: 16px; height: 16px;
  stroke: var(--saffron-deep); stroke-width: 1.6;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: clamp(2.3rem, calc(2.1rem + 0.625vw), 2.8rem);
  letter-spacing: 0.03em;
  background: var(--white);
  border: 1px solid rgba(200,168,130,0.3);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(80,50,20,0.06);
}
.price-table thead th {
  background: var(--bark);
  color: var(--saffron-light);
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(2.3rem, calc(2.1rem + 0.625vw), 2.8rem);
  letter-spacing: 0.18em;
  font-weight: 500;
  padding: 10px 14px;
  text-align: center;
}
.price-table thead th:first-child { text-align: left; }
.price-table tbody tr { border-top: 1px solid rgba(200,168,130,0.18); }
.price-table tbody tr:hover { background: var(--linen); }
.price-table td {
  padding: 13px 14px;
  color: var(--body-text);
  vertical-align: middle;
}
.price-table td:not(:first-child) {
  text-align: center;
  color: var(--ink);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, calc(2.6rem + 0.625vw), 3.3rem);
  font-style: italic;
  letter-spacing: 0.04em;
}
.price-table td.empty {
  color: var(--linen-dark);
  font-size: clamp(2.3rem, calc(2.1rem + 0.625vw), 2.8rem);
  font-style: normal;
  font-family: inherit;
}
.price-table td .item-name {
  display: block;
  font-size: clamp(2.3rem, calc(2.1rem + 0.625vw), 2.8rem);
  color: var(--body-text);
}
.price-table td .item-sub {
  display: block;
  font-size: clamp(1.6rem, calc(1.4rem + 0.625vw), 2.1rem);
  letter-spacing: 0.1em;
  color: var(--caption);
  margin-top: 2px;
}
.price-table tfoot td {
  padding: 11px 14px;
  font-size: clamp(2rem, calc(1.8rem + 0.625vw), 2.5rem);
  letter-spacing: 0.04em;
  color: var(--caption);
  border-top: 1px solid rgba(200,168,130,0.3);
  background: var(--linen);
}


/* ════════════════════════════════
   こだわり
════════════════════════════════ */
.concept {
  background-image: url('https://images.unsplash.com/photo-1447933601403-0c6688de566e?auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.concept::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(245,240,232,0.91);
  z-index: 0;
}
.concept > .reveal { position: relative; z-index: 1; }

.concept-text {
  font-size: clamp(2rem, calc(1.8rem + 0.625vw), 2.5rem);
  font-weight: 400;
  line-height: 2.2;
  color: var(--body-text);
  letter-spacing: 0.05em;
}
.concept-accent {
  display: block;
  margin-top: 28px;
  padding: 20px 22px;
  background: var(--white);
  border-left: 4px solid var(--saffron);
  border-radius: 0 12px 12px 0;
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(2rem, calc(1.8rem + 0.625vw), 2.5rem);
  line-height: 2.0;
  color: var(--ink);
  letter-spacing: 0.06em;
  box-shadow: 0 2px 16px rgba(80,50,20,0.07);
}
.concept-accent svg {
  display: inline-block;
  vertical-align: middle;
  width: 18px; height: 18px;
  margin-right: 6px;
  stroke: var(--saffron-deep); stroke-width: 1.6;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
}


/* ════════════════════════════════
   豆販売
════════════════════════════════ */
.beans {
  background: var(--linen);
  padding: 80px 0;
}

.beans-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.beans-image {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(74,46,26,0.18);
  aspect-ratio: 4 / 5;
}

.beans-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.beans-content {
  padding: 8px 0;
}

.beans-lead {
  font-size: clamp(1.4rem, calc(1.3rem + 0.3125vw), 1.7rem);
  line-height: 2.0;
  color: var(--body-text);
  margin-bottom: 28px;
}

.beans-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 32px;
}

.beans-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--white);
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: 0 2px 12px rgba(74,46,26,0.07);
}

.beans-detail-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--saffron);
  border-radius: 8px;
}

.beans-detail-icon svg {
  width: 18px; height: 18px;
  stroke: var(--white);
  stroke-width: 1.8;
}

.beans-detail-row dt {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(1.1rem, calc(1rem + 0.1875vw), 1.3rem);
  letter-spacing: 0.12em;
  color: var(--caption);
  margin-bottom: 3px;
}

.beans-detail-row dd {
  font-size: clamp(1.4rem, calc(1.3rem + 0.3125vw), 1.7rem);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.04em;
}

.beans-detail-row dd.sub {
  font-size: clamp(1.1rem, calc(1rem + 0.1875vw), 1.3rem);
  color: var(--caption);
  font-weight: 400;
  margin-top: 2px;
}

.beans-store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 10px;
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(1.4rem, calc(1.3rem + 0.3125vw), 1.7rem);
  letter-spacing: 0.08em;
  transition: background 0.2s, transform 0.2s;
}

.beans-store-btn:hover {
  background: var(--bark);
  transform: translateY(-2px);
}

.beans-store-btn svg {
  width: 18px; height: 18px;
  stroke: currentColor;
  stroke-width: 1.8;
  flex-shrink: 0;
}

.beans-store-arrow {
  margin-left: 4px;
}
    /* ════════════════════════════════
       写真タップ拡大ヒント
    ════════════════════════════════ */
    .photo-clickable {
      cursor: zoom-in;
    }
    .photo-zoom-hint {
      position: absolute;
      inset: 0;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(26,14,4,0);
      transition: background 0.22s ease;
      z-index: 2;
      pointer-events: none;
    }
    .photo-zoom-hint svg {
      width: 40px; height: 40px;
      stroke: #fff;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
      fill: none;
      opacity: 0;
      transform: scale(0.78);
      transition: opacity 0.22s ease, transform 0.22s ease;
      filter: drop-shadow(0 2px 6px rgba(0,0,0,0.6));
    }
    /* タッチデバイス：常時薄くヒント表示 */
    @media (hover: none) {
      .photo-zoom-hint {
        background: rgba(26,14,4,0.14);
      }
      .photo-zoom-hint svg {
        opacity: 0.82;
        transform: scale(1);
      }
    }
    /* マウスデバイス：ホバー時に表示 */
    @media (hover: hover) {
      .photo-clickable:hover .photo-zoom-hint {
        background: rgba(26,14,4,0.36);
      }
      .photo-clickable:hover .photo-zoom-hint svg {
        opacity: 1;
        transform: scale(1);
      }
    }

    /* ════════════════════════════════
       ライトボックス（モーダル拡大表示）
    ════════════════════════════════ */
    .lightbox {
      position: fixed;
      inset: 0;
      z-index: 9000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: max(16px, env(safe-area-inset-top, 16px))
               max(16px, env(safe-area-inset-right, 16px))
               max(16px, env(safe-area-inset-bottom, 16px))
               max(16px, env(safe-area-inset-left, 16px));
      background: rgba(10,6,3,0.94);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.26s ease;
      overscroll-behavior: contain;
      -webkit-tap-highlight-color: transparent;
    }
    .lightbox.is-open {
      opacity: 1;
      pointer-events: auto;
    }
    .lightbox-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px;
      max-width: min(94vw, 920px);
      width: 100%;
      max-height: 88vh;
      transform: scale(0.92) translateY(16px);
      transition: transform 0.26s ease;
    }
    .lightbox.is-open .lightbox-inner {
      transform: scale(1) translateY(0);
    }
    .lightbox-img-wrap {
      flex: 1 1 auto;
      min-height: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      touch-action: pinch-zoom;
      width: 100%;
    }
    .lightbox-img {
      max-width: 100%;
      max-height: min(72vh, 700px);
      width: auto;
      height: auto;
      object-fit: contain;
      border-radius: 8px;
      box-shadow: 0 20px 64px rgba(0,0,0,0.7);
      display: block;
      user-select: none;
      -webkit-user-drag: none;
    }
    .lightbox-caption-area {
      text-align: center;
      padding: 0 52px;
      flex-shrink: 0;
    }
    .lightbox-caption-title-lb {
      font-family: 'Shippori Mincho', serif;
      font-size: clamp(1.7rem, 2.2vw, 2.1rem);
      letter-spacing: 0.1em;
      color: #fff;
      display: block;
      line-height: 1.5;
    }
    .lightbox-caption-sub-lb {
      font-size: clamp(1.3rem, 1.8vw, 1.7rem);
      letter-spacing: 0.06em;
      color: rgba(255,194,79,0.85);
      display: block;
      margin-top: 5px;
      line-height: 1.6;
    }
    /* 閉じるボタン */
    .lightbox-close {
      position: fixed;
      top: max(12px, env(safe-area-inset-top, 12px));
      right: max(12px, env(safe-area-inset-right, 12px));
      width: 48px;
      height: 48px;
      min-width: 48px;
      min-height: 48px;
      border-radius: 50%;
      background: rgba(255,255,255,0.1);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border: 1.5px solid rgba(255,255,255,0.22);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.18s, transform 0.14s;
      -webkit-tap-highlight-color: transparent;
      touch-action: manipulation;
      z-index: 9001;
    }
    .lightbox-close:hover {
      background: rgba(255,255,255,0.22);
      transform: scale(1.08);
    }
    .lightbox-close:active {
      background: rgba(255,255,255,0.3);
      transform: scale(0.93);
    }
    .lightbox-close svg {
      width: 20px; height: 20px;
      stroke: #fff;
      stroke-width: 2.2;
      stroke-linecap: round;
      fill: none;
      pointer-events: none;
    }
    /* スワイプヒント（タッチデバイスのみ） */
    .lightbox-swipe-hint {
      font-size: 1.2rem;
      letter-spacing: 0.1em;
      color: rgba(255,255,255,0.32);
      text-align: center;
      flex-shrink: 0;
      margin-top: -4px;
    }
    @media (hover: hover) {
      .lightbox-swipe-hint { display: none; }
    }

    @media (max-width: 767px) {
      .lightbox-img {
        max-height: min(62vh, 500px);
      }
      .lightbox-caption-area {
        padding: 0 36px;
      }
    }

/* レスポンシブ */
@media (max-width: 860px) {
  .beans-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 24px;
  }
  .beans-image {
    aspect-ratio: 16 / 9;
  }
  .beans { padding: 60px 0; }
}

@media (max-width: 480px) {
  .beans { padding: 48px 0; }
  .beans-inner { padding: 0 20px; gap: 24px; }
  .beans-image { aspect-ratio: 4 / 3; border-radius: 12px; }
}


/* ════════════════════════════════
   オープン告知
════════════════════════════════ */
.opening {
  background-image: url('https://images.unsplash.com/photo-1501339847302-ac426a4a7cbb?auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  background-position: center top;
  padding: 80px 0;
  text-align: center;
}
.opening::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(26,10,2,0.82) 0%, rgba(44,20,6,0.78) 100%);
  z-index: 0;
}
.opening > .reveal { position: relative; z-index: 1; }

.opening-label {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(2rem, calc(1.8rem + 0.625vw), 2.5rem);
  letter-spacing: 0.4em;
  color: var(--saffron);
  margin-bottom: 20px;
}
.opening-title {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(4rem, calc(3.8rem + 0.625vw), 4.5rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #FEFCF8;
  margin-bottom: 12px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}
.opening-title span { color: var(--saffron); }
.opening-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(2.8rem, calc(2.6rem + 0.625vw), 3.3rem);
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 32px;
}
.opening-message {
  font-size: clamp(1.8rem, calc(1.6rem + 0.625vw), 2.3rem);
  line-height: 2.2;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.06em;
}


/* ════════════════════════════════
   お問い合わせ
════════════════════════════════ */
.contact {
  background: var(--linen);
  background-image: url('https://images.unsplash.com/photo-1447933601403-0c6688de566e?auto=format&fit=crop&w=1200&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.contact::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(245,240,232,0.94);
  z-index: 0;
}
.contact > .reveal { position: relative; z-index: 1; }

.contact-intro {
  font-size: clamp(2rem, calc(1.8rem + 0.625vw), 2.5rem);
  line-height: 2.2;
  color: var(--body-text);
  letter-spacing: 0.05em;
  margin-bottom: 36px;
}

.formrun-wrap {
  background: var(--white);
  border: 1px solid rgba(200,168,130,0.35);
  border-radius: 18px;
  padding: 36px 32px;
  box-shadow: 0 4px 24px rgba(80,50,20,0.08);
  min-height: 320px;
  position: relative;
}
.formrun-wrap iframe { width: 100% !important; border: none; }


/* ════════════════════════════════
   フッター
════════════════════════════════ */
footer {
  background: var(--ink);
  padding: 44px 0 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.footer-logo {
  font-family: 'Shippori Mincho', serif;
  font-size: clamp(2.5rem, calc(2.3rem + 0.625vw), 3rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--white);
  margin-bottom: 6px;
}
.footer-logo span { color: var(--saffron); }
.footer-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(2rem, calc(1.8rem + 0.625vw), 2.5rem);
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 22px;
}
.footer-address {
  font-size: clamp(1.8rem, calc(1.6rem + 0.625vw), 2.3rem);
  line-height: 2.0;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
}
.footer-copy {
  margin-top: 22px;
  font-size: clamp(1.8rem, calc(1.6rem + 0.625vw), 2.3rem);
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.2);
}


/* ════════════════════════════════
   アニメーション
════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.35; }
  50%       { opacity: 0.9; }
}


/* ════════════════════════════════
   レスポンシブ：タブレット（〜1099px）
════════════════════════════════ */
@media (max-width: 1099px) {
  .container { padding: 0 32px; }
  .reveal    { padding: 0 32px; }

  section { padding: 64px 0; }
  .opening { padding: 72px 0 !important; }

  .hero { padding: calc(90px + var(--sb-h)) 32px 72px; }
}


/* ════════════════════════════════
   レスポンシブ：スマートフォン（〜767px）
════════════════════════════════ */
@media (max-width: 767px) {
  body { line-height: 1.8; }

  .container { padding: 0 20px; }
  .reveal    { padding: 0 20px; }

  /* ハンバーガーボタン */
  .nav-hamburger { display: flex; }

  /* 右側グループ：スマホではギャップを詰める */
  .nav-right { gap: 4px; }

  /* SNSアイコン：スマホでは少しコンパクトに */
  .nav-social { gap: 6px; }
  .nav-social-link { width: 32px; height: 32px; border-radius: 8px; }
  .nav-social-link svg { width: 32px; height: 32px; }

  /* ナビゲーション：モバイルドロワー */
  .nav-links {
    position: fixed;
    top: 0; right: 0;
    width: min(280px, 85vw);
    height: 100dvh;
    background: rgba(254,252,248,0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(200,168,130,0.3);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0;
    padding: calc(var(--sb-h) + 56px) 0 40px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    z-index: 101;
    overflow-y: auto;
    box-shadow: -4px 0 24px rgba(40,20,8,0.12);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links { gap: 0 !important; }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(200,168,130,0.18);
  }
  .nav-links a {
    display: block;
    padding: 18px 28px;
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    letter-spacing: 0.2em;
    color: var(--ink);
  }
  .nav-links a:hover {
    background: rgba(200,168,130,0.1);
    color: var(--saffron-deep);
  }

  /* 閉じるボタン */
  .nav-close {
    display: flex; align-items: center; justify-content: center;
    position: absolute;
    top: calc(var(--sb-h) + 12px);
    right: 16px;
    width: 38px; height: 38px;
    background: none; border: none; cursor: pointer;
    font-size: 2rem; color: var(--ink);
    border-radius: 50%;
    transition: background 0.2s, color 0.2s;
  }
  .nav-close:hover { background: rgba(200,168,130,0.2); color: var(--saffron-deep); }

  /* ヒーロー */
  .hero { padding: calc(80px + var(--sb-h)) 20px 64px; }
  .hero-eyebrow { letter-spacing: 0.2em; }
  .hero-badge   { padding: 9px 20px; margin-bottom: 36px; }

  /* セクション共通 */
  section { padding: 52px 0; }
  .opening { padding: 60px 0 !important; }
  .section-title { margin-bottom: 18px; }
  .divider { margin-bottom: 24px; }

  /* 店舗情報 */
  .info-row { padding: 18px 16px; gap: 14px; }
  .info-icon { width: 36px; height: 36px; border-radius: 10px; }
  .info-icon svg { width: 17px; height: 17px; }
  .map-btn { padding: 9px 16px; margin-top: 12px; }

  /* メニュー */
  .price-table thead th { padding: 8px 10px; letter-spacing: 0.12em; }
  .price-table td { padding: 10px 10px; }
  .menu-note { padding: 16px 16px; }

  /* こだわり */
  .concept-text   { line-height: 2.1; }
  .concept-accent { line-height: 1.95; padding: 16px 18px; }

  /* オープン告知 */
  .opening-label   { letter-spacing: 0.3em; }
  .opening-message { line-height: 2.1; }

  /* フォーム */
  .formrun-wrap { padding: 24px 18px; }
}