/* ==========================================================
   SOUP CURRY FARM+  style.css
   色・フォントは :root の変数をまとめて変更できます
   ========================================================== */

:root {
  --c-bg: #faf7f1;          /* 生成り */
  --c-paper: #f3ede3;       /* 少し濃い生成り */
  --c-sand: #e8dccb;
  --c-wood: #b89b76;        /* 木の色（装飾用） */
  --c-ink: #3b302a;         /* 本文 */
  --c-muted: #6b5d53;       /* 補足文 */
  --c-line: #ddd1c1;
  --c-accent: #a84a28;      /* テラコッタ */
  --c-accent-dark: #8c3b1e;
  --c-white: #fff;

  --f-serif: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif JP", "BIZ UDPMincho", serif;
  --f-sans: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic Medium", "YuGothic", "Meiryo", system-ui, sans-serif;
  --f-en: "Georgia", "Times New Roman", serif;

  --container: 1200px;
  --gutter: clamp(20px, 5vw, 48px);
  --header-h: 76px;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(59, 48, 42, .08);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-ink);
  font-family: var(--f-sans);
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: .04em;
  overflow-x: hidden;
}
@media (min-width: 768px) { body { font-size: 16px; } }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p, dl, dd, figure { margin: 0; }
button { font: inherit; color: inherit; cursor: pointer; }
:focus-visible { outline: 2px solid var(--c-accent); outline-offset: 3px; border-radius: 4px; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--c-ink); color: #fff; padding: 8px 16px; border-radius: 6px; text-decoration: none;
}
.skip-link:focus { top: 12px; }
.sp-only { display: inline; }
@media (min-width: 768px) { .sp-only { display: none; } }

.container { width: 100%; max-width: calc(var(--container) + var(--gutter) * 2); margin: 0 auto; padding: 0 var(--gutter); }
.container--narrow { max-width: calc(820px + var(--gutter) * 2); }
.section { padding: clamp(72px, 10vw, 140px) 0; }

.section-head { margin-bottom: clamp(36px, 5vw, 64px); }
.section-head--center { text-align: center; }
.section-label {
  font-family: var(--f-en); font-size: 13px; letter-spacing: .25em; color: var(--c-accent);
  display: flex; align-items: center; gap: 12px; margin-bottom: 14px;
}
.section-label::before { content: ""; width: 28px; height: 1px; background: currentColor; }
.section-head--center .section-label { justify-content: center; }
.section-head--center .section-label::after { content: ""; width: 28px; height: 1px; background: currentColor; }
.section-title {
  font-family: var(--f-serif); font-weight: 600;
  font-size: clamp(22px, 3.2vw, 34px); line-height: 1.6; letter-spacing: .08em;
}
.section-lead { margin-top: 16px; color: var(--c-muted); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 46px; padding: 10px 26px; border-radius: 999px;
  font-size: 14px; letter-spacing: .08em; text-decoration: none; line-height: 1.4;
  border: 1px solid transparent;
  transition: background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.btn--accent { background: var(--c-accent); color: var(--c-white); }
.btn--accent:hover { background: var(--c-accent-dark); }
.btn--outline { background: transparent; border-color: var(--c-ink); color: var(--c-ink); }
.btn--outline:hover { background: var(--c-ink); color: var(--c-bg); }
.btn--lg { min-height: 56px; padding: 14px 44px; font-size: 15px; }
.btn small { font-size: 11px; }
.is-disabled, .btn.is-disabled { opacity: .5; cursor: not-allowed; pointer-events: none; }

/* ---------- logo（正式ロゴ画像） ---------- */
.logo { display: inline-block; line-height: 0; }
.site-header .logo__img { height: 34px; width: auto; }
@media (max-width: 480px) { .site-header .logo__img { height: 28px; } }

/* ---------- header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100; height: var(--header-h);
  transition: background-color .4s var(--ease), box-shadow .4s var(--ease), height .4s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(250, 247, 241, .94);
  box-shadow: 0 1px 0 var(--c-line);
  backdrop-filter: blur(6px);
}
.site-header__inner {
  height: 100%; max-width: 1440px; margin: 0 auto; padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.global-nav { display: flex; align-items: center; gap: 36px; }
.global-nav__list { display: flex; gap: 30px; font-size: 14px; letter-spacing: .1em; }
.global-nav__list a { text-decoration: none; position: relative; padding: 6px 0; }
.global-nav__list a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--c-accent);
  transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.global-nav__list a:hover::after, .global-nav__list a:focus-visible::after { transform: scaleX(1); }
.nav-toggle { display: none; }

@media (max-width: 1023px) {
  :root { --header-h: 64px; }
  .nav-toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 7px;
    width: 46px; height: 46px; padding: 0 11px; background: none; border: 0; position: relative; z-index: 2;
  }
  .nav-toggle__bar { display: block; height: 1.5px; background: var(--c-ink); transition: transform .3s var(--ease); }
  .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(4.25px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { transform: translateY(-4.25px) rotate(-45deg); }

  .global-nav {
    position: fixed; inset: 0; z-index: 1;
    flex-direction: column; justify-content: center; gap: 36px;
    background: var(--c-bg);
    opacity: 0; visibility: hidden; transition: opacity .35s var(--ease), visibility .35s;
  }
  .global-nav.is-open { opacity: 1; visibility: visible; }
  .global-nav__list { flex-direction: column; align-items: center; gap: 22px; font-size: 16px; }
  .site-header .logo { position: relative; z-index: 2; }
}

/* ---------- hero ---------- */
.hero { position: relative; min-height: clamp(600px, 100svh, 960px); display: flex; align-items: center; overflow: hidden; }
.hero__media { position: absolute; inset: 0; overflow: hidden; }
.hero__img {
  width: 100%; height: 100%; object-fit: cover; object-position: 62% 50%;
  animation: heroZoom 9s var(--ease) both;
}
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero { background: var(--c-bg); }
.hero__media { left: 32%; }
.hero__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(250,247,241,1) 0%, rgba(250,247,241,.55) 14%, rgba(250,247,241,0) 32%);
}
.hero__body {
  position: relative; width: 100%; max-width: 1440px; margin: 0 auto;
  padding: calc(var(--header-h) + 40px) var(--gutter) 90px;
}
.hero__eyebrow { font-family: var(--f-en); font-size: 12px; letter-spacing: .3em; color: var(--c-accent); margin-bottom: 22px; }
.hero__title {
  font-family: var(--f-serif); font-weight: 600;
  font-size: clamp(40px, 5.6vw, 80px); line-height: 1.35; letter-spacing: .12em;
}
.hero__line { display: block; opacity: 0; transform: translateY(14px); animation: fadeUp 1.2s var(--ease) forwards; }
.hero__line:nth-child(2) { animation-delay: .25s; }
.hero__lead {
  margin-top: 22px; font-family: var(--f-serif); font-size: clamp(18px, 2vw, 24px); letter-spacing: .14em;
  opacity: 0; animation: fadeUp 1.2s .55s var(--ease) forwards;
}
.hero__brand {
  margin-top: 30px; font-family: var(--f-en); font-size: 13px; letter-spacing: .32em; color: var(--c-muted);
  opacity: 0; animation: fadeUp 1.2s .8s var(--ease) forwards;
}
@keyframes fadeUp { to { opacity: 1; transform: none; } }

.hero__scroll {
  position: absolute; left: var(--gutter); bottom: 28px;
  font-family: var(--f-en); font-size: 11px; letter-spacing: .3em; text-decoration: none; color: var(--c-muted);
  display: flex; align-items: center; gap: 14px;
}
.hero__scroll::after { content: ""; width: 60px; height: 1px; background: var(--c-muted); }

@media (max-width: 899px) {
  .hero { min-height: auto; flex-direction: column; align-items: stretch; }
  .hero__media { position: relative; left: 0; aspect-ratio: 4 / 3.4; margin-top: var(--header-h); }
  .hero__img { object-position: 72% 50%; }
  .hero__media::after { background: linear-gradient(180deg, rgba(250,247,241,0) 70%, rgba(250,247,241,1) 100%); }
  .hero__body { padding: 8px var(--gutter) 72px; margin-top: -24px; }
  .hero__title { font-size: clamp(36px, 11vw, 48px); }
  .hero__scroll { bottom: 24px; }
}

/* ---------- concept ---------- */
.concept { background: var(--c-bg); }
.concept__grid { display: grid; gap: clamp(40px, 6vw, 96px); align-items: center; }
@media (min-width: 900px) { .concept__grid { grid-template-columns: 1.05fr 1fr; } }
.concept__media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4 / 3.3; }
.parallax { height: 116%; margin-top: -8%; will-change: transform; }
.parallax img { width: 100%; height: 100%; object-fit: cover; }
.concept__text { margin-top: 28px; color: var(--c-muted); }
.concept__text p + p { margin-top: 1em; }

.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 40px; }
.feature { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.feature__icon {
  width: 72px; height: 72px; border-radius: 50%; background: var(--c-paper);
  display: grid; place-items: center;
}
.feature__icon svg { width: 32px; height: 32px; fill: none; stroke: var(--c-accent); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.feature__label { font-size: 13px; line-height: 1.5; font-weight: 600; letter-spacing: .04em; }
@media (max-width: 420px) {
  .features { gap: 6px; }
  .feature__icon { width: 60px; height: 60px; }
  .feature__label { font-size: 11.5px; letter-spacing: 0; }
}

.points {
  display: grid; gap: 1px; margin-top: clamp(64px, 8vw, 110px);
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  background: var(--c-line); background-clip: content-box;
}
.point { background: var(--c-bg); padding: 32px 24px; box-shadow: 0 -1px 0 var(--c-line), 0 1px 0 var(--c-line); }
.point__num { font-family: var(--f-en); color: var(--c-accent); font-size: 14px; letter-spacing: .2em; }
.point__title { font-family: var(--f-serif); font-size: 19px; margin: 6px 0 10px; letter-spacing: .08em; }
.point p:last-child { font-size: 14px; color: var(--c-muted); line-height: 1.85; }

/* ---------- menu ---------- */
.menu { background: var(--c-paper); }
.menu-feature {
  display: grid; background: var(--c-bg); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); margin-bottom: clamp(32px, 4vw, 48px);
}
@media (min-width: 768px) { .menu-feature { grid-template-columns: 1.35fr 1fr; align-items: center; } }
.menu-feature__media { overflow: hidden; aspect-ratio: 3 / 2; }
.menu-feature__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.menu-feature:hover .menu-feature__media img { transform: scale(1.04); }
.menu-feature__body { padding: clamp(24px, 4vw, 48px); }
.badge {
  display: inline-block; background: var(--c-accent); color: #fff; font-size: 12px; letter-spacing: .12em;
  padding: 4px 14px; border-radius: 4px; margin-bottom: 16px;
}
.menu-feature__name { font-family: var(--f-serif); font-size: clamp(24px, 2.6vw, 32px); letter-spacing: .08em; line-height: 1.5; }
.menu-feature__desc { margin-top: 12px; color: var(--c-muted); }
.price { font-family: var(--f-en); font-size: 26px; color: var(--c-accent); margin-top: 16px; letter-spacing: .04em; line-height: 1.2; }
.price span { font-family: var(--f-sans); font-size: 13px; margin-left: 2px; }

.menu-grid { display: grid; gap: clamp(20px, 2.4vw, 32px); grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr)); }
@media (min-width: 1024px) { .menu-grid { grid-template-columns: repeat(3, 1fr); } }
.menu-card {
  background: var(--c-bg); border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.menu-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.menu-card__media { aspect-ratio: 3 / 2; overflow: hidden; }
.menu-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.menu-card:hover .menu-card__media img { transform: scale(1.05); }
.menu-card__body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.menu-card__name { font-family: var(--f-serif); font-size: 19px; letter-spacing: .08em; line-height: 1.5; }
.menu-card__name small { font-family: var(--f-sans); font-size: 12px; color: var(--c-muted); font-weight: 400; }
.menu-card__desc { font-size: 14px; color: var(--c-muted); margin-top: 6px; line-height: 1.8; flex: 1; }
.menu-card .price { font-size: 22px; margin-top: 12px; text-align: right; }

.options {
  display: grid; gap: 1px; margin-top: clamp(40px, 5vw, 64px);
  grid-template-columns: 1fr;
  background: var(--c-line); border: 1px solid var(--c-line); border-radius: var(--radius); overflow: hidden;
}
@media (min-width: 600px) { .options { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1200px) { .options { grid-template-columns: repeat(4, 1fr); } }
.option { background: var(--c-bg); padding: 24px; font-size: 14px; line-height: 1.8; }
.option small { font-size: 12.5px; color: var(--c-muted); }
.option__title { font-family: var(--f-serif); font-size: 17px; letter-spacing: .08em; margin-bottom: 8px; }
.option__title span { display: block; font-family: var(--f-en); font-size: 11px; letter-spacing: .22em; color: var(--c-accent); font-weight: 400; }

.side-list {
  display: grid; gap: 16px; margin-top: 32px;
  grid-template-columns: repeat(auto-fit, minmax(min(46%, 170px), 1fr));
}
.side-item img { border-radius: 10px; aspect-ratio: 3 / 2; object-fit: cover; width: 100%; }
.side-item__name { margin-top: 10px; font-size: 13.5px; font-weight: 600; line-height: 1.5; }
.side-item__name span { display: block; font-weight: 400; color: var(--c-accent); font-size: 13px; }

.menu__foot { margin-top: clamp(48px, 6vw, 72px); text-align: center; }
.note { margin-top: 24px; font-size: 12px; color: var(--c-muted); line-height: 1.9; }

/* ---------- plus ---------- */
.plus { background: var(--c-bg); }
.plus-mark { color: var(--c-accent); font-family: var(--f-sans); font-weight: 700; margin: 0 .1em; }
.plus-grid { display: grid; gap: clamp(20px, 2.5vw, 32px); }
@media (min-width: 900px) { .plus-grid { grid-template-columns: 1fr 1fr; } }
.plus-card {
  position: relative; background: var(--c-white); border: 1px solid var(--c-line); border-radius: var(--radius);
  padding: clamp(24px, 3.4vw, 40px); padding-top: clamp(28px, 3.4vw, 40px);
}
.plus-card__num {
  position: absolute; top: clamp(22px, 3vw, 34px); left: clamp(24px, 3.4vw, 40px);
  width: 44px; height: 44px; border-radius: 50%; background: var(--c-sand);
  display: grid; place-items: center; font-family: var(--f-en); font-size: 20px; color: var(--c-ink);
}
.plus-card__title { font-family: var(--f-serif); font-size: clamp(18px, 2vw, 22px); letter-spacing: .06em; line-height: 1.5; padding-left: 60px; min-height: 44px; display: flex; align-items: center; }
.plus-card__text { margin-top: 14px; font-size: 14px; color: var(--c-muted); }
.combo {
  display: flex; align-items: center; justify-content: center; gap: clamp(6px, 1.5vw, 14px);
  margin-top: 22px; padding: 20px 12px; background: var(--c-paper); border-radius: 10px;
}
.combo__item { display: flex; flex-direction: column; align-items: center; gap: 8px; text-align: center; flex: 0 1 auto; min-width: 0; }
.combo__item img { width: clamp(64px, 10vw, 88px); aspect-ratio: 1; object-fit: cover; border-radius: 50%; }
.combo__item--main img { width: clamp(92px, 14vw, 128px); }
.combo__icon {
  width: clamp(56px, 8vw, 70px); aspect-ratio: 1; border-radius: 50%; background: var(--c-white);
  display: grid; place-items: center;
}
.combo__icon svg { width: 60%; height: 60%; fill: none; stroke: var(--c-muted); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.combo__icon .fill, .insta__icon .fill { fill: var(--c-wood); stroke: var(--c-muted); }
.combo figcaption { font-size: 12px; font-weight: 600; line-height: 1.4; }
.combo__plus { color: var(--c-accent); font-size: 22px; font-weight: 700; line-height: 1; margin-bottom: 22px; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.tags::before { content: "主な栄養素"; font-size: 12px; color: var(--c-muted); align-self: center; margin-right: 4px; }
.tags li { font-size: 12px; border: 1px solid var(--c-line); border-radius: 999px; padding: 2px 12px; background: var(--c-bg); }

/* ---------- shop ---------- */
.shop { background: var(--c-paper); }
.shop__grid { display: grid; gap: clamp(32px, 5vw, 72px); align-items: center; }
@media (min-width: 900px) {
  .shop__grid { grid-template-columns: 1.3fr 1fr; }
  .shop__media { grid-column: 1; grid-row: 1; }
  .shop__body { grid-column: 2; grid-row: 1; }
}
.shop__media { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.shop__media img { width: 100%; height: auto; }
.shop-info { margin-top: 28px; border-top: 1px solid var(--c-line); }
.shop-info__row { display: grid; grid-template-columns: 7em 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--c-line); }
.shop-info dt { font-weight: 600; font-size: 14px; }
.shop-info dd { font-size: 15px; }
.shop-info__note { display: inline-block; font-size: 13px; color: var(--c-muted); }

/* ---------- access（Google Maps） ---------- */
.access { margin-top: clamp(56px, 7vw, 96px); }
.access__title { font-family: var(--f-serif); font-size: 19px; letter-spacing: .1em; margin-bottom: 18px; display: flex; align-items: baseline; gap: 14px; }
.access__title span { font-family: var(--f-en); font-size: 12px; letter-spacing: .25em; color: var(--c-accent); font-weight: 400; }
.access__map { height: clamp(320px, 40vw, 460px); border-radius: var(--radius); overflow: hidden; background: var(--c-sand); border: 1px solid var(--c-line); }
.access__map iframe { display: block; width: 100%; height: 100%; border: 0; }
.access__foot { margin-top: 20px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px 24px; }
.access__address { font-size: 15px; }
.access__btn { min-height: 50px; }
@media (max-width: 600px) {
  .access__foot { flex-direction: column; align-items: stretch; }
  .access__btn { width: 100%; }
}

/* ---------- news ---------- */
.news { background: var(--c-bg); }
.news-list { background: var(--c-white); border: 1px solid var(--c-line); border-radius: var(--radius); padding: 0 clamp(20px, 4vw, 44px); }
.news-item { display: grid; grid-template-columns: 9em 1fr; align-items: baseline; gap: 16px; padding: clamp(24px, 3.5vw, 36px) 0; }
.news-item + .news-item { border-top: 1px solid var(--c-line); }
.news-item__date { font-family: var(--f-en); color: var(--c-accent); font-size: 15px; letter-spacing: .1em; }
.news-item__title { font-family: var(--f-serif); font-size: clamp(18px, 2vw, 22px); letter-spacing: .12em; }
.news-item__date:only-child { grid-column: 1 / -1; }
@media (max-width: 600px) { .news-item { grid-template-columns: 1fr; gap: 4px; } }

/* ---------- instagram ---------- */
.insta { background: var(--c-paper); padding-block: clamp(64px, 8vw, 110px); }
.insta__lead { margin-top: 18px; color: var(--c-muted); font-size: 14px; }
.insta__icon { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; flex: none; }
.insta__btn { margin-top: 24px; min-height: 50px; padding: 12px 30px; gap: 10px; }
.insta__btn .insta__icon .fill { fill: currentColor; stroke: currentColor; }
.ext-icon { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
/* 写真スライダー（右→左へゆっくり流れる） */
.insta-slider {
  margin-top: clamp(40px, 5vw, 64px); overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.insta-slider__track { display: flex; width: max-content; }
.insta-slider__track li { flex: none; width: clamp(160px, 18vw, 230px); padding-right: 12px; }
.insta-slider__track img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: 50% 50%; border-radius: 8px; }
.insta-slider.is-running .insta-slider__track { animation: instaMarquee var(--marquee-duration, 36s) linear infinite; }
@media (hover: hover) { .insta-slider.is-running:hover .insta-slider__track { animation-play-state: paused; } }
@keyframes instaMarquee { from { transform: translate3d(0, 0, 0); } to { transform: translate3d(-50%, 0, 0); } }

/* ---------- footer ---------- */
.site-footer { background: var(--c-ink); color: #efe7dc; padding: 56px 0 32px; }
.site-footer__inner { display: flex; flex-direction: column; align-items: center; gap: 28px; text-align: center; }
.logo--footer .logo__img { width: 120px; height: auto; }
.footer-insta { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 0 12px; font-size: 13px; letter-spacing: .06em; text-decoration: none; }
.footer-insta:hover { text-decoration: underline; text-underline-offset: 4px; }
.footer-insta .insta__icon .fill { fill: currentColor; stroke: currentColor; }
.footer-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 28px; font-size: 13px; }
.footer-nav a { text-decoration: none; }
.footer-nav a:hover { text-decoration: underline; text-underline-offset: 4px; }
.footer-nav .is-disabled { opacity: .6; }
.copyright { font-family: var(--f-en); font-size: 12px; letter-spacing: .12em; opacity: .75; }
.site-footer :focus-visible { outline-color: #e59a78; }

/* ---------- menu viewer (modal) ---------- */
.viewer {
  width: min(1200px, 96vw); max-width: none; height: min(92vh, 900px); max-height: none;
  padding: 0; border: 0; border-radius: 12px; background: var(--c-bg); color: var(--c-ink);
  display: none; flex-direction: column; overflow: hidden;
}
.viewer[open] { display: flex; animation: viewerIn .35s var(--ease); }
.viewer::backdrop { background: rgba(30, 24, 20, .72); }
@keyframes viewerIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
.viewer__head {
  display: flex; align-items: center; gap: 12px; padding: 12px 14px 12px 20px;
  border-bottom: 1px solid var(--c-line); flex-wrap: wrap;
}
.viewer__title { font-family: var(--f-serif); font-size: 17px; margin-right: auto; }
.viewer__tabs { display: flex; border: 1px solid var(--c-ink); border-radius: 999px; overflow: hidden; }
.viewer__tab { background: none; border: 0; padding: 6px 20px; font-size: 14px; min-height: 40px; }
.viewer__tab[aria-selected="true"] { background: var(--c-ink); color: var(--c-bg); }
.viewer__zoom { background: none; border: 1px solid var(--c-line); border-radius: 999px; padding: 6px 16px; min-height: 40px; font-size: 13px; }
.viewer__zoom[aria-pressed="true"] { border-color: var(--c-accent); color: var(--c-accent); }
.viewer__close {
  width: 44px; height: 44px; border-radius: 50%; border: 0; background: var(--c-paper);
  font-size: 26px; line-height: 1; display: grid; place-items: center;
}
.viewer__body { flex: 1; overflow: auto; overscroll-behavior: contain; background: var(--c-paper); -webkit-overflow-scrolling: touch; }
.viewer__panel { min-height: 100%; display: grid; place-items: center; padding: 12px; }
.viewer__panel[hidden] { display: none; }
.viewer__panel img { max-height: calc(min(92vh, 900px) - 140px); width: auto; cursor: zoom-in; border-radius: 4px; box-shadow: var(--shadow); }
.viewer.is-zoomed .viewer__panel { place-items: start; }
.viewer.is-zoomed .viewer__panel img { max-height: none; max-width: none; width: 1521px; cursor: zoom-out; }
.viewer__hint { font-size: 12px; color: var(--c-muted); padding: 8px 20px 10px; border-top: 1px solid var(--c-line); }
.viewer__hint a { color: var(--c-accent); margin-left: 8px; }
@media (max-width: 767px) {
  .viewer { width: 100vw; height: 100dvh; border-radius: 0; margin: 0; }
  .viewer__head { padding: 10px 10px 10px 16px; gap: 8px; }
  .viewer__title { width: 100%; order: -1; font-size: 15px; }
  .viewer__panel img { max-height: none; width: 100%; }
  .viewer.is-zoomed .viewer__panel img { width: 1521px; }
}
body.is-locked { overflow: hidden; }

/* ---------- scroll reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero__img { animation: none; }
  .hero__line, .hero__lead, .hero__brand { opacity: 1; transform: none; animation: none; }
  .js .reveal { opacity: 1; transform: none; }
  .parallax { transform: none !important; }
  .insta-slider { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
  .insta-slider__track { animation: none !important; }
}

/* ---------- 改行調整（日本語の見出しを語句の区切りで折り返す） ---------- */
.nb { display: inline-block; }
.section-title, .plus-card__title, .menu-card__desc, .plus-card__text, .point p { word-break: auto-phrase; }
.plus-card__title > span { display: block; }
.combo figcaption { white-space: nowrap; }
@media (max-width: 480px) {
  .plus-card__title { font-size: 17px; padding-left: 54px; }
  .plus-card__num { width: 40px; height: 40px; font-size: 18px; }
  .combo { gap: 6px; padding: 18px 8px; }
  .combo__item img { width: 56px; }
  .combo__item--main img { width: 76px; }
  .combo__icon { width: 56px; }
  .combo figcaption { font-size: 11px; }
  .combo__plus { font-size: 18px; }
}

/* ---------- privacy.html ---------- */
.site-header--simple { position: sticky; background: rgba(250, 247, 241, .96); box-shadow: 0 1px 0 var(--c-line); }
.back-home { display: inline-flex; align-items: center; gap: 6px; min-height: 44px; font-size: 14px; letter-spacing: .08em; text-decoration: none; }
.back-home:hover { color: var(--c-accent); }
.back-home svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.policy { padding: clamp(56px, 8vw, 110px) 0 clamp(72px, 9vw, 130px); }
.policy__inner { max-width: calc(820px + var(--gutter) * 2); }
.policy__title { font-family: var(--f-serif); font-weight: 600; font-size: clamp(26px, 3.4vw, 36px); letter-spacing: .1em; line-height: 1.5; margin-top: 4px; }
.policy__lead { margin-top: 28px; }
.policy__body { margin-top: clamp(36px, 5vw, 56px); background: var(--c-white); border: 1px solid var(--c-line); border-radius: var(--radius); padding: clamp(24px, 5vw, 56px); }
.policy__body section + section { margin-top: 36px; padding-top: 32px; border-top: 1px solid var(--c-line); }
.policy__body h2 { font-family: var(--f-serif); font-size: clamp(18px, 2vw, 21px); letter-spacing: .08em; line-height: 1.6; margin-bottom: 12px; }
.policy__body p + p, .policy__body p + ul, .policy__body ul + p { margin-top: 12px; }
.policy__body ul { padding-left: 1.4em; list-style: disc; }
.policy__body li + li { margin-top: 4px; }
.policy__contact { display: grid; grid-template-columns: 5em 1fr; gap: 6px 16px; margin-top: 14px; }
.policy__contact dt { font-weight: 600; font-size: 14px; }
.policy__date { margin-top: 28px; font-size: 13px; color: var(--c-muted); text-align: right; }
.policy, .policy__body { overflow-wrap: anywhere; }
