/* =========================================================
   のみどころ 寄り道 — style.css
   ========================================================= */

:root {
  --red: #d93b30;
  --red-dark: #b32a21;
  --gold: #f2b544;
  --gold-dark: #d99a26;
  --cream: #fffaf2;
  --cream-2: #fdf2e2;
  --wood: #8a5a34;
  --ink: #2b2320;
  --ink-soft: #5d504a;
  --line: #e8dccb;
  --white: #fff;

  --shadow-s: 0 2px 8px rgba(43, 35, 32, .07);
  --shadow-m: 0 8px 28px rgba(43, 35, 32, .1);
  --shadow-l: 0 18px 50px rgba(43, 35, 32, .16);

  --header-h: 68px;
  --radius: 14px;
  --maxw: 1120px;

  --font-round: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
  --font-body: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.9;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3 { font-family: var(--font-round); line-height: 1.5; margin: 0; }
p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.skip-link {
  position: absolute; left: 8px; top: -60px; z-index: 200;
  background: var(--red); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 8px;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

:focus-visible { outline: 3px solid var(--gold-dark); outline-offset: 2px; }

.container { width: min(100% - 40px, var(--maxw)); margin-inline: auto; }
.container--narrow { width: min(100% - 40px, 820px); }
/* スマホでのみ改行させたい箇所（768px以下で inline に戻す） */
.sp-only { display: none; }

/* ---------- 提灯モチーフ ---------- */
.logo__lantern {
  position: relative;
  display: inline-block;
  width: 26px; height: 32px;
  background:
    repeating-linear-gradient(180deg, rgba(255, 255, 255, .1) 0 1px, transparent 1px 6px),
    linear-gradient(180deg, #e6483c, var(--red-dark));
  border-radius: 50% / 40%;
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .22), 0 2px 6px rgba(217, 59, 48, .35);
  flex: none;
}
.logo__lantern::before,
.logo__lantern::after {
  content: ""; position: absolute; left: 50%; transform: translateX(-50%);
  width: 16px; height: 4px; background: #3a2b23; border-radius: 2px;
}
.logo__lantern::before { top: -2px; }
.logo__lantern::after { bottom: -2px; }
.logo__lantern--footer { width: 30px; height: 37px; margin-bottom: 14px; }

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-round);
  font-weight: 700;
  font-size: .98rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary { background: var(--red); color: #fff; box-shadow: 0 6px 18px rgba(217, 59, 48, .35); }
.btn--primary:hover { background: var(--red-dark); }

.btn--ghost { background: rgba(255, 255, 255, .92); color: var(--ink); box-shadow: var(--shadow-m); }
.btn--ghost:hover { background: #fff; }

.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--cream); }

.btn--ig { color: #fff; background: linear-gradient(45deg, #f9a03f 0%, #e1306c 45%, #a02fbc 100%); box-shadow: 0 6px 18px rgba(193, 53, 132, .3); }
.btn--tb { color: #fff; background: #ff8c00; box-shadow: 0 6px 18px rgba(255, 140, 0, .32); }
.btn--tb:hover { background: #e97e00; }

.link-tel { color: var(--red); font-weight: 700; text-decoration: none; }
.link-tel:hover { text-decoration: underline; }

/* =========================================================
   ヘッダー
   ========================================================= */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  background: rgba(255, 250, 242, .0);
  transition: background-color .3s ease, box-shadow .3s ease;
}
.header.is-scrolled {
  background: rgba(255, 250, 242, .95);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-s);
}
.header__inner {
  height: 100%;
  width: min(100% - 32px, 1240px);
  margin-inline: auto;
  display: flex; align-items: center; gap: 20px;
}

.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-right: auto; }
.logo__text { display: flex; flex-direction: column; line-height: 1.15; }
.logo__ja {
  font-family: var(--font-round); font-weight: 900; font-size: 1.35rem;
  letter-spacing: .06em; color: #fff; text-shadow: 0 2px 10px rgba(0, 0, 0, .45);
  transition: color .3s, text-shadow .3s;
}
.logo__en {
  font-size: .56rem; letter-spacing: .16em; color: rgba(255, 255, 255, .85);
  text-shadow: 0 1px 6px rgba(0, 0, 0, .5);
  transition: color .3s, text-shadow .3s;
}
.header.is-scrolled .logo__ja { color: var(--ink); text-shadow: none; }
.header.is-scrolled .logo__en { color: var(--ink-soft); text-shadow: none; }

.nav__list { display: flex; gap: 22px; }
.nav__list a {
  position: relative;
  text-decoration: none; font-size: .9rem; font-weight: 500;
  color: #fff; text-shadow: 0 1px 8px rgba(0, 0, 0, .5);
  transition: color .3s, text-shadow .3s;
}
.header.is-scrolled .nav__list a { color: var(--ink); text-shadow: none; }
.nav__list a::after {
  content: ""; position: absolute; left: 0; bottom: -5px;
  width: 100%; height: 2px; background: var(--red);
  transform: scaleX(0); transform-origin: right; transition: transform .25s;
}
.nav__list a:hover::after { transform: scaleX(1); transform-origin: left; }

.header__tel {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--red); color: #fff; text-decoration: none;
  padding: 9px 18px; border-radius: 999px;
  font-family: var(--font-round); font-weight: 700; font-size: .95rem;
  box-shadow: 0 4px 14px rgba(217, 59, 48, .38);
  transition: background-color .2s, transform .2s;
}
.header__tel:hover { background: var(--red-dark); transform: translateY(-1px); }

.burger {
  display: none;
  width: 44px; height: 44px; padding: 0;
  background: rgba(255, 255, 255, .9); border: none; border-radius: 10px;
  cursor: pointer; position: relative; box-shadow: var(--shadow-s);
}
.burger span {
  position: absolute; left: 12px; width: 20px; height: 2px;
  background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .2s;
}
.burger span:nth-child(1) { top: 15px; }
.burger span:nth-child(2) { top: 21px; }
.burger span:nth-child(3) { top: 27px; }
.burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* =========================================================
   ヒーロー
   ========================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: calc(var(--header-h) + 40px) 0 90px;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(30, 18, 12, .82) 0%, rgba(30, 18, 12, .58) 45%, rgba(30, 18, 12, .2) 100%),
    linear-gradient(180deg, rgba(30, 18, 12, .45) 0%, transparent 30%, rgba(30, 18, 12, .35) 100%);
}

.hero__inner {
  position: relative; z-index: 1;
  width: min(100% - 40px, var(--maxw)); margin-inline: auto;
  color: #fff;
}
.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-round); font-weight: 700;
  font-size: .8rem; letter-spacing: .18em;
  padding: 7px 16px; border-radius: 999px;
  background: rgba(217, 59, 48, .92);
  margin-bottom: 22px;
}
.hero__title {
  font-size: clamp(1.95rem, 7.6vw, 4.4rem);
  font-weight: 900; letter-spacing: .02em; line-height: 1.32;
  text-shadow: 0 4px 30px rgba(0, 0, 0, .5);
  margin-bottom: 24px;
}
.hero__lead {
  font-size: clamp(.97rem, 1.6vw, 1.1rem);
  line-height: 2.1;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .6);
  margin-bottom: 34px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.hero__hours {
  font-size: .88rem; letter-spacing: .04em;
  color: rgba(255, 255, 255, .92);
  text-shadow: 0 2px 12px rgba(0, 0, 0, .6);
}
.hero__closed {
  display: inline-block;
  background: rgba(255, 255, 255, .18); border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 6px; padding: 1px 10px; font-size: .8rem;
}

.hero__scroll {
  position: absolute; z-index: 1; left: 50%; bottom: 22px; transform: translateX(-50%);
  color: rgba(255, 255, 255, .85);
  font-size: .62rem; letter-spacing: .3em;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero__scroll span {
  width: 1px; height: 46px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .9));
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(.35); transform-origin: top; opacity: .4; }
  50% { transform: scaleY(1); transform-origin: top; opacity: 1; }
}

/* =========================================================
   セクション共通
   ========================================================= */
.section { padding: 96px 0; position: relative; }
.section__head { text-align: center; margin-bottom: 56px; }
.section__en {
  font-family: var(--font-round); font-weight: 700;
  font-size: .72rem; letter-spacing: .34em; color: var(--red);
  margin: 0 0 12px;
}
.section__title {
  font-size: clamp(1.6rem, 3.6vw, 2.3rem);
  font-weight: 900; letter-spacing: .04em;
  position: relative; display: inline-block; padding-bottom: 18px;
}
.section__title::after {
  content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
  width: 56px; height: 4px; border-radius: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold));
}
.section__lead { margin-top: 20px; color: var(--ink-soft); font-size: .95rem; }

/* =========================================================
   お店について
   ========================================================= */
.about { background:
  radial-gradient(1000px 460px at 88% -8%, rgba(242, 181, 68, .16), transparent 62%),
  var(--cream); }

.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.about__photos { position: relative; padding-bottom: 70px; padding-right: 60px; }
.about__photo { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-l); }
.about__photo--main img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.about__photo--sub {
  position: absolute; right: 0; bottom: 0; width: 56%;
  border: 6px solid var(--cream);
}
.about__photo--sub img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }

.about__catch {
  font-family: var(--font-round); font-weight: 900;
  font-size: clamp(1.35rem, 2.6vw, 1.75rem);
  color: var(--red); letter-spacing: .05em; margin-bottom: 22px;
}
.about__body p { color: var(--ink-soft); }
.about__body p.about__catch { color: var(--red); }

.about__points {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px;
}
.about__points li {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 999px; padding: 9px 18px;
  font-size: .84rem; color: var(--ink-soft);
  box-shadow: var(--shadow-s);
}
.about__points strong { color: var(--ink); font-family: var(--font-round); }

/* =========================================================
   こだわり
   ========================================================= */
.kodawari { background: var(--cream-2); }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-m);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-l); }
.card__img { margin: 0; overflow: hidden; }
.card__img img {
  width: 100%; aspect-ratio: 4 / 3; object-fit: cover;
  transition: transform .5s ease;
}
.card:hover .card__img img { transform: scale(1.06); }
.card__body { padding: 28px 26px 30px; flex: 1; }
.card__num {
  font-family: var(--font-round); font-weight: 900;
  font-size: 1.5rem; color: var(--gold); letter-spacing: .06em; margin: 0 0 6px;
}
.card__title { font-size: 1.16rem; font-weight: 700; margin-bottom: 14px; }
.card__body p:last-child { color: var(--ink-soft); font-size: .93rem; line-height: 1.95; }

/* =========================================================
   お品書き
   ========================================================= */
.menu { background: var(--cream); }

/* セット */
.setbox {
  background: linear-gradient(135deg, var(--red) 0%, #c9382d 100%);
  border-radius: var(--radius);
  padding: 34px 30px 32px;
  margin-bottom: 56px;
  color: #fff;
  box-shadow: 0 14px 40px rgba(217, 59, 48, .28);
  position: relative; overflow: hidden;
}
.setbox::after {
  content: ""; position: absolute; right: -40px; top: -40px;
  width: 190px; height: 190px; border-radius: 50%;
  background: rgba(255, 255, 255, .07);
}
.setbox__label {
  position: relative;
  display: inline-block; background: var(--gold); color: #4a3308;
  font-family: var(--font-round); font-weight: 700; font-size: .78rem; letter-spacing: .14em;
  padding: 5px 16px; border-radius: 999px; margin-bottom: 22px;
}
.setbox__grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.setbox__item {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 12px; padding: 20px 22px;
}
.setbox__item h3 {
  font-size: 1.12rem; font-weight: 700; margin-bottom: 8px;
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px;
}
.setbox__item em {
  font-style: normal; font-family: var(--font-round); font-weight: 900;
  font-size: 1.45rem; color: var(--gold);
}
.setbox__item p { font-size: .9rem; color: rgba(255, 255, 255, .92); margin: 0; }

/* タブ */
.tabs__list {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px;
  margin-bottom: 44px;
}
.tabs__btn {
  font-family: var(--font-round); font-weight: 700; font-size: .93rem;
  padding: 11px 22px; border-radius: 999px; cursor: pointer;
  background: var(--white); color: var(--ink-soft);
  border: 1px solid var(--line);
  transition: all .2s ease;
}
.tabs__btn:hover { border-color: var(--red); color: var(--red); }
.tabs__btn[aria-selected="true"] {
  background: var(--red); color: #fff; border-color: var(--red);
  box-shadow: 0 6px 16px rgba(217, 59, 48, .3);
}

/* JSが無効な場合は全パネル表示。JSが .is-hidden を付与する */
.tabs__panel.is-hidden { display: none; }
.tabs__panel:focus-visible { outline-offset: 6px; }

.menu__cols { column-count: 2; column-gap: 46px; }
.menu__cols--drink { column-count: 3; column-gap: 40px; }

.menu__group {
  break-inside: avoid;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px 22px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-s);
}
.menu__gtitle {
  font-size: 1.05rem; font-weight: 700;
  padding-bottom: 12px; margin-bottom: 14px;
  border-bottom: 2px dashed var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.menu__gtitle span { font-size: .92rem; color: var(--red); font-weight: 700; }
.menu__gtitle .badge {
  background: var(--gold); color: #4a3308;
  font-size: .68rem; letter-spacing: .08em;
  padding: 3px 10px; border-radius: 999px;
}

.menu__list li {
  display: flex; align-items: baseline; gap: 6px;
  padding: 7px 0; font-size: .95rem;
}
.menu__name small { font-size: .76rem; color: var(--ink-soft); }
.menu__dot {
  flex: 1;
  border-bottom: 1px dotted #cfc2ae;
  transform: translateY(-4px);
}
.menu__price { font-family: var(--font-round); font-weight: 700; color: var(--ink); white-space: nowrap; }

/* 価格が見出しにまとまっている一覧（各◯円） */
.menu__list--flat { display: flex; flex-wrap: wrap; gap: 8px; }
.menu__list--flat li {
  display: inline-block; padding: 6px 14px;
  background: var(--cream-2); border-radius: 999px;
  font-size: .88rem;
}
.menu__list--flat li small { font-size: .74rem; color: var(--ink-soft); }

.menu__note-s { font-size: .78rem; color: var(--ink-soft); margin: 12px 0 0; }

.menu__note {
  margin-top: 34px; text-align: center;
  font-size: .82rem; color: var(--ink-soft); line-height: 2;
}

/* =========================================================
   ギャラリー
   ========================================================= */
.gallery { background: var(--cream-2); }

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery__item { margin: 0; position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-m); }
.gallery__item img { width: 100%; height: 100%; aspect-ratio: 1 / 1; object-fit: cover; transition: transform .5s ease; }
.gallery__item--wide { grid-column: span 2; grid-row: span 2; }
.gallery__item--wide img { aspect-ratio: 1 / 1; }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 30px 18px 14px;
  background: linear-gradient(transparent, rgba(30, 18, 12, .8));
  color: #fff; font-size: .82rem; font-family: var(--font-round); font-weight: 500;
}
.gallery__more { text-align: center; margin-top: 40px; }

/* =========================================================
   SNS
   ========================================================= */
.sns { background: var(--cream); }

.sns__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.sns__card {
  background: var(--white); border-radius: var(--radius);
  padding: 40px 34px 36px; text-align: center;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-m);
  display: flex; flex-direction: column; align-items: center;
  transition: transform .3s ease, box-shadow .3s ease;
}
.sns__card:hover { transform: translateY(-5px); box-shadow: var(--shadow-l); }
.sns__icon {
  width: 68px; height: 68px; border-radius: 20px;
  display: grid; place-items: center; margin-bottom: 20px; color: #fff;
}
.sns__card--ig .sns__icon { background: linear-gradient(45deg, #f9a03f, #e1306c 50%, #a02fbc); }
.sns__card--tb .sns__icon { background: #ff8c00; }
.sns__title { font-size: 1.3rem; font-weight: 900; letter-spacing: .04em; }
.sns__handle { font-size: .86rem; color: var(--red); font-weight: 700; margin: 6px 0 16px; }
.sns__text { color: var(--ink-soft); font-size: .92rem; margin-bottom: 26px; }
.sns__card .btn { margin-top: auto; }

/* =========================================================
   アクセス
   ========================================================= */
.access { background: var(--cream-2); }

.access__grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 46px; align-items: start; }
.access__map {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-l); border: 6px solid var(--white);
  aspect-ratio: 4 / 3;
}
.access__map iframe { width: 100%; height: 100%; border: 0; display: block; }

.access__dl { margin: 0; }
.access__dl dt {
  font-family: var(--font-round); font-weight: 700; font-size: .78rem;
  letter-spacing: .12em; color: var(--red);
  padding-top: 18px; margin-top: 18px; border-top: 1px solid var(--line);
}
.access__dl dt:first-child { padding-top: 0; margin-top: 0; border-top: none; }
.access__dl dd { margin: 6px 0 0; color: var(--ink-soft); font-size: .95rem; }

.access__btns { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

/* =========================================================
   店舗情報
   ========================================================= */
.info { background: var(--cream); }

.info__table {
  width: 100%; border-collapse: collapse;
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-m);
}
.info__table th, .info__table td {
  text-align: left; vertical-align: top;
  padding: 18px 24px; border-bottom: 1px solid var(--line);
  font-size: .94rem;
}
.info__table tr:last-child th, .info__table tr:last-child td { border-bottom: none; }
.info__table th {
  width: 30%; white-space: nowrap;
  background: var(--cream-2);
  font-family: var(--font-round); font-weight: 700; color: var(--ink);
}
.info__table td { color: var(--ink-soft); }

/* =========================================================
   フッター
   ========================================================= */
.footer {
  background: #2b2320; color: rgba(255, 255, 255, .82);
  padding: 66px 0 26px;
}
.footer__inner {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px;
  padding-bottom: 44px; border-bottom: 1px solid rgba(255, 255, 255, .14);
}
.footer__name {
  font-family: var(--font-round); font-weight: 900; font-size: 1.4rem;
  letter-spacing: .08em; color: #fff; margin-bottom: 12px;
}
.footer__addr { font-size: .85rem; line-height: 1.9; margin-bottom: 12px; }
.footer__tel a {
  font-family: var(--font-round); font-weight: 700; font-size: 1.15rem;
  color: var(--gold); text-decoration: none;
}
.footer__tel a:hover { text-decoration: underline; }

.footer__nav ul { display: flex; flex-direction: column; gap: 12px; }
.footer__nav a { font-size: .88rem; text-decoration: none; transition: color .2s; }
.footer__nav a:hover { color: var(--gold); }

.footer__sns { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer__sns-label { font-size: .68rem; letter-spacing: .3em; color: var(--gold); margin: 0 0 4px; }
.footer__sns a { font-size: .88rem; text-decoration: none; transition: color .2s; }
.footer__sns a:hover { color: var(--gold); }

.footer__copy { text-align: center; font-size: .74rem; color: rgba(255, 255, 255, .5); margin: 24px 0 0; }

/* =========================================================
   モバイル固定CTA
   ========================================================= */
.mobile-cta {
  display: none;
  position: fixed; z-index: 90; left: 0; right: 0; bottom: 0;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 250, 242, .96);
  backdrop-filter: blur(8px);
  box-shadow: 0 -4px 20px rgba(43, 35, 32, .12);
  gap: 10px;
}
.mobile-cta__btn {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 14px 0; border-radius: 12px;
  font-family: var(--font-round); font-weight: 700; font-size: .95rem;
  text-decoration: none;
}
.mobile-cta__btn--tel { background: var(--red); color: #fff; }
.mobile-cta__btn--map { background: var(--white); color: var(--ink); border: 2px solid var(--ink); }

/* =========================================================
   スクロールアニメーション
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__scroll span { animation: none; }
  * { transition-duration: .01ms !important; }
}

/* =========================================================
   レスポンシブ
   ========================================================= */
@media (max-width: 1024px) {
  .nav__list { gap: 16px; }
  .nav__list a { font-size: .84rem; }
  .cards { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
  .card { flex-direction: row; }
  .card__img { flex: 0 0 40%; }
  .card__img img { height: 100%; aspect-ratio: auto; }
  .access__grid { grid-template-columns: 1fr; }
  .menu__cols--drink { column-count: 2; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  body { font-size: 15px; }
  .section { padding: 68px 0; }
  .section__head { margin-bottom: 40px; }
  .sp-only { display: inline; }

  /* ヘッダー：ドロワー */
  .header { background: rgba(255, 250, 242, .95); box-shadow: var(--shadow-s); }
  .logo__ja { color: var(--ink); text-shadow: none; }
  .logo__en { color: var(--ink-soft); text-shadow: none; }
  .header__tel { display: none; }
  .burger { display: block; }

  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    background: var(--cream);
    box-shadow: var(--shadow-m);
    max-height: 0; overflow: hidden;
    transition: max-height .35s ease;
  }
  .nav.is-open { max-height: 70vh; }
  .nav__list { flex-direction: column; gap: 0; padding: 8px 0 18px; }
  .nav__list li { border-bottom: 1px solid var(--line); }
  .nav__list li:last-child { border-bottom: none; }
  .nav__list a {
    display: block; padding: 16px 24px; font-size: .98rem;
    color: var(--ink); text-shadow: none;
  }
  .nav__list a::after { display: none; }

  /* ヒーロー */
  .hero { min-height: 92svh; padding-bottom: 110px; }
  .hero__bg::after {
    background: linear-gradient(180deg, rgba(30, 18, 12, .55) 0%, rgba(30, 18, 12, .5) 40%, rgba(30, 18, 12, .78) 100%);
  }
  .hero__cta .btn { flex: 1 1 100%; }
  .hero__scroll { display: none; }
  .hero__closed { display: block; width: fit-content; margin-top: 6px; }

  /* About */
  .about__grid { grid-template-columns: 1fr; gap: 44px; }
  .about__photos { padding-bottom: 50px; padding-right: 40px; max-width: 460px; margin-inline: auto; }

  /* こだわり */
  .card { flex-direction: column; }
  .card__img { flex: none; }
  .card__img img { aspect-ratio: 16 / 10; }
  .card__body { padding: 24px 22px 26px; }

  /* メニュー */
  .setbox { padding: 26px 20px; }
  .setbox__grid { grid-template-columns: 1fr; gap: 16px; }
  .tabs__list {
    flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start;
    padding-bottom: 10px; margin-inline: -20px; padding-inline: 20px;
    scrollbar-width: none;
  }
  .tabs__list::-webkit-scrollbar { display: none; }
  .tabs__btn { flex: none; padding: 10px 18px; font-size: .88rem; }
  .menu__cols, .menu__cols--drink { column-count: 1; }
  .menu__group { padding: 20px 20px 18px; }

  /* ギャラリー */
  .gallery__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .gallery__item--wide { grid-column: span 2; grid-row: span 1; }
  .gallery__item--wide img { aspect-ratio: 16 / 10; }

  /* SNS */
  .sns__grid { grid-template-columns: 1fr; gap: 20px; }
  .sns__card { padding: 32px 24px 30px; }

  /* アクセス */
  .access__map { aspect-ratio: 1 / 1; }
  .access__btns .btn { flex: 1 1 100%; }

  /* 店舗情報 */
  .info__table th, .info__table td { display: block; width: 100%; }
  .info__table th { border-bottom: none; padding-bottom: 10px; }
  .info__table td { padding-top: 0; padding-bottom: 20px; }

  /* フッター */
  .footer { padding-bottom: 96px; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer__brand { display: flex; flex-direction: column; align-items: center; }
  .footer__nav ul { align-items: center; }
  .footer__sns { align-items: center; }

  /* 固定CTA */
  .mobile-cta { display: flex; }
}

@media (max-width: 380px) {
  .logo__en { display: none; }
}
