*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --green-deep:   #1C3027;
  --green-mid:    #2D4B3C;
  --green-light:  #4A7055;
  --wood-dark:    #6B4F30;
  --wood-mid:     #8B6F47;
  --wood-light:   #B89B6E;
  --cream-bg:     #F7F2EA;
  --cream-alt:    #EFE9DF;
  --cream-dark:   #E0D8CC;
  --gold:         #B8894A;
  --text-dark:    #201A12;
  --text-mid:     #5C5044;
  --text-muted:   #8A7E72;
  --white:        #FFFFFF;
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; font-size: 112%; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  background: var(--cream-bg);
  color: var(--text-dark);
  line-height: 1.8;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }

/* ── NAV OVERLAY (mobile only) ───────────── */
.nav-overlay {
  position: fixed; inset: 0; z-index: 90;
  background: var(--green-deep);
  display: flex; align-items: center; justify-content: center;
  clip-path: circle(0% at calc(100% - 44px) 44px);
  transition: clip-path 0.7s cubic-bezier(0.76, 0, 0.24, 1);
  pointer-events: none;
}
.nav-overlay.open {
  clip-path: circle(180% at calc(100% - 44px) 44px);
  pointer-events: all;
}
.overlay-menu {
  display: flex; flex-direction: column;
  align-items: center; gap: 8px;
  text-align: center;
}
.overlay-link {
  font-family: 'Noto Serif JP', serif; font-weight: 200;
  font-size: clamp(1.8rem, 4.5vw, 3.4rem);
  color: rgba(255,255,255,0.72);
  text-decoration: none; letter-spacing: 0.08em;
  display: block; padding: 10px 40px;
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.45s ease, color 0.3s ease;
  position: relative;
}
.overlay-link::before {
  content: '';
  position: absolute;
  left: 40px; bottom: 6px;
  width: calc(100% - 80px);
  height: 1px;
  background: rgba(255,255,255,0.4);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.overlay-link::after {
  content: attr(data-en);
  display: block;
  font-family: 'Noto Sans JP', sans-serif; font-size: 0.38em;
  letter-spacing: 0.38em; color: rgba(255,255,255,0.28);
  margin-top: 2px;
}
.overlay-link:hover { color: var(--white); }
.overlay-link:hover::before { transform: scaleX(1); }
.nav-overlay.open .overlay-link:nth-child(1) { opacity:1; transform:none; transition-delay:0.28s; }
.nav-overlay.open .overlay-link:nth-child(2) { opacity:1; transform:none; transition-delay:0.36s; }
.nav-overlay.open .overlay-link:nth-child(3) { opacity:1; transform:none; transition-delay:0.44s; }
.nav-overlay.open .overlay-link:nth-child(4) { opacity:1; transform:none; transition-delay:0.52s; }
.nav-overlay.open .overlay-link:nth-child(5) { opacity:1; transform:none; transition-delay:0.60s; }
.nav-overlay.open .overlay-link:hover { transform: translateX(8px); }

/* ── NAV ─────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; padding: 0 48px;
  background: var(--cream-bg);
  transition: background 0.4s ease, box-shadow 0.3s ease;
  border-bottom: 1px solid var(--cream-dark);
}
.nav.scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}

/* ── HERO NAV (index.html only) ──────────── */
body.has-hero .nav {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  transition: none !important;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
}
body.has-hero .nav.scrolled {
  background: var(--cream-bg) !important;
  border-bottom: 1px solid var(--cream-dark) !important;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: background 0.4s ease, box-shadow 0.3s ease !important;
}

body.has-hero .nav .nav-logo { color: rgba(255,255,255,0.95); }
body.has-hero .nav .nav-logo small { color: rgba(255,255,255,0.55); }
body.has-hero .nav .nav-tab { color: rgba(255,255,255,0.78); }
body.has-hero .nav .nav-tab:hover { background: rgba(255,255,255,0.12); color: var(--white); }
body.has-hero .nav .nav-tab.active { background: rgba(255,255,255,0.18); color: var(--white); }
body.has-hero .nav .hamburger span { background: rgba(255,255,255,0.88); }
body.has-hero .nav.scrolled {
  background: var(--cream-bg);
  border-bottom: 1px solid var(--cream-dark);
}
body.has-hero .nav.scrolled .nav-logo { color: var(--green-deep); }
body.has-hero .nav.scrolled .nav-logo small { color: var(--text-muted); }
body.has-hero .nav.scrolled .nav-tab { color: var(--text-mid); }
body.has-hero .nav.scrolled .nav-tab:hover { background: rgba(29,48,39,0.07); color: var(--green-deep); }
body.has-hero .nav.scrolled .nav-tab.active { background: var(--green-deep); color: var(--white); }
body.has-hero .nav.scrolled .hamburger span { background: var(--green-deep); }
.nav-logo {
  font-family: 'Noto Serif JP', serif; font-weight: 300;
  font-size: 0.95rem; letter-spacing: 0.18em;
  color: var(--green-deep); text-decoration: none;
  line-height: 1.4; flex-shrink: 0;
}
.nav-logo small {
  display: block; font-size: 0.58rem; letter-spacing: 0.38em;
  color: var(--text-muted); margin-top: 2px;
}

/* ── NAV TABS (desktop) ───────────────────── */
.nav-tabs {
  display: flex; list-style: none;
  gap: 3px; align-items: center;
}
.nav-tab {
  display: block;
  font-family: 'Noto Sans JP', sans-serif; font-weight: 300;
  font-size: 0.76rem; letter-spacing: 0.12em;
  color: var(--text-mid);
  text-decoration: none;
  padding: 9px 18px;
  border-radius: 2px;
  white-space: nowrap;
  transition: background 0.22s ease, color 0.22s ease;
}
.nav-tab:hover {
  background: rgba(29, 48, 39, 0.07);
  color: var(--green-deep);
}
.nav-tab.active {
  background: var(--green-deep);
  color: var(--white);
  font-weight: 400;
}

/* ── HAMBURGER (mobile only) ─────────────── */
.hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 8px; z-index: 110;
  flex-direction: column; gap: 6px;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--green-deep);
  transition: all 0.45s var(--ease);
  transform-origin: center center;
}
.hamburger.open span { background: rgba(255,255,255,0.85) !important; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── PAGE TOP SPACER (inner pages) ──────── */
.page-top { height: 72px; }

/* ── HERO ────────────────────────────────── */
.hero {
  position: relative; height: 100vh; min-height: 680px;
  padding-top: 72px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: #070d09;
}
.hero-slide {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.07);
  transition: opacity 2s ease, transform 9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to right, rgba(6,12,8,0.42) 0%, rgba(6,12,8,0.22) 38%, rgba(6,12,8,0.08) 72%, rgba(6,12,8,0.02) 100%),
    linear-gradient(to top, rgba(6,12,8,0.30) 0%, transparent 36%);
}

/* Vertical text — right side (Japanese) */
.hero-tate {
  position: absolute;
  right: clamp(36px, 5.5vw, 76px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
  opacity: 0;
  animation: fadeIn 1.4s ease 0.8s forwards;
}
.hero-tate-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.22), transparent);
}
.hero-tate-main {
  writing-mode: vertical-rl;
  font-family: 'Noto Serif JP', serif; font-weight: 200;
  font-size: 1.5rem; letter-spacing: 0.35em;
  color: rgba(255,255,255,0.50);
  line-height: 2.2;
}

/* Vertical text — bottom-left (brand name) */
.hero-name {
  position: absolute;
  left: clamp(36px, 5.5vw, 76px);
  bottom: 56px;
  z-index: 3;
  writing-mode: vertical-rl;
  font-family: 'Noto Serif JP', serif; font-weight: 200;
  font-size: 1.6rem; letter-spacing: 0.42em;
  color: rgba(255,255,255,0.42);
  opacity: 0;
  animation: fadeIn 1.4s ease 1s forwards;
}

/* Main content (left-aligned) */
.hero-content {
  position: relative; z-index: 3;
  padding: 0 60px 0 clamp(56px, 9vw, 136px);
  max-width: 680px;
}
.hero-eyebrow {
  font-size: 0.58rem; letter-spacing: 0.52em;
  color: var(--gold); font-weight: 400;
  margin-bottom: 32px;
  opacity: 0; animation: fadeUp 0.9s var(--ease) 0.35s forwards;
}
.hero-title-ja {
  font-family: 'Noto Serif JP', serif; font-weight: 200;
  font-size: clamp(3.8rem, 9.5vw, 8.2rem);
  color: var(--white); letter-spacing: 0.06em; line-height: 1.18;
  margin-bottom: 18px;
  opacity: 0; animation: fadeUp 1s var(--ease) 0.55s forwards;
}
.hero-title-en {
  font-family: 'Noto Serif JP', serif; font-weight: 200;
  font-size: clamp(0.8rem, 1.4vw, 1rem);
  color: rgba(255,255,255,0.36); letter-spacing: 0.5em;
  margin-bottom: 40px;
  opacity: 0; animation: fadeUp 1s var(--ease) 0.75s forwards;
}
.hero-rule {
  width: 28px; height: 1px;
  background: rgba(255,255,255,0.22);
  margin-bottom: 24px;
  opacity: 0; animation: fadeUp 1s var(--ease) 0.88s forwards;
}
.hero-tagline {
  font-weight: 300; font-size: clamp(0.78rem, 1.1vw, 0.88rem);
  color: rgba(255,255,255,0.50); letter-spacing: 0.14em; line-height: 2.4;
  margin-bottom: 52px;
  opacity: 0; animation: fadeUp 1s var(--ease) 1s forwards;
}
.hero-link {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 0.62rem; letter-spacing: 0.42em;
  color: rgba(255,255,255,0.62); text-decoration: none;
  transition: color 0.35s ease, gap 0.35s var(--ease);
  opacity: 0; animation: fadeUp 1s var(--ease) 1.15s forwards;
}
.hero-link-line {
  display: block; width: 40px; height: 1px;
  background: rgba(255,255,255,0.38);
  transition: width 0.4s var(--ease), background 0.35s ease;
}
.hero-link:hover { color: rgba(255,255,255,0.95); gap: 22px; }
.hero-link:hover .hero-link-line { width: 58px; background: rgba(255,255,255,0.68); }

/* Slide counter (right, bottom) */
.hero-counter {
  position: absolute;
  right: clamp(36px, 5.5vw, 76px);
  bottom: 52px; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  opacity: 0; animation: fadeIn 1s ease 1.6s forwards;
}
.hero-counter-current,
.hero-counter-total {
  font-family: 'Noto Serif JP', serif; font-weight: 200;
  font-size: 0.6rem; letter-spacing: 0.2em;
  color: rgba(255,255,255,0.42);
}
.hero-counter-track {
  width: 1px; height: 44px;
  background: rgba(255,255,255,0.14);
  position: relative; overflow: hidden;
}
.hero-counter-prog {
  position: absolute; top: 0; left: 0; right: 0;
  height: 0%;
  background: rgba(255,255,255,0.52);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 44px; left: 50%;
  transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  opacity: 0; animation: fadeIn 1s ease 1.8s forwards;
}
.hero-scroll span { font-size: 0.54rem; letter-spacing: 0.52em; color: rgba(255,255,255,0.28); }
.scroll-bar {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

/* ── SECTION UTILITIES ───────────────────── */
.sec { padding: 120px 60px; }
.sec-inner { max-width: 1080px; margin: 0 auto; }
.sec-label { display: block; font-size: 0.62rem; letter-spacing: 0.45em; color: var(--gold); font-weight: 400; margin-bottom: 18px; }
.sec-title { font-family: 'Noto Serif JP', serif; font-weight: 300; font-size: clamp(1.7rem, 3.5vw, 2.7rem); color: var(--green-deep); letter-spacing: 0.05em; line-height: 1.35; margin-bottom: 12px; }
.sec-sub { font-size: 0.78rem; letter-spacing: 0.28em; color: var(--text-muted); margin-bottom: 56px; }
.sec-divider { width: 36px; height: 1px; background: var(--gold); margin: 28px 0; }
.divider-c { width: 36px; height: 1px; background: var(--gold); margin: 0 auto 48px; }

/* ── INTRO / ABOUT ───────────────────────── */
.intro { background: var(--cream-bg); padding: 140px 60px; text-align: center; }
.intro-inner { max-width: 680px; margin: 0 auto; }
.intro-quote { font-family: 'Noto Serif JP', serif; font-weight: 200; font-size: clamp(1.35rem, 2.8vw, 1.9rem); color: var(--green-deep); letter-spacing: 0.1em; line-height: 1.9; margin-bottom: 48px; }
.intro-text { font-size: 0.88rem; color: var(--text-mid); line-height: 2.3; letter-spacing: 0.04em; }

/* ── CONCEPT ─────────────────────────────── */
.concept { background: var(--cream-bg); }
.concept-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: center; }
.concept-text p { font-size: 0.88rem; color: var(--text-mid); line-height: 2.3; margin-bottom: 20px; }
.concept-visual { position: relative; height: 520px; }
.cv-main { position: absolute; right: 0; top: 0; width: 80%; height: 75%; overflow: hidden; background: #2D4B3C; }
.cv-accent { position: absolute; left: 0; bottom: 0; width: 50%; height: 42%; overflow: hidden; background: #8B6F47; }
.cv-photo { width: 100%; height: 100%; object-fit: contain; display: block; }
.cv-dots { position: absolute; right: 80%; bottom: 42%; width: 64px; height: 64px; background-image: radial-gradient(circle, var(--wood-light) 1.2px, transparent 1.2px); background-size: 9px 9px; opacity: 0.35; }
.cv-caption { position: absolute; left: 52%; bottom: 16px; font-family: 'Noto Serif JP', serif; font-weight: 200; font-size: 0.65rem; letter-spacing: 0.5em; color: var(--text-muted); white-space: nowrap; }

/* ── VALUES ──────────────────────────────── */
.values { background: var(--green-deep); padding: 110px 60px; }
.values .sec-title { color: var(--white); }
.values .sec-sub { color: rgba(255,255,255,0.3); }
.values-head { text-align: center; margin-bottom: 80px; }
.values-head .sec-label { text-align: center; }
.values-head .divider-c { margin-top: 28px; }
.values-grid { display: grid; grid-template-columns: 1fr 1px 1fr 1px 1fr; }
.value-sep { background: rgba(255,255,255,0.08); }
.value-item { text-align: center; padding: 0 40px; }
.value-num { display: block; font-family: 'Noto Serif JP', serif; font-weight: 200; font-size: 0.65rem; letter-spacing: 0.38em; color: var(--gold); margin-bottom: 28px; }
.value-icon { width: 52px; height: 52px; margin: 0 auto 28px; border: 1px solid rgba(255,255,255,0.14); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.value-icon svg { width: 22px; height: 22px; stroke: rgba(255,255,255,0.45); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.value-title { font-family: 'Noto Serif JP', serif; font-weight: 300; font-size: 1.05rem; color: var(--white); letter-spacing: 0.1em; margin-bottom: 6px; }
.value-title-en { font-size: 0.62rem; letter-spacing: 0.28em; color: rgba(255,255,255,0.28); margin-bottom: 24px; }
.value-desc { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 2.1; }

/* ── KODAWARI ────────────────────────────── */
.kodawari { background: var(--cream-alt); }
.kodawari-item {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0; margin-bottom: 4px;
  min-height: 480px;
}
.kodawari-item.reverse { direction: rtl; }
.kodawari-item.reverse > * { direction: ltr; }
.kodawari-img { overflow: hidden; }
.kodawari-photo { width: 100%; height: auto; display: block; transition: transform 0.9s var(--ease); }
.kodawari-item:hover .kodawari-photo { transform: scale(1.04); }
.kodawari-body {
  padding: 72px 64px;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--cream-bg);
}
.kodawari-tag { font-size: 0.62rem; letter-spacing: 0.42em; color: var(--gold); font-weight: 400; margin-bottom: 20px; }
.kodawari-title { font-family: 'Noto Serif JP', serif; font-weight: 300; font-size: clamp(1.5rem, 2.8vw, 2.2rem); color: var(--green-deep); letter-spacing: 0.05em; line-height: 1.3; margin-bottom: 12px; }
.kodawari-title-en { font-size: 0.72rem; letter-spacing: 0.28em; color: var(--text-muted); margin-bottom: 28px; }
.kodawari-divider { width: 32px; height: 1px; background: var(--gold); margin-bottom: 28px; }
.kodawari-text { font-size: 0.87rem; color: var(--text-mid); line-height: 2.25; }

/* ── MENU ────────────────────────────────── */
.menu { background: var(--cream-bg); }
.menu-inner { max-width: 1080px; margin: 0 auto; }
.menu-cat-section { margin-bottom: 72px; }
.menu-cat-title {
  font-family: 'Noto Serif JP', serif; font-weight: 300;
  font-size: 1rem; color: var(--green-deep);
  letter-spacing: 0.14em;
  padding-bottom: 20px; border-bottom: 1px solid var(--green-deep);
  margin-bottom: 28px;
}
.menu-card-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.menu-card { background: var(--white); overflow: hidden; }
.menu-card-img-wrap { aspect-ratio: 1402/1122; background: var(--cream-alt); overflow: hidden; }
.menu-card-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.menu-card-img-wrap.zoom .menu-card-img { transform: scale(1.35); }
.menu-card-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(148deg, #1A3822 0%, #2A5535 50%, #4A8058 100%);
}
.menu-card-body {
  padding: 14px 18px 16px;
  border-top: 1px solid var(--cream-dark);
  display: flex; justify-content: space-between; align-items: baseline; gap: 8px;
}
.menu-card-name { font-size: 0.88rem; color: var(--text-dark); letter-spacing: 0.03em; }
.menu-card-name small { font-size: 0.68rem; color: var(--text-muted); display: block; margin-top: 2px; }
.menu-card-price {
  font-family: 'Noto Serif JP', serif; font-weight: 400;
  font-size: 0.95rem; color: var(--green-mid); flex-shrink: 0;
}
.menu-note { text-align: center; font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.08em; margin-top: 48px; }

/* ── GALLERY ─────────────────────────────── */
.gallery { background: var(--cream-alt); }
.gallery-head { padding: 120px 60px 52px; }
.gallery-cat-label { font-size: 0.68rem; letter-spacing: 0.42em; color: var(--text-muted); padding: 32px 60px 16px; display: flex; align-items: center; gap: 20px; }
.gallery-cat-label::after { content: ''; flex: 1; height: 1px; background: var(--cream-dark); }

/* 店外 1枚: full width */
.gallery-ext { }

/* 店内 4枚: 2×2 grid */
.gallery-int { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.gallery-int .gi { aspect-ratio: 4/3; }
.gallery-int .gi-photo { height: 100%; object-fit: cover; }

/* 商品: 4列 */
.gallery-prod { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3px; align-items: start; }

.gi { overflow: hidden; position: relative; }
.gi-photo { width: 100%; height: auto; display: block; }
.gallery-prod .gi { aspect-ratio: 1402/1122; }
.gallery-prod .gi-photo { height: 100%; object-fit: cover; }

.g-e1 { background: linear-gradient(158deg, #2A3E2A 0%, #3E6048 40%, #628A68 70%, #94B898 100%); }
.g-e2 { background: linear-gradient(145deg, #4A3218 0%, #7A5232 45%, #A87C55 75%, #C8A880 100%); }
.g-i1 { background: linear-gradient(155deg, #201808 0%, #4A3220 45%, #6A5038 75%, #988070 100%); }
.g-i2 { background: linear-gradient(148deg, #1E3028 0%, #304A3C 45%, #4A7058 75%, #80A090 100%); }
.g-i3 { background: linear-gradient(162deg, #382A18 0%, #5A4230 50%, #7A6250 80%, #B0988A 100%); }
.g-i4 { background: linear-gradient(142deg, #182820 0%, #2A4038 50%, #486858 80%, #7AA090 100%); }
.g-p1  { background: linear-gradient(148deg, #2A1810 0%, #5A3820 45%, #8A6848 100%); }
.g-p2  { background: linear-gradient(148deg, #6A4038 0%, #9A6858 50%, #C8A898 100%); }
.g-p3  { background: linear-gradient(148deg, #2A5038 0%, #4A7055 50%, #80A888 100%); }
.g-p4  { background: linear-gradient(148deg, #3A5A38 0%, #5A7A55 50%, #88A880 100%); }
.g-p5  { background: linear-gradient(148deg, #7A7838 0%, #A8A058 55%, #D0C880 100%); }
.g-p6  { background: linear-gradient(148deg, #885878 0%, #A87898 55%, #C8B0B8 100%); }
.g-p7  { background: linear-gradient(148deg, #786048 0%, #A08870 55%, #C8B0A0 100%); }
.g-p8  { background: linear-gradient(148deg, #201808 0%, #402818 50%, #685040 100%); }
.g-p9  { background: linear-gradient(148deg, #1A3A22 0%, #2A5A38 50%, #508858 100%); }
.g-p10 { background: linear-gradient(148deg, #384A44 0%, #58706A 50%, #90A8A4 100%); }
.g-p11 { background: linear-gradient(148deg, #785840 0%, #987060 55%, #C0A090 100%); }
.g-p12 { background: linear-gradient(148deg, #2A3A22 0%, #4A6038 55%, #7A9870 100%); }

.gallery-caption { padding: 60px 60px 100px; text-align: center; }
.gallery-caption p { font-family: 'Noto Serif JP', serif; font-weight: 200; font-size: 0.85rem; color: var(--text-muted); letter-spacing: 0.22em; line-height: 2.4; }

/* ── ACCESS ──────────────────────────────── */
.access { background: var(--cream-bg); }
.access-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 88px; align-items: start; }
.access-map { background: linear-gradient(145deg, #CCC8BF 0%, #DAD6CE 50%, #E8E4DC 100%); height: 420px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.map-grid { position: absolute; inset: 0; opacity: 0.15; background-image: linear-gradient(rgba(0,0,0,0.5) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,0.5) 1px, transparent 1px); background-size: 40px 40px; }
.map-pin { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 6px; }
.map-pin-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--green-mid); box-shadow: 0 0 0 4px rgba(45,75,60,0.25); }
.map-pin-label { font-family: 'Noto Serif JP', serif; font-weight: 300; font-size: 0.7rem; letter-spacing: 0.2em; color: var(--green-deep); background: rgba(247,242,234,0.85); padding: 4px 12px; }
.access-rows { padding-top: 8px; }
.access-row { display: flex; gap: 28px; padding: 24px 0; border-bottom: 1px solid var(--cream-dark); }
.access-row:first-child { border-top: 1px solid var(--cream-dark); }
.access-key { font-size: 0.65rem; letter-spacing: 0.28em; color: var(--text-muted); min-width: 68px; padding-top: 2px; }
.access-val { font-size: 0.87rem; color: var(--text-dark); line-height: 1.9; }
.access-val strong { font-weight: 400; }
.access-val small { display: block; font-size: 0.75rem; color: var(--text-muted); margin-top: 2px; }

/* ── FOOTER ──────────────────────────────── */
.footer { background: var(--green-deep); padding: 80px 60px 48px; }
.footer-top { max-width: 1080px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-end; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 36px; }
.footer-logo { font-family: 'Noto Serif JP', serif; font-weight: 200; font-size: 1.2rem; letter-spacing: 0.18em; color: rgba(255,255,255,0.85); }
.footer-logo small { display: block; font-size: 0.58rem; letter-spacing: 0.4em; color: rgba(255,255,255,0.28); margin-top: 7px; }
.footer-right { display: flex; flex-direction: column; align-items: flex-end; gap: 20px; }
.footer-nav { display: flex; gap: 32px; list-style: none; }
.footer-nav a { font-size: 0.7rem; letter-spacing: 0.22em; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.3s; }
.footer-nav a:hover { color: rgba(255,255,255,0.65); }
.footer-social { display: flex; gap: 14px; align-items: center; }
.footer-social-link {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.footer-social-link:hover { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.5); }
.footer-social-link svg { width: 15px; height: 15px; }
.footer-copy { max-width: 1080px; margin: 0 auto; font-size: 0.6rem; letter-spacing: 0.18em; color: rgba(255,255,255,0.18); text-align: center; }

/* ── ANIMATIONS ──────────────────────────── */
@keyframes fadeUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes scrollPulse { 0%,100%{opacity:.25;} 50%{opacity:.7;} }

.js-reveal { opacity:0; transform:translateY(22px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.js-reveal.visible { opacity:1; transform:translateY(0); }
.js-reveal-d1 { transition-delay: 0.1s; }
.js-reveal-d2 { transition-delay: 0.2s; }
.js-reveal-d3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 960px) {
  .sec { padding: 88px 32px; }
  .nav { padding: 0 24px; }
  .nav-tabs { display: none; }
  .hamburger { display: flex; }
  .hero-tate { display: none; }
  .hero-counter { display: none; }
  .hero-content { padding-left: 32px; padding-right: 32px; max-width: 100%; }
  .concept-grid { grid-template-columns: 1fr; gap: 56px; }
  .concept-visual { height: 320px; }
  .values-grid { grid-template-columns: 1fr; }
  .value-sep { display: none; }
  .value-item { padding: 0; border-top: 1px solid rgba(255,255,255,0.07); padding-top: 48px; margin-top: 48px; }
  .value-item:first-child { border-top: none; padding-top: 0; margin-top: 0; }
  .kodawari-item { grid-template-columns: 1fr; min-height: auto; }
  .kodawari-item.reverse { direction: ltr; }
  .kodawari-img { min-height: 260px; }
  .kodawari-body { padding: 48px 32px; }
  .menu-sections { grid-template-columns: 1fr; gap: 56px; }
  .gallery-prod { grid-template-columns: repeat(2, 1fr); }
  .menu-card-grid { grid-template-columns: repeat(2, 1fr); }
  .access-grid { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; gap: 40px; align-items: flex-start; }
  .gallery-head, .gallery-cat-label, .gallery-caption { padding-left: 32px; padding-right: 32px; }
}

@media (max-width: 600px) {
  .sec { padding: 72px 24px; }
  .nav { padding: 20px 24px; }
  .nav.scrolled { padding: 14px 24px; }
  .hero-content { padding-left: 24px; padding-right: 24px; }
  .gallery-ext { grid-template-columns: 1fr; height: auto; }
  .gallery-ext .gi { height: 240px; }
  .gallery-int { grid-template-columns: 1fr; height: auto; }
  .gallery-int .gi { height: 240px; }
  .gallery-prod { grid-template-columns: repeat(2, 1fr); }
  .menu-card-grid { grid-template-columns: 1fr; }
  .gallery-head { padding: 72px 24px 40px; }
  .gallery-cat-label { padding: 28px 24px 12px; }
  .gallery-caption { padding: 48px 24px 72px; }
  .footer { padding: 64px 24px 40px; }
  .overlay-link { font-size: 1.7rem; padding: 8px 24px; }
}
