/* ============================================================
   星乃ルナ Official LP - スタイルシート (css/style.css)
   ============================================================ */

/* --- CSS変数（テーマ定義） --- */
:root {
  --bg-main: #0a0e1a;
  --bg-card: rgba(18, 25, 44, 0.75);
  --bg-card-hover: rgba(28, 38, 66, 0.85);
  --bg-glass: rgba(15, 23, 42, 0.65);
  
  --primary: #7c3aed;
  --primary-light: #a78bfa;
  --primary-gradient: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
  --accent-gold: #fbbf24;
  --accent-cyan: #38bdf8;
  --accent-pink: #f43f5e;
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-sub: #cbd5e1;
  
  --border-glass: rgba(255, 255, 255, 0.1);
  --border-highlight: rgba(167, 139, 250, 0.35);
  --shadow-glow: 0 8px 32px 0 rgba(124, 58, 237, 0.25);
  --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.5);

  --font-family-base: 'M PLUS Rounded 1c', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-family-en: 'Outfit', sans-serif;

  --nav-height: 72px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition-fast: 0.2s ease;
  --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- リセット & ベーススタイル --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 20px);
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-family-base);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- ヘッダー・グローバルナビゲーション --- */
.global-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
  transition: all var(--transition-normal);
}

.nav-container {
  max-width: 1240px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-family-en);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
}

.logo-symbol {
  color: var(--accent-gold);
  font-size: 1.2rem;
  animation: pulse-glow 2s infinite ease-in-out;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-item {
  font-family: var(--font-family-en);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
  position: relative;
}

.nav-item:hover,
.nav-item.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-item.active {
  color: var(--accent-cyan);
  box-shadow: inset 0 0 0 1px rgba(56, 189, 248, 0.3);
}

.nav-sns {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sns-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  color: var(--text-sub);
  transition: all var(--transition-fast);
}

.sns-btn:hover {
  background: var(--primary-gradient);
  color: #fff;
  transform: translateY(-2px);
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* ============================================================
   最上部固定：プロフィール＆立ち絵セクション
   ============================================================ */
.profile-hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: calc(var(--nav-height) + 40px);
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 80% 20%, rgba(124, 58, 237, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(236, 72, 153, 0.12) 0%, transparent 50%),
              var(--bg-main);
}

/* 背景エフェクト */
.hero-bg-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: float-slow 12s infinite alternate ease-in-out;
}

.orb-1 {
  width: 450px;
  height: 450px;
  background: #7c3aed;
  top: 10%;
  right: 15%;
}

.orb-2 {
  width: 350px;
  height: 350px;
  background: #ec4899;
  bottom: 10%;
  left: 10%;
  animation-delay: -4s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: #38bdf8;
  top: 40%;
  left: 45%;
  animation-delay: -8s;
}

.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 48px;
  align-items: start;
}

/* --- 立ち絵・ビジュアルエリア --- */
.hero-visual-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.visual-stage {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.visual-card {
  position: relative;
  width: 100%;
  height: 580px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(124,58,237,0.12) 100%),
              rgba(18, 25, 44, 0.6);
  border: 1px solid var(--border-highlight);
  box-shadow: 0 20px 40px -10px rgba(0,0,0,0.6), var(--shadow-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
}

.visual-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.visual-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  background: rgba(10, 14, 26, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  letter-spacing: 0.03em;
}

/* 衣装セレクター */
.costume-selector {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  backdrop-filter: blur(10px);
}

.costume-selector-label {
  font-family: var(--font-family-en);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--accent-cyan);
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}

.costume-thumbs {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.costume-thumb-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid transparent;
  transition: all var(--transition-fast);
  width: 100px;
}

.costume-thumb-btn img {
  width: 100%;
  height: 70px;
  object-fit: cover;
  border-radius: 6px;
}

.costume-thumb-btn span {
  font-size: 0.75rem;
  color: var(--text-sub);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 90px;
}

.costume-thumb-btn:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.costume-thumb-btn.active {
  border-color: var(--accent-gold);
  background: rgba(251, 191, 36, 0.1);
}

.costume-thumb-btn.active span {
  color: #fff;
  font-weight: 700;
}

/* 制作クレジット */
.visual-credits-box {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  backdrop-filter: blur(10px);
}

.credits-title {
  font-family: var(--font-family-en);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--primary-light);
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
}

.credits-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.credit-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  padding-bottom: 6px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.07);
}

.credit-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.credit-row dt {
  color: var(--text-muted);
}

.credit-row dd {
  font-weight: 600;
  color: var(--text-main);
}

/* --- プロフィール詳細・スペックエリア --- */
.hero-info-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.profile-rubies {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 4px;
}

.profile-furigana {
  font-size: 1rem;
  color: var(--accent-cyan);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.profile-roman {
  font-family: var(--font-family-en);
  font-size: 1.1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.profile-name {
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.15;
  background: linear-gradient(135deg, #ffffff 0%, #d8b4fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}

.profile-nickname-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(236, 72, 153, 0.12);
  border: 1px solid rgba(236, 72, 153, 0.35);
  width: fit-content;
}

.profile-nickname-badge .label {
  font-family: var(--font-family-en);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-pink);
  text-transform: uppercase;
}

.profile-nickname-badge .value {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
}

.profile-tagline {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  padding-left: 16px;
  border-left: 4px solid var(--accent-gold);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.profile-message-box {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  backdrop-filter: blur(12px);
  color: var(--text-sub);
  font-size: 0.98rem;
  box-shadow: var(--shadow-card);
}

/* プロフィールスペック グリッド */
.profile-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.spec-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.spec-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-highlight);
}

.spec-card.spec-full {
  grid-column: span 2;
}

.spec-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.spec-meta {
  display: flex;
  flex-direction: column;
}

.spec-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.spec-value {
  font-size: 1.05rem;
  color: #fff;
  font-weight: 700;
}

/* チャンネル・プラットフォームボタン */
.profile-channels {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.channel-title {
  font-family: var(--font-family-en);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--accent-cyan);
  font-weight: 700;
}

.channel-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.channel-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
}

.channel-link.yt-link {
  background: #ff0000;
  color: #fff;
  box-shadow: 0 4px 16px rgba(255, 0, 0, 0.3);
}

.channel-link.yt-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 0, 0, 0.5);
}

.channel-link.x-link {
  background: #000;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.channel-link.x-link:hover {
  transform: translateY(-3px);
  border-color: #fff;
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
}

.channel-link.custom-platform {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--border-glass);
  color: #fff;
}

.channel-link.custom-platform:hover {
  background: var(--primary-gradient);
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}

/* 自己紹介動画ボタン */
.profile-intro-moves {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.moves-label {
  font-family: var(--font-family-en);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--accent-gold);
  font-weight: 700;
}

.moves-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-movie-play {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.4);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.btn-movie-play:hover {
  background: var(--primary-gradient);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* ============================================================
   共通セクションレイアウト
   ============================================================ */
.sections-container {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  z-index: 1;
}

.lp-section {
  padding: 90px 0;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.lp-section.is-hidden {
  display: none !important;
}

.section-head {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-subtitle {
  display: block;
  font-family: var(--font-family-en);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 8px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #fff;
  line-height: 1.3;
}

.section-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 10px;
}

.title-line {
  width: 60px;
  height: 4px;
  background: var(--primary-gradient);
  border-radius: 2px;
  margin: 18px auto 0;
}

/* フィルタータブ共通 */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
}

.filter-tab {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-sub);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  transition: all var(--transition-fast);
}

.filter-tab:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.filter-tab.active {
  background: var(--primary-gradient);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}

/* ============================================================
   1. お知らせセクション (Notice)
   ============================================================ */
.notice-section {
  background: radial-gradient(circle at 50% 100%, rgba(124, 58, 237, 0.08) 0%, transparent 60%);
}

.notice-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.notice-card {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 22px 28px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(8px);
  transition: all var(--transition-fast);
}

.notice-card:hover {
  transform: translateX(6px);
  border-color: var(--border-highlight);
  background: var(--bg-card-hover);
}

.notice-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.notice-date {
  font-family: var(--font-family-en);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}

.notice-badge {
  display: inline-block;
  padding: 3px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  width: fit-content;
}

.badge-published {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.badge-scheduled {
  background: rgba(251, 191, 36, 0.15);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.notice-content {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.6;
}

.notice-media-thumb {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  cursor: pointer;
  flex-shrink: 0;
}

.notice-media-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-fast);
}

.notice-media-thumb:hover img {
  transform: scale(1.1);
}

/* ============================================================
   2. スケジュールセクション (Schedule)
   ============================================================ */
.schedule-section {
  background: radial-gradient(circle at 10% 50%, rgba(56, 189, 248, 0.07) 0%, transparent 60%);
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.schedule-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all var(--transition-fast);
}

.schedule-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-highlight);
  box-shadow: var(--shadow-card);
}

.schedule-image-box {
  width: 100%;
  height: 160px;
  overflow: hidden;
  position: relative;
  background: #1e293b;
}

.schedule-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.schedule-card:hover .schedule-image-box img {
  transform: scale(1.08);
}

.schedule-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 12px;
}

.schedule-date-tag-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.schedule-datetime {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.schedule-date {
  font-family: var(--font-family-en);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-cyan);
}

.schedule-time {
  font-family: var(--font-family-en);
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 600;
}

.schedule-tag-badge {
  padding: 4px 10px;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  background: rgba(124, 58, 237, 0.2);
  border: 1px solid rgba(124, 58, 237, 0.4);
  color: #c4b5fd;
}

.schedule-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}

.schedule-card-detail {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex-grow: 1;
}

/* ============================================================
   3. ギャラリーセクション (Gallery)
   ============================================================ */
.gallery-section {
  background: radial-gradient(circle at 90% 50%, rgba(236, 72, 153, 0.07) 0%, transparent 60%);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.gallery-card {
  position: relative;
  height: 280px;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  background: #131b2e;
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-card);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 14, 26, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  opacity: 0.85;
  transition: opacity var(--transition-fast);
}

.gallery-card:hover img {
  transform: scale(1.08);
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.gallery-zoom-hint {
  font-size: 0.78rem;
  color: var(--accent-cyan);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ============================================================
   4. 動画リストセクション (Movie)
   ============================================================ */
.movie-section {
  background: radial-gradient(circle at 30% 80%, rgba(255, 0, 0, 0.05) 0%, transparent 60%);
}

.movie-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.movie-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.movie-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-highlight);
  box-shadow: var(--shadow-card);
}

.movie-thumb-wrapper {
  position: relative;
  width: 100%;
  height: 170px;
  overflow: hidden;
  background: #1e293b;
}

.movie-thumb-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.movie-card:hover .movie-thumb-wrapper img {
  transform: scale(1.06);
}

.movie-play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 0, 0, 0.85);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.movie-card:hover .movie-play-badge {
  transform: translate(-50%, -50%) scale(1.15);
  background: #ff0000;
}

.movie-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.movie-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-pink);
  text-transform: uppercase;
}

.movie-card-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============================================================
   5. ショップリストセクション (Shop)
   ============================================================ */
.shop-section {
  background: radial-gradient(circle at 70% 30%, rgba(251, 191, 36, 0.05) 0%, transparent 60%);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}

.shop-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
}

.shop-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-highlight);
  box-shadow: var(--shadow-card);
}

.shop-image-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #182238;
}

.shop-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.shop-card:hover .shop-image-wrapper img {
  transform: scale(1.08);
}

.shop-tag-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(6px);
  color: var(--accent-gold);
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.shop-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 12px;
}

.shop-card-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  flex-grow: 1;
}

.shop-price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.shop-currency {
  font-size: 0.9rem;
  color: var(--accent-gold);
  font-weight: 700;
}

.shop-price-val {
  font-family: var(--font-family-en);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}

.shop-links-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}

.shop-btn {
  flex: 1;
  min-width: 70px;
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
  transition: all var(--transition-fast);
}

.shop-btn.btn-booth {
  background: #fc4d50;
  color: #fff;
}
.shop-btn.btn-booth:hover {
  background: #e03b3e;
}

.shop-btn.btn-suzuri {
  background: #0088cc;
  color: #fff;
}
.shop-btn.btn-suzuri:hover {
  background: #0077b3;
}

.shop-btn.btn-base {
  background: #111827;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.shop-btn.btn-base:hover {
  background: #000;
  border-color: #fff;
}

.shop-btn.btn-fanbox {
  background: #fa9b00;
  color: #fff;
}
.shop-btn.btn-fanbox:hover {
  background: #e08b00;
}

/* ============================================================
   6. リンクリストセクション (LinkList)
   ============================================================ */
.link-section {
  background: radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.05) 0%, transparent 70%);
}

.link-grid {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-radius: var(--radius-md);
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  transition: all var(--transition-fast);
}

.link-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-highlight);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-glow);
}

.link-card-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.link-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-cyan);
  font-size: 1.1rem;
}

.link-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.link-card-arrow {
  color: var(--text-muted);
  transition: transform var(--transition-fast);
}

.link-card:hover .link-card-arrow {
  transform: translateX(4px);
  color: var(--accent-gold);
}

/* ============================================================
   フッター
   ============================================================ */
.site-footer {
  background: #060911;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 0;
  position: relative;
  z-index: 1;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.brand-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: var(--font-family-en);
}

.back-to-top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid var(--border-glass);
  transition: all var(--transition-fast);
}

.back-to-top:hover {
  background: var(--primary-gradient);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

/* ============================================================
   モーダル共通スタイル
   ============================================================ */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 9, 17, 0.85);
  backdrop-filter: blur(12px);
}

.modal-content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7);
  animation: modal-pop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background var(--transition-fast);
}

.modal-close:hover {
  background: var(--accent-pink);
}

.image-modal-content img {
  max-width: 85vw;
  max-height: 75vh;
  object-fit: contain;
  margin: 0 auto;
}

.modal-caption {
  padding: 16px 24px;
  color: #fff;
  font-weight: 600;
  text-align: center;
  background: rgba(10, 14, 26, 0.95);
  border-top: 1px solid var(--border-glass);
}

.video-modal-content {
  width: 800px;
  max-width: 92vw;
}

.video-iframe-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  background: #000;
}

.video-iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================
   管理画面シミュレータ / プレビュードック
   （要素の並び替え・表示非表示テスト用UI）
   ============================================================ */
.admin-preview-dock {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1500;
}

.admin-dock-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 24px rgba(79, 70, 229, 0.45);
  transition: all var(--transition-fast);
}

.admin-dock-toggle:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 30px rgba(79, 70, 229, 0.6);
}

.admin-panel {
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  width: 360px;
  max-height: 80vh;
  background: rgba(15, 23, 42, 0.96);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), var(--shadow-glow);
  backdrop-filter: blur(16px);
  display: none;
  flex-direction: column;
  overflow: hidden;
  animation: modal-pop 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.admin-panel.is-open {
  display: flex;
}

.admin-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: rgba(124, 58, 237, 0.15);
  border-bottom: 1px solid var(--border-glass);
}

.admin-panel-header .header-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 0.95rem;
}

.admin-panel-close {
  color: var(--text-muted);
  font-size: 1.5rem;
  line-height: 1;
}

.admin-panel-close:hover {
  color: #fff;
}

.admin-panel-body {
  padding: 16px 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.admin-instruction {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  background: rgba(255, 255, 255, 0.04);
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--accent-cyan);
}

.admin-instruction strong {
  color: #fff;
}

.admin-section-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.admin-section-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
}

.admin-item-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
}

.admin-item-label input[type="checkbox"] {
  accent-color: var(--primary);
  width: 16px;
  height: 16px;
}

.admin-item-controls {
  display: flex;
  align-items: center;
  gap: 4px;
}

.btn-move {
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}

.btn-move:hover:not(:disabled) {
  background: var(--primary);
}

.btn-move:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.admin-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}

.btn-admin-reset {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-sub);
  font-size: 0.8rem;
  font-weight: 600;
  transition: all var(--transition-fast);
}

.btn-admin-reset:hover {
  background: rgba(239, 68, 68, 0.2);
  color: #ef4444;
}

/* ============================================================
   キーフレームアニメーション
   ============================================================ */
@keyframes pulse-glow {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); filter: drop-shadow(0 0 8px var(--accent-gold)); }
}

@keyframes float-slow {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(-40px) rotate(15deg); }
}

@keyframes modal-pop {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* ============================================================
   レスポンシブ (メディアクエリ)
   ============================================================ */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 380px 1fr;
    gap: 32px;
  }
  .visual-card {
    height: 480px;
  }
  .profile-name {
    font-size: 2.6rem;
  }
}

@media (max-width: 860px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual-col {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
  .visual-card {
    height: 520px;
  }
  .nav-links, .nav-sns {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }

  /* モバイルメニュー展開時 */
  .global-nav.mobile-active .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background: rgba(10, 14, 26, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    border-bottom: 1px solid var(--border-glass);
    gap: 12px;
  }

  .notice-card {
    grid-template-columns: 1fr auto;
  }
  .notice-meta {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }
}

@media (max-width: 600px) {
  .profile-name {
    font-size: 2.2rem;
  }
  .profile-tagline {
    font-size: 1.05rem;
  }
  .profile-specs-grid {
    grid-template-columns: 1fr;
  }
  .spec-card.spec-full {
    grid-column: span 1;
  }
  .visual-card {
    height: 420px;
  }
  .admin-panel {
    width: calc(100vw - 48px);
    right: -12px;
  }
}

