@charset "UTF-8";
/* aulii demo — 共通スタイル */

:root {
  --ivory: #faf7f2;
  --paper: #fffdfa;
  --ink: #37312b;
  --ink-muted: #6f665c;
  --ink-faint: #9c9289;
  --line: #e5ded4;
  --moss: #78876b;
  --moss-deep: #5c6b51;
  --gold: #b5946a;
  --sumi: #2b2621;

  --maxw: 1080px;
  --s1: 4px; --s2: 8px; --s3: 12px; --s4: 16px; --s5: 20px;
  --s6: 24px; --s8: 32px; --s10: 40px; --s12: 48px; --s16: 64px; --s20: 80px;

  --serif: "Cormorant Garamond", "Zen Kaku Gothic New", serif;
  --sans: "Zen Kaku Gothic New", "Hiragino Sans", "Yu Gothic", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--ivory); color: var(--ink);
  font-family: var(--sans); font-weight: 400; font-size: 16px;
  line-height: 1.95; letter-spacing: .05em;
  -webkit-font-smoothing: antialiased;
}
/* height:auto を入れないと、img の height 属性が aspect-ratio より優先されてしまう */
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3, h4 { font-weight: 500; line-height: 1.6; letter-spacing: .12em; margin: 0; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; }
figure, dl, dd { margin: 0; }

/* ---------- 予約バー（上） ---------- */
.notice-bar {
  margin: 0; background: var(--sumi); color: #f2ece2;
  font-size: .74rem; letter-spacing: .14em; text-align: center;
  padding: var(--s2) var(--s4);
}
.notice-bar b { color: #e6c79a; font-weight: 500; }

/* ---------- ヘッダー ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 247, 242, .93);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  max-width: var(--maxw); margin: 0 auto; padding: var(--s3) var(--s4);
  display: flex; align-items: center; justify-content: space-between; gap: var(--s4);
}
.brand { text-decoration: none; line-height: 1.2; }
.brand .en {
  display: block; font-family: var(--serif); font-size: 1.75rem;
  letter-spacing: .1em; font-weight: 500;
}
.brand small {
  display: block; font-size: .58rem; letter-spacing: .34em;
  color: var(--ink-faint); margin-top: 2px;
}
.gnav ul { list-style: none; display: flex; gap: var(--s5); }
.gnav a {
  text-decoration: none; font-size: .8rem; letter-spacing: .1em;
  color: var(--ink-muted); padding-bottom: 3px; border-bottom: 1px solid transparent;
}
.gnav a:hover { color: var(--ink); border-bottom-color: var(--gold); }
.gnav a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--moss); }
.header-cta {
  display: none; text-decoration: none; font-size: .76rem; letter-spacing: .12em;
  background: var(--moss); color: #fff; padding: 9px var(--s5); border-radius: 999px;
  white-space: nowrap;
}
.header-cta:hover { background: var(--moss-deep); }
.navtoggle {
  border: 1px solid var(--line); background: var(--paper); border-radius: 6px;
  width: 42px; height: 38px; display: grid; place-items: center; cursor: pointer;
  font-size: .62rem; letter-spacing: .1em; color: var(--ink-muted);
}
@media (max-width: 899px) {
  .gnav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: var(--s4) var(--s5) var(--s6);
  }
  .gnav.is-open { display: block; }
  .gnav ul { flex-direction: column; gap: 0; }
  .gnav li + li { border-top: 1px dashed var(--line); }
  .gnav a { display: block; padding: var(--s3) 0; font-size: .9rem; border-bottom: none; }
}
@media (min-width: 900px) {
  .navtoggle { display: none; }
  .header-cta { display: inline-block; }
}

/* ---------- セクション枠 ---------- */
.section { padding: var(--s20) var(--s5); }
.section.tight { padding-top: var(--s12); }
.section.paper { background: var(--paper); }
.section.sumi { background: var(--sumi); color: #efe8dd; }
.inner { max-width: var(--maxw); margin: 0 auto; }
.inner.narrow { max-width: 760px; }

.eyebrow {
  font-family: var(--serif); font-size: .8rem; letter-spacing: .38em;
  text-transform: uppercase; color: var(--gold); display: block; margin-bottom: var(--s2);
}
.section.sumi .eyebrow { color: #d8b487; }
.h-lead { font-size: clamp(1.25rem, 3.2vw, 1.65rem); letter-spacing: .18em; }
.h-lead + .lead { margin-top: var(--s5); color: var(--ink-muted); font-size: .93rem; }
.section.sumi .lead { color: #cfc5b8; }
.center { text-align: center; }

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s2);
  text-decoration: none; font-size: .85rem; letter-spacing: .14em;
  padding: 15px var(--s10); border-radius: 999px; border: 1px solid transparent;
  transition: background .2s, color .2s;
}
.btn-primary { background: var(--moss); color: #fff; }
.btn-primary:hover { background: var(--moss-deep); }
.btn-line { background: #06c755; color: #fff; }
.btn-line:hover { filter: brightness(.93); }
.btn-ghost { border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--ivory); }
.btn-ghost-light { border-color: rgba(239,232,221,.5); color: #efe8dd; }
.btn-ghost-light:hover { background: #efe8dd; color: var(--sumi); }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--s3); }
.btn-row.center { justify-content: center; }

/* ---------- カード・グリッド ---------- */
.grid { display: grid; gap: var(--s8); }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: repeat(2, 1fr); gap: var(--s4); }
@media (min-width: 700px) {
  .grid-2 { grid-template-columns: 1fr 1fr; gap: var(--s12); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); gap: var(--s5); }
}
.card { background: var(--paper); border: 1px solid var(--line); padding: var(--s6); }
.card h3 { font-size: 1rem; letter-spacing: .14em; }
.card p { margin-top: var(--s3); font-size: .88rem; color: var(--ink-muted); }

.figure img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.figure figcaption {
  margin-top: var(--s3); font-size: .78rem; letter-spacing: .1em; color: var(--ink-muted);
}
.figure .tag {
  display: inline-block; font-size: .66rem; letter-spacing: .16em;
  color: var(--moss-deep); border: 1px solid var(--moss); border-radius: 999px;
  padding: 1px 10px; margin-right: var(--s2);
}

/* ---------- 料金表 ---------- */
.pricelist { border-top: 1px solid var(--line); }
.pricelist li {
  list-style: none; display: flex; align-items: baseline; gap: var(--s4);
  padding: var(--s3) 0; border-bottom: 1px solid var(--line);
}
.pricelist .name { flex: 1 1 auto; font-size: .92rem; }
.pricelist .name small { display: block; color: var(--ink-faint); font-size: .74rem; letter-spacing: .06em; }
.pricelist .price {
  flex: 0 0 auto; font-family: var(--serif); font-size: 1.15rem;
  letter-spacing: .04em; white-space: nowrap;
}
.pricelist .price span { font-size: .7rem; font-family: var(--sans); color: var(--ink-faint); }

.note {
  margin-top: var(--s6); font-size: .78rem; color: var(--ink-faint);
  line-height: 1.9; letter-spacing: .04em;
}
.note li { list-style: none; padding-left: 1.1em; text-indent: -1.1em; }
.note li::before { content: "※ "; }

/* ---------- 定義リスト（店舗情報） ---------- */
.deflist { border-top: 1px solid var(--line); }
.deflist > div {
  display: grid; grid-template-columns: 1fr; gap: 2px;
  padding: var(--s4) 0; border-bottom: 1px solid var(--line);
}
@media (min-width: 640px) {
  .deflist > div { grid-template-columns: 8.5em 1fr; gap: var(--s4); }
}
.deflist dt { font-size: .78rem; letter-spacing: .16em; color: var(--ink-faint); }
.deflist dd { margin: 0; font-size: .9rem; }

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; padding: var(--s4) var(--s8) var(--s4) var(--s6);
  font-size: .92rem; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::before {
  content: "Q"; position: absolute; left: 0; font-family: var(--serif);
  color: var(--gold); font-size: 1rem;
}
.faq summary::after {
  content: "＋"; position: absolute; right: 0; color: var(--ink-faint); font-size: .85rem;
}
.faq details[open] summary::after { content: "－"; }
.faq .a {
  padding: 0 var(--s2) var(--s5) var(--s6); font-size: .87rem; color: var(--ink-muted);
  position: relative;
}
.faq .a::before {
  content: "A"; position: absolute; left: 0; font-family: var(--serif); color: var(--moss);
}

/* ---------- ステップ ---------- */
.steps { counter-reset: step; }
.steps li {
  list-style: none; position: relative; padding: 0 0 var(--s8) var(--s12);
  border-left: 1px solid var(--line); margin-left: 14px;
}
.steps li:last-child { border-left-color: transparent; padding-bottom: 0; }
.steps li::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; left: -14px; top: -2px; width: 28px; height: 28px;
  background: var(--moss); color: #fff; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--serif); font-size: .8rem;
}
.steps h3 { font-size: .98rem; }
.steps p { margin-top: var(--s2); font-size: .87rem; color: var(--ink-muted); }

/* ---------- 予約帯 ---------- */
.reserve-band { background: var(--sumi); color: #efe8dd; padding: var(--s16) var(--s5); text-align: center; }
.reserve-band h2 { font-size: clamp(1.2rem, 3vw, 1.5rem); letter-spacing: .2em; }
.reserve-band .tel {
  font-family: var(--serif); font-size: 2rem; letter-spacing: .06em;
  text-decoration: none; display: inline-block; margin-top: var(--s2);
}
.reserve-band .hours { font-size: .78rem; color: #b6ab9d; letter-spacing: .12em; }

/* ---------- フッター ---------- */
.footer { background: #efe9e0; padding: var(--s16) var(--s5) var(--s10); font-size: .82rem; }
.footer-grid { display: grid; gap: var(--s8); max-width: var(--maxw); margin: 0 auto; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; } }
.footer h4 { font-size: .74rem; letter-spacing: .22em; color: var(--ink-faint); margin-bottom: var(--s3); }
.footer ul { list-style: none; }
.footer li { margin-bottom: var(--s2); }
.footer a { text-decoration: none; color: var(--ink-muted); }
.footer a:hover { color: var(--ink); text-decoration: underline; }
.footer .brand .en { font-size: 1.6rem; }
.copyright {
  max-width: var(--maxw); margin: var(--s12) auto 0; padding-top: var(--s5);
  border-top: 1px solid #ded5c9; font-size: .68rem; color: var(--ink-faint);
  letter-spacing: .1em; text-align: center;
}

/* ---------- モバイル固定予約バー ---------- */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  background: rgba(43,38,33,.96); backdrop-filter: blur(6px);
}
.mobile-cta a {
  text-decoration: none; color: #f2ece2; text-align: center;
  padding: 11px 4px 12px; font-size: .68rem; letter-spacing: .1em;
  border-left: 1px solid rgba(255,255,255,.12);
}
.mobile-cta a:first-child { border-left: none; }
.mobile-cta a b { display: block; font-size: .82rem; font-weight: 500; margin-bottom: 1px; }
.mobile-cta a.line { background: #06c755; color: #fff; }
@media (min-width: 900px) { .mobile-cta { display: none; } }
@media (max-width: 899px) { body { padding-bottom: 58px; } }

/* ---------- 表示アニメーション ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- 営業状況バッジ ---------- */
.status {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .74rem; letter-spacing: .12em; color: var(--ink-muted);
}
.status .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--ink-faint); }
.status.open .dot { background: #3fa45b; }
.status.closed .dot { background: #c07a5a; }
