/* =========================================================
   いぬさるきじ — もんじゃ居酒屋
   Art Direction: InuSaruKiji Inc. CI 準拠
   — 生成り（白基調）× オリーブ金 × 墨 / ミニマル・素朴・誠実・余白
   ========================================================= */

:root {
  --paper:   #faf6ec;     /* 生成り（ベース） */
  --paper-2: #f3ecda;     /* やや深い生成り（交互の帯・カード） */
  --card:    #fffdf7;     /* カード面（わずかに明るい） */
  --ink:     #2a2620;     /* 墨（本文・見出し） */
  --ink-2:   #4f4940;     /* 副次テキスト */
  --muted:   #8c8573;     /* キャプション */
  --gold:    #897c40;     /* オリーブ金（テキスト用・濃いめでAA確保） */
  --gold-bright: #b8ab6f; /* ロゴのオリーブ金（フィル・マーク・線） */
  --gold-soft: #cabf86;
  --clay:    #bb5837;     /* 朱（ごく控えめな差し色） */
  --clay-deep: #9c4527;
  --line:    #e7dec9;     /* ヘアライン */
  --line-2:  #d8cdb1;
  --radius: 4px;
  --maxw: 1200px;
  --font-jp: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "Yu Gothic", Meiryo, sans-serif;
  --font-mincho: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  margin: 0; font-family: var(--font-jp); color: var(--ink);
  background: var(--paper); line-height: 1.9;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { text-decoration: none; }
::selection { background: var(--gold-bright); color: #fff; }

h1,h2,h3,h4 { font-family: var(--font-mincho); line-height: 1.3; margin: 0 0 .6em; font-weight: 700; color: var(--ink); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 110px 0; position: relative; }
.section--tight { padding: 64px 0; }

/* 背景の出し分け（全面ライト・交互に生成りの濃淡） */
.section { background: var(--paper); color: var(--ink); }
.section--cream2 { background: var(--paper-2); }
.section--ink { background: var(--paper-2); }
.section--light { background: var(--card); color: var(--ink); }
.section--light h2, .section--light h3 { color: var(--ink); }

/* ===== 見出し（ミニマル・エディトリアル） ===== */
.heading { margin-bottom: 56px; max-width: 880px; }
.heading__en {
  display: inline-flex; align-items: center; gap: 12px;
  letter-spacing: .42em; font-size: .72rem; color: var(--gold);
  font-weight: 800; margin-bottom: 18px; text-transform: uppercase;
}
.heading__en::before { content: ""; width: 40px; height: 1px; background: var(--gold-bright); }
.heading__jp {
  font-size: clamp(2rem, 6vw, 3.6rem); letter-spacing: .02em; line-height: 1.18;
  color: var(--ink);
}
.heading__lead { color: var(--ink-2); margin-top: 20px; font-size: 1rem; line-height: 2; }
.section--light .heading__jp { color: var(--ink); }
.section--light .heading__lead { color: var(--ink-2); }
.text-center .heading, .heading.text-center { margin-left: auto; margin-right: auto; }

/* ===== ボタン ===== */
.btn {
  display: inline-flex; align-items: center; gap: .6em; position: relative;
  padding: 16px 36px; font-weight: 800; font-size: .96rem; letter-spacing: .04em;
  border: 1px solid transparent; cursor: pointer; border-radius: 2px;
  transition: transform .25s var(--ease), background .25s, color .25s, box-shadow .25s, border-color .25s;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--ink); color: var(--paper); box-shadow: 0 10px 26px rgba(42,38,32,.16); }
.btn--primary:hover { background: #1c1914; box-shadow: 0 14px 32px rgba(42,38,32,.22); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { border-color: var(--gold-bright); color: var(--gold); }
.btn--outline { background: transparent; color: var(--gold); border-color: var(--gold-bright); }
.btn--outline:hover { background: var(--gold-bright); color: #fff; border-color: var(--gold-bright); }
.section--light .btn--ghost { color: var(--ink); border-color: var(--line-2); }
.section--light .btn--ghost:hover { color: var(--gold); border-color: var(--gold-bright); }

/* ===== ヘッダー ===== */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(250,246,236,.82); backdrop-filter: saturate(150%) blur(12px);
  color: var(--ink); border-bottom: 1px solid var(--line);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--ink); }
.brand:hover { text-decoration: none; }
.brand__logo { height: 46px; width: auto; display: block; }
.brand__logo + .brand__fallback { display: none; }   /* ロゴ画像が読めたらテキストを隠す */
.brand__fallback { display: flex; align-items: center; gap: 12px; }
.brand__mark { height: 44px; width: auto; display: block; }
.site-footer .brand__logo { height: 52px; }
.site-footer .brand__mark { height: 50px; }
.brand__name { font-family: var(--font-mincho); font-size: 1.24rem; font-weight: 700; letter-spacing: .08em; display: block; color: var(--ink); }
.brand__sub { font-size: .58rem; letter-spacing: .32em; color: var(--gold); display: block; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a { color: var(--ink); font-size: .9rem; font-weight: 700; letter-spacing: .04em; position: relative; }
.nav a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: var(--gold-bright); transition: width .25s var(--ease);
}
.nav a:not(.btn):hover { color: var(--gold); }
.nav a:not(.btn):hover::after { width: 100%; }
.nav__cta { margin-left: 4px; padding: 11px 24px; font-size: .85rem; }
.nav__cta.btn--primary { color: var(--paper); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; flex-direction: column; gap: 6px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--ink); transition: .25s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 920px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed; inset: 70px 0 auto 0; flex-direction: column; gap: 0;
    background: var(--paper); padding: 10px 0 22px; align-items: stretch;
    transform: translateY(-130%); transition: transform .35s var(--ease);
    border-bottom: 1px solid var(--line); box-shadow: 0 16px 30px rgba(42,38,32,.08);
  }
  .nav[data-open="true"] { transform: translateY(0); }
  .nav a { padding: 16px 28px; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav__cta { margin: 14px 28px 0; text-align: center; justify-content: center; }
}

/* ===== ヒーロー ===== */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  color: var(--ink); overflow: hidden;
  background:
    radial-gradient(120% 100% at 82% -10%, #fff8e6 0%, transparent 55%),
    radial-gradient(100% 80% at 0% 110%, #f0e7d2 0%, transparent 50%),
    var(--paper);
}
.hero__lanterns {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; opacity: .55;
  background-image:
    radial-gradient(circle at 14% 22%, rgba(184,171,111,.4) 0 3px, transparent 4px),
    radial-gradient(circle at 88% 30%, rgba(184,171,111,.32) 0 2px, transparent 3px),
    radial-gradient(circle at 70% 78%, rgba(187,88,55,.22) 0 2px, transparent 3px),
    radial-gradient(circle at 30% 86%, rgba(184,171,111,.3) 0 2px, transparent 3px);
}
.hero__giant {
  position: absolute; right: 4vw; top: 50%; transform: translateY(-50%);
  z-index: 0; user-select: none; pointer-events: none;
  display: flex; align-items: center; justify-content: center;
}
.hero__giant:not(:has(.hero__giant-logo)) { right: -4vw; }
.hero__giant-fallback {
  font-family: var(--font-mincho); font-weight: 700;
  font-size: clamp(20rem, 52vw, 50rem); line-height: .8; color: transparent;
  -webkit-text-stroke: 1.5px rgba(184,171,111,.18);
}
.hero__giant-logo {
  width: clamp(20rem, 40vw, 44rem); max-height: 78vh; height: auto; opacity: 1;
  object-fit: contain;
}
.hero__giant-logo + .hero__giant-fallback { display: none; }
@media (min-width: 1500px) { .hero__giant-logo { width: clamp(44rem, 36vw, 50rem); } }
@media (max-width: 760px) {
  .hero__giant { right: 50%; top: 50%; transform: translate(50%, -50%); }
  .hero__giant-logo { width: min(74vw, 21rem); max-height: none; opacity: .12; }
}
.hero__inner { position: relative; z-index: 3; padding: 120px 0; }
.hero__badge {
  display: inline-block; padding: 9px 20px; border: 1px solid var(--gold-bright);
  border-radius: 2px; color: var(--gold); font-size: .76rem; letter-spacing: .24em; margin-bottom: 32px;
}
.hero__title {
  font-size: clamp(3rem, 11vw, 8rem); color: var(--ink); letter-spacing: .01em;
  line-height: 1.02; margin-bottom: .35em; font-weight: 700;
}
.hero__title small {
  display: block; font-size: clamp(.95rem, 2.6vw, 1.4rem); color: var(--gold);
  letter-spacing: .18em; margin-bottom: 22px; font-family: var(--font-jp); font-weight: 700;
}
.hero__title-accent {
  color: var(--gold); position: relative; display: inline-block;
}
.hero__copy { font-size: clamp(1rem, 2.4vw, 1.25rem); max-width: 620px; margin: 8px 0 38px; color: var(--ink-2); line-height: 1.95; }
.hero__count { color: var(--gold); font-weight: 800; font-family: var(--font-mincho); }
.hero__count em { font-style: normal; font-size: 1.9em; vertical-align: -.08em; color: var(--clay); }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; left: 24px; bottom: 28px; z-index: 3;
  writing-mode: vertical-rl; letter-spacing: .35em; font-size: .68rem; font-weight: 800;
  color: var(--muted);
}
.hero__scroll::after { content: ""; display: block; width: 1px; height: 46px; background: linear-gradient(var(--gold-bright), transparent); margin: 12px auto 0; animation: scrolldot 1.8s var(--ease) infinite; }
@keyframes scrolldot { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

.trio { display: flex; gap: 26px; flex-wrap: wrap; margin-top: 48px; }
.trio__item { display: flex; align-items: center; gap: 11px; color: var(--ink); font-size: .92rem; font-weight: 600; }
.trio__icon {
  width: 40px; height: 40px; border-radius: 2px; display: grid; place-items: center;
  font-family: var(--font-mincho); font-size: 1.1rem; font-weight: 700;
}
.trio__icon--inu { background: rgba(184,171,111,.14); border: 1px solid var(--gold-bright); color: var(--gold); }
.trio__icon--saru { background: rgba(187,88,55,.1); border: 1px solid var(--clay); color: var(--clay); }
.trio__icon--kiji { background: rgba(42,38,32,.05); border: 1px solid var(--ink-2); color: var(--ink); }

/* ===== マーキー ===== */
.marquee {
  background: var(--paper-2); color: var(--ink); overflow: hidden; white-space: nowrap;
  border-top: 1px solid var(--line-2); border-bottom: 1px solid var(--line-2);
}
.marquee__track { display: inline-flex; animation: marquee 26s linear infinite; }
.marquee__track span {
  font-family: var(--font-mincho); font-weight: 700; font-size: 1.35rem;
  padding: 15px 0; letter-spacing: .04em; color: var(--ink);
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== カードグリッド ===== */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2,1fr); }
.grid--3 { grid-template-columns: repeat(3,1fr); }
.grid--4 { grid-template-columns: repeat(4,1fr); }
@media (max-width: 880px){ .grid--3,.grid--4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .grid--2,.grid--3,.grid--4 { grid-template-columns: 1fr; } }

.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; transition: transform .3s var(--ease), border-color .3s, box-shadow .3s;
}
.card:hover { transform: translateY(-6px); border-color: var(--gold-bright); box-shadow: 0 14px 30px rgba(42,38,32,.08); }
.card__icon { font-size: 1.9rem; margin-bottom: 14px; }
.card h3 { font-size: 1.14rem; color: var(--ink); }
.card p { color: var(--ink-2); font-size: .94rem; margin: 0; }
.section--light .card { background: var(--paper); border-color: var(--line); }
.section--light .card h3 { color: var(--ink); }
.section--light .card p { color: var(--ink-2); }

/* ===== コンセプト ===== */
.concept-trio { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin-top: 8px; }
@media (max-width: 760px){ .concept-trio { grid-template-columns: 1fr; } }
.concept-card {
  text-align: left; padding: 44px 34px; background: var(--card);
  transition: background .3s; position: relative; overflow: hidden;
}
.concept-card::before {
  content: attr(data-no); position: absolute; right: 18px; top: 6px;
  font-family: var(--font-mincho); font-size: 5rem; color: rgba(42,38,32,.045); font-weight: 700;
}
.concept-card:hover { background: var(--paper); }
.concept-card__emoji {
  font-family: var(--font-mincho); font-size: 2.4rem; font-weight: 700; color: var(--gold);
  width: 64px; height: 64px; border: 1.5px solid var(--gold-bright); display: grid; place-items: center; border-radius: 2px;
}
.concept-card__label { color: var(--gold); letter-spacing: .24em; font-size: .72rem; font-weight: 800; margin: 22px 0 6px; }
.concept-card h3 { color: var(--ink); font-size: 1.3rem; }
.concept-card p { color: var(--ink-2); font-size: .94rem; margin: 0; }

/* ===== 名物30種 ===== */
.monja-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(168px,1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.monja-chip {
  background: var(--paper); padding: 16px 18px; min-height: 88px; box-sizing: border-box; font-size: .92rem; font-weight: 600; color: var(--ink);
  display: flex; align-items: center; gap: 10px; transition: background .2s, color .2s;
}
.monja-chip:hover { background: var(--ink); color: var(--paper); }
.monja-chip:hover .monja-chip__no { color: var(--gold-soft); }
.monja-chip__no { font-family: var(--font-mincho); color: var(--gold); font-weight: 700; font-size: .9rem; font-variant-numeric: tabular-nums; min-width: 28px; flex: none; transition: color .2s; }

/* ===== メニュー ===== */
.menu-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 38px; border-bottom: 1px solid var(--line); }
.menu-tab {
  padding: 14px 24px; border: 0; background: none; color: var(--muted);
  font-weight: 800; cursor: pointer; font-size: .96rem; position: relative; transition: color .2s;
}
.menu-tab::after { content: ""; position: absolute; left: 0; bottom: -1px; width: 0; height: 3px; background: var(--gold-bright); transition: width .25s var(--ease); }
.menu-tab[aria-selected="true"] { color: var(--gold); }
.menu-tab[aria-selected="true"]::after { width: 100%; }
.menu-panel { display: none; }
.menu-panel[data-active="true"] { display: block; animation: fade .3s var(--ease); }
@keyframes fade { from { opacity: 0; transform: translateY(8px);} to { opacity: 1; transform: none; } }

.menu-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 0 48px; }
@media (max-width: 640px){ .menu-list { grid-template-columns: 1fr; } }
.menu-item { display: flex; align-items: baseline; gap: 12px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.menu-item__name { font-weight: 700; color: var(--ink); }
.menu-item__tag { font-size: .66rem; color: #fff; background: var(--muted); border-radius: 2px; padding: 2px 8px; margin-left: 8px; font-weight: 800; vertical-align: middle; }
.menu-item__tag--hot { background: var(--clay); }
.menu-item__tag--rec { background: var(--gold-bright); color: #fff; }
.menu-item__dots { flex: 1; border-bottom: 1px dotted var(--line-2); align-self: end; margin: 0 4px 7px; }
.menu-item__price { font-family: var(--font-mincho); font-weight: 700; white-space: nowrap; color: var(--ink); font-size: 1.05rem; }
.menu-note { color: var(--muted); font-size: .86rem; margin-top: 24px; }

/* ===== STEP ===== */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
@media (max-width: 880px){ .steps { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px){ .steps { grid-template-columns: 1fr; } }
.step { background: var(--card); padding: 40px 26px 30px; position: relative; }
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--font-mincho); font-size: 2.4rem; color: var(--gold); font-weight: 700; display: block; margin-bottom: 14px;
}
.step h3 { font-size: 1.1rem; color: var(--ink); }
.step p { color: var(--ink-2); font-size: .9rem; margin: 0; }

/* ===== 口コミ ===== */
.reviews { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width: 880px){ .reviews { grid-template-columns: 1fr; } }
.review { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px; position: relative; }
.review::before { content: "“"; position: absolute; top: 10px; right: 22px; font-family: var(--font-mincho); font-size: 4rem; color: rgba(184,171,111,.3); line-height: 1; }
.review__stars { color: var(--gold-bright); letter-spacing: 3px; margin-bottom: 12px; }
.review__text { font-size: .96rem; color: var(--ink); border: 0; padding: 0; margin: 0; font-style: normal; }
.review__who { color: var(--muted); font-size: .82rem; margin-top: 16px; }

/* ===== FAQ ===== */
.faq { max-width: 860px; }
.faq__item { border-bottom: 1px solid var(--line); }
.section--light .faq__item { border-color: var(--line); }
.faq__q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 26px 48px 26px 0; font-size: 1.08rem; font-weight: 700; color: var(--ink);
  position: relative; font-family: var(--font-mincho);
}
.section--light .faq__q { color: var(--ink); }
.faq__q::after { content: "＋"; position: absolute; right: 0; top: 50%; transform: translateY(-50%); color: var(--gold); font-weight: 700; font-size: 1.3rem; transition: .25s; }
.faq__q[aria-expanded="true"]::after { content: "−"; transform: translateY(-50%) rotate(180deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq__a > div { padding: 0 0 26px; color: var(--ink-2); line-height: 2; }
.section--light .faq__a > div { color: var(--ink-2); }

/* ===== ブログカード ===== */
.posts { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
@media (max-width: 880px){ .posts { grid-template-columns: 1fr; } }
.post-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }
.post-card:hover { transform: translateY(-6px); border-color: var(--gold-bright); box-shadow: 0 14px 30px rgba(42,38,32,.08); text-decoration: none; }
.section--light .post-card { background: var(--paper); border-color: var(--line); }
.post-card__thumb { aspect-ratio: 16/10; background: linear-gradient(135deg, #f1e7d0, #e3d6b8); display: grid; place-items: center; font-size: 2.8rem; }
.section--light .post-card__thumb { background: linear-gradient(135deg, #f1e7d0, #e3d6b8); }
.post-card__body { padding: 24px 26px 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card__cat { font-size: .68rem; color: #fff; background: var(--gold-bright); align-self: flex-start; padding: 3px 12px; border-radius: 2px; font-weight: 800; letter-spacing: .08em; }
.post-card__title { font-size: 1.12rem; color: var(--ink); margin: 0; line-height: 1.5; }
.section--light .post-card__title { color: var(--ink); }
.post-card__date { color: var(--muted); font-size: .8rem; margin-top: auto; font-weight: 700; letter-spacing: .06em; }

/* ===== ブログ一覧（リスト型） ===== */
.post-list { max-width: 760px; margin: 0 auto; border-top: 1px solid var(--line); }
.post-list__item { display: block; padding: 28px 6px; border-bottom: 1px solid var(--line); transition: background .25s var(--ease), padding-left .25s var(--ease); }
.post-list__item:hover { background: var(--paper-2); padding-left: 16px; text-decoration: none; }
.post-list__meta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.post-list__date { color: var(--muted); font-size: .82rem; font-weight: 700; letter-spacing: .06em; }
.post-list__cat { font-size: .66rem; color: #fff; background: var(--gold-bright); padding: 3px 12px; border-radius: 2px; font-weight: 800; letter-spacing: .08em; }
.post-list__title { font-size: 1.22rem; color: var(--ink); margin: 10px 0 7px; line-height: 1.55; }
.post-list__item:hover .post-list__title { color: var(--gold); }
.post-list__excerpt { color: var(--ink-2); font-size: .92rem; line-height: 1.75; margin: 0; }
@media (max-width: 640px){ .post-list__title { font-size: 1.1rem; } }

/* ===== アクセス ===== */
.access { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
@media (max-width: 840px){ .access { grid-template-columns: 1fr; } }
.info-table { width: 100%; border-collapse: collapse; }
.info-table th, .info-table td { text-align: left; padding: 18px 4px; border-bottom: 1px solid var(--line-2); vertical-align: top; font-size: .96rem; }
.info-table th { width: 30%; color: var(--gold); font-weight: 800; white-space: nowrap; letter-spacing: .06em; }
.info-table td { color: var(--ink); }
.info-table td a { color: var(--ink); border-bottom: 1px solid var(--gold-bright); }
.map-embed { width: 100%; aspect-ratio: 4/3; border: 0; border-radius: var(--radius); filter: grayscale(.25) contrast(1.02); }
.map-facade { width: 100%; aspect-ratio: 4/3; border: 1px solid var(--line); border-radius: var(--radius); cursor: pointer; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; text-align: center; padding: 20px; background: linear-gradient(135deg, #f3ecdb, #e6dcc4); transition: border-color .3s var(--ease), box-shadow .3s var(--ease); }
.map-facade:hover, .map-facade:focus-visible { border-color: var(--gold-bright); box-shadow: 0 10px 26px rgba(42,38,32,.10); outline: none; }
.map-facade__pin { font-size: 2.6rem; line-height: 1; }
.map-facade__addr { font-weight: 700; color: var(--ink); font-size: .98rem; }
.map-facade__cta { font-size: .85rem; font-weight: 700; color: var(--gold); }
.map-note { margin: 12px 0 0; font-size: .9rem; }
.map-note a { color: var(--gold); border-bottom: 1px solid var(--gold-bright); font-weight: 700; }

/* ===== CTA ===== */
.cta-band { text-align: center; max-width: 720px; margin: 0 auto; }
.cta-band h2 { color: var(--ink); font-size: clamp(1.8rem,5vw,3rem); }
.cta-band p { color: var(--ink-2); margin-bottom: 32px; }
.cta-band .hero__actions { justify-content: center; }
.cta-tel { display: inline-block; margin-top: 26px; color: var(--ink); font-family: var(--font-mincho); font-size: 1.8rem; font-weight: 700; letter-spacing: .04em; }
.cta-tel small { display: block; font-size: .58rem; letter-spacing: .26em; color: var(--muted); font-family: var(--font-jp); margin-bottom: 4px; }

/* ===== フッター ===== */
.site-footer { background: var(--paper-2); color: var(--ink-2); padding: 70px 0 32px; font-size: .92rem; border-top: 1px solid var(--line-2); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
@media (max-width: 760px){ .footer-grid { grid-template-columns: 1fr; gap: 28px; } }
.footer-grid h4 { color: var(--gold); font-size: .82rem; letter-spacing: .18em; margin-bottom: 18px; }
.footer-grid p { color: var(--ink-2); }
.footer-grid a { color: var(--ink-2); }
.footer-grid a:hover { color: var(--gold); }
.footer-nav { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
.footer-bottom { border-top: 1px solid var(--line-2); padding-top: 24px; display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; color: var(--muted); font-size: .8rem; letter-spacing: .04em; }
.footer-bottom a { color: var(--ink-2); }
.site-footer .brand__name { color: var(--ink); }

/* ===== パンくず ===== */
.breadcrumb { font-size: .82rem; color: var(--muted); padding: 20px 0 0; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; }
.breadcrumb a { color: var(--gold); }
.breadcrumb li::after { content: "/"; margin-left: 8px; color: var(--line-2); }
.breadcrumb li:last-child::after { content: ""; }

/* ===== 記事本文 ===== */
.section--light .article__cat { background: var(--gold-bright); }
.article { max-width: 760px; margin: 0 auto; padding: 12px 0 20px; }
.article__head { text-align: center; margin-bottom: 44px; }
.article__cat { color: #fff; background: var(--gold-bright); padding: 4px 14px; border-radius: 2px; font-size: .74rem; font-weight: 800; letter-spacing: .08em; }
.article__title { font-size: clamp(1.8rem,5vw,2.7rem); margin: 20px 0 12px; color: var(--ink); line-height: 1.3; }
.section--light .article__title { color: var(--ink); }
.article__meta { color: var(--muted); font-size: .85rem; letter-spacing: .04em; }
.article__hero { aspect-ratio: 16/9; border-radius: var(--radius); background: linear-gradient(135deg,#f1e7d0,#e3d6b8); display: grid; place-items: center; font-size: 3.4rem; margin-bottom: 44px; }
.article__body { font-size: 1.06rem; line-height: 2.05; color: var(--ink); }
.section--light .article__body { color: var(--ink); }
.article__body h2 { font-size: 1.55rem; margin-top: 2em; padding-left: 16px; border-left: 4px solid var(--gold-bright); color: var(--ink); }
.article__body h3 { font-size: 1.2rem; margin-top: 1.6em; color: var(--gold); }
.article__body p { margin: 0 0 1.4em; }
.article__body ul, .article__body ol { margin: 0 0 1.4em; padding-left: 1.4em; }
.article__body li { margin-bottom: .6em; }
.article__body blockquote { margin: 1.6em 0; padding: 22px 26px; background: var(--paper-2); border-left: 4px solid var(--gold-bright); border-radius: 0 4px 4px 0; color: var(--ink-2); font-family: var(--font-mincho); }
.article__body .lead { font-size: 1.16rem; color: var(--ink); font-weight: 500; line-height: 1.95; }
.article-faq { margin-top: 56px; background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 12px 32px 20px; }
.article-faq .faq__q { color: var(--ink); }
.article-faq .faq__a > div { color: var(--ink-2); }
.article-faq > h2 { text-align: center; padding: 24px 0 8px; border: 0; color: var(--ink); }

/* タグ */
.tag-row { display: flex; gap: 10px; flex-wrap: wrap; margin: 40px 0; }
.tag { font-size: .82rem; background: transparent; border: 1px solid var(--line-2); border-radius: 2px; padding: 7px 16px; color: var(--ink-2); font-weight: 700; }
.tag:hover { background: var(--gold-bright); color: #fff; border-color: var(--gold-bright); text-decoration: none; }

/* ===== スクロールリビール（JS有効時のみ） ===== */
.reveal-ready [data-reveal] { opacity: 0; transform: translateY(36px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal-ready [data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal-ready [data-reveal] { opacity: 1; transform: none; transition: none; }
  .marquee__track, .hero__scroll::after { animation: none; }
}

/* ユーティリティ */
.text-center { text-align: center; }
.mt-32 { margin-top: 40px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
