@charset "utf-8";
/* =========================
   Aoi-sha / common style.css
   ========================= */
/* ===== Design Tokens ===== */ :root {
  /* Color */
  --bg-base: #faf8f5;
  --bg-card: #ffffff;
  --text-main: #1a1a1a;
  --text-sub: rgba(26, 26, 26, 0.85);
  --text-muted: rgba(26, 26, 26, 0.7);
  --border-soft: rgba(0, 0, 0, 0.06);
  --accent-dark: #4a372f;
  --accent-on: #ffffff;
  --accent-hover: #5a463d; /* hoverで“ほんのり” */
  /* Radius */
  --radius-xs: 10px;
  --radius-sm: 14px;
  --radius-md: 18px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  /* Shadow */
  --shadow-soft: 0 8px 18px rgba(0, 0, 0, 0.04);
  --shadow-hover: 0 12px 24px rgba(0, 0, 0, 0.08);
  --shadow-hero: 0 10px 28px rgba(0, 0, 0, 0.12);
  /* Spacing */
  --gap-grid: 16px;
  /* Focus */
  --focus-ring: 3px solid rgba(42, 42, 42, 0.25);
  --focus-offset: 3px;
  /* ===== Section spacing ===== */
  --section-pad-lg: 72px; /* 通常セクション */
  --section-pad-md: 56px; /* ページ系（news/menu/contact） */
  --section-pad-sm: 40px; /* 余白を抑えたい箇所 */
  /* SP */
  --section-pad-lg-sp: 56px;
  --section-pad-md-sp: 44px;
  --section-pad-sm-sp: 32px;
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg-base: #1b1b1b;
    --bg-card: #242424;
    --text-main: #f0f0f0;
    --border-soft: rgba(255, 255, 255, 0.08);
  }
}
/* ===== Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding-top: var(--header-h);
  font-family: "Noto Sans JP", system-ui, -apple-system, "Segoe UI", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  line-height: 1.7;
  background: var(--bg-base);
  color: var(--text-main);
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
/* ===== Layout ===== */
.container {
  width: min(1100px, 100% - 32px);
  margin-inline: auto;
}
/* ===== Section (common) ===== */
section {
  padding-top: var(--section-pad-lg);
  padding-bottom: var(--section-pad-lg);
}
/* ページ本文用（news / menu / contact） */
.section--page {
  padding-top: var(--section-pad-md);
  padding-bottom: var(--section-pad-md);
}
/* 余白を少し詰めたいセクション */
.section--compact {
  padding-top: var(--section-pad-sm);
  padding-bottom: var(--section-pad-sm);
}
/* ===== Page Header (common component) ===== */
.page-header {
  padding-top: 44px;
  padding-bottom: 18px;
}
.page-header__title {
  margin: 0 0 12px;
  font-size: clamp(28px, 3.6vw, 40px);
  font-family: "Playfair Display", "Noto Sans JP", serif;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.page-header__lead {
  margin: 0;
  max-width: 62ch;
  color: var(--text-sub);
}
/* ===== Typography (common) ===== */
.section-title {
  margin: 0 0 24px;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: 0.02em;
  font-family: "Playfair Display", "Noto Sans JP", serif;
  font-weight: 600;
}
/* ===== Section header row ===== */
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.section-link {
  font-size: 14px;
  opacity: 0.85;
  border-bottom: 1px solid currentColor;
}
.section-link:hover {
  opacity: 1;
}
/* ===== Buttons (common) ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  min-height: 44px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: transform 0.12s ease, opacity 0.12s ease, background 0.12s ease, border-color 0.12s ease;
}
.btn:hover {
  transform: translateY(-1px);
}
.btn--primary {
  background: var(--accent-dark);
  color: var(--accent-on);
}
.btn--primary:hover {
  background: var(--accent-hover);
}
.btn--secondary {
  background: var(--bg-card);
  border-color: #dddddd;
}
.btn--ghost {
  background: transparent;
  border-color: var(--accent-dark);
}
.btn--ghost:hover {
  background: rgba(59, 47, 42, 0.05);
}
/* focus */
.site-nav__item a:focus-visible, .site-cta:focus-visible, .btn:focus-visible {
  outline: var(--focus-ring);
  outline-offset: var(--focus-offset);
}
/* ===== Header (common) ===== */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(250, 248, 245, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
  z-index: 10;
}
.site-header .container {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
}
.site-logo {
  font-family: "Playfair Display", "Noto Sans JP", serif;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.site-nav__list {
  list-style: none;
  display: flex;
  gap: 18px;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.site-nav__item a {
  opacity: 0.85;
}
.site-nav__item a:hover {
  opacity: 1;
}
.site-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  background: var(--bg-card);
  border: 1px solid #dddddd;
  font-weight: 700;
  font-size: 14px;
}
/* ===== Image frame (common) ===== */
.image-frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
}
.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: contrast(0.98) saturate(0.95);
}
/* ===== Common surface (cards/boxes) ===== */
.feature-card, .menu-card, .shop-info__list {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}
/* ===== Footer (common) ===== */
.site-footer {
  padding: 40px 0;
  border-top: 1px solid var(--border-soft);
}
.footer-nav__list {
  list-style: none;
  display: flex;
  gap: 16px;
  padding: 0;
  margin: 0 0 14px;
  flex-wrap: wrap;
  font-size: 14px;
  opacity: 0.9;
}
.footer-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0.85;
}
/* =========================
   Header fixed
   ========================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 248, 244, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.site-header a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}
:root {
  --header-h: 72px; /* 実際の高さに合わせて調整 */
}
/* =========================
   Anchor offset for fixed header
   ========================= */
/* “ヘッダー高さ”がズレると全部ズレるので、まずここを統一 */ :root {
  --header-h: 72px; /* 実際のヘッダー高さに合わせる */
  --anchor-gap: 6px; /* 見出しの上に少し余白を残す */
}
/* ① scroll-margin：ページ内リンクで、目的地がヘッダーに隠れない */
section[id], [id] {
  scroll-margin-top: calc(var(--header-h) + var(--anchor-gap));
}
/* ② 念のため：ブラウザによっては scroll-padding の方が効くケースもある */
html {
  scroll-padding-top: calc(var(--header-h) + var(--anchor-gap));
}
/* ===== Responsive (common) ===== */
@media (max-width: 900px) {
  .site-header .container {
    grid-template-columns: 1fr;
    justify-items: start;
  }
  .site-nav__list {
    flex-wrap: wrap;
    gap: 12px 14px;
  }
}
@media (max-width: 520px) {
  section {
    padding-top: var(--section-pad-lg-sp);
    padding-bottom: var(--section-pad-lg-sp);
  }
  .section--page {
    padding-top: var(--section-pad-md-sp);
    padding-bottom: var(--section-pad-md-sp);
  }
  .section--compact {
    padding-top: var(--section-pad-sm-sp);
    padding-bottom: var(--section-pad-sm-sp);
  }
}