/* =============================================
   纏纏 | style.css
   ============================================= */

/* ── Variables ── */
:root {
  --bg:        #080808;
  --surface:   #111111;
  --white:     #f0ede6;
  --cream:     #c4b49a;
  --gold:      #a8864e;
  --muted:     #6a6258;
  --border:    rgba(255,255,255,0.08);
  --serif:     'Shippori Mincho B1', 'Noto Serif JP', serif;
  --body-font: 'Noto Serif JP', serif;
  --transition: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --max-w:     1160px;
  --pad-x:     clamp(24px, 5vw, 80px);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--body-font);
  font-weight: 300;
  line-height: 1.9;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; cursor: pointer; }

/* ── Loading ── */
.loading {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
.loading.hidden { opacity: 0; visibility: hidden; }
.loading-logo {
  animation: logo-fadein 1.5s ease-out forwards;
}
.loading-logo-img {
  height: clamp(60px, 10vw, 100px);
  width: auto;
  filter: brightness(0) invert(1);
}
@keyframes pulse {
  from { opacity: 0.4; }
  to   { opacity: 1; }
}
@keyframes logo-fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes kouketsu-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── Hero Logo（左上・70%縮小） ── */
.hero-logo {
  position: absolute;
  top: clamp(28px, 4vw, 52px);
  left: clamp(28px, 4vw, 56px);
  z-index: 10;
  animation: fadeSlideIn 1.2s ease 0.3s both;
}
.hero-logo-img {
  width: auto;
  height: clamp(56px, 8.4vw, 112px); /* 160px × 0.7 = 112px */
  object-fit: contain;
}

/* ── Hero ── */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  will-change: opacity;
  /* JSでopacityを直接操作するためtransitionは不要（rAFで滑らか） */
}

/* Slideshow */
.slideshow {
  position: absolute;
  inset: 0;
}
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease;
  transform: scale(1.06);
  transition: opacity 1.8s ease, transform 8s ease;
}
.slide.active {
  opacity: 1;
  transform: scale(1);
}

/* Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15) 0%,
    rgba(0,0,0,0.05) 40%,
    rgba(0,0,0,0.25) 100%
  );
  z-index: 1;
}

/* Hero content：中央配置・縦書き */
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-catch {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.43vw, 2.025rem); /* 2.25rem × 0.9 */
  font-weight: 400;
  line-height: 2.4;
  letter-spacing: 0.2em;
  color: var(--white);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
  text-shadow: 0 2px 16px rgba(0,0,0,0.6);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}
.hero-catch.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── 右下：予約ボタン（背景なし・下から40px） ── */
.hero-reserve {
  position: absolute;
  right: 56px;
  bottom: 40px;
  z-index: 10;
  animation: fadeSlideIn 1.2s ease 1s both;
}
.hero-reserve-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 20px 18px;
  background: transparent;
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.3s;
}
.hero-reserve-btn:hover { opacity: 0.65; }
.hero-reserve-line {
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(240, 237, 230, 0.6);
}
.hero-reserve-text {
  font-family: var(--serif);
  font-size: clamp(0.8rem, 1.1vw, 0.95rem);
  letter-spacing: 0.28em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: var(--white);
}
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* スクロール透過マスク：ヒーロー下端を黒に馴染ませる */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 20%;
  background: linear-gradient(to bottom, transparent 0%, rgba(8,8,8,0.7) 100%);
  z-index: 4;
  pointer-events: none;
}

/* Scroll down（非表示） */
.scroll-down { display: none; }

/* Fixed reserve：MVの予約ボタンと同デザインで統一 */
.fixed-reserve {
  position: fixed;
  bottom: 80px;
  right: 40px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 20px 18px;
  background: transparent;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(0.8rem, 1.1vw, 0.95rem);
  letter-spacing: 0.28em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s, transform 0.5s;
  transform: translateY(10px);
}
.fixed-reserve::before,
.fixed-reserve::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(240, 237, 230, 0.6);
  flex-shrink: 0;
}
.fixed-reserve.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.fixed-reserve:hover { opacity: 0.65; }

/* ── Scroll fade-in ── */
.js-fadein {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js-fadein.visible {
  opacity: 1;
  transform: translateY(0);
}
.js-fadein.delay1 {
  transition-delay: 0.15s;
}
.js-fadein.delay2 {
  transition-delay: 0.3s;
}

/* ── Section commons ── */
.sec-tag {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  color: var(--muted);
  margin-bottom: 20px;
  display: block;
}
.eyebrow-line {
  display: block;
  width: 1px;
  height: 60px;
  background: var(--muted);
  margin: 0 auto 40px;
}

/* ══════════════════════════════════════
   Section 01: Philosophy - 確定版
   ══════════════════════════════════════ */
.sec-philosophy {
  padding: clamp(60px, 8vw, 120px) 0 0;
  overflow: hidden;
  position: relative;
}
.sec-philosophy::before {
  content: '';
  position: absolute;
  top: 10%;
  right: 5%;
  width: 500px;
  height: 500px;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 30% 30%, transparent 20.5%, rgba(255,255,255,0.4) 21%, rgba(255,255,255,0.4) 21.5%, transparent 22%),
    radial-gradient(circle at 70% 25%, transparent 15.5%, rgba(255,255,255,0.3) 16%, rgba(255,255,255,0.3) 16.5%, transparent 17%),
    radial-gradient(circle at 50% 60%, transparent 25.5%, rgba(255,255,255,0.5) 26%, rgba(255,255,255,0.5) 26.7%, transparent 27.2%),
    radial-gradient(circle at 25% 70%, transparent 12.5%, rgba(255,255,255,0.3) 13%, rgba(255,255,255,0.3) 13.5%, transparent 14%),
    radial-gradient(circle at 75% 65%, transparent 18.5%, rgba(255,255,255,0.4) 19%, rgba(255,255,255,0.4) 19.7%, transparent 20.2%),
    radial-gradient(circle at 45% 35%, transparent 10.5%, rgba(255,255,255,0.25) 11%, rgba(255,255,255,0.25) 11.5%, transparent 12%),
    radial-gradient(circle at 60% 80%, transparent 14.5%, rgba(255,255,255,0.35) 15%, rgba(255,255,255,0.35) 15.7%, transparent 16.2%),
    radial-gradient(circle at 35% 50%, transparent 8.5%, rgba(255,255,255,0.2) 9%, rgba(255,255,255,0.2) 9.5%, transparent 10%);
  animation: kouketsu-rotate 120s linear infinite;
}
.sec-philosophy::after {
  content: '';
  position: absolute;
  bottom: calc(5% - 100px);
  left: calc(3% - 140px);
  width: 450px;
  height: 450px;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 40% 40%, transparent 18.5%, rgba(255,255,255,0.4) 19%, rgba(255,255,255,0.4) 19.7%, transparent 20.2%),
    radial-gradient(circle at 65% 30%, transparent 12.5%, rgba(255,255,255,0.3) 13%, rgba(255,255,255,0.3) 13.7%, transparent 14.2%),
    radial-gradient(circle at 30% 70%, transparent 22.5%, rgba(255,255,255,0.45) 23%, rgba(255,255,255,0.45) 23.7%, transparent 24.2%),
    radial-gradient(circle at 70% 65%, transparent 10.5%, rgba(255,255,255,0.25) 11%, rgba(255,255,255,0.25) 11.5%, transparent 12%),
    radial-gradient(circle at 50% 50%, transparent 16.5%, rgba(255,255,255,0.35) 17%, rgba(255,255,255,0.35) 17.7%, transparent 18.2%),
    radial-gradient(circle at 20% 45%, transparent 9.5%, rgba(255,255,255,0.2) 10%, rgba(255,255,255,0.2) 10.5%, transparent 11%);
  animation: kouketsu-rotate 150s linear infinite reverse;
}

/* 3カラムflex：左写真 | 中テキスト | 右写真 */
.philosophy-wrap {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0;
}

/* 左写真：横型 380×285比率 */
.phil-img-l {
  flex: 0 0 auto;
  width: clamp(180px, 20vw, 280px);
  padding-left: 20px;
  overflow: hidden;
  isolation: isolate;
}
.phil-img-l img {
  display: block;
  width: 100%;
  height: calc(clamp(180px, 20vw, 280px) * 0.75);
  object-fit: cover;
  will-change: transform;
}

/* 中央ボディ：見出し＋本文 */
.phil-body {
  flex: 1 1 auto;
  padding: clamp(20px, 4vw, 60px) clamp(24px, 3vw, 48px) 0 clamp(60px, 10vw, 140px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  isolation: isolate;
  min-width: 0;
}

/* 罫線＋見出し2列の外ラッパー
   罫線を「手間を語らず、」の縦中央に揃える */
/* ── 見出しブロック ──
   右列＝手間を語らず、（罫線付き）
   左列＝美味しさで語る。
   横並びで、文字はspanを縦積み */
.phil-title-outer {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
  margin-left: -24%;
}

/* 右列（美味しさで語る。）：手間を語らずの文字上端に揃える */
.phil-col-right {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  padding-top: 80px;
}

/* 左列（手間を語らず）：罫線を上にセンター配置 */
.phil-col-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* 罫線 */
.phil-keirsen {
  display: block;
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
}

/* 文字を縦に積む */
.phil-chars {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.phil-chars span {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2vw, 1.9rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--white);
  line-height: 1.7;
  display: block;
}
.phil-chars .phil-punct {
  transform: translateX(0.85em);
  margin-top: -0.9em;
}



/* 本文：明示的に横書き固定 */
.phil-p {
  font-size: 0.875rem;
  line-height: 2.5;
  color: var(--white);
  letter-spacing: 0.08em;
  writing-mode: horizontal-tb !important;
  display: block;
  max-width: 440px;
}

/* 右写真：デザイン画に合わせ上端揃え・縦長・大きめ */
.phil-img-r {
  flex: 0 0 450px;
  width: 450px;
  overflow: hidden;
  margin-top: 150px;
  isolation: isolate;
}
.phil-img-r img {
  display: block;
  width: 100%;
  height: 562px;
  object-fit: cover;
  will-change: transform;
}

/* 下段：左写真（縦長・中サイズ） ＋ 右写真（大・右端まで） */
.sec-grid2 { background: var(--bg); margin-top: 0; }
.grid2-inner {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding-left: var(--pad-x);
}
/* 左：縦長・中サイズ */
.grid2-item:first-child {
  flex: 0 0 auto;
  width: clamp(200px, 24vw, 360px);
  overflow: hidden;
  margin-top: -100px;
  margin-right: clamp(40px, 6vw, 100px);
}
.grid2-item:first-child img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;   /* 縦長に変更 */
  object-fit: cover;
  will-change: transform;
}
/* story-03 位置微調整クラスは不要になったが残す */
.grid2-item--shifted { position: static; }

/* 右：大きめ・右端まで広がる */
.grid2-item:last-child {
  flex: 0 0 570px;
  width: 570px;
  overflow: visible;
  margin-top: 250px;
  margin-left: auto;
  position: relative;
}
.grid2-item:last-child::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -200px;
  width: 400px;
  height: 400px;
  opacity: 0.12;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 45% 35%, transparent 20.5%, rgba(255,255,255,0.4) 21%, rgba(255,255,255,0.4) 21.7%, transparent 22.2%),
    radial-gradient(circle at 25% 60%, transparent 15.5%, rgba(255,255,255,0.35) 16%, rgba(255,255,255,0.35) 16.7%, transparent 17.2%),
    radial-gradient(circle at 65% 55%, transparent 18.5%, rgba(255,255,255,0.3) 19%, rgba(255,255,255,0.3) 19.7%, transparent 20.2%),
    radial-gradient(circle at 40% 75%, transparent 12.5%, rgba(255,255,255,0.25) 13%, rgba(255,255,255,0.25) 13.5%, transparent 14%),
    radial-gradient(circle at 55% 20%, transparent 10.5%, rgba(255,255,255,0.2) 11%, rgba(255,255,255,0.2) 11.5%, transparent 12%);
  animation: kouketsu-rotate 100s linear infinite;
}
.grid2-item:last-child img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  will-change: transform;
}
.grid2-item:hover img { transform: scale(1.03); transition: transform 0.8s ease; }

/* ── Section: Fullbleed ── */
.sec-fullbleed {
  overflow: hidden;
  line-height: 0;
  margin-top: 120px;
  margin-bottom: 0;
}
.sec-fullbleed--s {
  margin-bottom: 80px;
}
.fullbleed-inner { overflow: hidden; }
.parallax-img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  object-position: center;
  will-change: transform;
}
.sec-fullbleed--s .parallax-img { height: 450px; }

/* ── Section 04: Commitment ── */
.sec-commitment {
  padding: clamp(80px, 10vw, 140px) 0;
  overflow: hidden;
}
.commitment-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}
.commitment-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.commitment-h {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
}
.commitment-p {
  font-size: clamp(0.72rem, 1vw, 0.8rem);
  line-height: 2.4;
  color: var(--cream);
  letter-spacing: 0.07em;
  margin-bottom: 32px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--cream);
  border-bottom: 1px solid var(--muted);
  padding-bottom: 6px;
  transition: color 0.3s, border-color 0.3s;
}
.text-link:hover { color: var(--gold); border-color: var(--gold); }
.arrow { transition: transform 0.3s; }
.text-link:hover .arrow { transform: translateX(4px); }

/* ── Section 05: Info ── */
.sec-info {
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg);
  border-top: none;
}
.info-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 100px minmax(0, 400px) auto;
  gap: 0 clamp(21px, 3.3vw, 48px);
  align-items: start;
}

/* 左：縦書き見出しカラム */
.info-heading-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-top: 0;
}
.info-vline {
  width: 1px;
  height: 60px;
  background: var(--muted);
}
.info-h {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: var(--white);
  line-height: 1.4;
}
.info-en {
  font-size: 0.54rem;
  letter-spacing: 0.22em;
  color: var(--muted);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  position: absolute;
  top: 0;
  right: -28px;
}
.info-en::before {
  content: '';
  display: inline-block;
  width: 1px;
  height: 30px;
  background: var(--muted);
  vertical-align: middle;
  margin-bottom: 12px;
}

/* 中：本文 */
.info-text {
  padding-top: 0;
}
.info-dl { font-size: 0.875rem; line-height: 1.8; }
.info-dl dt {
  font-size: 0.875rem;
  letter-spacing: 0.14em;
  color: var(--white);
  margin-top: 25px;
  margin-bottom: 5px;
  font-weight: 400;
}
.info-dl dt:first-child { margin-top: 0; }
.info-dl dd {
  color: var(--white);
  letter-spacing: 0.06em;
  line-height: 2;
  font-size: 0.875rem;
}
.map-link {
  font-size: 0.68rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  transition: opacity 0.3s;
}
.map-link:hover { opacity: 0.7; }
.external-link {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: opacity 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.external-link::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border: 1.2px solid var(--white);
  position: relative;
  box-shadow: 2.5px -2.5px 0 -0.8px var(--bg), 2.5px -2.5px 0 0 var(--white);
  flex-shrink: 0;
}
.external-link:hover { opacity: 0.7; }

/* 右：写真 */
.info-img {
  width: clamp(280px, 35vw, 480px);
  overflow: visible;
  position: relative;
  padding-top: 0;
  margin-left: clamp(38px, 6vw, 86px);
}
.info-img img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

/* ── Section 06: Request ── */
.sec-request {
  padding: clamp(20px, 6vw, 80px) 0 clamp(80px, 10vw, 140px);
  overflow: visible;
}
.request-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: auto 1fr 100px;
  gap: 0 clamp(21px, 3.3vw, 48px);
  align-items: start;
}

/* 左：写真 */
.request-img {
  width: clamp(280px, 35vw, 480px);
  overflow: visible;
  padding-top: 0;
  position: relative;
}
.request-en {
  font-size: 0.54rem;
  letter-spacing: 0.22em;
  color: var(--muted);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  position: absolute;
  top: 0;
  left: -28px;
}
.request-en::before {
  content: '';
  display: inline-block;
  width: 1px;
  height: 30px;
  background: var(--muted);
  vertical-align: middle;
  margin-bottom: 12px;
}
.request-img img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

/* 中：縦書き見出しカラム */
.request-heading-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-top: 0;
}
.request-vline {
  width: 1px;
  height: 60px;
  background: var(--muted);
}
.request-h {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 500;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: var(--white);
  line-height: 1.4;
}

/* 中：本文 */
.request-text {
  padding-top: 0;
  margin-left: clamp(38px, 6vw, 86px);
}
.request-p {
  font-size: 0.875rem;
  line-height: 2;
  color: var(--white);
  letter-spacing: 0.06em;
}
.request-p strong {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--white);
  margin-top: 4px;
}
.request-p strong::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 1px;
  background: var(--muted);
  flex-shrink: 0;
}
.request-p br + strong {
  margin-top: 0;
}

/* ── ご予約セクション ── */
.sec-reserve {
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.reserve-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  min-height: 200px;
}
.reserve-left {
  flex: 0 0 320px;
  padding: 48px 0;
}
.reserve-h {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--white);
  margin-bottom: 16px;
}
.reserve-p {
  font-size: 0.75rem;
  color: var(--cream);
  letter-spacing: 0.08em;
  line-height: 2;
}
/* 縦分割線：ボックス高さの50% */
.reserve-divider {
  width: 1px;
  height: 100px;   /* ボックス高さ200pxの50% */
  background: var(--border);
  flex-shrink: 0;
}
/* WEB予約・TEL カラム */
.reserve-col {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(32px, 5vw, 72px);
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.3s;
  min-height: 200px;
}
.reserve-col:hover { opacity: 0.6; }
.reserve-col-label {
  font-family: var(--serif);
  font-size: clamp(0.9rem, 1.5vw, 1.2rem);
  letter-spacing: 0.12em;
  color: var(--white);
}
.reserve-col-tel {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  margin-right: 12px;
  color: var(--muted);
}
.reserve-col-arrow {
  font-size: 1.4rem;
  color: var(--muted);
  line-height: 1;
}

/* ── Footer ── */
.site-footer { background: #050505; }

/* 系列店ブランドブロック */
.footer-brands {
  border-top: none;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 各カラム間に縦分割線（ボックス高さの50%）をpseudoで実現 */
  position: relative;
}
/* カラム間の縦線：各 fb-item の右に配置 */
.fb-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: clamp(40px, 6vw, 72px) clamp(32px, 4vw, 60px);
  position: relative;
}
/* 2・3カラムの左に縦分割線 */
.fb-item:not(:first-child)::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50%;
  background: rgba(255,255,255,0.25);
}

/* ロゴ */
.fb-logo-wrap {
  height: clamp(60px, 8vw, 100px);
  display: flex;
  align-items: flex-start;
  margin-bottom: clamp(2.5px, 0.375vw, 4px);
}
.fb-logo-img {
  max-height: 80%;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

/* 店名・住所・DL */
.fb-info { display: flex; flex-direction: column; gap: 10px; }
.fb-name {
  font-family: var(--serif);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #777;
  margin-bottom: 18px;
  text-align: center;
}
.fb-addr {
  font-size: 0.7rem;
  line-height: 1.8;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.fb-dl {
  display: grid;
  grid-template-columns: 5.5em 1fr;
  gap: 10px 16px;
  font-size: 0.72rem;
  color: var(--white);
  letter-spacing: 0.06em;
}
.fb-dl dt { color: var(--white); }
.fb-dl dd { color: var(--white); }

/* Footer bottom */
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 24px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.footer-copy {
  font-size: 0.62rem;
  color: var(--muted);
  letter-spacing: 0.12em;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .philosophy-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .phil-img-l,
  .phil-img-r { display: none; }

  .info-wrap { grid-template-columns: 1fr; gap: 32px; }
  .info-img { width: 100%; }
  .request-wrap { grid-template-columns: 1fr; gap: 32px; }

  .reserve-wrap { flex-direction: column; align-items: flex-start; }
  .reserve-left { flex: none; padding: 32px 0 0; }
  .reserve-divider { width: 100%; height: 1px; }
  .reserve-col { min-height: 80px; width: 100%; }

  .footer-brands { grid-template-columns: 1fr; }
  .fb-item:not(:first-child)::before {
    top: 0; left: 0;
    width: 100%; height: 1px;
    transform: none;
  }
  .footer-bottom { justify-content: center; }
}

@media (max-width: 640px) {
  /* ── 全体：はみ出し防止 ── */
  html, body { overflow-x: hidden; }
  .sec-philosophy,
  .sec-grid2,
  .sec-fullbleed,
  .sec-info,
  .sec-request { overflow: hidden; width: 100%; }

  /* ── MV：dvhでアドレスバー回避 ── */
  .hero {
    height: 100dvh;
    min-height: auto;
  }

  /* ── MVキャッチコピー：2倍に拡大 ── */
  .hero-logo-img { height: clamp(48px, 16vw, 80px); }
  .hero-catch { font-size: 1.9rem; }

  /* ── MV予約ボタン ── */
  .hero-reserve {
    right: 20px;
    bottom: 40px;
  }
  .hero-reserve-text { font-size: 0.8rem; }
  .hero-reserve-line { height: 28px; }

  /* ── 固定予約ボタン：スマホでは非表示 ── */
  .fixed-reserve { display: none !important; }

  /* ── 哲学セクション：スマホレイアウト ── */
  .sec-philosophy { overflow: visible; }
  .philosophy-wrap {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
  }
  /* 写真1,2枚目：参考画像風の重ね配置 */
  .phil-img-l,
  .phil-img-r {
    display: block !important;
    padding-left: 0;
    margin-top: 0;
  }
  .phil-img-l {
    order: 0;
    width: 70%;
    flex: none;
  }
  .phil-img-l img {
    height: auto;
    aspect-ratio: 4/3;
  }
  .phil-img-r {
    order: 1;
    flex: none;
    width: 55%;
    margin-left: auto;
    margin-top: -80px;
    position: relative;
    z-index: 2;
  }
  .phil-img-r img {
    height: auto;
    aspect-ratio: 3/4;
  }
  .phil-body {
    padding: 40px var(--pad-x) 0;
    align-items: flex-start;
    order: 2;
  }
  /* 手間を語らず、美味しさで語る：横書き・左揃え・順番正しく */
  .phil-title-outer {
    margin-left: 0;
    flex-direction: column;
    gap: 4px;
  }
  /* 手間を語らず、が先（orderで制御） */
  .phil-col-left {
    flex-direction: row;
    align-items: center;
    padding-top: 0;
    gap: 0;
    order: -1;
  }
  .phil-col-right {
    flex-direction: row;
    padding-top: 0;
    gap: 0;
    padding-left: 32px;
  }
  .phil-keirsen {
    width: 20px;
    height: 1px;
    margin-right: 12px;
    flex-shrink: 0;
  }
  .phil-chars {
    flex-direction: row;
  }
  .phil-chars span {
    line-height: 1.4;
  }
  .phil-chars .phil-punct {
    transform: none;
    margin-top: 0;
  }
  .phil-p {
    max-width: 100%;
    font-size: 0.9375rem;
    line-height: 2.2;
  }

  /* ── 写真グリッド：重ね配置（参考画像風） ── */
  .grid2-inner {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0;
    gap: 0;
    position: relative;
  }
  .grid2-item:first-child {
    width: 55%;
    margin-top: 0;
    margin-right: 0;
    z-index: 1;
  }
  .grid2-item:last-child {
    flex: none;
    width: 65%;
    margin-top: -80px;
    margin-left: auto;
    z-index: 2;
  }

  /* ── フルブリード画像 ── */
  .sec-fullbleed { margin-top: 80px; margin-bottom: 80px; }
  .sec-fullbleed--s { margin-top: 0; }
  .parallax-img { height: 250px; }
  .sec-fullbleed--s .parallax-img { height: 250px; }

  /* ── 店舗情報：写真が先、その下に情報 ── */
  .info-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0;
  }
  .info-img {
    width: 100%;
    margin-left: 0;
    padding-top: 0;
    order: -2;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }
  .info-img img {
    flex: 1;
    min-width: 0;
    aspect-ratio: 3/4;
    object-fit: cover;
  }
  .info-en {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    position: static;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 0.56rem;
    color: var(--white);
    letter-spacing: 0.18em;
    padding: 16px 8px 0;
    flex-shrink: 0;
    width: 36px;
    top: auto;
    right: auto;
  }
  .info-en::before {
    content: '';
    display: block;
    width: 1px;
    height: 20px;
    background: var(--white);
    flex-shrink: 0;
    margin-bottom: 10px;
  }
  .info-heading-col {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    order: -1;
    padding: 16px var(--pad-x);
  }
  .info-vline {
    width: 20px;
    height: 1px;
  }
  .info-h {
    writing-mode: horizontal-tb;
    font-size: 1.5rem;
  }
  .info-text { padding: 0 var(--pad-x); }

  /* ── お願い：写真が先、その下に情報 ── */
  .request-wrap {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0;
  }
  .request-img {
    width: 100%;
    margin-left: 0;
    padding-top: 0;
    order: -2;
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: 0;
  }
  .request-img img {
    flex: 1;
    min-width: 0;
    aspect-ratio: 3/4;
    object-fit: cover;
  }
  .request-en {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    position: static;
    top: auto;
    left: auto;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 0.56rem;
    color: var(--white);
    letter-spacing: 0.18em;
    padding: 16px 8px 0;
    flex-shrink: 0;
    width: 36px;
  }
  .request-en::before {
    content: '';
    display: block;
    width: 1px;
    height: 20px;
    background: var(--white);
    flex-shrink: 0;
    margin-bottom: 10px;
  }
  .request-heading-col {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    order: -1;
    padding: 16px var(--pad-x);
  }
  .request-vline {
    width: 20px;
    height: 1px;
  }
  .request-h {
    writing-mode: horizontal-tb;
    font-size: 1.5rem;
  }
  .request-text {
    padding: 0 var(--pad-x);
    margin-left: 0;
    order: 0;
  }
  .request-p {
    font-size: 0.9375rem;
  }

  /* ── 本文フォントサイズ：少し大きく ── */
  .info-dl,
  .info-dl dt,
  .info-dl dd {
    font-size: 0.9375rem;
  }

  /* ── フッター系列店：罫線を40%中央・色をはっきり ── */
  .footer-brands { grid-template-columns: 1fr; }
  .fb-item {
    padding: 40px 24px;
  }
  .fb-item:not(:first-child)::before {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 1px;
    background: rgba(255,255,255,0.4);
  }
}
