:root {
  --bg: #0a0a0a;
  --bg-soft: #141414;
  --gold: #C6A062;
  --gold-soft: #d4b87a;
  --gold-deep: #8b6f3d;
  --text: #f0ebe1;
  --text-muted: #9c958a;
  --serif-jp: "Noto Serif JP", "游明朝", "Yu Mincho", serif;
  --sans-jp: "Noto Sans JP", sans-serif;
  --serif-en: "Cormorant Garamond", "Noto Serif JP", serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans-jp);
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ========== Header ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: linear-gradient(to bottom, rgba(10,10,10,0.7), rgba(10,10,10,0));
  transition: background 0.4s ease, padding 0.4s ease, border-color 0.4s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10,10,10,0.92);
  padding: 16px 48px;
  border-bottom-color: rgba(198,160,98,0.18);
}

.logo {
  display: block;
  line-height: 0;
}
.logo img {
  height: 56px;
  width: auto;
  transition: opacity 0.3s;
}
.logo:hover img { opacity: 0.85; }
.site-header.scrolled .logo img {
  height: 44px;
  transition: height 0.4s ease;
}
@media (max-width: 768px) {
  .logo img { height: 44px; }
  .site-header.scrolled .logo img { height: 36px; }
}

.nav-list {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-list a {
  font-family: var(--serif-en);
  font-size: 13px;
  letter-spacing: 0.25em;
  color: var(--text);
  text-decoration: none;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s;
}
.nav-list a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-list a:hover { color: var(--gold); }
.nav-list a:hover::after { width: 100%; }

/* ========== Hamburger menu ========== */
.menu-toggle {
  display: none;
  position: relative;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 110;
  padding: 0;
}
.menu-toggle span {
  position: absolute;
  left: 6px;
  width: 24px;
  height: 1px;
  background: var(--gold);
  transition: transform 0.4s ease, opacity 0.3s ease, top 0.4s ease;
}
.menu-toggle span:nth-child(1) { top: 12px; }
.menu-toggle span:nth-child(2) { top: 18px; }
.menu-toggle span:nth-child(3) { top: 24px; }

.menu-toggle.is-open span:nth-child(1) {
  top: 18px;
  transform: rotate(45deg);
}
.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.is-open span:nth-child(3) {
  top: 18px;
  transform: rotate(-45deg);
}

/* Mobile overlay nav */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 8, 8, 0.97);
  z-index: 105;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.nav-overlay::before,
.nav-overlay::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  max-width: 280px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.4;
}
.nav-overlay::before { top: 15%; }
.nav-overlay::after { bottom: 15%; }

.nav-overlay ul {
  list-style: none;
  text-align: center;
  padding: 0;
  margin: 0;
}
.nav-overlay li {
  margin: 28px 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.nav-overlay.is-open li {
  opacity: 1;
  transform: translateY(0);
}
.nav-overlay.is-open li:nth-child(1) { transition-delay: 0.15s; }
.nav-overlay.is-open li:nth-child(2) { transition-delay: 0.22s; }
.nav-overlay.is-open li:nth-child(3) { transition-delay: 0.29s; }
.nav-overlay.is-open li:nth-child(4) { transition-delay: 0.36s; }
.nav-overlay.is-open li:nth-child(5) { transition-delay: 0.43s; }
.nav-overlay.is-open li:nth-child(6) { transition-delay: 0.50s; }
.nav-overlay.is-open li:nth-child(7) { transition-delay: 0.57s; }
.nav-overlay a {
  display: inline-block;
  font-family: var(--serif-en);
  font-size: 22px;
  letter-spacing: 0.35em;
  color: var(--text);
  text-decoration: none;
  padding: 8px 16px;
  position: relative;
}
.nav-overlay a .ja {
  display: block;
  font-family: var(--serif-jp);
  font-size: 11px;
  letter-spacing: 0.5em;
  color: var(--gold);
  margin-top: 6px;
  font-weight: 300;
}
.nav-overlay a:hover { color: var(--gold); }

body.menu-open { overflow: hidden; }

@media (max-width: 768px) {
  .menu-toggle { display: block; }
  .site-header nav .nav-list { display: none; }
}

/* ========== Hero ========== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../interior/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.55) contrast(1.1) saturate(0.75) sepia(0.18);
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.65) 0%,
    rgba(10, 10, 10, 0.50) 50%,
    rgba(10, 10, 10, 0.75) 100%
  );
  z-index: 1;
}

/* corner ornaments */
.corner {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 1px solid var(--gold);
  opacity: 0.55;
  z-index: 2;
}
.corner.tl { top: 40px; left: 40px; border-right: none; border-bottom: none; }
.corner.tr { top: 40px; right: 40px; border-left: none; border-bottom: none; }
.corner.bl { bottom: 40px; left: 40px; border-right: none; border-top: none; }
.corner.br { bottom: 40px; right: 40px; border-left: none; border-top: none; }

/* vertical japanese text on side */
.hero-vertical {
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-family: var(--serif-jp);
  font-size: 13px;
  letter-spacing: 0.6em;
  color: var(--text-muted);
  z-index: 3;
  font-weight: 300;
}
.hero-vertical::before {
  content: "";
  display: block;
  width: 1px;
  height: 60px;
  background: var(--gold);
  margin: 0 auto 24px;
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 5;
  padding: 0 24px;
  max-width: 900px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--serif-en);
  font-size: 11px;
  letter-spacing: 0.5em;
  color: var(--gold);
  margin-bottom: 36px;
  font-weight: 400;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.hero-title {
  font-family: var(--serif-en);
  font-size: clamp(64px, 11vw, 132px);
  font-weight: 300;
  letter-spacing: 0.15em;
  line-height: 1;
  color: var(--text);
  margin-bottom: 12px;
}

.hero-title-sub {
  font-family: var(--serif-jp);
  font-size: clamp(14px, 1.6vw, 18px);
  font-weight: 300;
  letter-spacing: 0.8em;
  color: var(--gold);
  margin-bottom: 48px;
}

.hero-divider {
  width: 1px;
  height: 56px;
  background: var(--gold);
  margin: 0 auto 40px;
  opacity: 0.7;
  position: relative;
}
.hero-divider::before,
.hero-divider::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
}
.hero-divider::before { top: -3px; }
.hero-divider::after { bottom: -3px; }

.hero-tagline {
  font-family: var(--serif-jp);
  font-size: clamp(15px, 1.8vw, 19px);
  font-weight: 300;
  letter-spacing: 0.4em;
  line-height: 2.4;
  color: var(--text);
}

.hero-tagline-en {
  margin-top: 32px;
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  font-weight: 300;
}

/* scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  z-index: 5;
}
.scroll-indicator-text {
  font-family: var(--serif-en);
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--text-muted);
}
.scroll-indicator-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(198,160,98,0.5), transparent);
  position: relative;
  overflow: hidden;
}
.scroll-indicator-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 16px;
  background: var(--gold);
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(-16px); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translateY(48px); opacity: 0; }
}

/* establishment mark */
.est-mark {
  position: absolute;
  bottom: 40px;
  right: 64px;
  font-family: var(--serif-en);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--text-muted);
  z-index: 5;
}
.est-mark strong {
  color: var(--gold);
  font-weight: 400;
  margin-left: 2px;
}

/* ========== Concept ========== */
.concept {
  position: relative;
  padding: 160px 24px;
  background: #0d0d0d;
  overflow: hidden;
}
.concept::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(198,160,98,0.06) 0%, transparent 50%);
  pointer-events: none;
}
.concept-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 80px;
  align-items: start;
}
.concept-heading {
  position: relative;
  padding-left: 32px;
}
.concept-heading::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, var(--gold), transparent);
  opacity: 0.8;
}
.concept-eyebrow {
  font-family: var(--serif-en);
  font-size: 12px;
  letter-spacing: 0.5em;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 400;
}
.concept-title {
  font-family: var(--serif-jp);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 300;
  letter-spacing: 0.3em;
  line-height: 1.6;
  color: var(--text);
  writing-mode: vertical-rl;
  height: 320px;
}
.concept-body {
  padding-top: 12px;
}
.concept-body p {
  font-family: var(--serif-jp);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.15em;
  line-height: 2.4;
  color: var(--text);
  margin-bottom: 28px;
}
.concept-body p:last-child { margin-bottom: 0; }
.concept-signature {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  font-weight: 300;
}
.concept-signature::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

/* fade-in on scroll */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.8s ease, transform 1.8s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== System ========== */
.system {
  position: relative;
  padding: 160px 24px;
  background: var(--bg);
  border-top: 1px solid rgba(198,160,98,0.08);
  overflow: hidden;
}
.system::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../interior/system-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.65) contrast(1.1) saturate(0.8) sepia(0.15);
  opacity: 0.12;
  pointer-events: none;
}
.system-inner {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
}
.system-header {
  text-align: center;
  margin-bottom: 80px;
}
.system-eyebrow {
  font-family: var(--serif-en);
  font-size: 12px;
  letter-spacing: 0.5em;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 400;
}
.system-title {
  font-family: var(--serif-jp);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 300;
  letter-spacing: 0.5em;
  color: var(--text);
  margin-bottom: 28px;
}
.system-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}
.system-ornament .line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.system-ornament .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.8;
}
.system-lead {
  font-family: var(--serif-jp);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.2em;
  line-height: 2.2;
  color: var(--text-muted);
}
.system-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 64px;
}
.system-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(198,160,98,0.12);
}
.system-row:last-child { border-bottom: none; }
.system-row-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
}
.system-row-label .ja {
  font-family: var(--serif-jp);
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--text);
}
.system-row-label .en {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  font-weight: 300;
}
.system-row-dots {
  flex: 1;
  height: 0;
  border-bottom: 1px dotted rgba(198,160,98,0.3);
  align-self: center;
  margin-bottom: 6px;
}
.system-row-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-shrink: 0;
}
.system-row-price .num {
  font-family: var(--serif-en);
  font-size: 28px;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.system-row-price .unit {
  font-family: var(--serif-jp);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  font-weight: 300;
}
.system-notes {
  padding-top: 32px;
  border-top: 1px solid rgba(198,160,98,0.12);
  text-align: center;
}
.system-notes p {
  font-family: var(--serif-jp);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.15em;
  line-height: 2;
  color: var(--text-muted);
  margin: 4px 0;
}
@media (max-width: 768px) {
  .system { padding: 100px 20px; }
  .system-header { margin-bottom: 56px; }
  .system-title { letter-spacing: 0.3em; }
  .system-row {
    flex-wrap: wrap;
    gap: 8px 12px;
    padding: 20px 0;
  }
  .system-row-dots { display: none; }
  .system-row-label { flex: 1; }
  .system-row-price .num { font-size: 24px; }
  .system-notes p { font-size: 12px; }
}

/* ========== System inclusion (Free Drink) ========== */
.system-inclusion {
  margin: 0 0 64px;
  padding: 28px 24px;
  text-align: center;
  border-top: 1px solid rgba(198,160,98,0.18);
  border-bottom: 1px solid rgba(198,160,98,0.18);
  position: relative;
}
.system-inclusion-label {
  font-family: var(--serif-en);
  font-size: 11px;
  letter-spacing: 0.5em;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 400;
}
.system-inclusion-text {
  font-family: var(--serif-jp);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--text);
}
.system-badge {
  display: inline-block;
  margin-bottom: 24px;
  padding: 6px 18px;
  border: 1px solid rgba(198,160,98,0.5);
  font-family: var(--serif-en);
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--gold);
}

/* ========== Payment logos ========== */
.payment-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 10px;
}
.payment-logos img {
  width: 56px;
  height: 35px;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}
.payment-logos img:hover {
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .payment-logos { gap: 10px; }
  .payment-logos img {
    width: 48px;
    height: 30px;
  }
}

/* ========== Cast ========== */
.cast {
  position: relative;
  padding: 160px 24px;
  background: #0d0d0d;
  border-top: 1px solid rgba(198,160,98,0.08);
  overflow: hidden;
}
.cast::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(198,160,98,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.cast-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
.cast-header {
  text-align: center;
  margin-bottom: 56px;
}
.cast-eyebrow {
  font-family: var(--serif-en);
  font-size: 13px;
  letter-spacing: 0.4em;
  color: var(--gold);
  font-weight: 400;
}
.cast-divider {
  width: 1px;
  height: 40px;
  background: var(--gold);
  opacity: 0.7;
  margin: 24px auto;
}
.cast-title {
  font-family: var(--serif-jp);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--text);
  margin-bottom: 40px;
}
.cast-lead {
  font-family: var(--serif-jp);
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 300;
  line-height: 2.4;
  color: var(--text);
  letter-spacing: 0.1em;
  margin-bottom: 56px;
}

.cast-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}
.cast-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}
.cast-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.6s ease;
}
.cast-card:hover img {
  filter: brightness(1.1);
}

.cast-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  background: var(--bg);
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cast-frame .corner {
  width: 32px;
  height: 32px;
  opacity: 0.6;
}
.cast-frame .corner.tl { top: 12px; left: 12px; }
.cast-frame .corner.tr { top: 12px; right: 12px; }
.cast-frame .corner.bl { bottom: 12px; left: 12px; }
.cast-frame .corner.br { bottom: 12px; right: 12px; }
.cast-frame-logo {
  width: 60%;
  display: block;
  opacity: 0.15;
}

.cast-more {
  text-align: center;
}
.cast-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 40px;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold);
  font-family: var(--serif-en);
  font-size: 14px;
  letter-spacing: 0.3em;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cast-more-btn .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}
.cast-more-btn:hover {
  background: var(--gold);
  color: var(--bg);
}
.cast-more-btn:hover .arrow {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .cast { padding: 100px 20px; }
  .cast-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .cast-header { margin-bottom: 40px; }
  .cast-lead { margin-bottom: 40px; }
}

/* ========== Access ========== */
.access {
  position: relative;
  padding: 160px 24px;
  background: #0d0d0d;
  border-top: 1px solid rgba(198,160,98,0.08);
  overflow: hidden;
}
.access::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('../interior/access-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.65) contrast(1.1) saturate(0.8) sepia(0.15);
  opacity: 0.10;
  pointer-events: none;
}
.access-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
.access-header {
  text-align: center;
  margin-bottom: 72px;
}
.access-eyebrow {
  font-family: var(--serif-en);
  font-size: 12px;
  letter-spacing: 0.5em;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 400;
}
.access-title {
  font-family: var(--serif-jp);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 300;
  letter-spacing: 0.5em;
  color: var(--text);
  margin-bottom: 28px;
}
.access-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.access-ornament .line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.access-ornament .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.8;
}

.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.access-map {
  position: relative;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(198,160,98,0.25);
  overflow: hidden;
}
.access-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.4) contrast(0.9) brightness(0.85);
  transition: filter 0.5s ease;
}
.access-map:hover iframe {
  filter: grayscale(0) contrast(1) brightness(1);
}

.access-info {
  padding-top: 8px;
}
.access-info-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(198,160,98,0.12);
  align-items: baseline;
}
.access-info-row:last-of-type {
  border-bottom: none;
}
.access-info-label {
  font-family: var(--serif-en);
  font-size: 11px;
  letter-spacing: 0.35em;
  color: var(--gold);
  font-weight: 400;
}
.access-info-label .ja {
  display: block;
  font-family: var(--serif-jp);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  margin-top: 4px;
  font-weight: 300;
}
.access-info-value {
  font-family: var(--serif-jp);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1.9;
  color: var(--text);
}
.access-info-value small {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.15em;
}

.access-phone {
  margin-top: 40px;
  padding: 28px 24px;
  text-align: center;
  border-top: 1px solid rgba(198,160,98,0.2);
  border-bottom: 1px solid rgba(198,160,98,0.2);
}
.access-phone-label {
  font-family: var(--serif-en);
  font-size: 11px;
  letter-spacing: 0.5em;
  color: var(--gold);
  margin-bottom: 10px;
}
.access-phone-number {
  font-family: var(--sans-jp);
  font-size: clamp(26px, 3.2vw, 34px);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--text);
  text-decoration: none;
  display: inline-block;
  transition: color 0.3s;
}
.access-phone-number:hover {
  color: var(--gold);
}
.access-phone-hours {
  margin-top: 8px;
  font-family: var(--serif-jp);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  font-weight: 300;
}

@media (max-width: 900px) {
  .access-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}
@media (max-width: 768px) {
  .access { padding: 100px 20px; }
  .access-header { margin-bottom: 56px; }
  .access-title { letter-spacing: 0.3em; }
  .access-info-row {
    grid-template-columns: 90px 1fr;
    gap: 16px;
    padding: 16px 0;
  }
  .access-info-value { font-size: 15px; }
  .access-phone { padding: 24px 16px; }
}

/* ========== Follow ========== */
.follow {
  position: relative;
  padding: 160px 24px;
  background: var(--bg);
  border-top: 1px solid rgba(198,160,98,0.08);
  overflow: hidden;
}
.follow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(198,160,98,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.follow-inner {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.follow-eyebrow {
  font-family: var(--serif-en);
  font-size: 13px;
  letter-spacing: 0.4em;
  color: var(--gold);
  font-weight: 400;
}
.follow-divider {
  width: 1px;
  height: 40px;
  background: var(--gold);
  opacity: 0.7;
  margin: 24px auto;
}
.follow-title {
  font-family: var(--serif-jp);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--text);
  margin-bottom: 40px;
}
.follow-lead {
  font-family: var(--serif-jp);
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 300;
  line-height: 2.4;
  color: var(--text);
  letter-spacing: 0.1em;
  margin-bottom: 56px;
}
.follow-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.follow-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 36px;
  background: transparent;
  border: 1px solid var(--line);
  text-decoration: none;
  transition: border-color 0.4s ease, transform 0.4s ease;
}
.follow-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.follow-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.follow-card--instagram .follow-card-icon {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}
.follow-card--line .follow-card-icon {
  background: #06C755;
}
.follow-card-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}
.follow-card-title {
  font-family: var(--serif-en);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-top: 24px;
  margin-bottom: 0;
}
.follow-card-body {
  font-family: var(--serif-jp);
  font-size: 14px;
  font-weight: 300;
  line-height: 2;
  color: var(--text);
  margin-top: 16px;
  max-width: 240px;
  text-align: center;
}
.follow-card-handle {
  font-family: var(--serif-en);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 12px;
}
.follow-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--serif-en);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-top: 24px;
}
.follow-card-cta .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}
.follow-card:hover .follow-card-cta .arrow {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .follow { padding: 100px 20px; }
  .follow-cards { grid-template-columns: 1fr; }
  .follow-card { padding: 36px 24px; }
}

/* ========== Contact ========== */
.contact {
  position: relative;
  padding: 160px 24px;
  background: var(--bg);
  border-top: 1px solid rgba(198,160,98,0.08);
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(198,160,98,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.contact-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.contact-header {
  text-align: center;
  margin-bottom: 64px;
}
.contact-eyebrow {
  font-family: var(--serif-en);
  font-size: 12px;
  letter-spacing: 0.5em;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 400;
}
.contact-title {
  font-family: var(--serif-jp);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 300;
  letter-spacing: 0.5em;
  color: var(--text);
  margin-bottom: 28px;
}
.contact-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
}
.contact-ornament .line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.contact-ornament .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.8;
}
.contact-lead {
  font-family: var(--serif-jp);
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.25em;
  line-height: 2.2;
  color: var(--text-muted);
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 56px 32px;
  border: 1px solid rgba(198,160,98,0.25);
  background: rgba(255,255,255,0.015);
  text-decoration: none;
  position: relative;
  transition: border-color 0.4s ease, background 0.4s ease, transform 0.4s ease;
  overflow: hidden;
}
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(198,160,98,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.contact-card:hover {
  border-color: rgba(198,160,98,0.6);
  transform: translateY(-3px);
}
.contact-card:hover::before { opacity: 1; }

.contact-card-label {
  position: relative;
  font-family: var(--serif-en);
  font-size: 11px;
  letter-spacing: 0.5em;
  color: var(--gold);
  margin-bottom: 16px;
}
.contact-card-main {
  position: relative;
  margin-bottom: 14px;
}
.contact-card-main.phone {
  font-family: var(--sans-jp);
  font-size: clamp(24px, 3.2vw, 32px);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--text);
}
.contact-card-main.line {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif-jp);
  font-size: clamp(20px, 2.6vw, 26px);
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--text);
}
.contact-card-main.line svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.contact-card-note {
  position: relative;
  font-family: var(--serif-jp);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  font-weight: 300;
  text-align: center;
  line-height: 1.8;
}
.contact-card-divider {
  position: relative;
  width: 30px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
  margin: 0 auto 14px;
}

@media (max-width: 768px) {
  .contact { padding: 100px 20px; }
  .contact-header { margin-bottom: 48px; }
  .contact-title { letter-spacing: 0.3em; }
  .contact-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .contact-card { padding: 40px 24px; }
}

/* ========== Recruit ========== */
.recruit {
  position: relative;
  padding: 160px 24px;
  background: #0d0d0d;
  border-top: 1px solid rgba(198,160,98,0.08);
  overflow: hidden;
}
.recruit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(198,160,98,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.recruit-inner {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.recruit-eyebrow {
  font-family: var(--serif-en);
  font-size: 13px;
  letter-spacing: 0.4em;
  color: var(--gold);
  font-weight: 400;
}
.recruit-divider {
  width: 1px;
  height: 40px;
  background: var(--gold);
  opacity: 0.7;
  margin: 24px auto;
}
.recruit-title {
  font-family: var(--serif-jp);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--text);
  margin-bottom: 40px;
}
.recruit-lead {
  font-family: var(--serif-jp);
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 300;
  line-height: 2.4;
  color: var(--text);
  letter-spacing: 0.1em;
  margin-bottom: 56px;
}
.recruit-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.recruit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 36px;
  background: transparent;
  border: 1px solid var(--line);
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.4s ease, transform 0.4s ease;
}
.recruit-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}
.recruit-card-icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.recruit-card-icon svg {
  width: 24px;
  height: 24px;
}
.recruit-card-label {
  font-family: var(--serif-en);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-top: 24px;
}
.recruit-card-title {
  font-family: var(--serif-jp);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.15em;
  color: var(--text);
  margin-top: 12px;
}
.recruit-card-body {
  font-family: var(--sans-jp);
  font-size: 14px;
  font-weight: 300;
  line-height: 2;
  color: var(--text);
  margin-top: 20px;
  max-width: 260px;
  text-align: center;
}
.recruit-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--serif-en);
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-top: 24px;
}
.recruit-card-cta .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}
.recruit-card:hover .recruit-card-cta .arrow {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .recruit { padding: 100px 20px; }
  .recruit-cards { grid-template-columns: 1fr; }
  .recruit-card { padding: 36px 24px; }
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
  .site-header { padding: 16px 20px; }
  .site-header.scrolled { padding: 12px 20px; }
  .nav-list { display: none; }

  .hero { min-height: 600px; }
  .corner { width: 36px; height: 36px; }
  .corner.tl, .corner.tr { top: 20px; }
  .corner.bl, .corner.br { bottom: 20px; }
  .corner.tl, .corner.bl { left: 20px; }
  .corner.tr, .corner.br { right: 20px; }

  .hero-vertical { right: 20px; font-size: 11px; }
  .hero-vertical::before { height: 40px; margin-bottom: 16px; }

  .est-mark { right: 20px; bottom: 20px; font-size: 10px; }

  .hero-eyebrow { font-size: 9px; letter-spacing: 0.35em; margin-bottom: 24px; }
  .hero-eyebrow::before, .hero-eyebrow::after { width: 20px; }

  .hero-title-sub { letter-spacing: 0.5em; margin-bottom: 32px; }
  .hero-tagline { letter-spacing: 0.25em; line-height: 2.2; }
}


.hero-logo {
  display: block;
  width: clamp(220px, 28vw, 360px);
  height: auto;
  margin: 0 auto 32px;
  filter: drop-shadow(0 2px 12px rgba(198,160,98,0.15));
}
@media (max-width: 768px) {
  .hero-logo { width: clamp(180px, 50vw, 240px); }
}

/* ========== Footer ========== */
.site-footer {
  position: relative;
  background: #050505;
  border-top: 1px solid rgba(198,160,98,0.2);
  padding: 80px 24px 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(198,160,98,0.1);
}
.footer-brand {
  display: flex;
  flex-direction: column;
}
.footer-logo {
  max-width: 220px;
  height: auto;
  margin-bottom: 24px;
}
.footer-tagline {
  font-family: var(--serif-jp);
  font-size: 12px;
  letter-spacing: 0.35em;
  color: var(--text-muted);
  line-height: 2;
  font-weight: 300;
}
.footer-column-title {
  font-family: var(--serif-en);
  font-size: 12px;
  letter-spacing: 0.5em;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 400;
}
.footer-info {
  font-family: var(--serif-jp);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 2.1;
  color: var(--text);
}
.footer-info a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-info a:hover { color: var(--gold); }
.footer-info-small {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 8px;
  letter-spacing: 0.15em;
}
.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li {
  margin-bottom: 14px;
}
.footer-nav a {
  font-family: var(--serif-en);
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
  padding-left: 16px;
}
.footer-nav a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 8px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.footer-nav a:hover { color: var(--gold); }
.footer-nav a:hover::before {
  width: 12px;
  opacity: 1;
  transition: width 0.3s, opacity 0.3s;
}
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}
.footer-social a:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}
.footer-social a svg {
  width: 100%;
  height: 100%;
  display: block;
}
.footer-social .sns-instagram {
  background: radial-gradient(circle at 30% 110%, #FFDD55 0%, #FF543E 40%, #C837AB 70%, #4F5BD5 100%);
}
.footer-social .sns-line {
  background: #06C755;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
}
.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links a {
  font-family: var(--serif-jp);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 300;
}
.footer-links a:hover { color: var(--gold); }
.footer-copyright {
  font-family: var(--serif-en);
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--text-muted);
  font-weight: 300;
}
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .site-footer { padding: 60px 20px 24px; }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
    padding-bottom: 32px;
  }
  .footer-bottom {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 12px;
  }
  .footer-logo { max-width: 180px; }
}

/* =======================================
   下層ページ共通スタイル
   ======================================= */

/* ミニヒーロー */
.mini-hero {
  position: relative;
  height: 40vh; min-height: 320px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  padding-top: 80px;
  background:
    radial-gradient(ellipse at center, rgba(198,160,98,0.09) 0%, transparent 55%),
    linear-gradient(135deg, #1a1410 0%, #0a0a0a 50%, #0d0907 100%);
}
.mini-hero-corner {
  position: absolute;
  width: 40px; height: 40px;
  border: 1px solid var(--gold); opacity: 0.5;
}
.mini-hero-corner.tl { top: 32px; left: 32px; border-right: none; border-bottom: none; }
.mini-hero-corner.tr { top: 32px; right: 32px; border-left: none; border-bottom: none; }
.mini-hero-corner.bl { bottom: 32px; left: 32px; border-right: none; border-top: none; }
.mini-hero-corner.br { bottom: 32px; right: 32px; border-left: none; border-top: none; }
.mini-hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; align-items: center;
}
.mini-hero-eyebrow {
  font-family: var(--serif-en);
  font-size: 12px; letter-spacing: 0.5em;
  color: var(--gold); font-weight: 400; margin-bottom: 18px;
}
.mini-hero-line {
  width: 1px; height: 40px;
  background: var(--gold); opacity: 0.7; margin-bottom: 18px;
}
.mini-hero-title {
  font-family: var(--serif-jp);
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 300; letter-spacing: 0.5em; color: var(--text);
}
@media (max-width: 768px) {
  .mini-hero { padding-top: 60px; }
  .mini-hero-corner.tl, .mini-hero-corner.tr { top: 18px; }
  .mini-hero-corner.bl, .mini-hero-corner.br { bottom: 18px; }
  .mini-hero-corner.tl, .mini-hero-corner.bl { left: 18px; }
  .mini-hero-corner.tr, .mini-hero-corner.br { right: 18px; }
}

/* パンくず */
.breadcrumb {
  padding: 14px 48px;
  background: var(--bg-soft);
  border-bottom: 1px solid rgba(198,160,98,0.1);
}
.breadcrumb ol {
  list-style: none;
  display: flex; align-items: center; gap: 10px;
  max-width: 1100px; margin: 0 auto;
}
.breadcrumb li {
  font-family: var(--serif-en);
  font-size: 11px; letter-spacing: 0.3em; color: var(--text-muted);
}
.breadcrumb a { color: var(--text-muted); text-decoration: none; transition: color 0.3s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: var(--gold); opacity: 0.5; }
.breadcrumb .current { color: var(--gold); }
@media (max-width: 768px) {
  .breadcrumb { padding: 12px 20px; }
}

/* ページコンテンツ土台 */
.page-section {
  padding: 80px 24px 140px;
  max-width: 880px; margin: 0 auto;
}
.section-heading { margin-bottom: 56px; }
.section-eyebrow {
  font-family: var(--serif-en);
  font-size: 11px; letter-spacing: 0.5em;
  color: var(--gold); margin-bottom: 14px; font-weight: 400;
}
.section-title {
  font-family: var(--serif-jp);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 300; letter-spacing: 0.4em;
  color: var(--text); margin-bottom: 20px;
}
.section-ornament { display: flex; align-items: center; gap: 10px; }
.section-ornament .line { width: 48px; height: 1px; background: var(--gold); opacity: 0.6; }
.section-ornament .dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; opacity: 0.8; }
@media (max-width: 768px) {
  .page-section { padding: 64px 20px 100px; }
}

/* =======================================
   下層ページ固有スタイル
   ======================================= */

/* 会社概要(company) */
.company-table { width: 100%; border-collapse: collapse; }
.company-table th,
.company-table td {
  padding: 20px 16px;
  border-top: 1px solid rgba(198,160,98,0.12);
  vertical-align: top; line-height: 2;
}
.company-table tr:last-child th,
.company-table tr:last-child td { border-bottom: 1px solid rgba(198,160,98,0.12); }
.company-table th {
  font-family: var(--serif-jp);
  font-size: 13px; font-weight: 300;
  letter-spacing: 0.25em; color: var(--gold);
  width: 30%; text-align: left; white-space: nowrap;
}
.company-table td {
  font-family: var(--sans-jp);
  font-size: 15px; font-weight: 300;
  letter-spacing: 0.05em; color: var(--text);
  width: 70%;
}
.tel-link { color: var(--text); text-decoration: none; transition: color 0.3s; }
.tel-link:hover { color: var(--gold); }
.pending { color: var(--text-muted); font-style: italic; }
@media (max-width: 768px) {
  .company-table { display: block; }
  .company-table tbody { display: block; }
  .company-table tr {
    display: block; padding: 16px 0;
    border-top: 1px solid rgba(198,160,98,0.12);
  }
  .company-table tr:last-child { border-bottom: 1px solid rgba(198,160,98,0.12); }
  .company-table th,
  .company-table td { display: block; width: 100%; padding: 4px 0; border: none; }
  .company-table th { font-size: 11px; letter-spacing: 0.3em; padding-bottom: 6px; }
  .company-table td { font-size: 14px; }
}

/* プライバシーポリシー(privacy) */
.privacy-intro {
  font-family: var(--sans-jp);
  font-size: 14px; font-weight: 300;
  letter-spacing: 0.08em; line-height: 2.2;
  color: var(--text-muted); margin-bottom: 56px;
}
.privacy-article {
  padding: 32px 0;
  border-top: 1px solid rgba(198,160,98,0.1);
}
.privacy-article:last-of-type { border-bottom: 1px solid rgba(198,160,98,0.1); }
.privacy-article-heading {
  display: flex; align-items: baseline; gap: 16px; margin-bottom: 16px;
}
.privacy-article-num {
  font-family: var(--serif-en);
  font-style: italic;
  font-size: 22px; font-weight: 400;
  color: var(--text-muted); flex-shrink: 0; letter-spacing: 0.05em;
}
.privacy-article-heading h2 {
  font-family: var(--serif-jp);
  font-size: 16px; font-weight: 400;
  letter-spacing: 0.2em; color: var(--gold);
}
.privacy-article-body {
  font-family: var(--sans-jp);
  font-size: 14px; font-weight: 300;
  letter-spacing: 0.06em; line-height: 2.1; color: var(--text);
}
.privacy-article-body ul {
  list-style: none; padding-left: 1em; margin: 10px 0;
}
.privacy-article-body ul li {
  position: relative; padding-left: 1.4em; margin-bottom: 4px;
}
.privacy-article-body ul li::before {
  content: "・"; position: absolute; left: 0;
  color: var(--gold); font-size: 0.9em;
}
.privacy-article-body .contact-block {
  margin-top: 16px; padding: 20px 24px;
  border-left: 2px solid rgba(198,160,98,0.4);
  font-family: var(--serif-jp);
  font-size: 14px; line-height: 2.2;
  color: var(--text);
}
.privacy-article-body .contact-block a {
  color: var(--text); text-decoration: none; transition: color 0.3s;
}
.privacy-article-body .contact-block a:hover { color: var(--gold); }
.privacy-doc-footer {
  margin-top: 56px; padding-top: 32px;
  border-top: 1px solid rgba(198,160,98,0.15);
  font-family: var(--serif-jp);
  font-size: 13px; letter-spacing: 0.15em;
  color: var(--text-muted); font-weight: 300; line-height: 2.4;
}
.privacy-doc-footer .pending { font-style: italic; }
@media (max-width: 768px) {
  .privacy-article-num { font-size: 18px; }
  .privacy-article-heading h2 { font-size: 15px; }
  .privacy-article-body { font-size: 13px; line-height: 2; }
  .privacy-article-body .contact-block { padding: 16px; }
}

/* よくあるご質問(faq) */
.faq-section {
  padding: 80px 48px 120px;
  max-width: 880px;
  margin: 0 auto;
}
.faq-list { list-style: none; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--text);
  transition: opacity 0.2s ease;
}
.faq-btn:hover { opacity: 0.75; }
.faq-num {
  font-family: var(--serif-en);
  font-size: 13px;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.5em;
  color: var(--gold);
  flex-shrink: 0;
  width: 36px;
}
.faq-q {
  font-family: var(--serif-jp);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.75;
  color: var(--text);
  flex: 1;
}
.faq-icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--gold);
}
.faq-icon::before {
  width: 14px;
  height: 1px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  transition: opacity 0.3s ease;
}
.faq-icon::after {
  width: 1px;
  height: 14px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.faq-btn[aria-expanded="true"] .faq-icon::after {
  opacity: 0;
  transform: translateX(-50%) scaleY(0);
}
.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.faq-panel.is-open { max-height: 800px; }
.faq-a {
  margin-left: 56px;
  padding: 2px 0 28px 20px;
  border-left: 1px solid rgba(198, 160, 98, 0.4);
  font-family: var(--sans-jp);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 2;
  color: var(--text);
}
@media (max-width: 768px) {
  .faq-section { padding: 56px 24px 100px; }
  .section-heading { margin-bottom: 40px; }
  .faq-btn { gap: 14px; padding: 20px 0; }
  .faq-num { font-size: 12px; width: 28px; }
  .faq-q { font-size: 15px; }
  .faq-a { margin-left: 42px; font-size: 13px; }
}

/* ご利用にあたって(policy) */
.policy-section {
  padding: 80px 48px 120px;
  max-width: 880px;
  margin: 0 auto;
}
.policy-intro {
  font-family: var(--sans-jp);
  font-size: 15px;
  font-weight: 300;
  line-height: 2;
  color: var(--text);
  margin-bottom: 48px;
}
.policy-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 72px;
  margin-bottom: 32px;
}
.policy-category:first-of-type { margin-top: 0; }
.policy-category-line {
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: 0.3;
}
.policy-category-title {
  font-family: var(--serif-jp);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  flex-shrink: 0;
}
.policy-group .policy-item:first-child { border-top: 1px solid var(--line); }
.policy-item {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.policy-item-header {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 16px;
}
.policy-num {
  font-family: var(--serif-en);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
}
.policy-vline {
  width: 1px;
  height: 18px;
  background: rgba(198, 160, 98, 0.35);
  flex-shrink: 0;
  align-self: center;
}
.policy-title {
  font-family: var(--serif-jp);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text);
  line-height: 1.5;
}
.policy-body {
  font-family: var(--sans-jp);
  font-size: 15px;
  font-weight: 300;
  line-height: 2;
  color: var(--text);
}
.policy-body p + p { margin-top: 1em; }
.policy-body ul {
  list-style: none;
  padding-left: 0;
  margin-top: 12px;
}
.policy-body ul li {
  position: relative;
  padding-left: 1.4em;
  line-height: 2;
  margin-bottom: 4px;
}
.policy-body ul li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--gold);
}
@media (max-width: 768px) {
  .policy-section { padding: 56px 24px 100px; }
  .policy-category-title { font-size: 13px; letter-spacing: 0.1em; }
  .policy-num { font-size: 18px; }
  .policy-title { font-size: 15px; }
  .policy-body { font-size: 14px; }
  .policy-item { padding: 24px 0; }
  .policy-item-header { gap: 10px; }
}

/* ACCESS - 補足注釈(定休日の祝祭日案内など)*/
.access-note {
  display: block;
  margin-top: 4px;
  font-size: 0.85em;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ACCESS - GBP リンクボタン */
.access-gbp {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.access-gbp-btn {
  flex: 1;
  min-width: 140px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 18px;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--line);
  text-decoration: none;
  font-family: var(--sans-jp);
  font-size: 0.9em;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
}

.access-gbp-btn:hover {
  background: rgba(198, 160, 98, 0.08);
  border-color: var(--gold);
  color: var(--gold-soft);
}

.access-gbp-icon {
  font-size: 1.1em;
  line-height: 1;
}

.access-gbp-text {
  font-weight: 500;
}

@media (max-width: 600px) {
  .access-gbp {
    flex-direction: column;
  }
  .access-gbp-btn {
    min-width: 0;
  }
}