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

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

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

/* タップ・選択・フォーカスで出る既定の青をやめる（2026-09-26 社長指摘）。
   キーボード操作の人には :focus-visible で輪郭を残す */
::selection { background: rgba(139,115,85,0.18); }
::-moz-selection { background: rgba(139,115,85,0.18); }
a, button, [role="button"], summary { -webkit-touch-callout: none; }
:focus { outline: none; }
:focus-visible { outline: 2px solid #8b7355; outline-offset: 2px; }


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

/* ---------- 改行・折り返しの道具（2026-09-25 スマホ監査 A12）----------
   br-pc = PCだけ改行 / br-sp = スマホ（768px以下）だけ改行。
   定義が無いと両方が全幅で効き、PCで不要な2行・スマホでガタガタが同時に起きる。
   nw = 金額・寸法・住所の番地・英字ブランド名など「途中で折ってはいけない固まり」に付ける */
.br-sp { display: none; }
.br-pc { display: inline; }
@media (max-width: 768px) {
  .br-sp { display: inline; }
  .br-pc { display: none; }
}
.nw { white-space: nowrap; }

/* ============================================================
   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;
  text-wrap: balance; /* 見出しの1〜2字落ちを防ぐ（2026-09-25） */
}
.section-title.light { color: #fff; }

.section-body {
  font-size: 16px; /* 15→16（DESIGN.md 4章 本文16px以上・2026-09-25） */
  line-height: 2;
  color: var(--mid);
  text-wrap: pretty;
}

.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.98);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
  opacity: 1;
  pointer-events: auto;
}
/* backdrop-filter はスマホのスクロール中の描画が重いので PC だけ（2026-09-24 スマホ軽量化）。
   スマホは不透明度を 0.96→0.98 に上げて、ぼかし無しでも下の文字が透けないようにする */
@media (min-width: 769px) {
  #header.scrolled { background: rgba(255,255,255,0.96); backdrop-filter: blur(8px); }
}

.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: 160px;
  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.99);  /* スマホ: ぼかし無し（backdrop-filter は重い）。0.97→0.99 */
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}
.nav-mobile.open { max-height: 480px; }
.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);
}
@media (min-width: 769px) {
  .hero-bg-img { will-change: transform; }  /* パララックスは PC だけ（js/main.js 6.）*/
}
/* <picture> で WebP を出す（2026-09-24）。picture 自体は箱にならず、中の img が今まで通り直接の子として並ぶ */
picture { display: contents; }
/* img に width/height 属性を付けたので、CSS で高さを決めていない写真（timeline-img・office の o-step/o-hist）が
   属性の高さで描かれてしまう → auto に戻す。class で height を決めている写真はそちらが勝つ（詳細度が上） */
picture > img { height: auto; }
/* grid の中で <source> が空の枠として1マス取ってしまう（office の歩み・写真が2列目にずれた）ので消す */
picture > source { display: none; }
.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: 15px; /* 14→15（2026-09-25 A8） */
  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; }
/* スマホでは9行の本文を中央揃えにしない（左右のラグが散る・2026-09-25 A6） */
@media (max-width: 480px) { #concept .section-body { text-align: left; } }

/* ============================================================
   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.86) 0%,
    rgba(10,8,5,0.62) 50%,
    rgba(10,8,5,0.18) 82%,
    rgba(10,8,5,0.0) 100%
  ); /* 栄養5行が増えて文字が上まで伸びるため、中ほどまで暗くした（2026-09-26） */
  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%;
  /* 文字拡大時にカード(1:1固定)から溢れても上端を切らず、スクロールで読ませる。
     content が収まるうちは max-height に達しないのでスクロールバーは出ず、見た目は不変 */
  max-height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,0.45) transparent;
}
.gallery-caption-inner::-webkit-scrollbar { width: 4px; }
.gallery-caption-inner::-webkit-scrollbar-track { background: transparent; }
.gallery-caption-inner::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.45);
  border-radius: 2px;
}
/* スクロール操作を受け付けるのはキャプションが見えている間だけ。
   peek クラスは表示終了時に JS が外すため、透明な領域がページのスクロールを奪わない */
.gallery-item:hover .gallery-caption-inner,
.gallery-item.peek .gallery-caption-inner { pointer-events: auto; }
/* 指で操作する端末では、キャプションがページの縦スクロールを奪わないようにする
   （2026-09-26 社長「スクロールがしづらい」）。標準の文字サイズでは溢れないので
   スクロール領域である必要がない。マウスのある環境では従来どおり拡大時に読める */
@media (hover: none), (pointer: coarse) {
  .gallery-caption-inner { max-height: none; overflow-y: visible; overscroll-behavior: auto; }
  .gallery-item:hover .gallery-caption-inner,
  .gallery-item.peek .gallery-caption-inner { pointer-events: none; }
}
.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.6); /* 0.45 だとコントラスト4.48:1でWCAG AA(4.5:1)未満だった */
  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;
}

/* 栄養5行: 献立名と同じ role＋値の型。値はごはんつき4皿の合算 */
.gallery-caption-nutri {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.15);
  gap: 4px;
}
.gallery-caption-nutri .caption-role { min-width: 58px; }
.gallery-caption-nutri .caption-dish { font-size: 13px; font-variant-numeric: tabular-nums; }
.gallery-caption-note {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
}

/* ============================================================
   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;
  text-wrap: balance;
}

.commitment-item p {
  font-size: 16px; /* 14→16（2026-09-25 A5） */
  line-height: 2;
  color: var(--mid);
  text-wrap: pretty;
}

/* ============================================================
   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);
}

/* 歩みの結び。法人冷蔵庫LP（office/index.html）の .o-close と同じ値（2026-09-26） */
.timeline-close {
  font-family: 'Noto Serif JP', serif;
  font-weight: 300;
  font-size: 17px;
  letter-spacing: 0.12em;
  color: var(--dark);
  text-align: center;
  margin-top: 36px;
  text-wrap: balance;
}

.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);
  white-space: nowrap; /* 「Summer —」の「—」だけ落ちない（2026-09-25 A7） */
}

.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;
}

/* 2枚横並び写真グリッド */
.timeline-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.timeline-img-grid .timeline-img {
  max-height: 200px;
}

.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;
  /* balance は日本語では「間借り店舗で／の、」と語の途中で均等割りしたので使わない。改行位置は br-sp で指定（2026-09-25） */
}
.timeline-card-body p {
  font-size: 16px; /* 14→16（2026-09-25 A1/本文16px） */
  line-height: 2;
  color: var(--mid);
  text-wrap: pretty;
}

.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-tabs {
  display: flex;
  gap: 2px;
  margin-bottom: 2px;
  width: 100%;
}
.order-tab {
  flex: 1;
  padding: 14px 32px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.45);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px; /* 13→14（指で押すボタン・2026-09-25 A9） */
  font-weight: 300;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.order-tab.active {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.25);
}
.order-panel {
  display: none;
}
.order-panel.active {
  display: block;
}

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

.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, transform 0.2s;
}
.order-block:hover { background: rgba(255,255,255,0.08); }

/* LINEカード：クリック・タップ可能なスタイル */
.order-block-line {
  display: block;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.order-block-line:active {
  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;
  text-wrap: balance;
}

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

.order-note {
  font-size: 13px; /* 12→13（2026-09-25 A9） */
  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;
}
.order-area-note {
  margin-top: 16px;
  font-size: 12px;
  line-height: 1.8;
  color: rgba(255,255,255,0.45);
  text-align: center;
}
.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,
/* ============================================================
   RECENT BENTOS
   ============================================================ */
#recent-bentos .section-title { text-align: center; }
#recent-bentos .section-body { text-align: center; }

/* スクロールラッパー（全デバイス共通：横スワイプカルーセル） */
.bentos-scroll-wrap {
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  /* セクション端までフルブリード */
  margin: 0 -32px;
  padding: 0 32px 20px;
}
.bentos-scroll-wrap::-webkit-scrollbar {
  display: none;
}

.bentos-grid {
  display: flex;
  flex-direction: row;
  gap: 16px;
  width: max-content;
}

.bento-card {
  background: #fff;
  border: 1px solid #e8e0d4;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 260px;            /* PC: カード幅固定 */
  flex-shrink: 0;
  scroll-snap-align: start;
  transition: box-shadow 0.3s;
}
.bento-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.07);
}
/* 画像エリア（カード上部・正方形） */
.bento-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  flex-shrink: 0;
  overflow: hidden;
  background: var(--beige);
}
.bento-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}
.bento-card:hover .bento-card-img img {
  transform: scale(1.04);
}

.bento-card-body {
  padding: 18px 18px 20px;
}

.bento-card-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e8e0d4;
}
.bento-card-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bento-card-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.bento-role {
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--light);
  white-space: nowrap;
  flex-shrink: 0;
}
.bento-dish {
  font-family: 'Noto Serif JP', serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--dark);
  line-height: 1.5;
}

/* ============================================================
   REVIEWS
   ============================================================ */
#reviews .section-title { text-align: center; }

/* お弁当カード内の感想 */
.bento-reviews {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #e8e0d4;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.bento-review {
  background: var(--cream);
  border-radius: 4px;
  padding: 12px 14px;
}
/* 評価バッジ */
.bento-review-rating {
  display: inline-block;
  font-size: 11px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  border-radius: 20px;
  padding: 3px 11px;
  margin-bottom: 10px;
}
.bento-review-rating.good {
  background: rgba(139,115,85,0.12);
  color: var(--accent);
  border: 1px solid rgba(139,115,85,0.3);
}
.bento-review-rating.normal {
  background: rgba(74,74,74,0.07);
  color: var(--mid);
  border: 1px solid rgba(74,74,74,0.18);
}
.bento-review-rating.bad {
  background: rgba(180,160,140,0.1);
  color: var(--light);
  border: 1px solid rgba(154,154,138,0.25);
}
.bento-review-body {
  font-size: 13px; /* 12→13（2026-09-25 A10） */
  line-height: 1.8;
  color: var(--mid);
  margin-bottom: 8px;
}
.bento-review-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}
.bento-review-name {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  font-weight: 300;
  color: var(--light);
}
.bento-review-count {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px; /* 10→11（2026-09-25 A10） */
  letter-spacing: 0.08em;
  color: var(--light);
  opacity: 0.8;
}

/* 折りたたみ（他◯件） */
.bento-reviews-more {
  display: none;
  flex-direction: column;
  gap: 14px;
  margin-top: 14px;
}
.bento-reviews-more.open {
  display: flex;
}
.bento-reviews-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px; /* 11→13（2026-09-25 A10） */
  font-weight: 300;
  color: var(--accent);
  letter-spacing: 0.06em;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.bento-reviews-toggle:hover {
  opacity: 1;
}
.bento-reviews-toggle::after {
  content: '∨';
  font-size: 10px;
  transition: transform 0.25s;
}
.bento-reviews-toggle.open::after {
  transform: rotate(180deg);
}

/* ローディングドット */
.bentos-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 60px 0;
  width: 100%;
}
.bentos-loading span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.3;
  animation: bentos-dot 1.2s ease-in-out infinite;
}
.bentos-loading span:nth-child(2) { animation-delay: 0.2s; }
.bentos-loading span:nth-child(3) { animation-delay: 0.4s; }
@keyframes bentos-dot {
  0%, 80%, 100% { opacity: 0.3; transform: scale(0.8); }
  40%            { opacity: 1;   transform: scale(1.2); }
}
.bentos-loading.hidden { display: none; }

/* エラー表示 */
.bentos-error {
  width: 100%;
  text-align: center;
  padding: 40px 0;
  font-size: 13px;
  color: var(--light);
}

/* ローディング状態 */
.bentos-grid.loading {
  opacity: 0.4;
  pointer-events: none;
}

/* ============================================================
   WEEKLY MENU
   ============================================================ */
#weekly-menu .section-label,
#weekly-menu .section-title,
#weekly-menu .section-body,
#next-weekly-menu .section-label,
#next-weekly-menu .section-title,
#next-weekly-menu .section-body {
  text-align: center;
}

#weekly-menu .container,
#next-weekly-menu .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 80px;
}

.container--narrow {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.weekly-list {
  display: flex;
  flex-direction: column;
  width: min(480px, 100%);
}

.weekly-item {
  display: grid;
  grid-template-columns: 72px 1px 1fr;
  gap: 0 28px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--beige);
}
.weekly-item:first-child {
  border-top: 1px solid var(--beige);
}

.weekly-date {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 2px;
}
.weekly-date-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--dark);
  line-height: 1;
}
.weekly-date-day {
  font-family: 'Cormorant Garamond', serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--light);
  margin-top: 5px;
}

.weekly-divider {
  width: 1px;
  background: #d8d2c8;
  align-self: stretch;
  min-height: 100%;
}

.weekly-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 2px;
}
.weekly-menu-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.weekly-role {
  font-family: 'Cormorant Garamond', serif;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--light);
  white-space: nowrap;
  flex-shrink: 0;
  width: 24px;
}
.weekly-dish {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--dark);
  line-height: 1.6;
}

/* ============================================================
   SHOPS
   ============================================================ */
#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);
  text-wrap: balance;
}

.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;
}
/* リンク名（特定商取引法に基づく表記 など）を途中で折らない。© は別行（2026-09-25 A4） */
.footer-copy a { display: inline-block; white-space: nowrap; }
.footer-copy .footer-copyright { display: block; margin-top: 6px; }

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

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

  /* タブレット: カルーセル幅調整 */
  .bentos-scroll-wrap {
    margin: 0 -24px;
    padding: 0 24px 16px;
  }
  .bento-card {
    width: 220px;
  }

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

  /* 481〜768px も1列。3枚とも実献立なので、2列にして3枚目(水曜)を落とすことはしない */
  .gallery-track {
    grid-template-columns: 1fr;
  }

  .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; }

  /* スマホ: 今週のお品書き */
  .weekly-item {
    grid-template-columns: 48px 1px 1fr; /* 56→48: 献立列を広げる（2026-09-25 A11） */
    gap: 0 16px;
    padding: 24px 0;
  }
  .weekly-divider {
    width: 1px;
    min-height: 100%;
    background: #d8d2c8;
  }
  .weekly-date-num { font-size: 18px; }
  /* .weekly-dish はPCと同じ14pxのまま（13px縮小をやめた・2026-09-25 A11） */

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

  /* スマホ: タブのパディング調整 */
  .order-tab { padding: 14px; }
  .order-grid,
  .order-grid-2,
  .order-grid-3 { 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; }
  #weekly-menu .container,
  #next-weekly-menu .container { padding: 0 40px; }
  .header-inner { padding: 0 20px; }
  .timeline-wrapper { padding: 0 20px; }

  /* スマホ: カード幅を画面幅比ベースに */
  .bentos-scroll-wrap {
    margin: 0 -20px;
    padding: 0 20px 16px;
  }
  .bentos-grid {
    gap: 12px;
  }
  .bento-card {
    width: 72vw;
    max-width: 260px;
  }
  /* スワイプヒント */
  #reviews .section-body::after {
    content: 'スワイプで見る →';
    display: block;
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--light);
    margin-top: 8px;
  }

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

  /* 歩み: 480px以下は年月を上・カードを全幅に縦積み（本文列が180pxしかなく語の途中で折れていた・2026-09-25 A1）
     縦線と丸の装飾はスマホでは出さない（社長判断②） */
  .timeline-item { grid-template-columns: 1fr; }
  .timeline-left {
    display: flex; align-items: baseline; gap: 10px;
    text-align: left; padding: 0 0 10px;
  }
  .timeline-center { display: none; }
  .timeline-right { padding-left: 0; padding-bottom: 40px; }
  .timeline-year { font-size: 20px; }
  .timeline-card-body { padding: 20px; }

  .gallery-caption-inner { padding: 20px 20px 22px; } /* 栄養5行追加ぶんの余白詰め（2026-09-26） */

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

/* ---------- 栄養表示 v2（資料/デザイン/栄養表示_2026-09-24/LP仕様_v2.md・新色なし） ---------- */
.nutri-num{font-family:'Cormorant Garamond',serif;font-weight:400;font-variant-numeric:tabular-nums lining-nums;color:var(--dark);line-height:1}
.nutri-unit{font-family:'Noto Sans JP',sans-serif;font-weight:300;font-size:12px;color:var(--light);margin-left:2px;letter-spacing:.02em}
/* 今週のお品書き: 献立3行の下に罫1本で層を分けた小さな表（項目を縦・商品を横） */
.weekly-nutri{display:grid;grid-template-columns:5em 5.5em 5.5em;column-gap:20px;row-gap:5px;align-items:baseline;margin-top:8px;padding-top:14px;border-top:1px solid #d8d2c8;font-family:'Noto Sans JP',sans-serif;font-size:12px;font-weight:300;line-height:1.4;color:var(--light)}
.weekly-nutri--1{grid-template-columns:5em 5.5em}
.weekly-nutri-h{text-align:right;letter-spacing:.04em;padding-bottom:3px;white-space:nowrap}
.weekly-nutri-l{color:var(--mid);white-space:nowrap}
.weekly-nutri-v{text-align:right;white-space:nowrap}
.weekly-nutri-v .nutri-num{font-size:17px}
.weekly-nutri-note{font-size:12px;line-height:1.6;color:var(--light);margin-top:20px}
@media (max-width:768px){.weekly-nutri{grid-template-columns:5em 5em 5em;column-gap:12px}.weekly-nutri--1{grid-template-columns:5em 5em}}
