/* ===================================================
   STUNNER — URBAN UNDERGROUND HIDEOUT
   Shared Stylesheet v2.0
=================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Bebas+Neue&family=Noto+Sans+JP:wght@300;400;500&display=swap');

/* --- TOKENS --- */
:root {
  --bg:       #0c0b09;
  --bg2:      #141210;
  --bg3:      #1c1a16;
  --text:     #e8e2d6;
  --muted:    #7a7060;
  --accent:   #c9a96e;
  --accent2:  #a07840;
  --red:      #c8402a;
  --border:   rgba(201,169,110,0.18);
  --font-en:  'Bebas Neue', sans-serif;
  --font-ser: 'Cormorant Garamond', serif;
  --font-jp:  'Noto Sans JP', sans-serif;
  --ease:     cubic-bezier(0.22, 1, 0.36, 1);
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-jp);
  font-weight: 300;
  line-height: 1.8;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- NOISE OVERLAY --- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ===================================================
   HEADER / NAV
=================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 64px;
  background: rgba(12,11,9,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.site-header .logo {
  font-family: var(--font-en);
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  color: var(--accent);
}
.site-nav {
  display: flex;
  gap: 2rem;
}
.site-nav a {
  font-family: var(--font-en);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  transition: color 0.2s;
}
.site-nav a:hover { color: var(--text); }
.header-rsv {
  font-family: var(--font-en);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  padding: 0.45rem 1.2rem;
  background: var(--red);
  color: #fff;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s;
}
.header-rsv:hover { background: #a03322; transform: translateY(-1px); }

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--text);
  transition: all 0.3s;
}
.mobile-nav {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
  z-index: 850;
  flex-direction: column;
  gap: 1.2rem;
}
.mobile-nav a {
  font-family: var(--font-en);
  letter-spacing: 0.2em;
  font-size: 1rem;
  color: var(--muted);
}
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav .mobile-rsv {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.7rem 1.5rem;
  background: var(--red);
  color: #fff;
  border-radius: 2px;
  font-family: var(--font-en);
  letter-spacing: 0.15em;
  width: fit-content;
}
.mobile-nav.open { display: flex; }

/* ===================================================
   PAGE BODY
=================================================== */
.page-body { padding-top: 64px; }

/* ===================================================
   HERO (index)
=================================================== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1a1510 0%, #0c0b09 50%, #0f0e12 100%);
}
.hero-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(201,169,110,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(201,169,110,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero-content {
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  font-family: var(--font-en);
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  color: var(--accent);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.2s forwards;
}
.hero-title {
  font-family: var(--font-en);
  font-size: clamp(3.5rem, 10vw, 8rem);
  line-height: 0.9;
  letter-spacing: 0.05em;
  color: var(--text);
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.4s forwards;
}
.hero-sub {
  font-family: var(--font-ser);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-style: italic;
  color: var(--muted);
  margin-top: 1rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.6s forwards;
}
.hero-jp {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.5rem;
  letter-spacing: 0.1em;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.7s forwards;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.9s forwards;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  background: var(--red);
  color: #fff;
  font-family: var(--font-en);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  border-radius: 2px;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: #a03322;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,64,42,0.3);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-en);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  border-radius: 2px;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(201,169,110,0.08);
  transform: translateY(-2px);
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s var(--ease) 1.4s forwards;
}
.hero-scroll span {
  font-family: var(--font-en);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--muted);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ===================================================
   SECTION COMMON
=================================================== */
section { padding: 6rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-family: var(--font-en);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: var(--accent);
  display: block;
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: var(--font-en);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.section-sub {
  font-family: var(--font-ser);
  font-style: italic;
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 3rem;
}
.divider {
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin: 1.5rem 0;
}

/* ===================================================
   NEWS SECTION
=================================================== */
.news-section { background: var(--bg2); }
.news-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.news-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.news-date {
  font-family: var(--font-en);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--muted);
  white-space: nowrap;
  padding-top: 0.1rem;
  min-width: 80px;
}
.news-badge {
  font-family: var(--font-en);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  white-space: nowrap;
  flex-shrink: 0;
}
.badge-column { background: rgba(201,169,110,0.15); color: var(--accent); border: 1px solid var(--border); }
.badge-event  { background: rgba(200,64,42,0.15); color: #e07060; border: 1px solid rgba(200,64,42,0.25); }
.badge-info   { background: rgba(120,160,200,0.15); color: #90b8e0; border: 1px solid rgba(120,160,200,0.25); }
.badge-media  { background: rgba(150,120,200,0.15); color: #b49be0; border: 1px solid rgba(150,120,200,0.25); }

/* ===== GALLERY ===== */
.gallery-section { padding: 5rem 1.5rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  max-width: 1080px;
  margin: 0 auto;
}
.gallery-item {
  position: relative;
  display: block;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  background: #000;
  aspect-ratio: 1 / 1;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease, opacity .3s ease;
  opacity: .92;
}
.gallery-item:hover img,
.gallery-item:focus-visible img { transform: scale(1.06); opacity: 1; }
.gallery-cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: .8rem .9rem .7rem;
  font-size: .8rem; color: #fff; text-align: left;
  background: linear-gradient(to top, rgba(0,0,0,.78), rgba(0,0,0,0));
  opacity: 0; transform: translateY(6px);
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
}
.gallery-item:hover .gallery-cap,
.gallery-item:focus-visible .gallery-cap { opacity: 1; transform: none; }
/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  display: none; align-items: center; justify-content: center;
  background: rgba(0,0,0,.92); padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 92vw; max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 10px 60px rgba(0,0,0,.6);
}
.lightbox-close {
  position: absolute; top: 1.2rem; right: 1.6rem;
  width: 44px; height: 44px;
  font-size: 2rem; line-height: 1; color: #fff;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%; cursor: pointer;
}
.lightbox-close:hover { background: rgba(255,255,255,.18); }

/* ===== MOVIE (TikTok embeds) ===== */
.movie-section { padding: 5rem 1.5rem; }
.movie-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 1120px;
  margin: 0 auto;
}
.movie-grid .tiktok-embed {
  margin: 0 !important;
  max-width: 325px;
  min-width: 280px;
  width: 100%;
}

/* ===================================================
   v2.3 — CINEMATIC HERO（クロスフェード・スライドショー）
   写真を増やすには index.html の #heroSlides に
   <div class="hero-slide" style="background-image:url('images/xxx.jpg')"></div>
   を1行足すだけ（自動でローテーションに加わる）。
=================================================== */
.hero-slides { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 42%;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.6s ease;
  filter: saturate(1.06) contrast(1.04) brightness(0.98);
  will-change: opacity, transform;
}
.hero-slide.is-active {
  opacity: 1;
  animation: kenBurns 8s ease-out forwards;
}
@keyframes kenBurns {
  from { transform: scale(1.06); }
  to   { transform: scale(1.16) translateY(-1.5%); }
}
/* 可読性スクリム（写真でも文字がくっきり読める） */
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 72% 56% at 50% 47%, rgba(12,11,9,0.58) 0%, rgba(12,11,9,0.30) 58%, rgba(12,11,9,0) 100%),
    linear-gradient(to bottom, rgba(12,11,9,0.62) 0%, rgba(12,11,9,0.28) 40%, rgba(12,11,9,0.55) 72%, rgba(12,11,9,0.9) 100%);
}
/* スライド個別の色補正は .hero-slide 側に集約済み */
/* 文字が順に立ち上がる入場アニメ */
@keyframes heroRise {
  from { opacity: 0; transform: translateY(30px); filter: blur(8px); }
  to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
}
.hero-eyebrow,
.hero-title,
.hero-sub,
.hero-jp,
.hero-actions {
  opacity: 0;
  animation: heroRise 1.2s var(--ease) forwards;
}
.hero-eyebrow { animation-delay: 0.25s; }
.hero-title   { animation-delay: 0.50s; }
.hero-sub     { animation-delay: 0.92s; }
.hero-jp      { animation-delay: 1.12s; }
.hero-actions { animation-delay: 1.35s; }
.hero-scroll  { opacity: 0; animation: heroRise 1.2s var(--ease) 1.7s forwards; }
@media (prefers-reduced-motion: reduce) {
  .hero-eyebrow, .hero-title, .hero-sub, .hero-jp, .hero-actions, .hero-scroll {
    opacity: 1; animation: none; filter: none;
  }
  .hero-slide { animation: none; transform: none; }
}
.news-text {
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
}
.news-cta {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
}

/* ===================================================
   ABOUT SECTION
=================================================== */
.about-section { background: var(--bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-text p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 2;
  margin-bottom: 1rem;
}
.about-text p strong {
  color: var(--text);
  font-weight: 400;
}
.about-visual {
  position: relative;
}
.about-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: 2.5rem;
  border-radius: 4px;
}
.about-stat {
  margin-bottom: 2rem;
}
.about-stat .num {
  font-family: var(--font-en);
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
}
.about-stat .label {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  margin-top: 0.3rem;
}
.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.about-tag {
  font-family: var(--font-en);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--border);
  color: var(--muted);
  border-radius: 2px;
}

/* ===================================================
   RECOMMEND SECTION
=================================================== */
.recommend-section { background: var(--bg2); }
.recommend-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.rec-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.rec-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.rec-img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.rec-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.rec-card:hover .rec-img img { transform: scale(1.05); }
.rec-img-placeholder {
  aspect-ratio: 4/3;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-family: var(--font-en);
  letter-spacing: 0.1em;
  font-size: 0.8rem;
}
.rec-body { padding: 1.2rem; }
.rec-name {
  font-family: var(--font-ser);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.rec-name-jp {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.rec-desc { font-size: 0.82rem; color: var(--muted); }
.rec-price {
  font-family: var(--font-en);
  font-size: 0.85rem;
  color: var(--accent);
  margin-top: 0.5rem;
}

/* ===================================================
   INSTAGRAM SECTION
=================================================== */
.instagram-section {
  background: var(--bg);
  text-align: center;
}
.ig-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin: 2.5rem 0;
  border-radius: 4px;
  overflow: hidden;
}
.ig-cell {
  aspect-ratio: 1;
  background: var(--bg3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: opacity 0.3s;
  cursor: pointer;
}
.ig-cell:hover { opacity: 0.8; }
.ig-cell-inner {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1210 0%, #0d1520 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
}
.ig-cell svg { opacity: 0.25; }
.ig-overlay {
  position: absolute;
  inset: 0;
  background: rgba(201,169,110,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.ig-cell:hover .ig-overlay { opacity: 1; }
.ig-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.ig-handle {
  font-family: var(--font-en);
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}
.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
  font-family: var(--font-en);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  border-radius: 2px;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-instagram:hover { opacity: 0.9; transform: translateY(-2px); }
.ig-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.5rem;
}

/* ===================================================
   ACCESS SECTION
=================================================== */
.access-section { background: var(--bg2); }
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.access-map {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.access-map iframe {
  width: 100%;
  height: 360px;
  display: block;
  filter: grayscale(50%) invert(90%) hue-rotate(180deg);
}
.access-info h3 {
  font-family: var(--font-en);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  color: var(--accent);
}
.access-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  align-items: flex-start;
}
.access-row .label {
  font-family: var(--font-en);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  min-width: 70px;
  padding-top: 0.15rem;
}
.access-row .val { color: var(--text); line-height: 1.6; }
.access-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}
.btn-sm {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-en);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  border-radius: 2px;
  transition: border-color 0.2s, background 0.2s;
}
.btn-sm:hover { border-color: var(--accent); background: rgba(201,169,110,0.08); }
.btn-sm.red { border-color: var(--red); color: var(--red); }
.btn-sm.red:hover { background: rgba(200,64,42,0.1); }

/* ===================================================
   FOOTER
=================================================== */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 3rem 2rem 2rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand .logo-lg {
  font-family: var(--font-en);
  font-size: 2.5rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: 0.3rem;
}
.footer-brand p {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer-col h4 {
  font-family: var(--font-en);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--muted);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.75rem;
  color: var(--muted);
}
.footer-social {
  display: flex;
  gap: 1rem;
}
.footer-social a {
  font-family: var(--font-en);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-social a:hover { color: var(--accent); }

/* ===================================================
   FLOATING BUTTONS
=================================================== */
.floating-btns {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 800;
}
.float-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.2rem;
  border-radius: 28px;
  font-family: var(--font-en);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.float-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 28px rgba(0,0,0,0.5);
}
.float-rsv { background: var(--red); }
.float-ig  { background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045); }
.float-btn svg { flex-shrink: 0; }

/* ===================================================
   PAGE HERO (sub pages)
=================================================== */
.page-hero {
  position: relative;
  padding: 6rem 2rem 4rem;
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--bg2), var(--bg));
}
.page-hero-eyebrow {
  font-family: var(--font-en);
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  color: var(--accent);
  position: relative;
  z-index: 1;
  margin-bottom: 0.8rem;
  display: block;
}
.page-hero-title {
  font-family: var(--font-en);
  font-size: clamp(2.5rem, 7vw, 5rem);
  color: var(--text);
  position: relative;
  z-index: 1;
  line-height: 1;
}
.page-hero-sub {
  font-family: var(--font-ser);
  font-style: italic;
  color: var(--muted);
  position: relative;
  z-index: 1;
  margin-top: 0.8rem;
  font-size: 1rem;
}
.page-hero-bg-text {
  position: absolute;
  font-family: var(--font-en);
  font-size: clamp(5rem, 15vw, 12rem);
  color: rgba(201,169,110,0.04);
  pointer-events: none;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
}

/* ===================================================
   MENU PAGE
=================================================== */
.today-banner {
  background: linear-gradient(135deg, var(--bg3), rgba(201,169,110,0.08));
  border: 1px solid var(--accent);
  border-radius: 4px;
  padding: 1.5rem 2rem;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.today-label {
  font-family: var(--font-en);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: var(--accent);
  white-space: nowrap;
}
.today-text {
  font-size: 0.9rem;
  color: var(--text);
}
.menu-tabs {
  display: flex;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.menu-tab {
  padding: 0.7rem 1.5rem;
  font-family: var(--font-en);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  cursor: pointer;
  background: none;
  border: none;
  border-right: 1px solid var(--border);
  transition: all 0.2s;
  flex: 1;
}
.menu-tab:last-child { border-right: none; }
.menu-tab:hover { color: var(--text); background: rgba(255,255,255,0.03); }
.menu-tab.active { background: var(--bg3); color: var(--accent); }
.menu-section { display: none; }
.menu-section.active { display: block; }
.rec-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 3rem;
}
.menu-category {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  margin-bottom: 2rem;
}
.menu-category h3 {
  font-family: var(--font-en);
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 1.5rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border);
}
.menu-items { display: flex; flex-direction: column; gap: 0; }
.menu-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(201,169,110,0.08);
  gap: 1rem;
}
.menu-row:last-child { border-bottom: none; }
.menu-item-name { font-size: 0.9rem; color: var(--text); }
.menu-item-note { font-size: 0.78rem; color: var(--muted); margin-top: 0.1rem; }
.menu-item-price {
  font-family: var(--font-en);
  font-size: 0.85rem;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
}
.menu-badge-pop {
  font-family: var(--font-en);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  padding: 0.15rem 0.5rem;
  background: rgba(200,64,42,0.2);
  color: #e07060;
  border-radius: 2px;
  margin-left: 0.5rem;
  vertical-align: middle;
}
.topping-list {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.8;
  background: var(--bg);
  padding: 1rem 1.5rem;
  border-radius: 2px;
  border-left: 2px solid var(--border);
}
.course-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}
.course-card h3 {
  font-family: var(--font-ser);
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.course-price {
  font-family: var(--font-en);
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.course-tag {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.7rem;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 2px;
  margin-bottom: 1rem;
}
.course-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.course-items li {
  font-size: 0.88rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.course-items li::before {
  content: '—';
  color: var(--accent);
  opacity: 0.5;
}
.course-note {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ===================================================
   COLUMN PAGE
=================================================== */
.col-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.col-filter {
  padding: 0.4rem 1rem;
  border: 1px solid var(--border);
  color: var(--muted);
  font-family: var(--font-en);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  border-radius: 20px;
  cursor: pointer;
  background: none;
  transition: all 0.2s;
}
.col-filter:hover { border-color: var(--accent); color: var(--text); }
.col-filter.active { background: var(--accent); color: var(--bg); border-color: var(--accent); }
.col-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.col-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.col-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.col-card-body { padding: 1.5rem; }
.col-card-meta {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
}
.col-card-date {
  font-family: var(--font-en);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: var(--muted);
}
.col-cat-badge {
  font-family: var(--font-en);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
}
.cat-menu   { background: rgba(201,169,110,0.15); color: var(--accent); }
.cat-space  { background: rgba(100,150,200,0.15); color: #90b8e0; }
.cat-event  { background: rgba(200,64,42,0.15); color: #e07060; }
.cat-area   { background: rgba(80,160,120,0.15); color: #80c8a0; }
.cat-rental { background: rgba(160,80,200,0.15); color: #c090e0; }
.cat-info   { background: rgba(150,150,150,0.15); color: #aaa; }
.col-card-title {
  font-family: var(--font-ser);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 0.6rem;
}
.col-card-excerpt {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.col-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font-en);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-top: 1rem;
}

/* ===================================================
   EVENT PAGE
=================================================== */
.event-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 2rem;
}
.event-date-banner {
  background: var(--bg);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  border-bottom: 1px solid var(--border);
}
.event-date-num {
  font-family: var(--font-en);
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
}
.event-date-detail {
  font-family: var(--font-en);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  color: var(--muted);
}
.event-body { padding: 2rem; }
.event-body h3 {
  font-family: var(--font-ser);
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 1rem;
  font-weight: 600;
}
.event-body p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.8;
}
.event-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.event-meta-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.88rem;
}
.event-meta-row .emi {
  color: var(--accent);
  font-size: 1rem;
}
.event-meta-row span { color: var(--muted); }
.event-meta-row strong { color: var(--text); font-weight: 400; }
.rental-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.rental-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
}
.rental-card h3 {
  font-family: var(--font-en);
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1rem;
}
.rental-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.rental-card li {
  font-size: 0.88rem;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.rental-card li::before { content: '—'; color: var(--border); flex-shrink: 0; }
.rental-card .note {
  font-size: 0.78rem;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 0.8rem;
  margin-top: 0.5rem;
}

/* ===================================================
   FAQ PAGE
=================================================== */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 0;
  cursor: pointer;
  gap: 1rem;
}
.faq-q-text {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 400;
  line-height: 1.5;
}
.faq-icon {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--accent);
  border-radius: 1px;
  transition: transform 0.3s;
}
.faq-icon::before { width: 12px; height: 1px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-icon::after  { width: 1px; height: 12px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-item.open .faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); }
.faq-a {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.9;
  padding: 0 0 1.3rem;
  display: none;
}
.faq-item.open .faq-a { display: block; }
.faq-cta {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  text-align: center;
  margin-top: 3rem;
}
.faq-cta p { font-size: 0.9rem; color: var(--muted); margin-bottom: 1.2rem; }

/* ===================================================
   RSV CTA SECTION
=================================================== */
.rsv-cta {
  background: var(--bg3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 2rem;
  text-align: center;
}
.rsv-cta .section-title { margin-bottom: 0.5rem; }
.rsv-cta p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 2rem;
}

/* ===================================================
   ANIMATIONS
=================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }

/* ===================================================
   v2.4 — MOTION 精緻化
=================================================== */
/* グリッドのカードが順に立ち上がる（animation＝hoverに干渉しない） */
@keyframes staggerIn {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* コンテナ自体は移動させず、子だけを動かす（二重モーション回避） */
.recommend-grid.reveal, .rec-grid-4.reveal, .scene-grid.reveal,
.review-grid.reveal, .gallery-grid.reveal, .movie-grid.reveal, .col-grid.reveal { transform: none; }
.recommend-grid.reveal > *, .rec-grid-4.reveal > *, .scene-grid.reveal > *,
.review-grid.reveal > *, .gallery-grid.reveal > *, .movie-grid.reveal > *, .col-grid.reveal > * { opacity: 0; }
.recommend-grid.reveal.visible > *, .rec-grid-4.reveal.visible > *, .scene-grid.reveal.visible > *,
.review-grid.reveal.visible > *, .gallery-grid.reveal.visible > *, .movie-grid.reveal.visible > *,
.col-grid.reveal.visible > * { animation: staggerIn 0.7s var(--ease) both; }
.reveal.visible > *:nth-child(2) { animation-delay: 0.07s; }
.reveal.visible > *:nth-child(3) { animation-delay: 0.14s; }
.reveal.visible > *:nth-child(4) { animation-delay: 0.21s; }
.reveal.visible > *:nth-child(5) { animation-delay: 0.28s; }
.reveal.visible > *:nth-child(6) { animation-delay: 0.35s; }
.reveal.visible > *:nth-child(n+7) { animation-delay: 0.42s; }

/* スクロール進捗バー（render.jsがbody直下に注入） */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(to right, var(--accent), var(--accent2));
  box-shadow: 0 0 12px rgba(201,169,110,0.5);
  z-index: 1000; pointer-events: none;
  transition: width 0.1s linear;
}

/* ナビ：アニメーション下線 */
.site-nav a { position: relative; }
.site-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -4px;
  width: 100%; height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.site-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

/* ボタン：繊細な持ち上がり */
.btn-primary, .btn-outline {
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s, color 0.3s, border-color 0.3s;
}
.btn-primary:hover, .btn-outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

@media (prefers-reduced-motion: reduce) {
  .recommend-grid.reveal.visible > *, .rec-grid-4.reveal.visible > *, .scene-grid.reveal.visible > *,
  .review-grid.reveal.visible > *, .gallery-grid.reveal.visible > *, .movie-grid.reveal.visible > *,
  .col-grid.reveal.visible > *,
  .recommend-grid.reveal > *, .rec-grid-4.reveal > *, .scene-grid.reveal > *,
  .review-grid.reveal > *, .gallery-grid.reveal > *, .movie-grid.reveal > *, .col-grid.reveal > * {
    animation: none; opacity: 1;
  }
  .scroll-progress { display: none; }
  .btn-primary:hover, .btn-outline:hover { transform: none; }
}

/* ===================================================
   RESPONSIVE
=================================================== */
@media (max-width: 900px) {
  .site-nav, .header-rsv { display: none; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .access-grid { grid-template-columns: 1fr; }
  .recommend-grid { grid-template-columns: 1fr 1fr; }
  .rec-grid-4 { grid-template-columns: 1fr 1fr; }
  .col-grid { grid-template-columns: 1fr 1fr; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { flex-direction: column; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .rental-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  section { padding: 4rem 1.2rem; }
  .recommend-grid { grid-template-columns: 1fr; }
  .rec-grid-4 { grid-template-columns: 1fr 1fr; }
  .col-grid { grid-template-columns: 1fr; }
  .ig-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-links { grid-template-columns: 1fr; }
  .menu-tabs { flex-direction: column; }
  .menu-tab { border-right: none; border-bottom: 1px solid var(--border); }
  .float-btn { padding: 0.6rem 0.9rem; font-size: 0.7rem; }
  .floating-btns { bottom: 1.2rem; right: 1.2rem; }
  .hero-actions { flex-direction: column; align-items: center; }
}

/* ===================================================
   ADDITIONS v2.2 — Hero polish / scroll states / micro-interactions
=================================================== */

/* HERO — gold shimmer & particles */
.hero-title {
  background: linear-gradient(180deg, #f0e3c7 0%, #c9a96e 50%, #a07840 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 4px 30px rgba(201,169,110,0.08);
}
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background-image:
    radial-gradient(circle at 18% 22%, rgba(201,169,110,0.10) 0, rgba(201,169,110,0) 40%),
    radial-gradient(circle at 82% 18%, rgba(201,169,110,0.06) 0, rgba(201,169,110,0) 40%),
    radial-gradient(circle at 70% 78%, rgba(160,120,64,0.08) 0, rgba(201,169,110,0) 50%),
    radial-gradient(circle at 30% 90%, rgba(201,169,110,0.05) 0, rgba(201,169,110,0) 35%);
  animation: heroBreath 18s ease-in-out infinite;
}
@keyframes heroBreath {
  0%, 100% { transform: translate3d(0,0,0) scale(1);   opacity: 0.85; }
  50%      { transform: translate3d(0,-2%,0) scale(1.05); opacity: 1; }
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--bg2));
  z-index: 1;
  pointer-events: none;
}

/* HEADER scrolled state */
.site-header.scrolled {
  height: 56px;
  background: rgba(12,11,9,0.97);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.site-header.scrolled .logo { font-size: 1.35rem; }

/* Section gold divider before titles */
.divider {
  background: linear-gradient(to right, var(--accent), transparent);
  width: 60px;
  height: 1px;
}

/* Card hover lift — unified */
.col-card:hover, .scene-card:hover, .review-card:hover, .gallery-card:hover, .rec-card:hover {
  border-color: rgba(201,169,110,0.4);
}

.rec-card { transition: transform 0.3s var(--ease), border-color 0.2s, box-shadow 0.3s; }
.rec-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }

.review-card {
  transition: transform 0.3s var(--ease), border-color 0.2s, box-shadow 0.3s;
}
.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.35);
}

/* Instagram cell — rich hover */
.ig-cell { transition: transform 0.3s var(--ease); }
.ig-cell:hover { transform: scale(1.04); }
.ig-cell:hover .ig-overlay { opacity: 1; }

/* News item hover background */
.news-item:hover { background: rgba(201,169,110,0.04); padding-left: 0.6rem; padding-right: 0.6rem; }
.news-item { transition: padding 0.3s var(--ease), background 0.2s; }

/* Search box on column page */
.col-search-wrap {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  margin: 0 0 1.5rem;
  max-width: 460px;
}
.col-search {
  flex: 1;
  background: var(--bg3);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.7rem 1rem;
  font-family: var(--font-jp);
  font-size: 0.9rem;
}
.col-search:focus {
  outline: none;
  border-color: var(--accent);
}
.col-search-meta {
  font-family: var(--font-en);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  white-space: nowrap;
}

/* Article hero image */
.article-hero-img {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  border-radius: 4px;
  background: var(--bg3);
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}
.article-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.article-hero-img.no-img {
  background:
    radial-gradient(circle at 30% 40%, rgba(201,169,110,0.14), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(160,120,64,0.10), transparent 60%),
    var(--bg3);
}
.article-hero-img.no-img::after {
  content: "STUNNER JOURNAL";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: clamp(2rem, 6vw, 4rem);
  letter-spacing: 0.18em;
  color: rgba(201,169,110,0.18);
}

/* Scene hero image */
.scene-hero-img { aspect-ratio: 21/9; }

/* Contact form */
.contact-form {
  display: grid;
  gap: 1rem;
  max-width: 580px;
  margin: 2rem auto 0;
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  background: var(--bg3);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 0.8rem 1rem;
  font-family: var(--font-jp);
  font-size: 0.92rem;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--accent);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form label {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: -0.4rem;
}
.contact-submit {
  margin-top: 1rem;
  font-family: var(--font-en);
  letter-spacing: 0.2em;
  padding: 0.95rem;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.contact-submit:hover { background: #a03322; transform: translateY(-1px); }
.contact-success {
  background: rgba(201,169,110,0.10);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.2rem 1.4rem;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

/* SnapWidget Instagram embed */
.snapwidget-wrap { position: relative; }
.snapwidget-wrap iframe {
  width: 100% !important;
  border: 0 !important;
  display: block;
  max-width: 100%;
}
#snapwidget-slot:empty + .ig-fallback { display: grid; }
.snapwidget-wrap.has-widget .ig-fallback { display: none; }

/* Event card image */
.event-img {
  width: 100%;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.event-img img {
  display: block;
  max-width: 100%;
  max-height: 900px;
  width: auto;
  height: auto;
  object-fit: contain;
}
.event-img-missing { display: none; }

/* Improved menu-badge-pop visibility */
.menu-badge-pop {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: var(--bg);
  font-family: var(--font-en);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  margin-left: 0.4rem;
  vertical-align: middle;
  font-weight: 500;
}

/* ===================================================
   ADDITIONS v2.1 — Detail page / Scenes / Reviews / Gallery
=================================================== */

/* missing category color */
.cat-story  { background: rgba(201,169,110,0.12); color: var(--accent2); }

/* card link overlay (still shows hover/move) */
.col-card { position: relative; }
.col-card-cover-link {
  position: absolute; inset: 0; z-index: 1;
}
.col-card-body { position: relative; z-index: 2; }
.col-card-title a, .col-card-link {
  position: relative; z-index: 3;
}
.col-card-title a:hover { color: var(--accent); }

/* ARTICLE DETAIL */
.article-body {
  max-width: 720px;
  margin: 3rem auto 0;
  padding: 0 1.5rem;
}
.article-body p {
  font-size: 1rem;
  line-height: 2;
  color: var(--text);
  margin-bottom: 1.6rem;
}
/* 記事内の見出し（"## 見出し" 記法で出力） */
.article-body .article-h2 {
  font-family: var(--font-ser);
  font-size: 1.45rem;
  line-height: 1.5;
  color: var(--accent);
  margin: 2.8rem 0 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
/* Q&Aブロック（FAQ記事。FAQPageスキーマと連動） */
.article-body .article-qa {
  margin-bottom: 1.6rem;
  padding: 1.2rem 1.4rem;
  background: rgba(255,255,255,0.03);
  border-left: 3px solid var(--accent);
  border-radius: 4px;
}
.article-body .article-qa .qa-q {
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.article-body .article-qa .qa-a {
  color: var(--muted);
  margin-bottom: 0;
  line-height: 1.9;
}
.article-cta {
  margin: 2.5rem 0 1rem;
  text-align: center;
}
.article-related {
  max-width: 1080px;
  margin: 4rem auto 0;
  padding: 0 1.5rem;
}
.article-related-title {
  font-family: var(--font-ser);
  font-size: 1.6rem;
  color: var(--accent);
  margin: 0.4rem 0 1.5rem;
}

/* SCENES */
.scene-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.scene-card {
  display: block;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.8rem 1.6rem;
  transition: transform 0.3s var(--ease), border-color 0.2s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.scene-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.scene-card h3 {
  font-family: var(--font-ser);
  font-size: 1.4rem;
  color: var(--accent);
  margin: 0.5rem 0 0.6rem;
}
.scene-card p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.scene-card-arrow {
  font-family: var(--font-en);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--accent);
}

.scene-detail {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}
.scene-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 0.5rem;
}
.scene-bullets li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.7;
}
.scene-bullets li::before {
  content: '◇';
  position: absolute;
  left: 0;
  color: var(--accent);
}
.scene-side .about-card {
  position: sticky;
  top: 90px;
}

@media (max-width: 900px) {
  .scene-detail { grid-template-columns: 1fr; }
}

/* REVIEWS */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1.6rem;
}
.review-stars {
  color: var(--accent);
  letter-spacing: 0.2em;
  font-size: 0.95rem;
  margin-bottom: 0.6rem;
}
.review-text {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 1rem;
}
.review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.review-name { color: var(--accent); }
.review-source {
  border: 1px solid var(--border);
  padding: 0.1rem 0.5rem;
  border-radius: 2px;
}

/* GALLERY */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.gallery-card {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.3s var(--ease);
}
.gallery-card:hover { transform: translateY(-4px); }
.gallery-card-banner {
  background: linear-gradient(135deg, rgba(201,169,110,0.15), rgba(160,120,64,0.08));
  padding: 1.4rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}
.gallery-card-num {
  font-family: var(--font-en);
  font-size: 1.6rem;
  color: var(--accent);
  letter-spacing: 0.05em;
}
.gallery-card-tag {
  font-family: var(--font-en);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  padding: 0.2rem 0.6rem;
  background: rgba(201,169,110,0.18);
  color: var(--accent);
  border-radius: 2px;
}
.gallery-card-body { padding: 1.4rem 1.5rem; }
.gallery-card-body h3 {
  font-family: var(--font-ser);
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.gallery-card-body p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.7;
}

