/* こんなとこまで覗きに来るなんて、なかなかの物好きやで。 */
@keyframes floatSlow { 0%, 100% { transform: translateY(0px) rotate(0deg); } 50% { transform: translateY(-14px) rotate(6deg); } }
@keyframes floatSlow2 { 0%, 100% { transform: translateY(0px) rotate(0deg); } 50% { transform: translateY(12px) rotate(-8deg); } }
@keyframes glowPulse { 0%, 100% { opacity: .55; } 50% { opacity: .9; } }
@keyframes splashFadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes hueDrift { 0%, 100% { filter: hue-rotate(0deg) saturate(1); } 50% { filter: hue-rotate(28deg) saturate(1.25); } }
@keyframes nameGlow {
  0%, 100% { text-shadow: 0 0 26px rgba(111,184,154,0.4), 0 0 56px rgba(111,184,154,0.16); }
  50% { text-shadow: 0 0 30px rgba(200,120,140,0.45), 0 0 62px rgba(200,120,140,0.2); }
}
@keyframes blobMove {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(5%, -4%) scale(1.12); }
  66% { transform: translate(-4%, 3%) scale(0.94); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes halationDrift {
  0% { transform: translate(0, 0) rotate(0deg); filter: hue-rotate(0deg); }
  50% { transform: translate(-3%, -4%) rotate(8deg); filter: hue-rotate(35deg); }
  100% { transform: translate(0, 0) rotate(0deg); filter: hue-rotate(0deg); }
}
@keyframes halationWaveA {
  0%   { transform: translate(0%, 0%) scale(1) rotate(0deg); filter: hue-rotate(0deg); opacity: 0.14; }
  16%  { transform: translate(-1.5%, 1.2%) scale(1.02) rotate(2deg); filter: hue-rotate(10deg); opacity: 0.22; }
  34%  { transform: translate(1%, -1.5%) scale(0.99) rotate(-2deg); filter: hue-rotate(24deg); opacity: 0.32; }
  52%  { transform: translate(-1.2%, -1%) scale(1.03) rotate(3deg); filter: hue-rotate(38deg); opacity: 0.17; }
  70%  { transform: translate(1.5%, 0.8%) scale(0.98) rotate(-2deg); filter: hue-rotate(20deg); opacity: 0.28; }
  86%  { transform: translate(-0.8%, 1.5%) scale(1.01) rotate(1deg); filter: hue-rotate(8deg); opacity: 0.19; }
  100% { transform: translate(0%, 0%) scale(1) rotate(0deg); filter: hue-rotate(0deg); opacity: 0.14; }
}
@keyframes halationWaveB {
  0%   { transform: translate(0%, 0%) scale(1) rotate(0deg); filter: hue-rotate(0deg); opacity: 0.08; }
  16%  { transform: translate(1.2%, -1%) scale(1.02) rotate(-2deg); filter: hue-rotate(10deg); opacity: 0.13; }
  34%  { transform: translate(-1%, 1.3%) scale(0.99) rotate(2deg); filter: hue-rotate(24deg); opacity: 0.19; }
  52%  { transform: translate(1%, 0.9%) scale(1.03) rotate(-3deg); filter: hue-rotate(38deg); opacity: 0.1; }
  70%  { transform: translate(-1.3%, -0.7%) scale(0.98) rotate(2deg); filter: hue-rotate(20deg); opacity: 0.17; }
  86%  { transform: translate(0.7%, -1.3%) scale(1.01) rotate(-1deg); filter: hue-rotate(8deg); opacity: 0.11; }
  100% { transform: translate(0%, 0%) scale(1) rotate(0deg); filter: hue-rotate(0deg); opacity: 0.08; }
}
@keyframes beamShimmer {
  0%, 100% { opacity: .16; }
  50% { opacity: .32; }
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  background: #0a0d0b;
  -webkit-font-smoothing: antialiased;
  font-family: 'Noto Sans JP', sans-serif;
}
html { scroll-behavior: smooth; }

::selection { background: #7a2436; color: #fff; }

a { color: #6fb89a; text-decoration: none; }
a:hover { color: #9fd6bd; }

/* ===== スプラッシュ ===== */
.splash {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: #0a0d0b;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity .7s ease;
}
.splash.is-hidden { opacity: 0; pointer-events: none; }
.splash-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: splashFadeIn .9s ease both, glowPulse 2.4s ease-in-out .9s infinite;
}
.splash-inner[hidden], .splash-choice[hidden] { display: none; }
.splash-logo {
  width: 180px;
  height: auto;
  filter: invert(1) brightness(1.15);
}

/* ===== 音の選択画面 ===== */
.splash-choice {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: splashFadeIn .9s ease both;
}
.splash-logo-small {
  width: 120px;
  margin-bottom: 30px;
  opacity: .9;
}
.splash-choice-title {
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.14em;
  color: #c9c2ba;
  margin-bottom: 20px;
}
.splash-choice-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 240px;
}
.splash-choice-btn {
  padding: 14px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  color: #c9c2ba;
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}
.splash-choice-btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.3);
}
.splash-choice-btn-primary {
  background: linear-gradient(135deg, rgba(63,138,108,0.35), rgba(63,138,108,0.12));
  border-color: rgba(111,184,154,0.55);
  color: #f2ede7;
}
.splash-choice-btn-primary:hover { border-color: rgba(111,184,154,0.85); }

/* ===== ページ全体 ===== */
.page {
  position: relative;
  min-height: 100vh;
  width: 100%;
  background: transparent;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .8s ease .1s, transform .8s ease .1s;
}
.page.is-visible { opacity: 1; transform: translateY(0); }

/* ===== 背景の光る玉 ===== */
.bg-blobs {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  animation: hueDrift 16s ease-in-out infinite;
}
.blob { position: absolute; border-radius: 50%; filter: blur(10px); }
.blob-a {
  top: -12%; left: -12%; width: 900px; height: 700px;
  background: radial-gradient(circle, rgba(63,138,108,0.4), transparent 65%);
  animation: blobMove 19s ease-in-out infinite;
}
.blob-b {
  top: 3%; right: -16%; width: 820px; height: 700px;
  background: radial-gradient(circle, rgba(122,36,54,0.34), transparent 62%);
  animation: blobMove 23s ease-in-out infinite -6s;
}
.blob-c {
  bottom: -18%; left: 25%; width: 1000px; height: 820px;
  background: radial-gradient(circle, rgba(20,60,45,0.42), transparent 62%);
  animation: blobMove 27s ease-in-out infinite -11s;
}

/* ===== ハレーション風エフェクト ===== */
.halation {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.halation-glow {
  position: absolute;
  width: 130vmax;
  height: 130vmax;
  border-radius: 50%;
  filter: blur(95px);
}
.halation-glow-a {
  right: -55vmax;
  bottom: -55vmax;
  background: conic-gradient(
    from 200deg at 50% 50%,
    rgba(111, 184, 154, 0.52),
    rgba(60, 215, 200, 0.44) 20%,
    rgba(60, 140, 230, 0.42) 42%,
    rgba(140, 90, 230, 0.4) 62%,
    rgba(220, 100, 135, 0.44) 82%,
    rgba(111, 184, 154, 0.52) 100%
  );
  animation: halationWaveA 20s ease-in-out infinite;
}
.halation-glow-b {
  left: -55vmax;
  top: -55vmax;
  background: conic-gradient(
    from 20deg at 50% 50%,
    rgba(220, 100, 135, 0.42),
    rgba(140, 90, 230, 0.36) 25%,
    rgba(60, 140, 230, 0.34) 50%,
    rgba(60, 215, 200, 0.36) 75%,
    rgba(220, 100, 135, 0.42) 100%
  );
  animation: halationWaveB 27s ease-in-out infinite reverse;
}
.halation-beam {
  position: absolute;
  top: -25%;
  height: 170%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(200, 225, 215, 0.03) 45%, rgba(255, 255, 255, 0) 75%);
  filter: blur(6px);
  animation: beamShimmer 9s ease-in-out infinite;
}
.halation-beam-1 { left: 4%; width: 110px; transform: rotate(16deg); }
.halation-beam-2 { left: 15%; width: 56px; opacity: .5; animation-delay: 2s; transform: rotate(13deg); }
.halation-beam-3 {
  right: 9%; width: 90px; opacity: .4; animation-delay: 4s; transform: rotate(-16deg);
  background: linear-gradient(180deg, rgba(232, 201, 208, 0.07), rgba(232, 201, 208, 0.03) 45%, rgba(255, 255, 255, 0) 75%);
}

@media (max-width: 700px) {
  .halation-glow { width: 220vmax; height: 220vmax; }
  .halation-glow-a { right: -100vmax; bottom: -100vmax; }
  .halation-glow-b { left: -100vmax; top: -100vmax; }
  .halation-beam { display: none; }
}

/* ===== BGMトグル ===== */
.bgm-controls {
  position: fixed;
  bottom: 22px; right: 22px;
  z-index: 20;
  display: flex; align-items: center; gap: 8px;
}
.bgm-toggle {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(160deg, rgba(63,138,108,0.22), rgba(122,36,54,0.18));
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(0,0,0,0.35);
  transition: border-color .2s ease, transform .2s ease;
}
.bgm-toggle:hover { border-color: rgba(255,255,255,0.32); transform: scale(1.06); }

.bgm-select-toggle {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(20,30,26,0.55);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: border-color .2s ease;
}
.bgm-select-toggle:hover { border-color: rgba(255,255,255,0.32); }
.bgm-select-toggle svg { transition: transform .2s ease; }
.bgm-select-toggle.is-open svg { transform: rotate(180deg); }

.bgm-select-menu {
  position: absolute;
  bottom: 64px; right: 0;
  display: flex; flex-direction: column; gap: 4px;
  padding: 8px;
  border-radius: 14px;
  min-width: 220px;
  background: rgba(15,20,18,0.94);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.bgm-select-menu[hidden] { display: none; }
.bgm-select-item {
  text-align: left;
  padding: 9px 12px;
  border-radius: 9px;
  font-size: 12px;
  color: #c9c2ba;
  background: transparent;
  border: none;
  cursor: pointer;
}
.bgm-select-item:hover { background: rgba(255,255,255,0.07); }
.bgm-select-item.is-active { color: #9fd6bd; font-weight: 600; }

/* ===== 浮遊装飾（蝶・バラ） ===== */
.float-deco { position: fixed; z-index: 0; pointer-events: none; }
.deco-1 { position: absolute; top: 8%; left: 6%; font-size: 42px; opacity: .16; filter: blur(0.3px); animation: floatSlow 9s ease-in-out infinite; color: #4f9c7d; }
.deco-2 { position: absolute; top: 18%; right: 9%; font-size: 30px; opacity: .14; animation: floatSlow2 11s ease-in-out infinite; color: #4f9c7d; }
.deco-3 { bottom: 10vh; left: 10%; font-size: 26px; opacity: .12; animation: floatSlow 13s ease-in-out infinite 1s; color: #8a3145; }
.deco-4 { bottom: 18vh; right: 7%; font-size: 34px; opacity: .13; animation: floatSlow2 10s ease-in-out infinite .5s; color: #4f9c7d; }

/* ===== ヒーローバナー（デスクトップのみ） ===== */
.hero {
  display: none;
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 2560 / 1440;
  max-height: 88vh;
  overflow: hidden;
  flex-shrink: 0;
}
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; display: block; }
.hero-gradient {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,13,11,0) 58%, #0a0d0b 100%);
}
.hero-label {
  position: absolute; left: 6%; bottom: 10%;
  display: flex; flex-direction: column; line-height: 1.1;
}
.hero-name {
  font-family: 'Shippori Mincho', serif; font-weight: 700;
  font-size: clamp(22px, 3vw, 32px); color: #f2ede7; letter-spacing: 0.06em;
}
.hero-name-en { color: #6fb89a; font-weight: 500; }
.hero-sub { margin-top: 10px; font-size: 11px; letter-spacing: 0.32em; color: #8a9a92; }

/* ===== メインコンテンツ ===== */
.content {
  position: relative;
  width: 100%;
  max-width: 560px;
  padding: 72px 24px 56px;
  display: flex; flex-direction: column; align-items: center;
  z-index: 1;
}

.section-heading {
  display: flex; align-items: center; gap: 12px;
  width: 100%; max-width: 420px; align-self: flex-start;
  scroll-margin-top: 104px;
}

/* ===== セクション（スクロールでふわっと出現） ===== */
.reveal-section {
  display: flex; flex-direction: column; align-items: center;
  width: 100%;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s ease, transform .9s ease;
}
.reveal-section.is-revealed { opacity: 1; transform: translateY(0); }
.reveal-section + .reveal-section { margin-top: 48px; }

/* ===== UI chrome ===== */
.page-chrome .section-nav {
  opacity: 0;
  transform: translateY(-16px);
  transition: opacity .8s ease .1s, transform .8s ease .1s;
}
.page-chrome .bgm-controls {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .8s ease .1s, transform .8s ease .1s;
}
.page-chrome.is-visible .section-nav,
.page-chrome.is-visible .bgm-controls {
  opacity: 1;
  transform: translateY(0);
}

/* ===== セクションナビ（追従） ===== */
.section-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  row-gap: 6px;
  column-gap: 6px;
  padding: 12px 16px;
  background: linear-gradient(120deg, rgba(6,9,8,0.88), rgba(18,10,13,0.88));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}
.section-nav-deco {
  flex-shrink: 0;
  font-size: 13px;
  opacity: .5;
  animation: floatSlow 6s ease-in-out infinite;
}
.section-nav-link {
  position: relative;
  flex-shrink: 0;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.14em;
  font-weight: 600;
  color: #9aa8a1;
  white-space: nowrap;
  transition: color .25s ease, background .25s ease, transform .25s ease;
}
.section-nav-link::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #6fb89a, #d99aab);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.section-nav-link:hover {
  color: #f2ede7;
  background: rgba(255,255,255,0.08);
  transform: translateY(-1px);
}
.section-nav-link:hover::after { transform: scaleX(1); }

/* ===== ハンバーガーメニュー（スマホのみ） ===== */
.nav-toggle {
  display: none;
  position: fixed;
  top: 14px; right: 16px;
  z-index: 11;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.14);
  background: linear-gradient(120deg, rgba(6,9,8,0.88), rgba(18,10,13,0.88));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  cursor: pointer;
}
.nav-toggle-bar {
  width: 18px; height: 2px; border-radius: 2px;
  background: #e8e4de;
  transition: transform .25s ease, opacity .25s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-dropdown {
  display: none;
  position: fixed;
  top: 66px; right: 16px;
  z-index: 11;
  flex-direction: column;
  gap: 4px;
  min-width: 180px;
  padding: 10px;
  border-radius: 16px;
  background: linear-gradient(120deg, rgba(6,9,8,0.94), rgba(18,10,13,0.94));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 12px 34px rgba(0,0,0,0.4);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-8px);
  transition: max-height .4s ease, opacity .3s ease, transform .3s ease;
}
.nav-dropdown.is-open { opacity: 1; transform: translateY(0); }
.nav-dropdown-link {
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 12px;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: #9aa8a1;
  transition: color .2s ease, background .2s ease;
}
.nav-dropdown-link:hover { color: #f2ede7; background: rgba(255,255,255,0.08); }

@media (max-width: 700px) {
  .section-nav { display: none; }
  .nav-toggle { display: flex; }
  .nav-dropdown { display: flex; }
  .content { padding-top: 88px; }
}

@media (max-width: 480px) {
  .section-nav-deco { display: none; }
}
.line-short { width: 22px; height: 1px; background: rgba(111,184,154,0.5); }
.line-short-pink { background: rgba(200,120,140,0.45); }
.line-long { flex: 1; height: 1px; background: rgba(255,255,255,0.08); }
.label { font-size: 20px; letter-spacing: 0.22em; font-weight: 700; }
.label-green { color: #6fb89a; }
.label-pink { color: #d99aab; }

/* ===== プロフィール ===== */
.hero-block {
  margin-top: 22px;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  width: 100%;
}
.standee-wrap { position: relative; width: 190px; }
.standee-glow {
  position: absolute; top: 8%; left: 50%; transform: translateX(-50%);
  width: 90%; padding-bottom: 90%; border-radius: 50%;
  background: radial-gradient(circle, rgba(63,138,108,0.32), transparent 70%);
  filter: blur(6px); z-index: 0;
}
.standee-deco { position: absolute; z-index: 2; }
.standee-deco-butterfly { top: 2%; right: 2%; font-size: 22px; opacity: .55; }
.standee-deco-rose { bottom: 4%; left: 0; font-size: 18px; opacity: .45; }
.standee-face {
  position: relative; z-index: 1;
  width: 78%; aspect-ratio: 1/1; margin: 0 auto;
  border-radius: 50%; object-fit: cover; object-position: 50% 35%;
  box-shadow: 0 12px 28px rgba(0,0,0,0.5);
  border: 2px solid rgba(111,184,154,0.4);
  display: block;
}
.standee-full { display: none; }

.text-block { display: flex; flex-direction: column; align-items: center; text-align: center; }
.profile-name {
  margin-top: 8px;
  font-family: 'Shippori Mincho', serif; font-weight: 700;
  font-size: 34px; color: #f2ede7; letter-spacing: 0.04em;
}
.profile-name-en { color: #6fb89a; font-weight: 500; font-size: 26px; }
.profile-tagline {
  margin-top: 10px; font-size: 13px; letter-spacing: 0.12em;
  color: #8a9a92; text-transform: uppercase;
}
.profile-desc {
  margin-top: 22px; max-width: 420px;
  font-size: 15px; line-height: 1.9; color: #c9c2ba;
}
.desc-line { display: inline; }
.profile-since {
  margin-top: 14px;
  font-size: 12px; letter-spacing: 0.06em; line-height: 1.8;
  color: #9aa8a0;
  word-break: keep-all;
}
.profile-since-sep { margin: 0 6px; opacity: 0.6; }
.growth-milestones {
  margin-top: 12px; padding-left: 14px;
  border-left: 1px solid rgba(111,184,154,0.3);
  display: flex; flex-direction: column; gap: 6px;
}
.growth-milestone-title {
  font-size: 11px; letter-spacing: 0.1em; color: #8a9a92;
  margin-bottom: 2px;
}
.growth-milestone {
  position: relative;
  display: flex; align-items: baseline; gap: 8px;
  font-size: 12px; color: #7d8a83;
}
.growth-milestone::before {
  content: ''; position: absolute; left: -18px; top: 50%; transform: translateY(-50%);
  width: 5px; height: 5px; border-radius: 50%; background: #6fb89a;
}
.growth-milestone-count { color: #c9c2ba; font-weight: 600; }
.growth-milestone-date { opacity: 0.7; }
.growth-milestone-goal::before {
  background: transparent; border: 1px solid rgba(111,184,154,0.6);
}
.growth-milestone-goal .growth-milestone-count { color: #8a9a92; font-weight: 400; }
.fan-badge {
  margin-top: 22px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  row-gap: 6px; column-gap: 10px;
  padding: 9px 18px; border-radius: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}
.fan-badge-label { font-size: 13px; color: #8a9a92; }
.fan-badge-name { font-size: 14px; color: #e8c9d0; font-weight: 600; }
.fan-badge-sep { width: 1px; height: 14px; background: rgba(255,255,255,0.14); }
.fan-badge-mark { font-size: 15px; }

/* ===== TAGS ===== */
.tag-list { margin-top: 18px; width: 100%; display: flex; flex-direction: column; gap: 12px; }
.tag-link {
  display: flex; align-items: center; flex-wrap: wrap; gap: 6px 16px;
  padding: 16px 20px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.09);
  transition: border-color .22s ease, transform .22s ease;
}
.tag-link:hover { border-color: rgba(200,120,140,0.5); transform: translateY(-2px); }
.tag-link-label { font-size: 14px; font-weight: 700; color: #e8c9d0; min-width: 88px; flex-shrink: 0; white-space: nowrap; }
.tag-link-value { font-size: 15px; font-weight: 600; color: #f2ede7; }

/* ===== LINKS ===== */
.links-block { margin-top: 18px; width: 100%; }
.link-main {
  display: flex; align-items: center; gap: 20px;
  padding: 26px 28px; border-radius: 20px;
  width: 100%; box-sizing: border-box;
  background: linear-gradient(135deg, rgba(63,138,108,0.32), rgba(63,138,108,0.1));
  border: 1px solid rgba(111,184,154,0.5);
  box-shadow: 0 8px 28px rgba(63,138,108,0.16);
  transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}
.link-main:hover {
  transform: translateY(-4px) scale(1.015);
  border-color: rgba(111,184,154,0.85);
  box-shadow: 0 12px 34px rgba(63,138,108,0.28);
}
.link-main-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(111,184,154,0.2);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.link-main-text { display: flex; flex-direction: column; gap: 4px; }
.link-main-title { font-size: 21px; font-weight: 700; color: #f2ede7; letter-spacing: 0.02em; }
.link-main-sub { font-size: 13px; color: #a9c9ba; }
.link-arrow { margin-left: auto; opacity: .65; flex-shrink: 0; }

.links-row { margin-top: 14px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.link-small {
  flex: 1; display: flex; align-items: center; gap: 12px;
  padding: 15px 18px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.09);
  transition: transform .22s ease, border-color .22s ease;
  min-width: 0;
}
.link-small:hover { transform: translateY(-2px); border-color: rgba(255,255,255,0.28); }
.link-small-pink { background: linear-gradient(135deg, rgba(122,36,54,0.14), rgba(122,36,54,0.04)); border-color: rgba(200,120,140,0.24); }
.link-small-pink:hover { border-color: rgba(200,120,140,0.55); }
.link-small-icon {
  width: 34px; height: 34px; border-radius: 10px;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 15px;
}
.link-small-icon-pink { background: rgba(200,120,140,0.14); }
.link-small-title {
  font-size: 13.5px; font-weight: 600; color: #f2ede7;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

/* ===== VIDEO ===== */
.video-scroll {
  margin-top: 18px; width: 100%;
  overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.video-scroll::-webkit-scrollbar { display: none; }
.video-track { display: flex; gap: 16px; width: max-content; padding: 10px 3vw 8px 3vw; }
.video-card {
  flex-shrink: 0; width: 240px; scroll-snap-align: start;
  display: flex; flex-direction: column; gap: 8px;
}
.video-thumb {
  position: relative; width: 100%; aspect-ratio: 16/9;
  border-radius: 14px; overflow: hidden; border: 1px solid;
  display: flex; align-items: center; justify-content: center;
  transition: transform .55s cubic-bezier(0.16,1,0.3,1);
  will-change: transform;
}
.video-card:hover .video-thumb { transform: translateY(-3px); }
.video-thumb-green { background: linear-gradient(135deg, rgba(63,138,108,0.3), rgba(20,30,26,0.9)); border-color: rgba(111,184,154,0.28); }
.video-thumb-red { background: linear-gradient(135deg, rgba(122,36,54,0.28), rgba(30,18,20,0.9)); border-color: rgba(200,120,140,0.26); }
.video-thumb-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.video-thumb::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(10,13,11,0.28);
  z-index: 1;
}
.video-play {
  position: relative; z-index: 2;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(10,13,11,0.55);
  display: flex; align-items: center; justify-content: center;
}
.video-title { font-size: 13px; font-weight: 600; color: #f2ede7; }
.video-handle { font-size: 11.5px; color: #8a9a92; }

/* ===== RULES ===== */
.rules-box {
  margin-top: 18px; width: 100%; border-radius: 18px;
  background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.012));
  border: 1px solid rgba(255,255,255,0.09);
  overflow: hidden;
}
.rules-toggle {
  width: 100%; box-sizing: border-box;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 18px 22px; background: transparent; border: none; cursor: pointer; text-align: left;
}
.rules-toggle-label { display: flex; align-items: center; gap: 8px; }
.rules-toggle-emoji { font-size: 15px; }
.rules-toggle-text {
  font-family: 'Shippori Mincho', serif; font-weight: 600; font-size: 16px;
  color: #f2ede7; letter-spacing: 0.04em;
}
.rules-chevron { flex-shrink: 0; transition: transform .25s ease; }
.rules-chevron.is-open { transform: rotate(180deg); }

.rules-content {
  display: flex; flex-direction: column; gap: 26px;
  padding: 0 26px;
  max-height: 0;
  opacity: 0;
  transform: translateY(-8px);
  overflow: hidden;
  transition: max-height .5s ease, opacity .45s ease, transform .45s ease, padding .45s ease;
}
.rules-content.is-open {
  padding: 4px 26px 46px;
  opacity: 1;
  transform: translateY(0);
  max-height: none;
}
.rules-group { display: flex; flex-direction: column; gap: 12px; }
.rules-group-title { text-align: center; font-size: 13.5px; font-weight: 600; letter-spacing: 0.08em; color: #6fb89a; }
.rules-subtitle { font-size: 13px; font-weight: 600; color: #e8c9d0; margin-top: 2px; }
.rules-items { display: flex; flex-direction: column; gap: 8px; }
.rules-item { position: relative; padding-left: 20px; font-size: 14px; line-height: 1.8; color: #c9c2ba; }
.rules-item::before { content: "・"; position: absolute; left: 0; color: #6fb89a; }

/* ===== CREDITS ===== */
.credit-list {
  margin-top: 18px; width: 100%;
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.credit-card {
  display: flex; flex-direction: row; align-items: center; gap: 14px;
  padding: 14px 18px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,255,255,0.045), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.09);
  transition: border-color .22s ease, transform .22s ease;
}
.credit-card:hover { border-color: rgba(111,184,154,0.45); transform: translateY(-2px); }
.credit-avatar {
  width: 52px; height: 52px; flex-shrink: 0;
  border-radius: 50%; object-fit: cover;
  border: 1px solid rgba(255,255,255,0.16);
}
.credit-info { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.credit-role { font-size: 11px; letter-spacing: 0.1em; color: #8a9a92; text-transform: uppercase; }
.credit-name { font-size: 16px; font-weight: 700; color: #f2ede7; }
.credit-links { display: flex; gap: 8px; margin-top: 2px; }
.credit-link-icon {
  width: 28px; height: 28px; border-radius: 8px;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.credit-link-icon:hover { background: rgba(255,255,255,0.14); }

@media (max-width: 480px) {
  .credit-list { grid-template-columns: 1fr; }
}

.footer {
  margin-top: 34px;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.footer-links { display: flex; align-items: center; gap: 10px; }
.footer-icon-link {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
  transition: border-color .2s ease, transform .2s ease;
}
.footer-icon-link:hover { border-color: rgba(200,120,140,0.5); transform: translateY(-2px); }
.footer-nav { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px; }
.footer-nav-link { font-size: 12px; letter-spacing: 0.08em; color: #8a9a92; }
.footer-nav-link:hover { color: #c9c2ba; }
.footer-copyright { font-size: 11px; color: #4f5a55; letter-spacing: 0.06em; }

/* ===== デスクトップ（860px以上） ===== */
@media (min-width: 860px) {
  .content { max-width: 820px; padding-top: 64px; padding-bottom: 90px; }
  .profile-name { font-size: 40px; }
  .profile-name-en { font-size: 26px; }
  .tag-link, .link-small, .link-main { padding: 20px 26px; }
  .hero { display: block; }
  .hero-block { flex-direction: row; align-items: center; justify-content: center; gap: 46px; }
  .standee-wrap { width: 260px; flex-shrink: 0; }
  .standee-face { display: none; }
  .standee-full { display: block; width: 100%; height: auto; position: relative; z-index: 1; filter: drop-shadow(0 16px 30px rgba(0,0,0,0.5)); }
  .text-block { align-items: flex-start; text-align: left; }
  .desc-line { display: block; }
}

/* ===== ワイドデスクトップ（1200px以上）：横幅を活かして迫力を出す ===== */
@media (min-width: 1200px) {
  .content { max-width: 1140px; padding-top: 84px; padding-bottom: 110px; }
  .hero { max-height: 98vh; }
  .hero-name { font-size: clamp(32px, 3.6vw, 56px); }
  .hero-block { gap: 84px; }
  .standee-wrap { width: 380px; }
  .standee-glow { filter: blur(10px); }
  .standee-deco-butterfly { font-size: 30px; }
  .standee-deco-rose { font-size: 24px; }

  .profile-name {
    font-size: 68px;
    animation: nameGlow 4.5s ease-in-out infinite;
  }
  .profile-name-en { font-size: 40px; }
  .profile-tagline { font-size: 16px; letter-spacing: 0.16em; }
  .profile-desc { font-size: 18px; line-height: 2; max-width: 620px; }
  .fan-badge { padding: 9px 20px; }
  .fan-badge-name { font-size: 16px; }

  .section-heading { max-width: 100%; }
  .label { font-size: 26px; letter-spacing: 0.26em; }
  .line-short { width: 32px; }

  .tag-list {
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .tag-link-value { font-size: 17px; }

  .links-block { max-width: 100%; }
  .link-main { box-shadow: 0 12px 40px rgba(63,138,108,0.24); }
  .link-main-icon { width: 64px; height: 64px; }
  .link-main-title { font-size: 26px; }
  .link-main-sub { font-size: 14.5px; }
  .link-small-title { font-size: 15px; }

  .video-card { width: 300px; }

  .rules-box { max-width: 100%; }
  .rules-toggle-text { font-size: 18px; }

  /* 装飾を大きめ・くっきりめに */
  .deco-1 { font-size: 56px; opacity: .2; }
  .deco-2 { font-size: 40px; opacity: .18; }
  .deco-3 { font-size: 34px; opacity: .16; }
  .deco-4 { font-size: 44px; opacity: .17; }
  .blob-a { width: 1100px; height: 850px; }
  .blob-b { width: 1000px; height: 850px; }
  .blob-c { width: 1200px; height: 980px; }
}
