/* ── Within 共通スタイル（全ページ） ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #FAF8F4;          /* 生成り */
  --bg-sub: #F2EEE7;      /* 一段深い生成り（セクション交互用） */
  --text: #3D3A36;        /* やわらかい墨色 */
  --heading: #2E2B28;     /* 見出し */
  --muted: #7C766C;       /* 補助文字（ラベル・注記） */
  --accent: #6B7F6E;      /* くすんだ緑：リンク・ボタンなど点で使う */
  --accent-deep: #566A59;
  --line: #E0DBD2;        /* 区切り線（グレージュ） */
  --font-serif: 'Cormorant Garamond', 'Noto Serif JP', Georgia, 'Hiragino Mincho ProN', serif;
  --font-sans: 'Jost', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Hiragino Sans', sans-serif;
  --nav-h: 56px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
  /* Cormorant Garamond は既定がオールドスタイル数字のため、
     住所・電話番号・価格が読みにくくなる。ライニング数字に固定する。 */
  font-variant-numeric: lining-nums;
  font-feature-settings: "lnum" 1, "palt" 1;
}

a { color: inherit; text-decoration: none; }
/* width/height 属性は CLS 防止のため必ず入れるが、
   高さは CSS 側（aspect-ratio）に決めさせる */
img { max-width: 100%; height: auto; }

/* ── 共通パーツ ── */
.section-label {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}

.section-title {
  font-size: clamp(20px, 5.2vw, 28px);
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.08em;
  color: var(--heading);
  margin-bottom: 28px;
}

.lead {
  font-size: clamp(15px, 4vw, 17px);
  line-height: 2.2;
  letter-spacing: 0.06em;
}

.note {
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 2;
  letter-spacing: 0.04em;
  color: var(--muted);
}

/* テキストリンク：緑は点で */
.link {
  color: var(--accent);
  border-bottom: 0.5px solid currentColor;
  padding-bottom: 1px;
  transition: color 0.2s;
}
.link:hover { color: var(--accent-deep); }

/* ボタン：面で塗らず、細い枠で */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--accent);
  border: 0.5px solid var(--accent);
  padding: 15px 30px;
  min-height: 44px;
  transition: color 0.25s, border-color 0.25s;
}
.btn:hover { color: var(--accent-deep); border-color: var(--accent-deep); }

.divider { width: 32px; height: 0.5px; background: var(--line); margin: 48px 0; }

/* 全ページ共通の内側幅。page-hero と各セクションで左端を揃える */
.inner { max-width: 1080px; margin: 0 auto; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: var(--nav-h);
  background: var(--bg);
  border-bottom: 0.5px solid var(--line);
}

.nav-logo img { height: 26px; width: auto; display: block; }

.nav-links {
  display: none;
  gap: 26px;
  list-style: none;
}

@media (min-width: 768px) {
  nav { padding: 0 32px; }
  .nav-links { display: flex; }
  .hamburger { display: none !important; }
}

.nav-links a {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--text);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a.is-shop { color: var(--accent-deep); }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  min-width: 44px;
  min-height: 44px;
  margin-right: -10px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--heading);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), opacity 0.3s;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  font-size: 18px;
  letter-spacing: 0.14em;
  color: var(--heading);
}
.mobile-menu a.store-link {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--accent);
  border: 0.5px solid var(--accent);
  padding: 14px 30px;
  margin-top: 6px;
}

/* ── PAGE HERO（下層ページ共通） ── */
.page-hero {
  margin-top: var(--nav-h);
  padding: 72px 20px 48px;
  border-bottom: 0.5px solid var(--line);
}
.page-hero-tag {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}
.page-hero-title {
  font-size: clamp(26px, 7vw, 38px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: var(--heading);
}
.page-hero-text {
  margin-top: 22px;
  max-width: 620px;
  line-height: 2.2;
}

@media (min-width: 768px) {
  .page-hero { padding: 96px 32px 64px; }
}

/* ── FOOTER ── */
footer {
  background: var(--bg);
  border-top: 0.5px solid var(--line);
  padding: 56px 20px 32px;
}
.footer-logo img { height: 24px; width: auto; display: block; margin-bottom: 36px; }

.footer-about {
  max-width: 620px;
  margin-bottom: 44px;
}
.footer-about-title {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--muted);
  margin-bottom: 14px;
}
.footer-about p {
  font-size: 13px;
  line-height: 2.15;
  letter-spacing: 0.05em;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-top: 36px;
  border-top: 0.5px solid var(--line);
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  footer { padding: 72px 32px 32px; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 40px; }
}
.footer-col-title {
  font-family: var(--font-sans);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 2.1;
  color: var(--text);
}
.footer-col a:hover { color: var(--accent); }
/* 小さい文字の緑は #6B7F6E だと背景とのコントラストが不足するため
   一段深い #566A59 を使う（面としての印象は変えない） */
.footer-col a.is-shop {
  display: inline-block;
  color: var(--accent-deep);
  border-bottom: 0.5px solid currentColor;
}

.footer-bottom {
  border-top: 0.5px solid var(--line);
  padding-top: 20px;
}
.footer-copyright {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--muted);
}

/* ── スクロールに応じたフェードイン ── */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.9s cubic-bezier(0.16,1,0.3,1), transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── アニメーションを好まない設定への配慮 ── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .fade-in { opacity: 1; transform: none; }
}
