/* ============================================================
   ゑびす連 Awa Odori Theme — Main Stylesheet v2.1
   Cinematic editorial refresh
   Colors: Ink Black × Antique Gold × Deep Vermilion
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
  /* Brand Colors */
  --color-primary:   #C6A15B; /* antique gold */
  --color-secondary: #111318; /* ink black */
  --color-accent:    #A83224; /* deep vermilion */

  /* Gold Scale (legacy variable names kept for compatibility) */
  --pink-700: #745624;
  --pink-600: #98743A;
  --pink-500: var(--color-primary);
  --pink-400: #D6B775;
  --pink-300: #E1CC9A;
  --pink-200: #EFE2C7;
  --pink-100: #F5EFE2;
  --pink-50:  #FAF7EF;

  /* Ink Scale (legacy variable names kept for compatibility) */
  --blue-700: #090A0D;
  --blue-600: #111318;
  --blue-500: var(--color-secondary);
  --blue-400: #1B1F26;
  --blue-300: #2A303A;
  --blue-100: #E4E0D7;
  --blue-50:  #F4F1EA;

  /* Vermilion Scale (legacy variable names kept for compatibility) */
  --yellow-600: #5F1710;
  --yellow-500: #842217;
  --yellow-400: var(--color-accent);
  --yellow-300: #C24A38;
  --yellow-100: #E7B2A9;
  --yellow-50:  #F6E4E0;

  /* Neutral */
  --cream:    #F3EFE6;
  --white:    #FFFFFF;
  --dark-900: #090A0D;
  --dark-800: #111318;
  --gray-700: #363A42;
  --gray-500: #72716C;
  --gray-300: #C8C0B4;
  --gray-100: #E8E1D6;

  /* Section Backgrounds */
  --bg-cream:   #F3EFE6;
  --bg-pink:    #ECE6DA;
  --bg-yellow:  #E7DFD0;
  --bg-blue:    #111318;
  --bg-purple:  #181A20;
  --bg-dark:    #090A0D;

  /* Typography */
  --font-ja:   'Zen Kaku Gothic Antique', sans-serif;
  --font-body: 'Zen Kaku Gothic Antique', sans-serif;
  --font-en:   'DM Sans', 'Zen Kaku Gothic Antique', sans-serif;
  --font-serif:'Shippori Mincho', 'Noto Serif JP', Georgia, serif;

  /* Spacing */
  --sp-xs: 0.5rem;
  --sp-sm: 1rem;
  --sp-md: 2rem;
  --sp-lg: 4rem;
  --sp-xl: 7rem;

  /* Border Radius */
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  14px;
  --radius-xl:  18px;
  --radius-pill:100px;

  /* Shadow */
  --shadow-sm: 0 8px 24px rgba(9,10,13,0.08);
  --shadow-md: 0 18px 48px rgba(9,10,13,0.14);
  --shadow-lg: 0 30px 80px rgba(9,10,13,0.24);

  /* Easing */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

/* ============================================================
   ANIMATIONS & KEYFRAMES
   ============================================================ */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33%       { transform: translateY(-18px) rotate(2deg); }
  66%       { transform: translateY(-8px) rotate(-2deg); }
}
@keyframes float-slow {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-24px); }
}
@keyframes float-rev {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(14px); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes pulse-line {
  0%   { opacity: 1; transform: scaleY(1); }
  50%  { opacity: 0.4; transform: scaleY(0.7); }
  100% { opacity: 1; transform: scaleY(1); }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes spin-slow {
  to { transform: rotate(360deg); }
}
@keyframes wave-anim {
  0%   { d: path("M0,40 C240,80 480,0 720,40 C960,80 1200,0 1440,40"); }
  50%  { d: path("M0,30 C240,0 480,80 720,30 C960,0 1200,80 1440,30"); }
  100% { d: path("M0,40 C240,80 480,0 720,40 C960,80 1200,0 1440,40"); }
}
@keyframes bubble-float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25%       { transform: translate(10px, -15px) rotate(5deg); }
  50%       { transform: translate(-5px, -25px) rotate(-3deg); }
  75%       { transform: translate(-12px, -10px) rotate(8deg); }
}
@keyframes overlay-open {
  from { clip-path: circle(0% at 48px calc(100% - 48px)); }
  to   { clip-path: circle(150% at 48px calc(100% - 48px)); }
}
@keyframes overlay-close {
  from { clip-path: circle(150% at 48px calc(100% - 48px)); }
  to   { clip-path: circle(0% at 48px calc(100% - 48px)); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
  opacity: 1;
  transform: translate(0);
}

/* ============================================================
   FLOATING MENU BUTTON（左下固定 — wonder-factory.jp スタイル）
   ============================================================ */
.floating-menu-btn {
  position: fixed;
  left: 1.5rem;
  bottom: 1.5rem;
  z-index: 1000;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--dark-900);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s;
  overflow: hidden;
}
.floating-menu-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--pink-500), var(--blue-600));
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: 50%;
}
.floating-menu-btn:hover::before { opacity: 1; }
.floating-menu-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}
.floating-menu-btn.menu-open {
  background: white;
}
.floating-menu-label {
  font-family: var(--font-en);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  color: white;
  transition: opacity 0.2s;
}
.floating-menu-btn.menu-open .floating-menu-label {
  opacity: 0;
}
.floating-menu-icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
  z-index: 1;
}
.floating-menu-icon span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: all 0.35s var(--ease);
  transform-origin: center;
}
.floating-menu-btn.menu-open .floating-menu-icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
  background: var(--dark-900);
}
.floating-menu-btn.menu-open .floating-menu-icon span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.floating-menu-btn.menu-open .floating-menu-icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
  background: var(--dark-900);
}

/* ============================================================
   NAVIGATION OVERLAY（フルスクリーン）
   ============================================================ */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--dark-900);
  display: flex;
  flex-direction: column;
  padding: 3rem 2.5rem 3rem;
  clip-path: circle(0% at 48px calc(100% - 48px));
  transition: clip-path 0.7s cubic-bezier(0.77, 0, 0.175, 1);
  pointer-events: none;
  overflow-y: auto;
}
.nav-overlay.open {
  clip-path: circle(150% at 48px calc(100% - 48px));
  pointer-events: all;
}

/* オーバーレイ内ロゴ */
.nav-overlay-logo {
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s 0.3s, transform 0.4s 0.3s;
}
.nav-overlay.open .nav-overlay-logo { opacity: 1; transform: translateY(0); }
.nav-overlay-logo a { display: flex; flex-direction: column; gap: 0.2rem; line-height: 1; }
.nav-logo-ja {
  font-family: var(--font-ja);
  font-size: 2rem;
  font-weight: 700;
  color: var(--pink-400);
}
.nav-logo-en {
  font-family: var(--font-en);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.4);
}

/* 閉じるボタン */
.nav-overlay-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  transition: background 0.25s, transform 0.3s;
  opacity: 0;
  transition: opacity 0.4s 0.3s, background 0.25s, transform 0.3s;
}
.nav-overlay.open .nav-overlay-close { opacity: 1; }
.nav-overlay-close span {
  display: block;
  width: 20px;
  height: 2px;
  background: white;
  border-radius: 2px;
}
.nav-overlay-close span:nth-child(1) { transform: translateY(1px) rotate(45deg); }
.nav-overlay-close span:nth-child(2) { transform: translateY(-1px) rotate(-45deg); }
.nav-overlay-close:hover { background: rgba(255,255,255,0.15); transform: rotate(90deg) scale(1.1); }

/* オーバーレイナビリンク */
.nav-overlay-links { flex: 1; }
.nav-overlay-links ul { display: flex; flex-direction: column; }
.nav-overlay-item {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.4s, transform 0.4s;
}
.nav-overlay.open .nav-overlay-item:nth-child(1) { opacity:1; transform:none; transition-delay:0.20s; }
.nav-overlay.open .nav-overlay-item:nth-child(2) { opacity:1; transform:none; transition-delay:0.25s; }
.nav-overlay.open .nav-overlay-item:nth-child(3) { opacity:1; transform:none; transition-delay:0.30s; }
.nav-overlay.open .nav-overlay-item:nth-child(4) { opacity:1; transform:none; transition-delay:0.35s; }
.nav-overlay.open .nav-overlay-item:nth-child(5) { opacity:1; transform:none; transition-delay:0.40s; }
.nav-overlay.open .nav-overlay-item:nth-child(6) { opacity:1; transform:none; transition-delay:0.45s; }
.nav-overlay.open .nav-overlay-item:nth-child(7) { opacity:1; transform:none; transition-delay:0.50s; }

.nav-overlay-link {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: padding-left 0.3s var(--ease);
  position: relative;
}
.nav-overlay-link::after {
  content: '→';
  position: absolute;
  right: 0;
  color: rgba(255,255,255,0.3);
  font-size: 1rem;
  transition: color 0.3s, transform 0.3s;
}
.nav-overlay-link:hover {
  padding-left: 0.75rem;
}
.nav-overlay-link:hover::after {
  color: var(--pink-400);
  transform: translateX(4px);
}
.nav-num {
  font-family: var(--font-en);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  flex-shrink: 0;
  width: 24px;
}
.nav-ja {
  font-family: var(--font-ja);
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 700;
  color: white;
  line-height: 1.2;
}
.nav-en {
  font-family: var(--font-en);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
}

/* オーバーレイ SNS */
.nav-overlay-sns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s 0.55s, transform 0.4s 0.55s;
}
.nav-overlay.open .nav-overlay-sns { opacity: 1; transform: translateY(0); }
.nav-sns-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  font-family: var(--font-en);
  transition: background 0.25s, color 0.25s, transform 0.25s;
}
.nav-sns-btn:hover {
  background: rgba(255,255,255,0.18);
  color: white;
  transform: translateY(-2px);
}

/* ============================================================
   SITE HEADER（固定 — スクロール時に表示）
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 0.75rem 2rem;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease), background 0.4s, box-shadow 0.4s;
}
.site-header.scrolled {
  transform: translateY(0);
  background: rgba(253,249,245,0.92);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo a {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}
.header-logo .logo-ja {
  font-family: var(--font-ja);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pink-500);
  letter-spacing: 0.04em;
}
.header-logo .logo-en {
  font-family: var(--font-en);
  font-size: 0.55rem;
  letter-spacing: 0.28em;
  color: var(--gray-500);
  text-transform: uppercase;
}

/* デスクトップナビ */
.desktop-nav {
  display: none;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .desktop-nav { display: flex; }
}
.desktop-nav a {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.2s;
}
.desktop-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pink-500);
  border-radius: 2px;
  transition: width 0.3s var(--ease);
}
.desktop-nav a:hover { color: var(--pink-500); }
.desktop-nav a:hover::after { width: 100%; }

/* ============================================================
   HERO (Full Background)
   ============================================================ */
.hero--fullbg {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark-900);
}

/* スライドショー背景 */
/* 初期表示用の背景（従来のヒーロー写真） */
.hero-initial-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  transition: opacity 2s ease-in-out;
}
/* スライドショー中は初期背景を非表示 */
.hero-slideshow-active .hero-initial-bg {
  opacity: 0;
  pointer-events: none;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: -5%; /* 余白を持たせてズームイン */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 2s ease-in-out, transform 8s ease-in-out;
}
.hero-slide.slide-active {
  opacity: 1;
  transform: scale(1.01);
}
.hero-slide.slide-zoom-out {
  transform: scale(1);
}

/* スライドショー中：ヒーローコンテンツ（タイトル等）を非表示 */
.hero-slideshow-active .hero-content--moving {
  opacity: 0;
  pointer-events: none;
}
.hero-slideshow-active .hero-scroll {
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease;
}

/* 暗色オーバーレイ (+ 少し下部にむけて暗く) */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(26, 18, 37, 0.0) 0%,
    rgba(26, 18, 37, 0.1) 60%,
    rgba(26, 18, 37, 0.5) 100%
  );
}

/* 光のパーティクル装飾 */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
}
.hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 10px 2px rgba(255, 255, 255, 0.5);
  animation: float-particle 10s infinite linear;
  opacity: 0;
}
@keyframes float-particle {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 0.8; }
  90% { opacity: 0.8; }
  100% { transform: translateY(-10vh) scale(1.5); opacity: 0; }
}
/* 個別パーティクル位置＆ディレイ */
.hero-particle--1 { left: 10%; animation-duration: 8s; animation-delay: 1s; }
.hero-particle--2 { left: 25%; animation-duration: 12s; animation-delay: 5s; }
.hero-particle--3 { left: 40%; animation-duration: 9s; animation-delay: 2s; width: 6px; height: 6px; }
.hero-particle--4 { left: 55%; animation-duration: 15s; animation-delay: 0s; }
.hero-particle--5 { left: 70%; animation-duration: 11s; animation-delay: 6s; }
.hero-particle--6 { left: 85%; animation-duration: 10s; animation-delay: 3s; width: 5px; height: 5px; }
.hero-particle--7 { left: 15%; animation-duration: 13s; animation-delay: 8s; }
.hero-particle--8 { left: 35%; animation-duration: 7s; animation-delay: 4s; }
.hero-particle--9 { left: 60%; animation-duration: 9s; animation-delay: 7s; }
.hero-particle--10 { left: 80%; animation-duration: 14s; animation-delay: 2s; }
.hero-particle--11 { left: 5%; animation-duration: 11s; animation-delay: 5s; width: 7px; height: 7px; }
.hero-particle--12 { left: 95%; animation-duration: 8s; animation-delay: 1s; }

/* ヒーロー コンテンツ（移動アニメーション対応） */
.hero-content--moving {
  position: absolute;
  z-index: 4;
  /* 初期位置：中央設定 */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 960px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: opacity 1.5s ease-in-out, transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

/* hero-state-active は使用しない（JSスライドショーで制御） */

/* 小見出し */
.hero-eyebrow-fullbg {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-family: var(--font-en);
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  color: var(--white);
  margin-bottom: 2rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  transition: all 1.5s ease;
}
/* hero-state-active eyebrow は不要（JSで制御） */
.eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--pink-400);
}

/* タイトルロゴ領域 */
.hero-title-logo {
  margin-bottom: 0.5rem;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.6));
}

/* 筆文字画像 */
.hero-calli-img {
  width: 100%;
  max-width: 320px;
  max-height: 20vh;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  transition: all 1.5s ease;
}
@media (min-width: 768px) {
  .hero-calli-img { 
    max-width: 500px; 
    max-height: 25vh;
  }
}

/* hero-state-active calli は不要（JSで制御） */


/* 代替 SVG */
.hero-calli-fallback {
  display: inline-block;
  width: 100%;
  max-width: 480px;
}
.hero-calli-svg {
  width: 100%;
  height: auto;
  overflow: visible;
}

/* タイトル下 EN */
.hero-title-en-fullbg {
  font-family: var(--font-en);
  font-size: 1.25rem;
  letter-spacing: 0.4em;
  color: var(--pink-300);
  margin-bottom: 2rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

/* サブタイトル */
.hero-subtitle-fullbg {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  line-height: 1.8;
  color: var(--white);
  margin-bottom: 3.5rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
  max-width: 600px;
  font-weight: 500;
}

/* CTA */
.hero-cta--fullbg {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-pill);
  background: var(--pink-500);
  color: white;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  box-shadow: 0 8px 24px rgba(9,10,13,0.28);
  text-decoration: none;
}
.btn-hero-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(9,10,13,0.36);
}
.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.4);
  color: white;
  font-weight: 700;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  text-decoration: none;
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,0.2);
  border-color: white;
  transform: translateY(-4px);
}

/* 管理者ヒント */
.hero-admin-hint {
  margin-top: 3rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  background: rgba(0,0,0,0.4);
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
  border: 1px dashed rgba(255,255,255,0.3);
}
.hero-admin-hint a {
  color: var(--pink-300);
  text-decoration: underline;
}

/* スクロール ガイド */
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-en);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.7);
  z-index: 3;
  animation: fade-up 0.8s var(--ease) 1.2s both;
}
.scroll-line {
  width: 1px;
  height: 55px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: pulse-line 2.2s ease-in-out infinite;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--pink-500), var(--pink-400));
  color: white;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 4px 24px rgba(9,10,13,0.2);
  transition: transform 0.25s var(--ease-bounce), box-shadow 0.25s;
  letter-spacing: 0.02em;
}
.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(9,10,13,0.3);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-pill);
  border: 2px solid var(--blue-500);
  color: var(--blue-500);
  font-weight: 700;
  font-size: 0.92rem;
  transition: all 0.25s var(--ease-bounce);
  letter-spacing: 0.02em;
}
.btn-outline:hover {
  background: var(--blue-500);
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(30,136,229,0.35);
}
.btn-admin {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-pill);
  border: 2px dashed var(--gray-300);
  color: var(--gray-500);
  font-size: 0.85rem;
  transition: all 0.25s;
}
.btn-admin:hover {
  border-color: var(--pink-500);
  color: var(--pink-500);
  background: var(--pink-50);
}
.admin-add-link {
  text-align: center;
  margin-top: 2rem;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-section {
  background: var(--yellow-400);
  padding: 1rem 0;
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-item {
  font-family: var(--font-ja);
  font-size: 1.05rem;
  font-weight: 700;
  white-space: nowrap;
  padding: 0 1.5rem;
  color: var(--dark-900);
  letter-spacing: 0.05em;
}
.marquee-sep {
  color: var(--pink-500);
  flex-shrink: 0;
  align-self: center;
  font-size: 0.8rem;
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section {
  padding: var(--sp-xl) var(--sp-md);
  position: relative;
  overflow: hidden;
}
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ============================================================
   THREADS SECTION
   ============================================================ */
.threads-section {
  background: linear-gradient(180deg, #FFFDF7 0%, var(--bg-pink) 100%);
  padding-top: var(--sp-lg);
  padding-bottom: var(--sp-lg);
}
.threads-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.threads-header .section-eyebrow {
  justify-content: center;
}
.threads-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: start;
}
.threads-card {
  min-width: 0;
  min-height: 360px;
  padding: 1rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.threads-card blockquote,
.threads-card iframe {
  max-width: 100% !important;
}
.threads-card blockquote {
  margin: 0 !important;
}
.threads-empty {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: var(--radius-md);
  background: var(--white);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.threads-empty-text {
  margin-bottom: 1.25rem;
  color: var(--gray-700);
  font-weight: 600;
}
.threads-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
}

@media (max-width: 1024px) {
  .threads-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .threads-grid {
    grid-template-columns: 1fr;
  }
  .threads-card {
    min-height: 300px;
  }
}

/* ============================================================
   YOUTUBE SHORTS SECTION
   ============================================================ */
.youtube-shorts-section {
  background: linear-gradient(180deg, #FFFDE7 0%, #FFF9F0 100%);
  padding-bottom: var(--sp-lg);
}
.youtube-shorts-section--empty {
  background: transparent;
}

.shorts-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.shorts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.shorts-item {
  border-radius: var(--radius-lg, 16px);
  overflow: hidden;
  box-shadow: var(--shadow-md, 0 8px 30px rgba(0,0,0,0.12));
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
  background: var(--dark-900);
}
.shorts-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}

.shorts-video-wrap {
  position: relative;
  width: 100%;
  padding-top: 177.78%; /* 9:16 アスペクト比 */
}
.shorts-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: var(--radius-lg, 16px);
}

/* YouTube CTA ボタン */
.shorts-cta {
  text-align: center;
  margin-top: 2.5rem;
}
.btn-youtube {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #FF0000, #CC0000);
  color: white;
  font-weight: 700;
  font-size: 0.92rem;
  transition: transform 0.25s var(--ease-bounce), box-shadow 0.25s;
  box-shadow: 0 4px 24px rgba(255,0,0,0.3);
  text-decoration: none;
}
.btn-youtube:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(255,0,0,0.45);
}

/* Shorts Grid 表示切り替え */
.shorts-grid--sp {
  display: none;
}

@media (max-width: 768px) {
  .shorts-grid--pc {
    display: none;
  }
  .shorts-grid--sp {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

/* セクションタイポグラフィ */
.section-eyebrow {
  font-family: var(--font-en);
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--pink-600);
  margin-bottom: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--pink-600);
}
.eyebrow--light { color: rgba(255,255,255,0.65); }
.eyebrow--light::before { background: rgba(255,255,255,0.65); }
.eyebrow--pink  { color: var(--pink-500); }
.eyebrow--pink::before { background: var(--pink-500); }

.section-heading-ja {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.3;
  color: var(--dark-900);
  letter-spacing: 0.05em;
}
.section-heading-ja--compact {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  letter-spacing: 0.03em;
}
.section-heading-en {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--pink-500);
  margin-top: 0.5rem;
  margin-bottom: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  font-style: italic;
}
.section-heading-en--small {
  font-family: var(--font-en);
  font-size: 0.72rem;
  color: var(--gray-500);
  margin-top: 0.25rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.08em;
  font-style: normal;
}
.heading--light    { color: white; }
.heading-en--light { color: rgba(255,255,255,0.65); }

/* セクション装飾円 */
.section-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.5;
}
.section-deco--1 {
  width: 300px; height: 300px;
  top: -80px; right: -80px;
  background: var(--yellow-100);
  animation: float-slow 10s ease-in-out infinite;
}
.section-deco--2 {
  width: 180px; height: 180px;
  bottom: -40px; left: -40px;
  background: var(--blue-100);
  border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%;
  animation: float-rev 8s ease-in-out infinite;
}
.section-deco--3 {
  width: 250px; height: 250px;
  top: 10%; right: -60px;
  background: var(--pink-100);
  animation: float 12s ease-in-out infinite;
}

/* ============================================================
   WAVE DIVIDERS
   ============================================================ */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-bottom: -1px;
}
.wave-divider svg {
  display: block;
  width: 100%;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section { background: var(--bg-cream); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
}

.text-ja {
  font-size: 0.97rem;
  line-height: 2.1;
  margin-bottom: 1.2rem;
}
.text-en {
  font-family: var(--font-en);
  font-size: 0.93rem;
  line-height: 2;
  color: var(--gray-500);
  font-style: italic;
  margin-bottom: 1.8rem;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.38rem 1.1rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 700;
}
.badge--pink   { background: var(--pink-100);   color: var(--pink-600); }
.badge--blue   { background: var(--blue-100);   color: var(--blue-700); }
.badge--yellow { background: var(--yellow-100); color: var(--yellow-600); }
.badge--gray   { background: var(--gray-100);   color: var(--gray-700); }

/* ビジュアルカード */
.about-visual-card {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: float 9s ease-in-out infinite;
}
.about-visual-card svg { width: 100%; height: auto; }
.about-float-1 {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--yellow-300);
  top: -1.5rem;
  right: -1rem;
  animation: float-rev 7s ease-in-out infinite;
  opacity: 0.85;
}
.about-float-2 {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 30% 70% 50% 50% / 50% 50% 70% 30%;
  background: var(--pink-300);
  bottom: 1rem;
  left: -1rem;
  animation: float 6s ease-in-out infinite 1s;
  opacity: 0.75;
}

/* ============================================================
   AWA ODORI SECTION
   ============================================================ */
.awaodori-section {
  background: linear-gradient(150deg, #1a3a5c 0%, var(--blue-600) 50%, #1565C0 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.awaodori-section::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.awaodori-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
  background: rgba(255,255,255,0.04);
}
.awaodori-header {
  text-align: center;
  margin-bottom: 4rem;
}
.awaodori-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 600px)  { .awaodori-cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .awaodori-cards { grid-template-columns: 1fr 1fr 1fr; } }

.awaodori-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  transition: transform 0.35s var(--ease-bounce), box-shadow 0.35s;
}
.awaodori-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 64px rgba(0,0,0,0.3);
  background: rgba(255,255,255,0.13);
}
.card-image-wrap {
  margin: -2rem -1.8rem 1.5rem -1.8rem;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
}
.card-image-wrap img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.awaodori-card:hover .card-image-wrap img {
  transform: scale(1.05);
}
.card-title-ja {
  font-family: var(--font-ja);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}
.card-title-en {
  font-family: var(--font-en);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}
.card-text-ja {
  font-size: 0.88rem;
  line-height: 2;
  color: rgba(255,255,255,0.88);
  margin-bottom: 0.75rem;
}
.card-text-en {
  font-family: var(--font-en);
  font-size: 0.83rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

/* ============================================================
   SCHEDULE SECTION
   ============================================================ */
.schedule-section { background: var(--bg-pink); }
.schedule-header  { margin-bottom: 2.5rem; }
.schedule-list    { display: flex; flex-direction: column; gap: 1rem; }

.schedule-item {
  display: grid;
  grid-template-columns: 72px auto 1fr;
  gap: 1.5rem;
  align-items: center;
  background: white;
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-sm);
  border-left: 5px solid var(--pink-500);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.schedule-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-md);
}
.schedule-date { text-align: center; }
.s-month {
  font-family: var(--font-en);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--pink-500);
  text-transform: uppercase;
  display: block;
  font-weight: 600;
}
.s-day {
  font-family: var(--font-ja);
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1;
}
.schedule-divider {
  width: 1px;
  height: 50px;
  background: var(--gray-300);
}
.schedule-top {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.3rem;
}
.schedule-name-ja {
  font-family: var(--font-ja);
  font-size: 1.05rem;
  font-weight: 700;
}
.schedule-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.85rem;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}
.schedule-time,
.schedule-detail {
  font-size: 0.85rem;
  color: var(--gray-500);
}
.detail-en { font-family: var(--font-en); font-style: italic; }

/* ============================================================
   MEMBERS SECTION
   ============================================================ */
.members-section { background: var(--bg-yellow); }
.members-header  { margin-bottom: 3rem; }

.members-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px)  { .members-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .members-grid { grid-template-columns: repeat(4, 1fr); } }

.member-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease-bounce), box-shadow 0.35s;
}
.member-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-lg);
}
.member-photo {
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.member-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.member-icon-placeholder {
  font-size: 4rem;
  opacity: 0.7;
}
.member-info {
  padding: 1.2rem 1rem 1.5rem;
}
.member-position {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--pink-600);
  margin-bottom: 0.1rem;
}
.member-position-en {
  font-family: var(--font-en);
  font-size: 0.7rem;
  color: var(--gray-500);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}
.member-name {
  font-family: var(--font-ja);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  line-height: 1.3;
}
.member-year {
  font-family: var(--font-en);
  font-size: 0.72rem;
  color: var(--gray-500);
  margin-bottom: 0.5rem;
}
.member-catchphrase {
  font-size: 0.82rem;
  color: var(--gray-600, #555);
  font-style: italic;
  line-height: 1.5;
}

/* ============================================================
   NEWS SECTION
   ============================================================ */
.news-section { background: var(--bg-purple); }
.news-header  { margin-bottom: 2.5rem; }

.news-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.news-item { border-bottom: 1px solid var(--gray-100); }
.news-item:last-child { border-bottom: none; }

.news-link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  align-items: center;
  transition: background 0.2s;
}
.news-link:hover {
  background: var(--pink-50);
}
.news-meta { flex-shrink: 0; }
.news-date {
  font-family: var(--font-en);
  font-size: 0.78rem;
  color: var(--gray-500);
  white-space: nowrap;
  letter-spacing: 0.05em;
}
.news-body { flex: 1; min-width: 0; }
.news-title {
  font-family: var(--font-ja);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--dark-900);
  transition: color 0.2s;
}
.news-link:hover .news-title { color: var(--pink-500); }
.news-excerpt {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-top: 0.25rem;
  line-height: 1.6;
}
.news-arrow {
  color: var(--pink-400);
  font-size: 1.1rem;
  transition: transform 0.25s;
}
.news-link:hover .news-arrow { transform: translateX(4px); }

.news-empty {
  text-align: center;
  padding: 3rem;
  background: white;
  border-radius: var(--radius-lg);
  color: var(--gray-500);
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery-section { background: var(--bg-cream); }
.gallery-header  { margin-bottom: 2.5rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}
.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s var(--ease-bounce);
}
.gallery-item:first-child {
  grid-column: span 2;
  aspect-ratio: 2/1;
}
@media (min-width: 768px) {
  .gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
  }
}
.gallery-item:hover { transform: scale(1.03); }
.gallery-placeholder {
  width: 100%;
  height: 100%;
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-emoji { font-size: clamp(2rem, 5vw, 4rem); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 1rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption-ja {
  font-family: var(--font-ja);
  font-size: 0.92rem;
  font-weight: 700;
  color: white;
}
.gallery-caption-en {
  font-family: var(--font-en);
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
  font-style: italic;
}
.gallery-sns {
  margin-top: 3rem;
  text-align: center;
}
.gallery-sns-text {
  font-size: 1rem;
  line-height: 2;
  margin-bottom: 1.5rem;
}
.gallery-sns-en {
  font-family: var(--font-en);
  font-size: 0.88rem;
  color: var(--gray-500);
  display: block;
  font-style: italic;
}
.gallery-sns-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER / ACCESS
   ============================================================ */
.site-footer {
  background: var(--dark-900);
  color: white;
  position: relative;
}
.footer-wave { line-height: 0; }
.footer-wave svg { display: block; width: 100%; }
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem 2.5rem;
}

/* Access */
.access-section { margin-bottom: 4rem; }
.access-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 768px) {
  .access-grid { grid-template-columns: 1fr 1fr; }
}
.access-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  aspect-ratio: 4/3;
}
.access-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.access-eyebrow {
  font-family: var(--font-en);
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  color: var(--yellow-400);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  font-weight: 500;
}
.access-title-ja {
  font-family: var(--font-ja);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 900;
  margin-bottom: 2rem;
}
.access-items { display: flex; flex-direction: column; gap: 1.5rem; }
.access-item { display: flex; gap: 1rem; align-items: flex-start; }
.access-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.access-label {
  font-family: var(--font-en);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  color: var(--yellow-400);
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.25rem;
}
.access-value-ja { font-size: 0.95rem; font-weight: 500; }
.access-value-en {
  font-family: var(--font-en);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  font-style: italic;
}
.access-sns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.sns-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 700;
  transition: transform 0.25s var(--ease-bounce), box-shadow 0.25s;
}
.sns-btn.instagram {
  background: linear-gradient(135deg, var(--pink-500), var(--pink-400));
  color: white;
  box-shadow: 0 4px 20px rgba(9,10,13,0.24);
}
.sns-btn.twitter,
.sns-btn.threads,
.sns-btn.youtube,
.sns-btn.email {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
}
.sns-btn:hover { transform: translateY(-3px); }
.sns-btn.instagram:hover { box-shadow: 0 10px 28px rgba(9,10,13,0.32); }

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .footer-bottom {
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }
}
.footer-logo-ja {
  font-family: var(--font-ja);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--pink-400);
  line-height: 1;
}
.footer-logo-en {
  font-family: var(--font-en);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.35);
  margin-top: 0.3rem;
}
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.footer-nav a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
  letter-spacing: 0.03em;
}
.footer-nav a:hover { color: white; }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.28); }

/* ============================================================
   PAGE / SINGLE POST
   ============================================================ */
.page-main { padding-top: 6rem; min-height: 60vh; }
.page-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem;
}
.page-title {
  font-family: var(--font-ja);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 2rem;
  color: var(--dark-900);
  line-height: 1.3;
}
.page-content { font-size: 1rem; line-height: 2.1; }
.page-content h2 {
  font-family: var(--font-ja);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 2.5rem 0 1rem;
  color: var(--dark-900);
}
.page-content h3 {
  font-family: var(--font-ja);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 2rem 0 0.75rem;
}
.page-content p { margin-bottom: 1.5rem; }
.page-content a { color: var(--pink-500); text-decoration: underline; }
.post-thumbnail {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 2rem;
}
.post-meta {
  font-size: 0.83rem;
  color: var(--gray-500);
  margin-bottom: 1.5rem;
  font-family: var(--font-en);
  letter-spacing: 0.05em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .hero-visual-wrap {
    display: none;
  }
  .hero-content {
    padding: 8rem 1.5rem 5rem;
  }
  .section { padding: 4rem 1.25rem; }
  .schedule-item {
    grid-template-columns: 58px auto 1fr;
    gap: 1rem;
    padding: 1.2rem;
  }
  .s-day { font-size: 1.8rem; }
  .news-link {
    grid-template-columns: auto 1fr;
    gap: 1rem;
  }
  .news-arrow { display: none; }
}
@media (max-width: 480px) {
  .hero-title-ja { font-size: clamp(3.5rem, 16vw, 6rem); }
  .members-grid { grid-template-columns: 1fr 1fr; }
  .floating-menu-btn { width: 60px; height: 60px; left: 1rem; bottom: 1rem; }
}

/* ============================================================
   実写真スタイル（ヒーロー・About・ギャラリー）
   ============================================================ */

/* ------------ ヒーロー写真カード ------------ */
.hero-photo-card {
  padding: 0 !important;
  overflow: hidden;
}
.hero-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  aspect-ratio: 3/4;
  border-radius: inherit;
}
/* ヒーロービジュアルラップをより大きく */
.hero-visual-wrap {
  width: min(38vw, 480px);
}

/* ------------ About 写真カード ------------ */
.about-photo-card {
  padding: 0 !important;
  overflow: hidden;
}
.about-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  aspect-ratio: 3/4;
  border-radius: inherit;
}

/* ------------ ギャラリー写真 ------------ */
.gallery-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
  transition: transform 0.5s var(--ease);
}
.gallery-item:hover .gallery-photo {
  transform: scale(1.06);
}
/* gallery-itemをposition:relativeにする（既存に追記） */
.gallery-item { position: relative; }

/* ============================================================
   INSTAGRAM FEED SECTION
   ============================================================ */
.instagram-section {
  background: var(--bg-pink);
  position: relative;
  overflow: hidden;
}
.instagram-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: var(--pink-100);
  opacity: 0.6;
  animation: float-slow 10s ease-in-out infinite;
}
.instagram-header { text-align: center; margin-bottom: 2.5rem; }

/* Instagram フィードグリッド */
.insta-feed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  max-width: 900px;
  margin: 0 auto 2.5rem;
}
@media (max-width: 640px) {
  .insta-feed { grid-template-columns: repeat(2, 1fr); }
}

.insta-item {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  display: block;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-bounce), box-shadow 0.3s;
}
.insta-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}
.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}
.insta-item:hover img {
  transform: scale(1.08);
}
.insta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,10,13,0.78) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 1rem;
}
.insta-item:hover .insta-overlay { opacity: 1; }
.insta-heart {
  font-size: 0.95rem;
  font-weight: 700;
  color: white;
  font-family: var(--font-en);
  letter-spacing: 0.06em;
}

/* Lightwidget ラッパー */
.instagram-widget-wrap {
  max-width: 960px;
  margin: 0 auto 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* CTA */
.instagram-cta { text-align: center; }
.insta-handle {
  font-family: var(--font-en);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--pink-600);
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
}
.btn-insta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2.5rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--dark-900), var(--color-accent));
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 6px 28px rgba(9,10,13,0.26);
  transition: transform 0.25s var(--ease-bounce), box-shadow 0.25s;
  letter-spacing: 0.03em;
}
.btn-insta:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 40px rgba(9,10,13,0.34);
}

/* ============================================================
   Instagram — @ebisuren.tk ハンドルリンク・管理者ノート
   ============================================================ */
.insta-handle-link {
  color: var(--pink-500);
  font-weight: 600;
  font-family: var(--font-en);
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.2s;
}
.insta-handle-link:hover { color: var(--pink-700); text-decoration: underline; }

.insta-admin-note {
  max-width: 720px;
  margin: 1.5rem auto 0;
  background: rgba(198,161,91,0.08);
  border: 1.5px dashed var(--pink-300);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  font-size: 0.88rem;
  line-height: 1.9;
  color: var(--gray-700);
}
.insta-admin-note a { color: var(--pink-500); text-decoration: underline; }
.insta-admin-note strong { color: var(--pink-600); }

/* ------------ iframeグリッド（モード2）----------- */
.insta-iframe-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 960px;
  margin: 0 auto 2.5rem;
}
@media (max-width: 768px) {
  .insta-iframe-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .insta-iframe-grid { grid-template-columns: 1fr; }
}
.insta-iframe-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  aspect-ratio: 1;
  background: var(--pink-50);
}
.insta-iframe-item iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
  min-height: 320px;
}

/* ------------ セットアップガイド ------------ */
.insta-setup-guide {
  max-width: 800px;
  margin: 2rem auto 0;
}
.setup-details {
  border: 2px dashed var(--pink-300);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,0.85);
}
.setup-summary {
  padding: 1rem 1.5rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--pink-600);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(198,161,91,0.08);
  transition: background 0.2s;
}
.setup-summary:hover { background: rgba(198,161,91,0.14); }
.setup-summary::-webkit-details-marker { display: none; }
.setup-body {
  padding: 1.5rem;
  border-top: 1px solid var(--pink-100);
}
.setup-intro {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}
.setup-intro a { color: var(--pink-500); text-decoration: underline; }
.setup-methods {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 680px) {
  .setup-methods { grid-template-columns: 1fr 1fr; }
}
.setup-method {
  padding: 1.2rem 1.4rem;
  border-radius: var(--radius-md);
  background: var(--bg-cream);
  border: 1.5px solid var(--pink-100);
}
.setup-method--recommended {
  border-color: var(--pink-400);
  background: rgba(198,161,91,0.08);
}
.setup-method-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
  flex-wrap: wrap;
}
.setup-method-head h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--dark-900);
  margin: 0;
}
.setup-badge {
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--pink-500);
  color: white;
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.setup-method ol {
  padding-left: 1.3rem;
  font-size: 0.86rem;
  line-height: 2;
  color: var(--gray-700);
  margin: 0;
}
.setup-method ol a { color: var(--pink-500); text-decoration: underline; }
.setup-method code {
  background: rgba(198,161,91,0.12);
  padding: 0.1rem 0.4rem;
  border-radius: 4px;
  font-size: 0.82rem;
  color: var(--pink-600);
  word-break: break-all;
}

/* ============================================================
   BLOG SECTION
   ============================================================ */
.blog-section { background: var(--bg-cream); }
.blog-header { margin-bottom: 2.5rem; }

/* ブログカードグリッド */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 600px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ブログカード */
.blog-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease-bounce), box-shadow 0.35s;
}
.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.blog-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

/* サムネイル */
.blog-thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.blog-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease);
}
.blog-card:hover .blog-thumb-img { transform: scale(1.06); }
.blog-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-thumb-emoji { font-size: 2.5rem; }

/* カテゴリバッジ */
.blog-cat-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--pink-500);
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.75rem;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
  box-shadow: 0 2px 8px rgba(9,10,13,0.2);
}

/* カード本文 */
.blog-body {
  padding: 1.4rem 1.5rem 1.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-date {
  font-family: var(--font-en);
  font-size: 0.75rem;
  color: var(--gray-500);
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}
.blog-title {
  font-family: var(--font-ja);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.55;
  color: var(--dark-900);
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}
.blog-card:hover .blog-title { color: var(--pink-500); }
.blog-excerpt {
  font-size: 0.86rem;
  line-height: 1.85;
  color: var(--gray-500);
  flex: 1;
  margin-bottom: 1rem;
  /* 3行クランプ */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-more {
  font-family: var(--font-en);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--pink-500);
  letter-spacing: 0.04em;
  transition: gap 0.2s;
  align-self: flex-start;
}
.blog-card:hover .blog-more { letter-spacing: 0.08em; }

/* もっと見るボタン */
.blog-more-wrap {
  text-align: center;
  margin-top: 3rem;
}

/* 投稿なし */
.blog-empty {
  text-align: center;
  padding: 4rem 2rem;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.blog-empty-emoji { font-size: 3.5rem; display: block; margin-bottom: 1rem; }
.blog-empty-text {
  font-size: 1rem;
  color: var(--gray-500);
  line-height: 2;
}

/* レスポンシブ */
@media (max-width: 480px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-body { padding: 1.2rem; }
}

/* ============================================================
   Lightbox (ギャラリー拡大表示)
   ============================================================ */
.ebisu-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.ebisu-lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.ebisu-lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.ebisu-lightbox-content {
  position: relative;
  max-width: 95vw;
  max-height: 95vh;
  z-index: 10000;
  animation: lightboxZoom 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.ebisu-lightbox-content img {
  width: auto;
  height: auto;
  max-width: 95vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  vertical-align: middle;
}

.ebisu-lightbox-close {
  position: absolute;
  top: -40px;
  right: -10px;
  background: none;
  border: none;
  color: #fff;
  font-size: 3rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

@keyframes lightboxZoom {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* スマホ版でも画面サイズに合致するように調整 */
@media (max-width: 768px) {
  .ebisu-lightbox-close {
    top: -45px;
    right: 0;
  }
}

/* ============================================================
   COOL EDITORIAL REFRESH
   ============================================================ */
.wave-divider,
.footer-wave,
.section-deco,
.about-float-1,
.about-float-2,
.hero-particles {
  display: none !important;
}

body {
  background: var(--bg-cream);
  color: var(--dark-900);
}

.site-header {
  background: rgba(9, 10, 13, 0);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(9, 10, 13, 0.86);
  border-bottom-color: rgba(198, 161, 91, 0.28);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
}
.site-header.scrolled .desktop-nav a,
.site-header.scrolled .logo-en {
  color: rgba(255, 255, 255, 0.74);
}
.site-header.scrolled .logo-ja {
  color: var(--color-primary);
}

.desktop-nav {
  gap: 1.6rem;
}
.desktop-nav a {
  font-family: var(--font-en);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-overlay {
  background:
    radial-gradient(circle at 82% 12%, rgba(198, 161, 91, 0.13), transparent 32%),
    linear-gradient(135deg, #07080B 0%, #14171D 58%, #24100D 100%);
}
.nav-overlay-link {
  border-color: rgba(255, 255, 255, 0.08);
}
.nav-overlay-link:hover {
  color: var(--color-primary);
  background: rgba(198, 161, 91, 0.08);
}

.floating-menu-btn {
  background: var(--dark-900);
  border: 1px solid rgba(198, 161, 91, 0.38);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.3);
}
.floating-menu-btn::before {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
}

.hero--fullbg {
  background: var(--dark-900);
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 10, 13, 0.48) 0%, rgba(9, 10, 13, 0.12) 50%, rgba(9, 10, 13, 0.42) 100%),
    linear-gradient(180deg, rgba(9, 10, 13, 0.08) 0%, rgba(9, 10, 13, 0.48) 100%);
}
.hero-slideshow-active .hero-overlay {
  background: linear-gradient(
    180deg,
    rgba(9, 10, 13, 0.02) 0%,
    rgba(9, 10, 13, 0.04) 64%,
    rgba(9, 10, 13, 0.16) 100%
  );
}
.hero-eyebrow-fullbg {
  font-family: var(--font-en);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245, 239, 226, 0.76);
}
.hero-calli-img {
  filter: drop-shadow(0 22px 50px rgba(0, 0, 0, 0.62));
}
.hero-title-en-fullbg {
  color: rgba(198, 161, 91, 0.9);
  letter-spacing: 0.36em;
}
.hero-subtitle-fullbg {
  color: rgba(245, 239, 226, 0.88);
}
.btn-hero-primary,
.btn-primary,
.btn-youtube,
.btn-insta {
  background: var(--dark-900);
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  box-shadow: none;
}
.btn-hero-primary:hover,
.btn-primary:hover,
.btn-youtube:hover,
.btn-insta:hover {
  background: var(--color-primary);
  color: var(--dark-900);
  box-shadow: 0 18px 44px rgba(9, 10, 13, 0.22);
}
.btn-hero-outline,
.btn-outline {
  border-color: rgba(9, 10, 13, 0.28);
  color: var(--dark-900);
  background: transparent;
}
.hero--fullbg .btn-hero-outline {
  border-color: rgba(245, 239, 226, 0.68);
  color: var(--cream);
}
.hero--fullbg .btn-hero-outline:hover,
.btn-outline:hover {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: var(--dark-900);
}

.marquee-section {
  background: var(--dark-900);
  border-top: 1px solid rgba(198, 161, 91, 0.22);
  border-bottom: 1px solid rgba(198, 161, 91, 0.22);
}
.marquee-item {
  color: rgba(245, 239, 226, 0.78);
  font-family: var(--font-en);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.marquee-sep {
  color: var(--color-primary);
}

.section {
  padding-top: clamp(4rem, 7vw, 7rem);
  padding-bottom: clamp(4rem, 7vw, 7rem);
}
.section-heading-ja {
  font-family: var(--font-en);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.section-eyebrow {
  font-family: var(--font-en);
  color: var(--color-primary);
}
.section-eyebrow::before,
.eyebrow--pink::before {
  background: var(--color-primary);
}
.section-heading-en,
.section-heading-en--small {
  color: rgba(54, 58, 66, 0.7);
}

.threads-section,
.youtube-shorts-section,
.blog-section,
.instagram-section,
.schedule-section,
.members-section,
.gallery-section {
  background: var(--bg-cream);
}
.about-section,
.news-section {
  background: var(--bg-pink);
}
.awaodori-section,
.site-footer {
  background: var(--dark-900);
}
.awaodori-section .section-heading-ja,
.awaodori-section .section-heading-en,
.awaodori-section .section-eyebrow,
.site-footer {
  color: var(--cream);
}

.threads-card,
.shorts-item,
.blog-card,
.member-card,
.news-list,
.gallery-item,
.about-visual-card,
.awaodori-card,
.schedule-item,
.threads-empty,
.news-empty,
.access-map,
.event-meta-box {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(9, 10, 13, 0.1);
  box-shadow: var(--shadow-sm);
}
.threads-card,
.blog-card,
.member-card,
.news-list,
.threads-empty,
.news-empty {
  background: rgba(255, 255, 255, 0.78);
}
.awaodori-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(198, 161, 91, 0.22);
  color: rgba(245, 239, 226, 0.86);
}
.awaodori-card .card-title-ja {
  color: var(--color-primary);
}
.card-image-wrap,
.blog-thumb,
.gallery-item,
.member-card,
.shorts-item {
  overflow: hidden;
}

.schedule-item {
  border-left: 3px solid var(--color-primary);
}
.schedule-badge,
.badge {
  border-radius: 999px;
  font-family: var(--font-en);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.badge--pink,
.badge--blue,
.badge--yellow {
  background: rgba(198, 161, 91, 0.14);
  color: var(--dark-900);
}

.instagram-section::before {
  display: none;
}
.insta-feed,
.gallery-grid {
  gap: 1rem;
}
.gallery-overlay {
  background: linear-gradient(180deg, transparent 0%, rgba(9, 10, 13, 0.78) 100%);
}

.access-section {
  color: var(--cream);
}
.access-info,
.footer-bottom {
  border-color: rgba(198, 161, 91, 0.18);
}
.sns-btn {
  border: 1px solid rgba(198, 161, 91, 0.32);
}

@media (max-width: 768px) {
  .section {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .hero-cta--fullbg {
    gap: 0.75rem;
  }
}

/* ============================================================
   REFINED TYPOGRAPHY & GALLERY CLARITY
   ============================================================ */
html {
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  letter-spacing: 0;
}

body,
button,
input,
textarea,
select {
  font-family: var(--font-body);
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
span,
li,
button,
small {
  letter-spacing: 0;
}

body * {
  letter-spacing: 0 !important;
}

.site-header,
.desktop-nav a,
.nav-overlay-link,
.nav-overlay-sns a,
.footer-nav a,
.sns-btn,
.btn-hero-primary,
.btn-hero-outline,
.btn-primary,
.btn-outline,
.btn-youtube,
.btn-insta,
.badge,
.schedule-badge,
.marquee-item,
.section-eyebrow,
.section-heading-en,
.section-heading-en--small,
.hero-eyebrow-fullbg,
.hero-title-en-fullbg,
.gallery-sns-en,
.member-position-en,
.blog-meta,
.blog-more {
  font-family: var(--font-en);
  font-weight: 300;
  letter-spacing: 0;
  text-transform: none;
}

.section-heading-ja,
.schedule-name-ja,
.member-name,
.blog-title,
.card-title-ja,
.gallery-caption-ja,
.footer-logo-ja,
.nav-logo-ja,
.logo-ja {
  font-family: var(--font-ja);
  font-weight: 300;
  letter-spacing: 0;
}

.section-heading-ja {
  line-height: 1.25;
}

.section-eyebrow,
.hero-eyebrow-fullbg,
.marquee-item,
.schedule-badge,
.badge {
  font-size: 0.82rem;
}

.btn-hero-primary,
.btn-hero-outline,
.btn-primary,
.btn-outline,
.btn-youtube,
.btn-insta {
  font-weight: 300;
  border-width: 1px;
}

.threads-card,
.shorts-item,
.blog-card,
.member-card,
.news-list,
.gallery-item,
.about-visual-card,
.awaodori-card,
.schedule-item,
.threads-empty,
.news-empty,
.access-map,
.event-meta-box {
  border-width: 1px;
  box-shadow: 0 10px 28px rgba(9, 10, 13, 0.06);
}

.gallery-grid {
  gap: clamp(0.75rem, 1.3vw, 1.25rem);
}

.gallery-item {
  background: var(--dark-900);
}

.gallery-photo {
  image-rendering: auto;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.gallery-item:hover .gallery-photo {
  transform: scale(1.025) translateZ(0);
}

.gallery-overlay {
  background: linear-gradient(180deg, transparent 12%, rgba(9, 10, 13, 0.58) 100%);
}

strong,
b,
.schedule-date .s-day,
.schedule-date .s-month,
.post-title,
.archive-title,
.single-title,
.access-title-ja,
.footer-logo-ja,
.blog-title,
.member-name,
.schedule-name-ja {
  font-weight: 400;
}
