/*
 Theme Name: SUDACHI
 Theme URI: https://sudachila.com
 Description: SUDACHI Japanese Restaurant — West Hollywood, Los Angeles
 Version: 2.7
 Author: SUDACHI LA
*/

/* ============================================================
   BASE RESET & VARIABLES
   ============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg: #fbf8f3;
  --bg-alt: #f0ebe2;
  --bg-dark: #1c1b19;
  --text: #1a1918;
  --text-mid: #1a1918;
  --text-muted: #2e2c2a;
  --text-faint: #4a4745;
  --border: rgba(26,25,24,0.15);
  --serif: 'Cormorant Garamond', serif;
  --jp: 'Montserrat', sans-serif;
}
html { scroll-behavior: smooth; }
body {
  font-family: var(--jp);
  background-color: var(--bg);
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='400' height='400'><filter id='w'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' seed='6' stitchTiles='stitch'/><feColorMatrix type='matrix' values='0 0 0 0 0.82 0 0 0 0 0.74 0 0 0 0 0.60 0 0 0 0.07 0'/></filter><rect width='400' height='400' filter='url(%23w)'/></svg>");
  background-size: 400px 400px;
  background-attachment: fixed;
  color: var(--text);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ── SITE HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
  z-index: 200;
  transition: background 0.4s, border-color 0.4s;
}
.site-header.scrolled {
  background: rgba(251,248,243,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 0.5px solid rgba(26,25,24,0.1);
}
.site-header-logo {
  font-family: var(--jp);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.32em;
  text-decoration: none;
  color: rgba(255,255,255,0.85);
  transition: color 0.4s;
}
.site-header.scrolled .site-header-logo { color: var(--text); }
.site-header-links { display: flex; gap: 32px; align-items: center; }
.site-header-links a {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.site-header-links a:hover { color: rgba(255,255,255,1); }
.site-header.scrolled .site-header-links a { color: var(--text-muted); }
.site-header.scrolled .site-header-links a:hover { color: var(--text); }
.site-header-reserve {
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 50px;
  padding: 8px 22px;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-decoration: none;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.12);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.site-header-reserve:hover { background: #c4d8cf; border-color: #c4d8cf; color: #1a1918; }
.site-header.scrolled .site-header-reserve { border-color: var(--text); color: var(--text); background: rgba(26,25,24,0.06); }

/* ── HERO FULL ── */
.hero-full {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #1c1b19;
}
.hero-full .hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  will-change: opacity;
  animation: heroFade 30s linear infinite;
}
.hero-slide.slide-1 { animation-delay: -2.5s; }
.hero-slide.slide-2 { animation-delay: 2.5s; }
.hero-slide.slide-3 { animation-delay: 7.5s; }
.hero-slide.slide-4 { animation-delay: 12.5s; }
.hero-slide.slide-5 { animation-delay: 17.5s; }
.hero-slide.slide-6 { animation-delay: 22.5s; }
.mob-slide { display: none; }
@media (max-width: 768px) {
  .pc-slide { display: none; }
  .mob-slide { display: block; }
}
@keyframes heroFade {
  0%   { opacity: 0; animation-timing-function: ease-in-out; }
  10%  { opacity: 1; }
  20%  { opacity: 1; animation-timing-function: ease-in-out; }
  30%  { opacity: 0; }
  100% { opacity: 0; }
}
.hero-full-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.06) 0%, rgba(0,0,0,0.38) 100%);
  z-index: 1;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  pointer-events: none;
}
.hero-scroll-hint span {
  font-family: var(--serif);
  font-size: 10px;
  font-style: italic;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.4);
}
.hero-scroll-hint::after {
  content: '';
  display: block;
  width: 0.5px;
  height: 40px;
  background: rgba(255,255,255,0.28);
}
.hero-content {
  position: absolute;
  left: 16%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}
.hero-logo img {
  width: auto;
  height: 460px;
  object-fit: contain;
  opacity: 1;
  filter: brightness(0) invert(1);
}
.hero-concept {
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.52em;
  color: rgba(255,255,255,0.62);
  font-style: italic;
  line-height: 2.6;
}
.hero-credit {
  position: absolute;
  bottom: 32px;
  right: 52px;
  font-family: var(--serif);
  font-size: 9.5px;
  letter-spacing: 0.38em;
  color: rgba(255,255,255,0.32);
  z-index: 2;
}

/* ── EDITORIAL LAYOUT ── */
.ed-text {
  padding: 140px 20px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.ed-eyebrow {
  font-family: var(--serif);
  font-size: 10px;
  letter-spacing: 0.46em;
  color: var(--text-faint);
  margin-bottom: 32px;
}
.ed-quote {
  font-family: var(--serif);
  font-size: clamp(48px, 6.5vw, 88px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.18;
  letter-spacing: 0.01em;
  margin-bottom: 52px;
  color: var(--text);
}
.ed-body {
  font-size: 14.5px;
  line-height: 2.7;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}
.ed-link-pill {
  display: inline-block;
  font-family: var(--jp);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.22em;
  color: #1a1918;
  background: #c4d8cf;
  border: 1px solid #c4d8cf;
  border-radius: 50px;
  padding: 11px 32px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.ed-link-pill:hover { background: #adc5bc; border-color: #adc5bc; color: #1a1918; }

/* Portrait — centered, tall */
.ed-portrait {
  width: 52%;
  max-width: 580px;
  margin: 0 auto;
  aspect-ratio: 3/4;
  overflow: hidden;
}

/* Portrait pair — full bleed */
.ed-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
}
.ed-pair > div {
  aspect-ratio: 3/4;
  overflow: hidden;
}

/* Landscape full bleed */
.ed-landscape {
  width: 100%;
  height: 72vh;
  overflow: hidden;
}

/* ── MENU ── */
.ed-menu {
  padding: 120px 20px 100px;
  text-align: center;
}
.ed-menu-tabs {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin: 52px 0 72px;
  border-bottom: 0.5px solid var(--border);
}
.ed-menu-tab {
  font-family: var(--jp);
  font-size: 13px;
  letter-spacing: 0.2em;
  font-weight: 300;
  color: var(--text-mid);
  background: none;
  border: none;
  padding: 0 0 20px;
  cursor: pointer;
  border-bottom: 1px solid transparent;
  margin-bottom: -0.5px;
  transition: color 0.2s, border-color 0.2s;
}
.ed-menu-tab.active { color: var(--text); border-bottom-color: var(--text); }
.ed-menu-panel { display: none; }
.ed-menu-panel.active { display: block; }

/* Course cards */
.ed-courses {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin-bottom: 64px;
}
.ed-course {
  width: 258px;
  padding: 44px 32px;
  border: 0.5px solid var(--border);
  text-align: left;
}
.ed-course-label {
  font-size: 18px;
  letter-spacing: 0.22em;
  font-family: var(--serif);
  color: var(--text);
  margin-bottom: 20px;
}
.ed-course-name {
  font-family: var(--serif);
  font-size: 28px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 24px;
}
.ed-course-flow {
  font-size: 13px;
  line-height: 2.2;
  color: var(--text-mid);
  letter-spacing: 0.06em;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 0.5px solid var(--border);
}
.ed-course-price {
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 300;
  letter-spacing: 0.03em;
}
.ed-course-note {
  font-size: 12px;
  color: var(--text-faint);
  letter-spacing: 0.08em;
  margin-top: 5px;
}

/* A la carte */
.ed-alacarte {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 800px;
  margin: 0 auto 56px;
  border: 0.5px solid var(--border);
  text-align: left;
}
.ed-alacarte-col { padding: 44px 36px; }
.ed-alacarte-col:first-child { border-right: 0.5px solid var(--border); }
.ed-ac-head {
  font-size: 18px;
  letter-spacing: 0.22em;
  font-family: var(--serif);
  color: var(--text);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 0.5px solid var(--border);
}
.ed-ac-subhead {
  font-size: 15px;
  letter-spacing: 0.22em;
  font-family: var(--serif);
  color: var(--text-muted);
  margin: 24px 0 12px;
  padding-bottom: 10px;
  border-bottom: 0.5px solid var(--border);
}
.ed-ac-item {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  line-height: 2.0;
  letter-spacing: 0.04em;
  color: var(--text-mid);
}
.ed-ac-note { font-size: 11px; color: var(--text-faint); margin-left: 4px; }

/* ── GALLERY ── */
.ed-gallery-masonry {
  column-count: 3;
  column-gap: 3px;
}
.ed-gallery-cell {
  break-inside: avoid;
  margin-bottom: 3px;
  background: var(--bg-alt);
}
.ed-gallery-cell img {
  height: auto;
  object-fit: unset;
}
/* Gallery preview — TOPページ: CSS Grid 3×3均一グリッド */
.ed-gallery-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  column-count: unset;
}
.ed-gallery-preview .ed-gallery-cell {
  break-inside: unset;
  margin-bottom: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.ed-gallery-preview .ed-gallery-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.ed-gallery-preview .ed-gallery-cell:nth-child(n+10) { display: none; }
.ed-gallery-view-all {
  text-align: center;
  padding: 44px 0 60px;
  background: var(--bg-alt);
}
.ed-gallery-view-all a {
  display: inline-block;
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--text);
  border: 0.5px solid var(--text);
  padding: 14px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.ed-gallery-view-all a:hover { background: var(--text); color: var(--bg); }

/* ── GALLERY PAGE (独立ページ /gallery/) ── */
.page-id-2128 .ed-page-content {
  max-width: 100%;
  padding: 0;
}
.page-id-2128 .ed-text { padding-bottom: 48px; }

/* Gallery page — 全写真をオリジナル比率で表示（CSSカラム方式） */
body.page-id-2128 {
  overflow-x: hidden;
}
.page-id-2128 .ed-gallery-masonry {
  display: block;
  column-count: 3;
  column-gap: 3px;
  width: 100%;
}
.page-id-2128 .ed-gallery-cell {
  break-inside: avoid;
  margin-bottom: 3px;
  overflow: visible;
}
.page-id-2128 .ed-gallery-cell img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: unset;
}
@media (max-width: 768px) {
  .page-id-2128 .ed-gallery-masonry { column-count: 2; column-gap: 2px; }
  .page-id-2128 .ed-gallery-cell { margin-bottom: 2px; }
}

/* ── DARK: ACCESS + CONTACT ── */
.ed-dark {
  background: var(--bg-dark);
  padding: 120px 52px;
}
.ed-dark-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.5px 1fr;
  gap: 80px;
  align-items: start;
}
.ed-dark-sep { background: rgba(255,255,255,0.08); }
.ed-dark-eyebrow {
  font-family: var(--serif);
  font-size: 10px;
  letter-spacing: 0.44em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 32px;
}
.ed-dark-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(38px, 4vw, 58px);
  color: rgba(255,255,255,0.92);
  line-height: 1.2;
  margin-bottom: 40px;
}
.ed-dark-info {
  font-size: 13px;
  line-height: 2.6;
  letter-spacing: 0.07em;
  color: rgba(255,255,255,0.80);
}
.ed-dark-lbl {
  font-size: 9.5px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.50);
  display: block;
  margin-top: 24px;
  margin-bottom: 4px;
  font-family: var(--serif);
}
.ed-dark-reserve {
  display: inline-block;
  margin-top: 40px;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.88);
  border: 0.5px solid rgba(255,255,255,0.45);
  padding: 12px 32px;
  text-decoration: none;
  border-radius: 50px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.ed-dark-reserve:hover { background: #c4d8cf; border-color: #c4d8cf; color: #1a1918; }

/* WPForms contact form (dark) */
#contact #wpforms-2072 {
  margin: 0;
  padding: 0;
  color: rgba(255,255,255,0.72);
  line-height: normal;
}
#contact #wpforms-2072 .wpforms-form {
  margin: 0;
  padding: 0;
}
#contact #wpforms-2072 .wpforms-field {
  margin: 0 0 28px;
  padding: 0;
}
#contact #wpforms-2072 .wpforms-field-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.50);
  font-family: var(--jp);
  font-weight: 300;
  line-height: normal;
  display: block;
  margin-bottom: 10px;
}
#contact #wpforms-2072 .wpforms-required-label {
  color: rgba(255,255,255,0.50);
  font-weight: 300;
}
#contact #wpforms-2072 input[type="text"],
#contact #wpforms-2072 input[type="email"],
#contact #wpforms-2072 textarea {
  width: 100%;
  max-width: 100%;
  height: 36px;
  min-height: 0;
  margin: 0;
  padding: 10px 0;
  background: transparent;
  border: none;
  border-bottom: 0.5px solid rgba(255,255,255,0.16);
  border-radius: 0;
  box-shadow: none;
  color: rgba(255,255,255,0.72);
  font-family: var(--jp);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: normal;
  outline: none;
}
#contact #wpforms-2072 textarea {
  height: 76px;
  min-height: 76px;
  resize: none;
}
#contact #wpforms-2072 input::placeholder,
#contact #wpforms-2072 textarea::placeholder {
  color: rgba(255,255,255,0.16);
  opacity: 1;
}
#contact #wpforms-2072 input:focus,
#contact #wpforms-2072 textarea:focus {
  border-bottom-color: rgba(255,255,255,0.42);
  box-shadow: none;
}
#contact #wpforms-2072 .wpforms-submit-container {
  margin: 12px 0 0;
  padding: 0;
}
#contact #wpforms-2072 button[type="submit"] {
  -webkit-appearance: none;
  appearance: none;
  width: auto;
  min-width: 0;
  height: auto;
  min-height: 0;
  margin: 0;
  padding: 11px 32px;
  font-family: var(--jp);
  font-size: 10.5px;
  font-weight: 400;
  letter-spacing: 0.22em;
  line-height: normal;
  color: rgba(255,255,255,0.62);
  border: 0.5px solid rgba(255,255,255,0.22);
  background: transparent;
  border-radius: 50px;
  box-shadow: none;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
#contact #wpforms-2072 button[type="submit"]:hover,
#contact #wpforms-2072 button[type="submit"]:focus-visible {
  background: #c4d8cf;
  border-color: #c4d8cf;
  color: #1a1918;
  box-shadow: none;
  outline: none;
}
#contact #wpforms-2072 button[type="submit"]:disabled {
  background: transparent;
  border-color: rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.38);
  cursor: wait;
  opacity: 1;
}
#contact #wpforms-2072 .wpforms-submit-spinner {
  margin-left: 10px;
  filter: grayscale(1) brightness(3);
  opacity: 0.62;
}
#contact #wpforms-2072 input.wpforms-error,
#contact #wpforms-2072 textarea.wpforms-error {
  border-bottom-color: rgba(242,161,161,0.85);
}
#contact #wpforms-2072 em.wpforms-error,
#contact #wpforms-2072 label.wpforms-error,
#contact #wpforms-2072 .wpforms-error-container {
  display: block;
  margin-top: 8px;
  color: rgba(242,161,161,0.90);
  font-family: var(--jp);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.6;
}
#contact #wpforms-2072 .wpforms-confirmation-container-full {
  margin: 0;
  padding: 14px 0 14px 18px;
  color: rgba(255,255,255,0.80);
  background: transparent;
  border: none;
  border-left: 1px solid rgba(196,216,207,0.62);
  font-family: var(--jp);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.8;
}
#contact #wpforms-2072 .wpforms-confirmation-container-full p {
  color: inherit;
}
#contact #wpforms-2072 .wpforms-confirmation-container-full p:last-child { margin-bottom: 0; }

/* ── SOCIAL SIDEBAR ── */
.social-sidebar {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #1a1918;
  border-radius: 0 6px 6px 0;
  padding: 14px 12px;
}
.social-sidebar-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
  text-decoration: none;
}
.social-sidebar-link:hover { color: #fff; }
.social-sidebar-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  display: block;
}
@media (max-width: 768px) { .social-sidebar { display: none; } }
/* ── HAMBURGER & MOBILE DRAWER ── */
.ham-btn {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  gap: 5.5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.ham-btn span {
  display: block;
  width: 20px;
  height: 0.5px;
  background: rgba(255,255,255,0.85);
  transition: transform 0.28s ease, opacity 0.2s ease, background 0.4s;
}
.site-header.scrolled .ham-btn span { background: var(--text); }
.ham-btn.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.ham-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.ham-btn.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.mob-drawer {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26,25,24,0.98);
  z-index: 250;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 80px 24px 48px;
  box-sizing: border-box;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mob-drawer.open { opacity: 1; pointer-events: auto; }
.mob-drawer-link {
  display: block;
  font-family: var(--jp);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.32em;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  padding: 18px 0;
  width: 220px;
  text-align: center;
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}
.mob-drawer-link:hover { color: rgba(255,255,255,0.95); }
.mob-drawer-reserve {
  display: block;
  margin-top: 36px;
  font-family: var(--jp);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.22em;
  color: #1a1918;
  background: #c4d8cf;
  border-radius: 50px;
  padding: 13px 40px;
  text-decoration: none;
  transition: background 0.2s;
}
.mob-drawer-reserve:hover { background: #adc5bc; }

/* ── FOOTER ── */
.ed-footer {
  background: var(--bg-dark);
  border-top: 0.5px solid rgba(255,255,255,0.05);
  padding: 36px 52px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ed-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
}
.ed-footer-logo { font-size: 14px; font-weight: 400; letter-spacing: 0.38em; color: rgba(255,255,255,0.78); }
.ed-footer-copy { font-family: var(--serif); font-size: 13px; letter-spacing: 0.15em; color: rgba(255,255,255,0.62); }
.ed-footer-loc { font-size: 13.5px; font-weight: 400; letter-spacing: 0.22em; color: rgba(255,255,255,0.72); }
.ed-footer-legal {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 0.5px solid rgba(255,255,255,0.10);
  width: 100%;
}
.ed-footer-legal a,
.ed-footer-legal ul li a {
  font-family: var(--jp);
  font-size: 11.5px;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.ed-footer-legal a:hover,
.ed-footer-legal ul li a:hover { color: rgba(255,255,255,0.88); }
/* WP nav menu reset inside footer */
.ed-footer-legal ul { list-style: none; display: flex; gap: 28px; flex-wrap: wrap; justify-content: center; margin: 0; padding: 0; }
.ed-footer-legal ul li { margin: 0; padding: 0; }

/* ── ABOUT PAGE ── */
.about-page-hero {
  margin-top: 64px;
  width: 100%;
  height: 56vh;
  overflow: hidden;
  background: #c4d8cf;
  position: relative;
}
.about-page-hero img { width: 100%; height: 100%; object-fit: cover; }
.hero-mob { display: none; }
.about-page-hero-label {
  position: absolute;
  bottom: 36px;
  left: 52px;
  font-family: var(--serif);
  font-size: 11px;
  letter-spacing: 0.42em;
  color: rgba(255,255,255,0.6);
}
.about-page { max-width: 860px; margin: 0 auto; padding: 80px 40px 100px; }
.about-back-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--jp);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
  margin-bottom: 52px;
}
.about-back-link::before { content: '←'; font-size: 12px; }
.about-back-link:hover { color: var(--text); }
.about-page-label {
  font-family: var(--serif);
  font-size: 10px;
  letter-spacing: 0.48em;
  color: var(--text-faint);
  margin-bottom: 16px;
}
.about-page-title {
  font-size: 36px;
  font-weight: 300;
  letter-spacing: 0.08em;
  line-height: 1.4;
  margin-bottom: 10px;
}
.about-page-subtitle {
  font-family: var(--serif);
  font-size: 14px;
  font-style: italic;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-bottom: 52px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 72px;
}
.about-grid-text h3 {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.22em;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 0.5px solid rgba(26,25,24,0.15);
}
.about-grid-text p {
  font-size: 12px;
  line-height: 2.5;
  color: var(--text-mid);
  margin-bottom: 18px;
}
.about-grid-photo {
  height: 380px;
  overflow: hidden;
  background: #c4d8cf;
}
.about-divider {
  border-top: 0.5px solid rgba(26,25,24,0.12);
  margin: 56px 0;
}

/* ── 通常ページ本文 ── */
.ed-page-content {
  max-width: 680px;
  margin: 0 auto;
  padding: 60px 52px 120px;
  font-size: 14.5px;
  line-height: 2.7;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}
.ed-page-content h2 {
  font-family: var(--serif);
  font-size: 26px;
  font-style: italic;
  font-weight: 300;
  margin: 52px 0 18px;
  color: var(--text);
}
.ed-page-content h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  margin: 36px 0 12px;
  color: var(--text);
}
.ed-page-content p { margin-bottom: 20px; }
.ed-page-content ul, .ed-page-content ol { padding-left: 24px; margin-bottom: 20px; }
.ed-page-content li { margin-bottom: 8px; }
.ed-page-content a { color: var(--text); text-underline-offset: 3px; }
.ed-page-content img { width: 100%; height: auto; object-fit: cover; margin: 32px 0; }

/* ── LEGAL PAGES ── */
.legal-header {
  padding: 140px 52px 60px;
  max-width: 760px;
  margin: 0 auto;
}
.legal-back {
  display: inline-block;
  font-family: var(--jp);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--text-faint);
  text-decoration: none;
  margin-bottom: 48px;
  transition: color 0.2s;
}
.legal-back::before { content: '← '; }
.legal-back:hover { color: var(--text); }
.legal-eyebrow {
  font-family: var(--serif);
  font-size: 10px;
  letter-spacing: 0.46em;
  color: var(--text-faint);
  margin-bottom: 16px;
}
.legal-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 60px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 12px;
}
.legal-date {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  color: var(--text-faint);
}
.legal-content {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 52px 120px;
  font-size: 14px;
  line-height: 2.6;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}
.legal-content h2 {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  margin: 48px 0 16px;
  color: var(--text);
}
.legal-content p { margin-bottom: 20px; }
.legal-content ul, .legal-content ol { padding-left: 24px; margin-bottom: 20px; }
.legal-content li { margin-bottom: 8px; }
.legal-content a { color: var(--text); text-underline-offset: 3px; }


/* ── 常時表示ヘッダー（ホーム以外の全ページ） ── */
body:not(.home) .site-header {
  background: rgba(251,248,243,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 0.5px solid rgba(26,25,24,0.1);
}
body:not(.home) .site-header-logo { color: var(--text); }
body:not(.home) .site-header-links a { color: var(--text-muted); }
body:not(.home) .site-header-links a:hover { color: var(--text); }
body:not(.home) .site-header-reserve {
  border-color: var(--text);
  color: var(--text);
  background: rgba(26,25,24,0.06);
}
body:not(.home) .ham-btn span { background: var(--text); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  /* About page responsive */
  .hero-pc { display: none; }
  .hero-mob { display: block; }
  .about-page-hero { margin-top: 54px; height: 40vh; }
  .about-page-hero-label { left: 20px; }
  .about-page { padding: 48px 24px 80px; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-grid-photo { height: auto !important; overflow: visible !important; }
  .about-grid-photo img { width: 100% !important; height: auto !important; object-fit: unset !important; }
  /* General responsive */
  .site-header { padding: 0 20px; height: 54px; }
  .site-header-links { display: none; }
  .hero-full { height: 100svh; }
  .hero-credit { right: 20px; }
  .hero-content {
    left: 50%;
    transform: translate(-50%, -50%);
    align-items: center;
    text-align: center;
    width: 80%;
  }
  .hero-logo img { height: 300px; }
  .hero-concept { font-size: 13px; letter-spacing: 0.32em; text-align: center; }
  .ed-text { padding: 80px 24px; }
  .ed-quote { font-size: clamp(40px, 10vw, 60px); }
  .ed-portrait { width: 84%; }
  .ed-landscape { height: 56vw; min-height: 280px; }
  .ed-menu { padding: 80px 20px 60px; }
  .ed-menu-tabs { gap: 24px; }
  .ed-courses { flex-direction: column; align-items: center; }
  .ed-course { width: 100%; max-width: 340px; }
  .ed-alacarte { grid-template-columns: 1fr; }
  .ed-alacarte-col:first-child { border-right: none; border-bottom: 0.5px solid var(--border); }
  .ed-gallery-masonry { column-count: 2; }
  .ed-gallery-preview { grid-template-columns: repeat(2, 1fr); }
  .ed-gallery-preview .ed-gallery-cell:nth-child(9) { display: none; }
  .page-id-2128 .ed-gallery-masonry { grid-template-columns: repeat(2, 1fr); }
  .ed-dark { padding: 80px 24px; }
  .ed-dark-inner { grid-template-columns: 1fr; gap: 56px; }
  .ed-dark-sep { display: none; }
  .ham-btn { display: flex; }
  .site-header-reserve { display: none; }
  .ed-footer { padding: 28px 20px 20px; }
  .ed-footer-top { flex-direction: column; gap: 10px; text-align: center; margin-bottom: 14px; }
  .ed-footer-legal { gap: 16px; padding-top: 14px; }
  .ed-footer-legal ul { gap: 16px; }
  .legal-header { padding: 120px 24px 48px; }
  .legal-content { padding: 0 24px 80px; }
}
@media (max-width: 480px) {
  .ed-portrait { width: 92%; }
  .site-header { padding: 0 16px; }
  .ed-gallery-masonry { column-count: 2; }
}


/* ============================================================
   ACCESS & PARKING PAGE
   ============================================================ */
.ed-access-hero {
  background: var(--bg-dark);
  padding: 140px 52px 100px;
  text-align: center;
  margin-top: 64px;
}
.ed-access-eyebrow {
  font-family: var(--serif);
  font-size: 10px;
  letter-spacing: 0.46em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.ed-access-hero-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(42px, 5vw, 68px);
  color: rgba(255,255,255,0.92);
  line-height: 1.2;
  margin-bottom: 20px;
}
.ed-access-hero-sub {
  font-size: 13px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.55);
  line-height: 2.2;
}
.ed-access-info {
  background: var(--bg);
  padding: 100px 52px 0;
}
.ed-access-info-inner {
  max-width: 960px;
  margin: 0 auto;
}
.ed-access-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.ed-access-col-head {
  font-family: var(--serif);
  font-size: 10px;
  letter-spacing: 0.44em;
  color: var(--text-faint);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 0.5px solid var(--border);
}
.ed-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 12.5px;
  letter-spacing: 0.05em;
  color: var(--text-mid);
  padding: 10px 0;
  border-bottom: 0.5px solid rgba(26,25,24,0.06);
  gap: 20px;
}
.ed-hours-day {
  color: var(--text-faint);
  font-size: 11px;
  letter-spacing: 0.12em;
  white-space: nowrap;
}
.ed-hours-time { text-align: right; line-height: 1.8; }
.ed-access-reserve-text {
  font-size: 13px;
  line-height: 2.4;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.ed-access-reserve {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--text);
  border: 0.5px solid var(--text);
  padding: 12px 32px;
  text-decoration: none;
  border-radius: 50px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.ed-access-reserve:hover { background: var(--text); color: var(--bg); }
.ed-access-map-embed {
  background: var(--bg);
  padding: 60px 52px 0;
}
.ed-access-map-embed-inner { max-width: 960px; margin: 0 auto; }
.ed-access-map-embed iframe {
  width: 100%;
  height: 420px;
  border: none;
  display: block;
}
.ed-access-parking {
  background: var(--bg-dark);
  padding: 100px 52px;
  margin-top: 60px;
}
.ed-access-parking-inner { max-width: 960px; margin: 0 auto; }
.ed-parking-eyebrow {
  font-family: var(--serif);
  font-size: 10px;
  letter-spacing: 0.44em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 20px;
  text-transform: uppercase;
}
.ed-parking-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(32px, 4vw, 52px);
  color: rgba(255,255,255,0.88);
  margin-bottom: 36px;
  line-height: 1.2;
}
.ed-parking-badge {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: #1a1918;
  background: #c4d8cf;
  padding: 9px 28px;
  border-radius: 50px;
  margin-bottom: 64px;
}
.ed-access-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 56px;
}
.ed-access-step {
  border: 0.5px solid rgba(255,255,255,0.08);
  padding: 40px 32px;
  background: rgba(255,255,255,0.02);
}
.ed-step-num {
  font-family: var(--serif);
  font-size: 10px;
  letter-spacing: 0.32em;
  color: rgba(255,255,255,0.28);
  margin-bottom: 20px;
}
.ed-step-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 300;
  color: rgba(255,255,255,0.88);
  margin-bottom: 14px;
  line-height: 1.3;
}
.ed-step-desc {
  font-size: 12px;
  line-height: 2.3;
  color: rgba(255,255,255,0.50);
  letter-spacing: 0.05em;
}
.ed-parking-map {
  width: 100%;
  max-width: 720px;
  margin: 0 auto 56px;
  overflow: hidden;
  border: 0.5px solid rgba(255,255,255,0.08);
}
.ed-parking-map img { width: 100%; height: auto; object-fit: contain; display: block; }
.ed-access-videos { display: flex; gap: 16px; flex-wrap: wrap; }
.ed-access-video-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.72);
  border: 0.5px solid rgba(255,255,255,0.22);
  padding: 11px 28px;
  text-decoration: none;
  border-radius: 50px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.ed-access-video-link::before { content: '\25B6'; font-size: 9px; color: #c4d8cf; margin-right:4px; }
.ed-access-video-link:hover { background: #c4d8cf; border-color: #c4d8cf; color: #1a1918; }
.ed-access-video-link:hover::before { color: #1a1918; }
@media (max-width: 768px) {
  .ed-access-hero { padding: 96px 24px 72px; }
  .ed-access-info { padding: 72px 24px 0; }
  .ed-access-info-grid { grid-template-columns: 1fr; gap: 52px; }
  .ed-access-map-embed { padding: 48px 24px 0; }
  .ed-access-map-embed iframe { height: 280px; }
  .ed-access-parking { padding: 72px 24px; margin-top: 48px; }
  .ed-access-steps { grid-template-columns: 1fr; }
  .ed-access-videos { flex-direction: column; align-items: flex-start; }
}
/* Access page — full-width override */
.page-id-2134 .ed-page-content { max-width: 100%; padding: 0; }

.page-id-2134 .ed-text { display: none; }
