/* ============================================================
   small kitchens — main stylesheet
   ============================================================ */

/* ---------- reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* スマホタップ時の青ハイライト・フラッシュを無効化 */
* { -webkit-tap-highlight-color: transparent; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.8;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ---------- custom properties ---------- */
:root {
  --cream:  #f9f6f1;
  --beige:  #f2ede4;
  --dark:   #1a1a1a;
  --mid:    #4a4a4a;
  --light:  #9a9a8a;
  --accent: #8b7355;
  --line-green: #06C755;
  --section-gap: 120px;
}

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.container { max-width: 1100px; margin: 0 auto; padding: 0 32px; }
.container.narrow { max-width: 760px; margin: 0 auto; padding: 0 32px; }
.section { padding: var(--section-gap) 0; }
.section-dark { background: var(--dark); }
.section-beige { background: var(--beige); }

/* ============================================================
   SECTION LABEL / TITLE
   ============================================================ */
.section-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--light);
  margin-bottom: 16px;
}
.section-label.light { color: rgba(255,255,255,0.45); }

.section-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0.04em;
  color: var(--dark);
  margin-bottom: 40px;
}
.section-title.light { color: #fff; }

.section-body {
  font-size: 15px;
  line-height: 2;
  color: var(--mid);
}

.concept-message {
  margin-top: 32px;
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-style: italic;
}

/* ============================================================
   HEADER
   ============================================================ */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease, opacity 0.4s ease;
  background: transparent;
  opacity: 0;         /* デフォルト: FV中は非表示 */
  pointer-events: none;
}
#header.scrolled {
  background: rgba(255,255,255,0.96);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
  backdrop-filter: blur(8px);
  opacity: 1;
  pointer-events: auto;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  opacity: 1;            /* ヘッダー自体がopacity制御するのでロゴは常に1 */
  pointer-events: auto;
  transition: opacity 0.3s ease;
}
#header.hero-visible .logo-link {
  opacity: 0;
  pointer-events: none;
}

/* ロゴ: 1024×256px (アスペクト比 4:1) */
.logo-img {
  display: block;
  width: 195px;
  height: auto;
  filter: none;
  transition: opacity 0.3s, filter 0.4s;
  flex-shrink: 0;
}

/* FV表示中（透明ヘッダー）は白く反転 */
#header:not(.scrolled) .logo-img {
  filter: brightness(0) invert(1);
}

.logo-link:hover .logo-img { opacity: 0.7; }

.nav-desktop {
  display: flex;
  gap: 36px;
}
.nav-desktop a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.85);
  transition: color 0.3s;
  position: relative;
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}
.nav-desktop a:hover::after { transform: scaleX(1); }
.nav-desktop a:hover { color: #fff; }

#header.scrolled .nav-desktop a { color: var(--mid); }
#header.scrolled .nav-desktop a:hover { color: var(--dark); }

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: #fff;
  transition: all 0.3s ease;
}
#header.scrolled .hamburger span { background: var(--dark); }

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile nav */
.nav-mobile {
  display: none;
  flex-direction: column;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}
.nav-mobile.open { max-height: 300px; }
.mobile-link {
  padding: 16px 32px;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--dark);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: background 0.2s;
}
.mobile-link:hover { background: var(--beige); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  height: 100svh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg-img {
  position: absolute;
  inset: -15%;  /* パララックスでズレても白が見えないよう余裕を持たせる */
  background-size: cover;
  background-position: center 40%;
  transform: translateY(0px);
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.35) 60%,
    rgba(0,0,0,0.5) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 0 24px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease 0.2s, transform 0.9s ease 0.2s;
}
.hero-content.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-eyebrow {
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 20px;
}

.hero-title {
  margin-bottom: 28px;
  line-height: 1;
}

/* 余白クリッピングラッパー */
/* 画像(正方形)の余白: 上18% 下22% 左18% 右10% を除去 */
.hero-title-img-wrap {
  display: inline-block;
  overflow: hidden;
  /* 表示したい文字サイズに合わせて幅を決め、余白をネガティブマージンでカット */
  /* PCでは幅320px相当の文字を見せる → 画像幅 = 320 / 0.72 ≒ 444px */
  width: clamp(240px, 36vw, 420px);
  /* 上下: 高さ方向の18%上・22%下をカット */
  margin-top: calc(clamp(240px, 36vw, 420px) * -0.18);
  margin-bottom: calc(clamp(240px, 36vw, 420px) * -0.22);
  /* 左右: 18%左・10%右をカット */
  margin-left: calc(clamp(240px, 36vw, 420px) * -0.18);
  margin-right: calc(clamp(240px, 36vw, 420px) * -0.10);
}

.hero-title-img {
  width: 100%;
  height: auto;
  display: block;
  /* 白文字に反転 */
  filter: brightness(0) invert(1);
}

.hero-sub {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
}

.btn-primary {
  display: inline-block;
  padding: 16px 40px;
  border: 1px solid rgba(255,255,255,0.8);
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.18em;
  transition: background 0.3s, color 0.3s;
  font-family: 'Noto Sans JP', sans-serif;
}
.btn-primary:hover {
  background: rgba(255,255,255,0.15);
}

/* scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 1;
}
.scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.5);
  animation: scrollDown 1.8s ease infinite;
  transform-origin: top;
}
.scroll-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
  text-transform: lowercase;
}

@keyframes scrollDown {
  0%   { transform: scaleY(0); opacity: 0; }
  40%  { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(1) translateY(48px); opacity: 0; }
}

/* ============================================================
   CONCEPT
   ============================================================ */
#concept { text-align: center; }
#concept .section-label { justify-content: center; display: block; }

/* ============================================================
   GALLERY
   ============================================================ */
#gallery { padding: 0; overflow: hidden; }

.gallery-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.gallery-item {
  overflow: hidden;
  aspect-ratio: 1 / 1;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  display: block;
}

/* キャプション */
.gallery-caption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(
    to top,
    rgba(10,8,5,0.82) 0%,
    rgba(10,8,5,0.45) 45%,
    rgba(10,8,5,0.0) 100%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
/* ホバー時（PC） */
.gallery-item:hover .gallery-caption {
  opacity: 1;
}
.gallery-item:hover img {
  transform: scale(1.06);
}
/* スクロールで画面に入ったとき自動表示 */
.gallery-item.peek .gallery-caption {
  opacity: 1;
  animation: captionPeek 3.2s ease forwards;
}
.gallery-item.peek img {
  transform: scale(1.04);
}
/* ホバー中は peek アニメーションを上書きして常時表示 */
.gallery-item.peek:hover .gallery-caption {
  animation: none;
  opacity: 1;
}

@keyframes captionPeek {
  0%   { opacity: 0; }
  15%  { opacity: 1; }
  70%  { opacity: 1; }
  100% { opacity: 0; }
}

.gallery-caption-inner {
  padding: 28px 28px 32px;
  transform: translateY(10px);
  transition: transform 0.5s ease;
  width: 100%;
}
.gallery-item:hover .gallery-caption-inner,
.gallery-item.peek .gallery-caption-inner {
  transform: translateY(0);
}

.gallery-caption-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 12px;
}

.gallery-caption-menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.gallery-caption-menu li {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.caption-role {
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
  min-width: 36px;
  border-right: 1px solid rgba(255,255,255,0.2);
  padding-right: 10px;
}

.caption-dish {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.06em;
  line-height: 1.4;
}

/* ============================================================
   MENU
   ============================================================ */
#menu { text-align: center; }

.menu-card {
  display: flex;
  align-items: stretch;
  border: 1px solid #e8e0d4;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 32px;
  text-align: left;
  transition: box-shadow 0.3s;
}
.menu-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.menu-card-badge {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #fff;
  background: var(--accent);
  padding: 20px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-card-body {
  flex: 1;
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.menu-card-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.menu-card-desc {
  font-size: 14px;
  color: var(--mid);
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.menu-card-note {
  font-size: 12px;
  color: var(--light);
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.menu-card-price span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1;
}
.menu-card-price small {
  font-size: 13px;
  color: var(--light);
  margin-left: 6px;
}

.menu-card-img {
  width: 220px;
  flex-shrink: 0;
}
.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.menu-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.tag {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 6px 16px;
  border-radius: 100px;
}

/* ============================================================
   COMMITMENT
   ============================================================ */
#commitment .section-label,
#commitment .section-title { text-align: center; }

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 56px;
  margin-top: 24px;
}

.commitment-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.commitment-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.commitment-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--light);
  margin-bottom: 16px;
}

.commitment-icon {
  width: 48px;
  height: 48px;
  color: var(--accent);
  margin-bottom: 20px;
}
.commitment-icon svg { width: 100%; height: 100%; }

.commitment-item h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.commitment-item p {
  font-size: 14px;
  line-height: 2;
  color: var(--mid);
}

/* ============================================================
   KITCHEN PHOTO
   ============================================================ */
.kitchen-photo-wrap {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
  /* キャプションが外に出ないよう明示 */
  contain: layout;
}

.kitchen-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 0.6s ease;
}

.kitchen-photo-wrap:hover .kitchen-photo {
  transform: scale(1.03);
}

.kitchen-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 48px 40px;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 100%);
}

.kitchen-photo-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}

.kitchen-photo-text {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.1em;
}

/* ============================================================
   HISTORY / TIMELINE
   ============================================================ */
#history .container { text-align: center; }

.timeline-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 32px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 120px 40px 1fr;
  gap: 0;
  align-items: flex-start;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.timeline-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.timeline-left {
  text-align: right;
  padding-right: 24px;
  padding-top: 8px;
}
.timeline-year {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--accent);
  line-height: 1.1;
}
.timeline-month {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--light);
}

.timeline-center {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.timeline-dot {
  width: 12px;
  height: 12px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  background: #fff;
  margin-top: 8px;
  flex-shrink: 0;
  transition: background 0.3s;
}
.timeline-dot.active {
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(139,115,85,0.2);
}
.timeline-line {
  flex: 1;
  width: 1px;
  min-height: 40px;
  background: #e0d8cc;
  margin: 8px 0;
}

.timeline-right {
  padding-left: 24px;
  padding-bottom: 48px;
}
.timeline-right .timeline-card {
  margin-top: 0;
}

.timeline-card {
  border: 1px solid #e8e0d4;
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.timeline-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}
.timeline-card.highlight {
  border-color: var(--accent);
  background: #faf7f2;
}

.timeline-img {
  width: 100%;
  max-height: 260px;
  object-fit: cover;
  object-position: center top;
}

.timeline-card-body {
  padding: 28px 32px;
}
.timeline-card-body h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}
.timeline-card-body p {
  font-size: 14px;
  line-height: 2;
  color: var(--mid);
}

.timeline-badge {
  display: inline-block;
  margin-top: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: #fff;
  background: var(--accent);
  padding: 4px 14px;
  border-radius: 100px;
}

.timeline-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--accent);
  border-bottom: 1px solid rgba(139,115,85,0.35);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.timeline-link:hover { opacity: 0.7; }
.timeline-link svg { width: 12px; height: 12px; }

/* ============================================================
   ORDER
   ============================================================ */
#order .section-label { text-align: center; display: block; }
#order .section-title { text-align: center; }

.order-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 2px;
}

.order-block {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 40px 32px;
  text-align: center;
  transition: background 0.3s;
}
.order-block:hover { background: rgba(255,255,255,0.08); }

.order-icon {
  width: 44px;
  height: 44px;
  color: rgba(255,255,255,0.5);
  margin: 0 auto 20px;
}
.order-icon svg { width: 100%; height: 100%; }

.order-block h3 {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.order-highlight {
  font-size: 16px;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 8px;
}
.order-highlight strong { font-weight: 500; }

.order-note {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
}

/* shop grid */
.shop-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 32px 40px;
  margin-bottom: 2px;
}

.shop-item { text-align: center; }

.shop-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}

.shop-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 4px;
}

.shop-area {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.shop-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.15);
}

/* area */
.order-area {
  text-align: center;
  padding: 40px 0 0;
}
.order-area-label {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
  text-transform: uppercase;
  font-family: 'Cormorant Garamond', serif;
}
.order-area-tags {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.area-tag {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 8px 24px;
  border-radius: 100px;
  letter-spacing: 0.1em;
}

/* CTA */
.order-cta {
  text-align: center;
  margin-top: 56px;
}

.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--line-green);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding: 18px 48px;
  border-radius: 4px;
  transition: filter 0.3s, transform 0.3s;
}
.btn-line:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}
.btn-line svg { width: 22px; height: 22px; }

/* ============================================================
   SHOPS
   ============================================================ */
#shops .section-label,
#shops .section-title { text-align: center; }

.shops-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 16px;
}

.shop-card {
  background: #fff;
  border: 1px solid #e8e0d4;
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.shop-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.shop-card-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 28px 20px;
  border-bottom: 1px solid #f0e8dc;
}

.shop-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--accent);
  padding-top: 4px;
  flex-shrink: 0;
}

.shop-card-type {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--light);
  margin-bottom: 4px;
  text-transform: uppercase;
  font-family: 'Cormorant Garamond', serif;
}

.shop-card-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--dark);
}

.shop-card-addr {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 16px 28px;
  font-size: 13px;
  line-height: 1.8;
  color: var(--mid);
  border-bottom: 1px solid #f0e8dc;
}
.shop-card-addr svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--accent);
}

.shop-map-wrap {
  width: 100%;
  height: 260px;
  overflow: hidden;
  background: #f5f0e8;
}
.shop-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.shop-map-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--accent);
  transition: background 0.2s;
  border-top: 1px solid #f0e8dc;
}
.shop-map-link:hover {
  background: #faf7f2;
}
.shop-map-link svg {
  width: 14px;
  height: 14px;
}

.shop-section-label {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.15em;
  margin-bottom: 24px;
  font-family: 'Noto Serif JP', serif;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: #111;
  padding: 64px 32px;
}

.footer-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo-wrap {
  /* ヘッダーと同じく余白をクリッピング */
  display: inline-block;
  overflow: hidden;
  margin-top: -13px;
  margin-bottom: calc(-13px + 20px); /* クリップ分 + タグラインとの余白 */
  margin-left: -14px;
  margin-right: -14px;
  line-height: 0;
}

.footer-logo {
  height: 80px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.6;
  display: block;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.12em;
  margin-bottom: 28px;
}

.footer-info {
  margin-bottom: 32px;
}
.footer-info p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  line-height: 2;
  letter-spacing: 0.06em;
}

.footer-copy {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.12em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  :root { --section-gap: 80px; }

  /* ヘッダーロゴ: タブレット */
  .logo-img {
    width: 150px;
  }

  .kitchen-photo-wrap { height: 280px; }
  .kitchen-photo-caption { padding: 32px 24px 28px; }
  .kitchen-photo-text { font-size: 16px; }

  .nav-desktop { display: none; }
  .hamburger { display: flex; }
  .nav-mobile { display: flex; }

  /* スマホではロゴ画像をやや小さめに */
  .hero-title-img-wrap {
    width: clamp(200px, 58vw, 300px);
    margin-top: calc(clamp(200px, 58vw, 300px) * -0.18);
    margin-bottom: calc(clamp(200px, 58vw, 300px) * -0.22);
    margin-left: calc(clamp(200px, 58vw, 300px) * -0.18);
    margin-right: calc(clamp(200px, 58vw, 300px) * -0.10);
  }

  .gallery-track {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-item:last-child { display: none; }

  .menu-card { flex-direction: column; }
  .menu-card-img { width: 100%; height: 220px; }
  .menu-card-body { padding: 28px 24px; }
  .menu-card-badge {
    writing-mode: horizontal-tb;
    padding: 10px 20px;
  }
  .menu-card-price span { font-size: 36px; }

  .commitment-grid { grid-template-columns: 1fr; gap: 40px; }

  .shops-grid { grid-template-columns: 1fr; gap: 28px; }

  .timeline-item {
    grid-template-columns: 80px 32px 1fr;
  }
  .timeline-year { font-size: 22px; }

  .order-grid { grid-template-columns: 1fr; }
  .shop-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }
  .shop-divider {
    width: 40px;
    height: 1px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .container, .container.narrow { padding: 0 20px; }
  .header-inner { padding: 0 20px; }
  .timeline-wrapper { padding: 0 20px; }

  /* ヘッダーロゴ: スマホは固定サイズ */
  .logo-img {
    width: 135px;
  }

  .timeline-item {
    grid-template-columns: 64px 28px 1fr;
  }
  .timeline-left { padding-right: 12px; }
  .timeline-right { padding-left: 12px; }
  .timeline-year { font-size: 18px; }
  .timeline-card-body { padding: 20px; }

  .gallery-track { grid-template-columns: 1fr; }
  .gallery-item:last-child { display: block; }

  .order-block { padding: 28px 20px; }
  .shop-grid { padding: 24px 20px; }
}
