@charset "UTF-8";

:root {
  /* ============ ココナッツミルクをモチーフに白基調へ全面刷新 ============ */
  --paper:        #faf6ef;
  --paper-warm:   #f5ede0;
  --paper-deep:   #ebe1ce;
  --white:        #ffffff;
  --ink:          #2b1f17;
  --ink-soft:     #5a4838;
  --ink-mute:     #8b7560;
  --line:         rgba(43, 31, 23, 0.12);
  --line-soft:    rgba(43, 31, 23, 0.06);

  /* ロゴカラー(#9B0000)に呼応した朱赤系アクセント */
  --accent:       #9b2018;
  --accent-soft:  #c1392b;
  --accent-deep:  #6b1410;

  --caramel:      #8b6f47;
  --gold:         #b8923a;

  --open-color:   #2d6a4f;
  --closed-color: #9b2018;

  --serif-jp: 'Shippori Mincho', serif;
  --serif-en: 'Cormorant Garamond', 'Bodoni Moda', serif;
  --display:   'Bodoni Moda', 'Cormorant Garamond', serif;
  --sans-jp:  'Noto Sans JP', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans-jp);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0.55 0 0 0 0 0.4 0 0 0 0 0.25 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
  z-index: 999;
  mix-blend-mode: multiply;
}

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

/* ============ ヘッダー (固定 / 営業情報を最優先) ============ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 239, 0.94);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line);
}

.header__top {
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}

.header__nav { justify-self: start; }
.header__logo { justify-self: center; }
.header__phone { justify-self: end; }

.header__logo img {
  height: 60px;
  width: auto;
  display: block;
}

.header__nav ul {
  list-style: none;
  display: flex;
  gap: 36px;
  justify-content: center;
}

.header__nav a {
  font-family: var(--serif-jp);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--ink);
  position: relative;
  padding: 8px 0;
  transition: color 0.3s;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%;
  width: 0; height: 1px;
  background: var(--accent);
  transition: all 0.4s cubic-bezier(0.7, 0, 0.3, 1);
  transform: translateX(-50%);
}
.header__nav a:hover { color: var(--accent); }
.header__nav a:hover::after { width: 100%; }

.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--serif-jp);
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  white-space: nowrap;
  transition: color 0.3s;
}

.header__phone:hover { color: var(--accent); }

.header__phone svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  flex-shrink: 0;
}

/* 営業時間バー: ラベル・注釈なし、全曜日のみを潔く表示 */
.hours-bar {
  background: var(--ink);
  color: var(--paper);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hours-bar__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.hours-bar__days {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.hours-bar__day {
  padding: 14px 16px;
  border-left: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-family: var(--sans-jp);
  font-size: 11px;
  line-height: 1.5;
  color: var(--paper);
  letter-spacing: 0.05em;
}

.hours-bar__day:first-child { border-left: none; }

.hours-bar__day-name {
  display: block;
  font-family: var(--serif-jp);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.2em;
  margin-bottom: 4px;
  color: #d4c4a8;
}

.hours-bar__day--closed .hours-bar__day-name { color: var(--accent-soft); }
.hours-bar__day--closed { color: var(--accent-soft); }

.hours-bar__day-time {
  font-family: var(--display);
  font-style: italic;
  font-size: 12px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .header__top {
    padding: 14px 16px;
    grid-template-columns: 1fr auto 1fr;
    gap: 12px;
  }
  .header__logo img { height: 40px; }
  .header__nav { display: none; }
  .header__phone { font-size: 12px; }
  .header__phone span { display: none; } /* スマホでは番号テキストは隠してアイコンのみ */
  .header__phone svg { width: 20px; height: 20px; }

  .hours-bar__inner {
    padding: 0 12px;
  }
  .hours-bar__day { padding: 10px 4px; border-left: 1px solid rgba(255,255,255,0.08); }
  .hours-bar__day:first-child { border-left: none; }
  .hours-bar__day-name { font-size: 11px; margin-bottom: 2px; }
  .hours-bar__day-time { font-size: 9.5px; line-height: 1.3; white-space: normal; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 130px);
  background: var(--paper);
  overflow: hidden;
}

/* ============ HERO (A案: フルブリード背景画像 + 左下コンテンツ) ============ */
.hero {
  position: relative;
  display: block;
  min-height: calc(100vh - 130px);
  min-height: calc(100svh - 130px);
  background: var(--ink);
  overflow: hidden;
}

.hero__visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--ink);
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  animation: slowZoom 22s ease-out infinite alternate;
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.07); }
}

/* グラデーションオーバーレイで文字の可読性を確保 */
.hero__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(43, 31, 23, 0.15) 0%, rgba(43, 31, 23, 0) 30%, rgba(43, 31, 23, 0.55) 70%, rgba(43, 31, 23, 0.85) 100%),
    linear-gradient(90deg, rgba(43, 31, 23, 0.4) 0%, rgba(43, 31, 23, 0) 60%);
  pointer-events: none;
  z-index: 1;
}

/* ヴィネット効果 */
.hero__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, transparent 40%, rgba(43, 31, 23, 0.35) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 80px;
  min-height: calc(100vh - 130px);
  min-height: calc(100svh - 130px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--paper);
}

.hero__inner {
  max-width: 720px;
}

.hero__overline {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--serif-en);
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 1s 0.3s forwards;
}

.hero__overline::before {
  content: '';
  width: 40px; height: 1px;
  background: var(--paper);
}

.hero__title {
  font-family: var(--serif-jp);
  font-weight: 600;
  font-size: clamp(38px, 5.4vw, 80px);
  line-height: 1.15;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
  color: var(--paper);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.3);
  opacity: 0;
  animation: fadeUp 1.2s 0.5s forwards;
}

.hero__title em {
  font-style: normal;
  color: #ffd0a8;
  position: relative;
}

.hero__title-en {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  color: rgba(250, 246, 239, 0.85);
  font-size: 0.32em;
  letter-spacing: 0.06em;
  margin-top: 18px;
}

.hero__lede {
  font-family: var(--serif-jp);
  font-size: 16px;
  line-height: 2;
  color: rgba(250, 246, 239, 0.92);
  max-width: 480px;
  margin-bottom: 44px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.25);
  opacity: 0;
  animation: fadeUp 1.2s 0.8s forwards;
}

.hero__cta {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1.2s 1.1s forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 32px;
  font-family: var(--serif-jp);
  font-size: 14px;
  letter-spacing: 0.18em;
  font-weight: 500;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateX(-101%);
  transition: transform 0.45s cubic-bezier(0.7, 0, 0.3, 1);
  z-index: -1;
}

.btn:hover { color: var(--paper); }
.btn:hover::before { transform: translateX(0); }

.btn--filled {
  background: var(--accent);
  color: var(--paper);
  border-color: var(--accent);
}
.btn--filled::before { background: var(--accent-deep); }
.btn--filled:hover { color: var(--paper); }

/* ヒーロー上のボタン用バリアント (背景が暗いので白枠ベース) */
.btn--on-image {
  border-color: rgba(250, 246, 239, 0.6);
  color: var(--paper);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.btn--on-image::before { background: var(--paper); }
.btn--on-image:hover { color: var(--ink); border-color: var(--paper); }

/* シール: 右上に配置(背景画像とのコントラストを保つ) */
.hero__seal {
  position: absolute;
  top: 50px;
  right: 50px;
  width: 110px;
  height: 110px;
  border: 1px solid rgba(250, 246, 239, 0.5);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-style: italic;
  color: var(--paper);
  font-size: 11px;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-align: center;
  background: rgba(43, 31, 23, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 3;
  animation: spinSlow 30s linear infinite;
}

.hero__seal strong {
  font-style: normal;
  font-family: var(--serif-jp);
  font-weight: 600;
  font-size: 22px;
  display: block;
  margin: 4px 0;
  letter-spacing: 0;
  color: var(--paper);
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1024px) {
  .hero { min-height: 80vh; }
  .hero__content { padding: 100px 24px 60px; min-height: 80vh; }
  .hero__seal { width: 70px; height: 70px; top: 24px; right: 20px; font-size: 9px; }
  .hero__seal strong { font-size: 15px; }
}

/* ============ MARQUEE ============ */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  overflow: hidden;
  padding: 24px 0;
}

.marquee__track {
  display: flex;
  gap: 60px;
  animation: marquee 40s linear infinite;
  white-space: nowrap;
  font-family: var(--display);
  font-style: italic;
  font-size: 28px;
  color: var(--ink);
  letter-spacing: 0.04em;
}

.marquee__track span { display: inline-flex; align-items: center; gap: 60px; }
.marquee__track span::after {
  content: '✦';
  color: var(--accent);
  font-size: 16px;
  font-style: normal;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============ NEWS / お知らせ ============ */
.news {
  background: var(--white);
  padding: 120px 80px;
  border-bottom: 1px solid var(--line);
}

.news__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 80px;
  align-items: start;
}

.news__head {
  position: sticky;
  top: 200px;
}

.news__overline {
  font-family: var(--serif-en);
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.news__title {
  font-family: var(--serif-jp);
  font-weight: 600;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--ink);
}

.news__title em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  display: block;
  font-size: 0.5em;
  letter-spacing: 0.04em;
  margin-top: 6px;
}

.news__more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif-jp);
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--ink);
  padding-bottom: 4px;
  border-bottom: 1px solid var(--ink);
  transition: all 0.3s;
}
.news__more:hover { color: var(--accent); border-color: var(--accent); }

.news__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.news__item {
  display: grid;
  grid-template-columns: 110px 110px 1fr;
  gap: 28px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  align-items: start;
  transition: background 0.3s;
  cursor: pointer;
}

.news__item:last-child { border-bottom: 1px solid var(--line); }
.news__item:hover { background: var(--paper); }

.news__date {
  font-family: var(--display);
  font-style: italic;
  font-size: 16px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
  padding-top: 4px;
}

.news__cat {
  display: inline-block;
  padding: 4px 10px;
  font-family: var(--serif-jp);
  font-size: 11px;
  letter-spacing: 0.18em;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
  white-space: nowrap;
  text-align: center;
  align-self: start;
  margin-top: 2px;
}

.news__cat--media { border-color: var(--accent); color: var(--accent); }
.news__cat--info  { border-color: var(--ink-mute); color: var(--ink-mute); }
.news__cat--menu  { border-color: var(--gold); color: var(--gold); }

.news__body h3 {
  font-family: var(--serif-jp);
  font-weight: 600;
  font-size: 17px;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 6px;
}

.news__body p {
  font-family: var(--serif-jp);
  font-size: 13px;
  line-height: 1.8;
  color: var(--ink-soft);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .news { padding: 80px 24px; }
  .news__inner { grid-template-columns: 1fr; gap: 40px; }
  .news__head { position: static; }
  .news__item { grid-template-columns: 1fr; gap: 8px; padding: 24px 0; }
  .news__date { padding-top: 0; font-size: 14px; }
  .news__cat { justify-self: start; margin-top: 0; }
  .news__body h3 { font-size: 16px; margin-top: 8px; }
}

/* ============ INTRO ============ */
.intro {
  padding: 160px 80px;
  background: var(--paper);
  position: relative;
}

.intro__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 100px;
  align-items: start;
}

.intro__years {
  position: sticky;
  top: 240px;
}

.intro__years-num {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(120px, 18vw, 220px);
  font-weight: 400;
  line-height: 0.85;
  color: var(--accent);
  letter-spacing: -0.04em;
}

.intro__years-num sup {
  font-size: 0.3em;
  font-style: normal;
  color: var(--ink-mute);
  letter-spacing: 0.2em;
  font-family: var(--serif-en);
  vertical-align: super;
  margin-left: 12px;
}

.intro__years-label {
  font-family: var(--serif-en);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 20px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.intro__heading {
  font-family: var(--serif-jp);
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.4;
  margin-bottom: 48px;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.intro__heading em {
  font-style: normal;
  color: var(--accent);
  position: relative;
}

.intro__heading em::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 8px;
  background: rgba(193, 57, 43, 0.13);
  z-index: -1;
}

.intro__body {
  font-family: var(--serif-jp);
  font-size: 16px;
  line-height: 2.1;
  color: var(--ink-soft);
}

.intro__body p { margin-bottom: 1.5em; }
.intro__body p:last-child { margin-bottom: 0; }

.intro__quote {
  margin-top: 60px;
  padding: 32px 0 32px 32px;
  border-left: 2px solid var(--accent);
  font-family: var(--display);
  font-style: italic;
  font-size: 22px;
  line-height: 1.6;
  color: var(--ink);
}

@media (max-width: 1024px) {
  .intro { padding: 100px 24px; }
  .intro__inner { grid-template-columns: 1fr; gap: 50px; }
  .intro__years { position: static; }
}

/* ============ DISH SHOWCASE ============ */
.showcase {
  background: var(--white);
  color: var(--ink);
  padding: 140px 0 0;
  position: relative;
}

.showcase__head {
  padding: 0 80px;
  max-width: 1400px;
  margin: 0 auto 100px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: end;
}

.showcase__overline {
  font-family: var(--serif-en);
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.showcase__title {
  font-family: var(--serif-jp);
  font-weight: 600;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--ink);
}

.showcase__title em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  display: block;
  margin-top: 8px;
  font-size: 0.5em;
  letter-spacing: 0.04em;
}

.showcase__intro {
  font-family: var(--serif-jp);
  font-size: 15px;
  line-height: 2;
  color: var(--ink-soft);
  max-width: 380px;
  padding-bottom: 8px;
}

.dishes {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px 140px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  row-gap: 100px;
}

.dish { position: relative; cursor: pointer; }

.dish__media {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  background: var(--paper-warm);
  margin-bottom: 24px;
}

.dish__media .placeholder,
.dish__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.dish:hover .dish__media .placeholder,
.dish:hover .dish__media img { transform: scale(1.06); }

.dish__num {
  position: absolute;
  top: 20px; left: 20px;
  font-family: var(--display);
  font-style: italic;
  font-size: 24px;
  color: var(--ink);
  background: var(--paper);
  padding: 4px 12px;
  z-index: 2;
}

.dish__cat {
  font-family: var(--serif-en);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}

.dish__name {
  font-family: var(--serif-jp);
  font-weight: 600;
  font-size: 24px;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 12px;
}

.dish__name em {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  color: var(--ink-mute);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 6px;
}

.dish__desc {
  font-family: var(--serif-jp);
  font-size: 14px;
  line-height: 1.9;
  color: var(--ink-soft);
}

.dish--ramen     { grid-column: 1 / span 7; }
.dish--ramen .dish__media { aspect-ratio: 16/11; }
.dish--rice      { grid-column: 9 / span 4; margin-top: 80px; }
.dish--rice .dish__media { aspect-ratio: 3/4; }
.dish--lassi     { grid-column: 2 / span 4; }
.dish--lassi .dish__media { aspect-ratio: 3/4; }
.dish--kaemeshi  { grid-column: 7 / span 5; margin-top: 60px; }
.dish--kaemeshi .dish__media { aspect-ratio: 4/3; }

.placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 26px;
  letter-spacing: 0.08em;
  position: relative;
  text-align: center;
}

.placeholder::after {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid currentColor;
  opacity: 0.25;
}

.ph-ramen    { background: linear-gradient(135deg, #f8f1e0 0%, #e8dcc0 70%, #d4c19a 100%); color: #6b5430; }
.ph-rice     { background: linear-gradient(135deg, #f5e6a8 0%, #e0c068 100%); color: #6b5018; }
.ph-lassi    { background: linear-gradient(135deg, #ffffff 0%, #f0e8d4 100%); color: #8b7560; }
.ph-kaemeshi { background: linear-gradient(135deg, #f0d878 0%, #b8923a 100%); color: #4a3a18; }
.ph-shio     { background: linear-gradient(135deg, #f5ebd8 0%, #d4b890 100%); color: #6b4830; }
.ph-noodle   { background: linear-gradient(135deg, #f5e8b8 0%, #c8a050 100%); color: #5a4018; }
.ph-menu     { background: linear-gradient(135deg, #faf6ef 0%, #ebe1ce 100%); color: #8b7560; }

@media (max-width: 1024px) {
  .showcase { padding: 100px 0 0; }
  .showcase__head { padding: 0 24px; grid-template-columns: 1fr; gap: 32px; margin-bottom: 60px; }
  .dishes { padding: 0 24px 100px; gap: 40px; row-gap: 60px; }
  .dish--ramen, .dish--rice, .dish--lassi, .dish--kaemeshi {
    grid-column: 1 / -1;
    margin-top: 0;
  }
}

/* ============ KODAWARI ============ */
.kodawari {
  background: var(--paper-warm);
  padding: 160px 0;
  position: relative;
  overflow: hidden;
}

.kodawari::before {
  content: 'こだわり';
  position: absolute;
  top: 60px;
  left: -40px;
  font-family: var(--serif-jp);
  font-size: clamp(120px, 18vw, 240px);
  font-weight: 700;
  color: rgba(43, 31, 23, 0.04);
  letter-spacing: -0.02em;
  white-space: nowrap;
  z-index: 0;
}

.kodawari__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 80px;
  position: relative;
  z-index: 1;
}

.kodawari__head {
  text-align: center;
  margin-bottom: 120px;
}

.kodawari__overline {
  font-family: var(--serif-en);
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.kodawari__title {
  font-family: var(--serif-jp);
  font-weight: 600;
  font-size: clamp(36px, 4.4vw, 64px);
  line-height: 1.3;
  color: var(--ink);
}

.kodawari__title em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

.kodawari__list { display: flex; flex-direction: column; }

.kodawari__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  padding: 80px 0;
  border-top: 1px solid var(--line);
  align-items: center;
}

.kodawari__item:last-child { border-bottom: 1px solid var(--line); }
.kodawari__item:nth-child(even) .kodawari__visual { order: 2; }

.kodawari__visual {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.kodawari__visual .placeholder,
.kodawari__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.kodawari__item:hover .kodawari__visual .placeholder,
.kodawari__item:hover .kodawari__visual img { transform: scale(1.05); }

.kodawari__num {
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 20px;
}

.kodawari__h3 {
  font-family: var(--serif-jp);
  font-weight: 600;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.45;
  margin-bottom: 28px;
  color: var(--ink);
}

.kodawari__h3 em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  display: block;
  font-size: 0.5em;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.kodawari__text {
  font-family: var(--serif-jp);
  font-size: 15px;
  line-height: 2;
  color: var(--ink-soft);
}

@media (max-width: 1024px) {
  .kodawari { padding: 100px 0; }
  .kodawari__inner { padding: 0 24px; }
  .kodawari__head { margin-bottom: 60px; }
  .kodawari__item { grid-template-columns: 1fr; gap: 32px; padding: 60px 0; }
  .kodawari__item:nth-child(even) .kodawari__visual { order: 0; }
}

/* ============ MENU ============ */
.menu-sec {
  background: var(--paper);
  color: var(--ink);
  padding: 160px 80px;
}

.menu-sec__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: center;
}

.menu-sec__overline {
  font-family: var(--serif-en);
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.menu-sec__title {
  font-family: var(--serif-jp);
  font-weight: 600;
  font-size: clamp(40px, 4.8vw, 64px);
  line-height: 1.2;
  margin-bottom: 32px;
  color: var(--ink);
}

.menu-sec__title em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  display: block;
  font-size: 0.5em;
  letter-spacing: 0.04em;
  margin-top: 8px;
}

.menu-sec__list { list-style: none; margin: 32px 0 40px; }

.menu-sec__list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--serif-jp);
  font-size: 16px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
  color: var(--ink);
}

.menu-sec__list li span:last-child {
  font-family: var(--display);
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}

.menu-sec__visual {
  position: relative;
  aspect-ratio: 3/4;
  background: var(--paper-warm);
  overflow: hidden;
  box-shadow: 30px 30px 0 -10px var(--accent);
}

.menu-sec__visual .placeholder,
.menu-sec__visual img {
  width: 100%; height: 100%;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .menu-sec { padding: 100px 24px; }
  .menu-sec__inner { grid-template-columns: 1fr; gap: 60px; }
  .menu-sec__visual { box-shadow: 16px 16px 0 -6px var(--accent); }
}

/* ============ ACCESS ============ */
.access {
  background: var(--white);
  padding: 160px 80px;
}

.access__inner { max-width: 1400px; margin: 0 auto; }

.access__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: end;
}

.access__overline {
  font-family: var(--serif-en);
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.access__title {
  font-family: var(--serif-jp);
  font-weight: 600;
  font-size: clamp(36px, 4.4vw, 60px);
  line-height: 1.2;
  color: var(--ink);
}

.access__title em {
  font-family: var(--display);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  display: block;
  font-size: 0.45em;
  letter-spacing: 0.06em;
  margin-top: 12px;
}

.access__lede {
  font-family: var(--serif-jp);
  font-size: 15px;
  line-height: 2;
  color: var(--ink-soft);
}

.access__map {
  margin-bottom: 60px;
}

.access__embed {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  position: relative;
}

.access__embed iframe {
  width: 100%; height: 100%;
  border: 0;
}

.access__info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding-top: 60px;
  border-top: 1px solid var(--line);
}

.access__info-item h4 {
  font-family: var(--serif-en);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 500;
}

.access__info-item p {
  font-family: var(--serif-jp);
  font-size: 14px;
  line-height: 1.8;
  color: var(--ink);
}

.access__info-item a { color: var(--accent); }

@media (max-width: 1024px) {
  .access { padding: 100px 24px; }
  .access__head { grid-template-columns: 1fr; gap: 32px; margin-bottom: 50px; }
  .access__map { margin-bottom: 40px; }
  .access__info { grid-template-columns: 1fr 1fr; gap: 24px; }
}

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: var(--paper);
  padding: 100px 80px 40px;
}

.footer__inner { max-width: 1400px; margin: 0 auto; }

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 80px;
  border-bottom: 1px solid rgba(250, 246, 239, 0.12);
}

.footer__brand { margin-bottom: 24px; }

.footer__brand img {
  height: 48px;
  width: auto;
  /* ロゴを白黒反転気味に表示 */
  filter: brightness(0) invert(1) opacity(0.85);
}

.footer__tag {
  font-family: var(--serif-jp);
  font-size: 14px;
  line-height: 1.9;
  color: rgba(250, 246, 239, 0.7);
  max-width: 320px;
}

.footer__col h5 {
  font-family: var(--serif-jp);
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--paper);
  margin-bottom: 20px;
  font-weight: 500;
}

.footer__col ul { list-style: none; }
.footer__col li {
  font-family: var(--serif-jp);
  font-size: 14px;
  padding: 6px 0;
  color: rgba(250, 246, 239, 0.7);
}
.footer__col a { transition: color 0.3s; }
.footer__col a:hover { color: var(--accent-soft); }

.footer__bot {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--serif-en);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250, 246, 239, 0.45);
}

@media (max-width: 1024px) {
  .footer { padding: 60px 24px 32px; }
  .footer__top { grid-template-columns: 1fr; gap: 40px; padding-bottom: 50px; }
  .footer__bot { flex-direction: column; gap: 16px; text-align: center; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }