@charset "UTF-8";

/* Love Hate — fallapart 骨格 × Awwwards 仕上げ */

:root {
  --bg: #030304;
  --bg-panel: #0e0e14;
  --surface: #14141f;
  --love: #ff3b5c;
  --hate: #2ee6ff;
  --gold: #d4b872;
  --billow: #ddf0f4;
  --text: #f4f1ea;
  --text-dim: rgba(244, 241, 234, 0.55);
  --line: rgba(255, 255, 255, 0.07);
  --line-strong: rgba(255, 255, 255, 0.14);
  --font-serif: "Noto Serif JP", serif;
  --font-sans: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック", sans-serif;
  --ease: cubic-bezier(0.33, 1, 0.68, 1);
  --ease-menu: cubic-bezier(0.6, 0, 0.4, 1);
  --header-h: 56px;
  --marquee-h: 36px;
  --chrome-top: calc(var(--header-h) + var(--marquee-h));
  --hero-jacket-size: min(100vw, calc(100svh - var(--chrome-top)));
  --jacket-bg: #1a1520;
  --jacket-love-tint: rgba(255, 59, 92, 0.55);
  --jacket-hate-tint: rgba(46, 230, 255, 0.45);
  --rail-pad: max(20px, calc((100vw - 1200px) / 2 + 20px));
}

*, *::before, *::after { box-sizing: border-box; }

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

html { font-size: 62.5%; scroll-behavior: smooth; }

html.has-snap-scroll { scroll-behavior: auto; }

@media (pointer: coarse) {
  html.has-snap-scroll {
    scroll-snap-type: y proximity;
  }
  html.has-snap-scroll .snap-section:not(.snap-section--tall) {
    scroll-snap-align: center;
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.75;
  color: var(--text);
  background: var(--jacket-bg);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt" 1;
  overflow-x: hidden;
}

body.is-boot { overflow: hidden; }

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

a { color: var(--billow); text-decoration: none; transition: color 0.3s, opacity 0.3s; }
a:hover { color: var(--love); opacity: 1; }

button { font-family: inherit; cursor: pointer; }

.pc--only { display: block; }
.sp--only { display: none; }

@media (max-width: 767px) {
  .pc--only { display: none; }
  .sp--only { display: block; }
}

/* —— FX layers —— */
.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.mesh { display: none; }

/* —— 全体背景（WebGL 流体） —— */
.site-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background-color: var(--jacket-bg);
}

.site-bg__gl,
.site-bg__grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.site-bg__grid {
  pointer-events: none;
}

.site-bg__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 3, 4, 0.06) 0%, rgba(3, 3, 4, 0.38) 100%),
    radial-gradient(ellipse 70% 55% at 50% 40%, transparent 30%, rgba(0, 0, 0, 0.28) 100%);
  pointer-events: none;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  z-index: 9999;
  background: linear-gradient(90deg, var(--love), var(--gold), var(--hate));
  pointer-events: none;
}

/* —— Cursor —— */
.cursor, .cursor-ring { display: none; }

@media (pointer: fine) {
  html.has-custom-cursor, html.has-custom-cursor * { cursor: none !important; }

  .cursor {
    display: block;
    position: fixed;
    left: 0; top: 0;
    width: 6px; height: 6px;
    margin: -3px 0 0 -3px;
    background: var(--text);
    border-radius: 50%;
    z-index: 30000;
    pointer-events: none;
    mix-blend-mode: difference;
  }

  .cursor-ring {
    display: block;
    position: fixed;
    left: 0; top: 0;
    width: 36px; height: 36px;
    margin: -18px 0 0 -18px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    z-index: 29999;
    pointer-events: none;
    transition: transform 0.15s var(--ease), width 0.25s, height 0.25s, margin 0.25s, border-color 0.3s;
  }

  html.has-custom-cursor .cursor-ring.is-active {
    width: 56px; height: 56px;
    margin: -28px 0 0 -28px;
    border-color: var(--love);
  }
}

/* —— Loading —— */
.loading {
  list-style: none;
  margin: 0; padding: 0;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.7s var(--ease), visibility 0.7s;
}

.loading.is-hide { opacity: 0; visibility: hidden; pointer-events: none; }

.loader__inner {
  list-style: none;
  text-align: center;
}

.loader__count {
  display: block;
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 200;
  letter-spacing: 0.08em;
  line-height: 1;
  color: var(--billow);
}

.loader__label {
  display: block;
  margin-top: 8px;
  font-family: var(--font-sans);
  font-size: 1rem;
  letter-spacing: 0.5em;
  color: var(--text-dim);
}

.loader__bar {
  display: block;
  width: 120px;
  height: 1px;
  margin: 20px auto 0;
  background: var(--line);
  overflow: hidden;
}

.loader__barFill {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--love), var(--hate));
  transition: width 0.15s linear;
}

/* —— Marquee —— */
.marquee {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  z-index: 98;
  height: var(--marquee-h);
  background: rgba(3, 3, 4, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.marquee__viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.marquee__track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  width: max-content;
  height: 100%;
  will-change: transform;
  animation: marqueeScroll var(--marquee-duration, 40s) linear infinite;
}

.marquee__group {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 2.8rem;
  margin: 0;
  padding-right: 2.8rem;
  white-space: nowrap;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.12em;
  color: var(--text-dim);
}

.marquee__group > span {
  flex-shrink: 0;
  display: inline-block;
}

.marquee__chip--gold {
  color: var(--gold);
}

.marquee__chip--love {
  color: #c93250;
}

.marquee__chip--hate {
  color: #138aa8;
}

.marquee__sep {
  letter-spacing: 0;
  opacity: 0.35;
  font-size: 1.2rem;
  line-height: 1;
}

@keyframes marqueeScroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-1 * var(--marquee-shift, 0px)), 0, 0);
  }
}

/* —— Wrap / Header —— */
.wrap { position: relative; background: transparent; overflow: hidden; z-index: 1; }

body.is-menu-open .wrap {
  z-index: 200;
}

body.is-menu-open .heroJacket {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}

.header { position: relative; z-index: 100; }

.header__logo {
  position: fixed;
  top: 20px;
  left: 24px;
  z-index: 102;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--text);
  text-decoration: none;
  mix-blend-mode: difference;
}

@media (max-width: 767px) {
  .header__logo { left: 15px; font-size: 0.95rem; letter-spacing: 0.1em; }
}

.acdIcon {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 24px;
  height: 24px;
  z-index: 102;
}

@media (max-width: 767px) {
  .acdIcon { top: 17px; right: 15px; }
}

.acdIcon__link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  cursor: pointer;
}

.acdIcon__linkDrawer,
.acdIcon__linkDrawer::before,
.acdIcon__linkDrawer::after {
  display: block;
  position: absolute;
  left: 0;
  width: 24px;
  height: 1.5px;
  background: #fff;
  transition: all 0.45s var(--ease-menu);
}

.acdIcon__linkDrawer { top: 4px; }
.acdIcon__linkDrawer::before, .acdIcon__linkDrawer::after { content: ""; left: 0; }
.acdIcon__linkDrawer::before { top: 8px; }
.acdIcon__linkDrawer::after { top: 16px; }

.acdIcon.is-show .acdIcon__linkDrawer { opacity: 0; }
.acdIcon.is-show .acdIcon__linkDrawer::before { top: 4px; transform: rotate(45deg); transform-origin: left top; }
.acdIcon.is-show .acdIcon__linkDrawer::after { top: 4px; transform: rotate(-45deg); transform-origin: left bottom; }

.acdIcon__linkText {
  display: none;
}

.headerNavBg {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  z-index: 100;
}

.headerNavBg.is-show { display: block; }

.headerNavWrap {
  display: none;
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 88vw);
  transform: translateX(100%);
  transition: transform 0.55s var(--ease-menu);
  z-index: 101;
}

.headerNavWrap.is-show { display: block; }
.headerNavWrap.is-active { transform: translateX(0); }

.headerNav {
  height: 100%;
  overflow-y: auto;
  background: linear-gradient(165deg, #12121a 0%, #0a0a0f 100%);
  border-left: 1px solid var(--line-strong);
  padding: 72px 0 40px;
}

.headerNav__index {
  margin: 0 0 32px;
  padding: 0 48px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.headerMenu {
  list-style: none;
  margin: 0;
  padding: 0 48px;
}

.headerMenu__list { margin-bottom: 4px; }

.headerMenu__link {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  color: var(--text);
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.35s var(--ease), color 0.3s;
}

.headerMenu__link:hover {
  padding-left: 8px;
  color: var(--love);
  opacity: 1;
}

.headerMenu__num {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.headerMenu__linkText {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  line-height: 1;
}

/* —— ヒーロージャケット（全面 → 通常盤へ） —— */
.heroJacket {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.heroJacket.is-hidden {
  visibility: hidden;
}

.heroJacket__clip {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--hero-jacket-size);
  height: var(--hero-jacket-size);
  margin-left: 0;
  overflow: hidden;
  will-change: transform, width, height, border-radius;
  transform: translate3d(calc((100vw - var(--hero-jacket-size)) * 0.5), var(--chrome-top), 0);
  backface-visibility: hidden;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.55);
}

.heroJacket__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* —— ファーストビュー .topMv —— */
.topMv {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100svh;
}

.topMv__screen {
  position: relative;
  width: 100%;
  height: 100svh;
  z-index: 4;
  pointer-events: none;
}

.topMv__screen::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.08) 0%,
    transparent 22%,
    transparent 52%,
    rgba(0, 0, 0, 0.78) 100%
  );
}

.topMv__title {
  position: absolute;
  inset: 0;
  margin: 0;
  font-size: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 clamp(20px, 5vw, 48px) clamp(96px, 14vh, 140px);
  box-sizing: border-box;
}

.topMv__siteName {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.topMv__typo {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 720px;
  text-align: center;
  transition: opacity 0.35s var(--ease);
}

.topMv__label {
  margin: 0 0 12px;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: rgba(255, 255, 255, 0.72);
}

.topMv__artist {
  margin: 0 0 8px;
  font-family: var(--font-sans);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.45em;
  color: rgba(255, 255, 255, 0.78);
}

.topMv__album {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 10vw, 7rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1;
  color: #fff;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.45);
}

.topMv__release {
  margin: 1.2rem 0 0;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  letter-spacing: 0.28em;
  color: var(--billow);
}

/* SCROLL */
.toScroll {
  position: absolute;
  bottom: 0;
  left: 43px;
  width: 20px;
  height: 137px;
  overflow: hidden;
  z-index: 5;
  pointer-events: auto;
}

@media (max-width: 767px) { .toScroll { left: 15px; } }

.toScroll__text {
  display: block;
  position: absolute;
  top: 18px;
  left: -14px;
  width: 52px;
  font-family: var(--font-serif);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.18em;
  transform: rotate(90deg);
  transform-origin: left top;
  color: #fff;
  white-space: nowrap;
}

.toScroll__bdr {
  display: block;
  position: absolute;
  top: 57px;
  left: 50%;
  width: 1px;
  height: 80px;
  background: linear-gradient(180deg, var(--love), var(--hate), transparent);
  transform: translateX(-50%);
  animation: lineShow 3s ease-in-out infinite;
}

@keyframes lineShow {
  0%, 100% { opacity: 0.2; transform: translateX(-50%) scaleY(0.35); transform-origin: top; }
  50% { opacity: 1; transform: translateX(-50%) scaleY(1); }
}

/* Boot */
body.is-boot .reveal { opacity: 0; transform: translateY(32px); }
body.is-ready .topMv .reveal {
  animation: bootUp 1s var(--ease) forwards;
}
body.is-ready .topMv .reveal:nth-child(2) { animation-delay: 0.08s; }
body.is-ready .topMv .reveal:nth-child(3) { animation-delay: 0.16s; }
body.is-ready .topMv .reveal:nth-child(4) { animation-delay: 0.24s; }
body.is-ready .topMv .reveal:nth-child(5) { animation-delay: 0.32s; }

@keyframes bootUp {
  to { opacity: 1; transform: none; }
}

/* —— Contents —— */
.contents {
  position: relative;
  z-index: 2;
  background: transparent;
}

/* —— スナップセクション（最小1画面、コンテンツ優先で伸長） —— */
.snap-section {
  min-height: 100svh;
  height: auto;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: visible;
}

.snap-section__inner {
  position: relative;
  width: 100%;
  flex: 0 0 auto;
  z-index: 1;
}

.snap-section.topConts {
  padding-top: clamp(28px, 4vw, 48px);
  padding-bottom: clamp(28px, 4vw, 48px);
}

.outline {
  position: relative;
  border-top: none;
  background: transparent;
  overflow: visible;
}

.outline__layout {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(20px, 3vw, 36px) clamp(24px, 6vw, 80px);
  box-sizing: border-box;
  display: grid;
  grid-template-columns: minmax(0, 340px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}

.outline__visual {
  position: relative;
  top: auto;
}

.outline__jacketSlot {
  width: 100%;
  aspect-ratio: 1;
  pointer-events: none;
}

.outline.snap-section {
  min-height: auto;
  padding-top: clamp(48px, 10vh, 96px);
  padding-bottom: clamp(48px, 10vh, 96px);
}

.outline__body {
  position: relative;
  z-index: 1;
  padding-bottom: 0;
  text-align: left;
}

.outline__catch {
  margin: 0 0 20px;
  font-family: var(--font-serif);
  letter-spacing: 0.08em;
  line-height: 1.55;
  color: var(--billow);
  text-align: left;
}

.outline__catchMain {
  display: inline-block;
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.outline__catchSub {
  display: inline-block;
  margin-top: 6px;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(221, 240, 244, 0.82);
}

.outline__lead {
  margin: 0 0 16px;
  max-width: none;
  font-size: 1.3rem;
  line-height: 2;
  color: var(--text-dim);
  text-align: left;
}

@media (max-width: 767px) {
  .outline__layout {
    grid-template-columns: 1fr;
    gap: clamp(20px, 5vw, 28px);
    padding-left: clamp(16px, 4vw, 20px);
    padding-right: clamp(16px, 4vw, 20px);
    overflow: hidden;
  }

  .outline.snap-section {
    padding-top: clamp(32px, 8vh, 56px);
    padding-bottom: clamp(32px, 8vh, 56px);
  }

  .outline__visual {
    position: relative;
    top: auto;
    width: min(100%, 260px);
    max-width: 100%;
    margin: 0 auto;
  }

  .outline__jacketSlot {
    width: 100%;
  }

  .outline__body {
    position: relative;
    z-index: 3;
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
    padding: clamp(18px, 4.5vw, 24px) clamp(14px, 3.5vw, 18px);
    background: rgba(3, 3, 4, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .outline__catch {
    text-align: center;
    max-width: 100%;
  }

  .outline__catchMain {
    display: block;
    max-width: 100%;
    font-size: clamp(1.28rem, 3.8vw, 1.44rem);
    letter-spacing: 0.04em;
    text-wrap: pretty;
  }

  .outline__catchSub {
    display: block;
    max-width: 100%;
    font-size: clamp(0.92rem, 2.6vw, 1rem);
    letter-spacing: 0.03em;
  }

  .outline__lead {
    font-size: 1.2rem;
    line-height: 1.9;
  }
}

/* Sections */
.topConts {
  position: relative;
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 60px);
  border-top: none;
  background: rgba(3, 3, 4, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  isolation: isolate;
}

.topConts--movie { overflow: hidden; }

.section-index {
  position: absolute;
  top: clamp(56px, 8vw, 96px);
  right: clamp(20px, 5vw, 60px);
  font-family: var(--font-sans);
  font-size: 1rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  opacity: 0.5;
}

.topConts__titleWrap { margin-bottom: 48px; text-align: center; }

.topConts__titleFade {
  opacity: 0;
  transform: translateY(18px);
  filter: blur(8px);
  transition: opacity 1.2s var(--ease), transform 1s var(--ease), filter 1.2s var(--ease);
}

.topConts__titleFade.is-show {
  opacity: 1;
  transform: none;
  filter: none;
}

.topConts__title {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(3.2rem, 8vw, 4.2rem);
  font-weight: 300;
  letter-spacing: 0.38em;
  line-height: 1;
  text-align: center;
  color: var(--text);
}

.topConts__sub {
  margin: 12px 0 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  letter-spacing: 0.25em;
  color: var(--text-dim);
}

/* DISC */
.discT1__head { text-align: center; margin-bottom: 48px; }

.discT1__headText {
  margin: 0 0 12px;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  letter-spacing: 0.25em;
  color: var(--text-dim);
}

.discT1__headText--text + .discT1__headText--text::before { content: " / "; }

.discT1__headTitle {
  margin: 0 0 16px;
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.08em;
}

.discT1__headLogo {
  margin: 0 0 16px;
}

.discT1__headLogoImg {
  display: block;
  width: min(72vw, 280px);
  height: auto;
  margin: 0 auto;
}

.discT1__headDesc {
  margin: 0 auto;
  max-width: 560px;
  font-size: 1.3rem;
  color: var(--text-dim);
  line-height: 1.9;
}

.discT1 {
  width: 100%;
  max-width: 100%;
}

.discT1__metas {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  max-width: 100%;
}

.discT1__meta {
  min-width: 0;
  max-width: 100%;
}

.discT1__metas--regular {
  display: flex;
  justify-content: center;
  max-width: 960px;
  margin-bottom: 28px;
}

.discT1__meta--regular {
  width: min(100%, 340px);
}

.discT1__metas--limited {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 640px;
}

@media (max-width: 899px) {
  .discT1__metas--regular,
  .discT1__metas--limited {
    max-width: min(100%, 320px);
    margin-left: auto;
    margin-right: auto;
  }

  .discT1__metas--limited {
    grid-template-columns: 1fr;
  }

  .discT1__meta,
  .discT1__meta--regular {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 767px) {
  .discT1__name,
  .discT1__spec,
  .discT1__price,
  .discT1__note,
  .discT1__goodsImgWrap,
  .discT1__actions {
    padding-left: 12px;
    padding-right: 12px;
  }
}

.discT1__imgWrap--dock .discT1__img {
  opacity: 0;
}

.discT1__imgWrap--dock.is-landed .discT1__img {
  opacity: 1;
  transition: none;
}

.discT1__jacket {
  all: unset;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  cursor: pointer;
  text-align: center;
  color: inherit;
  background: rgba(20, 20, 31, 0.72);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s, border-color 0.35s;
}

.discT1__jacket:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,59,92,0.15);
  border-color: var(--line-strong);
}

.discT1__imgWrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.discT1__imgWrap--eizo {
  aspect-ratio: 2113 / 3000;
  background: #0a0a0f;
}

.discT1__imgWrap--eizo .discT1__img {
  object-fit: contain;
}

.discT1__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.discT1__jacket:hover .discT1__img { transform: scale(1.06); }

.discT1__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 16px 16px;
  background: rgba(20, 20, 31, 0.72);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-top: none;
  border-radius: 0 0 4px 4px;
}

.discT1__actions--section {
  max-width: 420px;
  margin: clamp(64px, 8vw, 80px) auto 0;
  padding: 0;
  background: transparent;
  backdrop-filter: none;
  border: none;
  border-radius: 0;
  gap: 14px;
}

@media (min-width: 768px) {
  .discT1__actions--section {
    max-width: 240px;
    margin-top: clamp(72px, 9vw, 96px);
    gap: 24px;
  }

  .discT1__actions--section .discT1__actionBtn {
    min-height: 36px;
    padding: 8px 10px;
    font-size: 0.78rem;
    letter-spacing: 0.18em;
  }
}

.discT1__actions--section:has(.discT1__actionBtn--buy.is-section-hidden),
.discT1__actions--section:has(.discT1__actionBtn--buy[hidden]),
.discT1__actions--section.discT1__actions--playOnly {
  grid-template-columns: 1fr;
  justify-items: stretch;
  max-width: min(100%, 360px);
}

.discT1__actions--section:has(.discT1__actionBtn--buy.is-section-hidden) .discT1__actionBtn--play,
.discT1__actions--section:has(.discT1__actionBtn--buy[hidden]) .discT1__actionBtn--play,
.discT1__actions--section.discT1__actions--playOnly .discT1__actionBtn--play {
  width: min(100%, 220px);
}

.discT1__actions--section.discT1__actions--playOnly .discT1__actionBtn--buy {
  width: 100%;
  max-width: 100%;
}

@media (min-width: 768px) {
  .discT1__actions--section.discT1__actions--playOnly {
    max-width: min(100%, 320px);
  }
}

.discT1__actionBtn {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 12px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  overflow: hidden;
  isolation: isolate;
  transition:
    color 0.45s var(--ease),
    border-color 0.45s var(--ease),
    transform 0.45s var(--ease),
    box-shadow 0.45s var(--ease);
}

.discT1__actionBtn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.45s var(--ease), transform 0.55s var(--ease);
}

.discT1__actionBtn::after {
  content: "";
  position: absolute;
  inset: -40% auto -40% -60%;
  width: 42%;
  z-index: 1;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.42) 48%,
    transparent 100%
  );
  transform: translateX(-180%) skewX(-18deg);
  transition: transform 0.7s var(--ease);
  pointer-events: none;
}

.discT1__actionBtn--buy {
  color: var(--love);
  border-color: rgba(255, 59, 92, 0.38);
}

.discT1__actionBtn--buy::before {
  background: linear-gradient(135deg, rgba(255, 59, 92, 0.92), rgba(212, 48, 82, 0.72));
}

.discT1__actionBtn--play {
  color: var(--hate);
  border-color: rgba(46, 230, 255, 0.38);
}

.discT1__actionBtn--play::before {
  background: linear-gradient(135deg, rgba(46, 230, 255, 0.88), rgba(18, 148, 196, 0.72));
}

a.discT1__actionBtn--buy:hover,
a.discT1__actionBtn--buy:focus-visible {
  color: #fff;
  border-color: rgba(255, 120, 145, 0.95);
  transform: translateY(-3px);
  box-shadow:
    0 10px 28px rgba(255, 59, 92, 0.28),
    0 0 0 1px rgba(255, 59, 92, 0.18);
  opacity: 1;
}

a.discT1__actionBtn--play:hover,
a.discT1__actionBtn--play:focus-visible {
  color: #031014;
  border-color: rgba(120, 240, 255, 0.95);
  transform: translateY(-3px);
  box-shadow:
    0 10px 28px rgba(46, 230, 255, 0.24),
    0 0 0 1px rgba(46, 230, 255, 0.16);
  opacity: 1;
}

.discT1__actionBtn:hover::before,
.discT1__actionBtn:focus-visible::before {
  opacity: 1;
  transform: scale(1);
}

.discT1__actionBtn:hover::after,
.discT1__actionBtn:focus-visible::after {
  transform: translateX(420%) skewX(-18deg);
}

.discT1__badge {
  position: absolute;
  top: 10px; right: 10px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  padding: 4px 8px;
  background: rgba(0,0,0,0.7);
  border: 1px solid var(--line);
}

.discT1__name, .discT1__spec, .discT1__price, .discT1__note {
  padding-left: 16px;
  padding-right: 16px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.discT1__name {
  display: block;
  margin-top: 14px;
  font-size: 1.4rem;
  font-weight: 600;
}

.discT1__spec {
  display: block;
  margin-top: 4px;
  font-size: 1.1rem;
  color: var(--text-dim);
  line-height: 1.5;
}

.discT1__price {
  display: block;
  margin-top: 8px;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: var(--billow);
}

.discT1__note {
  display: block;
  margin: 8px 0 16px;
  font-size: 1rem;
  color: var(--text-dim);
}

.discT1__goodsImgWrap {
  display: block;
  padding: 0 16px;
  margin: 4px 0 16px;
}

.discT1__goodsImg {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
}

.discT1__bonus {
  max-width: 720px;
  margin: 56px auto 0;
  padding: 28px 32px;
  border: 1px solid var(--line);
  background: rgba(20, 20, 31, 0.72);
  backdrop-filter: blur(10px);
  border-radius: 4px;
}

.discT1__bonusTitle {
  margin: 0 0 16px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-align: center;
  color: var(--text);
}

.discT1__bonusList {
  list-style: none;
  margin: 0;
  padding: 0;
}

.discT1__bonusList li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 8px;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-dim);
}

.discT1__bonusList li:last-child {
  margin-bottom: 0;
}

.discT1__bonusList li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.discT1__bonus + .discT1__actions--section {
  margin-top: 40px;
}

@media (min-width: 768px) {
  .discT1__bonus + .discT1__actions--section {
    margin-top: 48px;
  }
}

@media (max-width: 767px) {
  .discT1__bonus {
    margin-top: 40px;
    padding: 24px 20px;
  }

  .discT1__bonusList li {
    font-size: 1.05rem;
  }
}

.discTrack {
  max-width: 720px;
  margin: 56px auto 0;
  padding: 28px 32px;
  border: 1px solid var(--line);
  background: rgba(20, 20, 31, 0.72);
  backdrop-filter: blur(10px);
  border-radius: 4px;
}

.discTrack + .discTrack {
  margin-top: 20px;
}

.discTrack__title {
  margin: 0 0 16px;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
}

.discTrack__label {
  margin: 0 0 14px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--text-dim);
}

.discTrack__tracks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 8px 24px;
}

.discTrack__tracks li {
  display: flex;
  align-items: center;
  gap: 0.35em;
  font-family: var(--font-sans);
  font-size: clamp(1.22rem, 1.95vw, 1.42rem);
  font-weight: 400;
  color: var(--text);
  line-height: 1.5;
  letter-spacing: 0.16em;
}

.discTrack__tracks li::before {
  content: "・";
  flex-shrink: 0;
  width: 1.45em;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gold);
  line-height: 1;
  text-align: center;
}

.discTrack__note {
  margin: 16px 0 0;
  font-size: 1.2rem;
  color: var(--text-dim);
}

.discTrack__bluray {
  margin: 0;
}

.discTrack__bluray dt {
  margin: 14px 0 6px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  color: var(--gold);
}

.discTrack__bluray dt:first-of-type {
  margin-top: 0;
}

.discTrack__bluray dd {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2vw, 1.45rem);
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: var(--text);
}

.discTrack__list {
  margin: 0; padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 6px 20px;
  counter-reset: tr;
}

.discTrack__list li {
  counter-increment: tr;
  padding-left: 2.4rem;
  position: relative;
  font-size: 1.2rem;
  color: var(--text-dim);
}

.discTrack__list li::before {
  content: counter(tr, decimal-leading-zero) ".";
  position: absolute;
  left: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--love);
}

/* MOVIE horizontal rail */
.videoRail-wrap {
  margin-left: calc(-1 * var(--rail-pad));
  margin-right: calc(-1 * var(--rail-pad));
}

.videoRail {
  list-style: none;
  margin: 0;
  padding: 8px var(--rail-pad) 24px;
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-padding-inline: var(--rail-pad);
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--love) var(--surface);
}

.videoRail::-webkit-scrollbar { height: 4px; }
.videoRail::-webkit-scrollbar-track { background: var(--surface); }
.videoRail::-webkit-scrollbar-thumb { background: linear-gradient(90deg, var(--love), var(--hate)); border-radius: 999px; }

.videoRail__item {
  flex: 0 0 min(78vw, 520px);
  scroll-snap-align: center;
}

.videoRail__btn {
  all: unset;
  display: block;
  width: 100%;
  cursor: pointer;
  position: relative;
}

.videoRail__frame {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--line-strong);
  background: #000;
  position: relative;
  transition: transform 0.45s var(--ease), box-shadow 0.45s;
}

.videoRail__btn:hover .videoRail__frame {
  transform: scale(1.02) translateY(-4px);
  box-shadow: 0 24px 70px rgba(0,0,0,0.55);
}

.videoRail__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 180px;
  transition: transform 0.65s var(--ease), filter 0.4s;
  filter: brightness(0.9);
}

.videoRail__btn:hover .videoRail__img {
  transform: scale(1.05);
  filter: brightness(1);
}

.videoRail__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,0.12) 50%, transparent 65%);
  transform: translateX(-100%);
  transition: transform 0.8s var(--ease);
  pointer-events: none;
}

.videoRail__btn:hover .videoRail__shine { transform: translateX(100%); }

.videoRail__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 56px;
  height: 56px;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.videoRail__play::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  margin-left: 3px;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent #111;
}

.videoRail__name {
  margin: 12px 0 0;
  font-size: 1.2rem;
  color: var(--text-dim);
  line-height: 1.55;
}

.videoRail__count {
  font-family: var(--font-sans);
  color: var(--gold);
  margin-right: 0.5em;
}

/* Misc blocks */
.placeholderBlock, .profileBlock {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.3rem;
  color: var(--text-dim);
}

.placeholderBlock__ref { margin-top: 12px; font-size: 1.2rem; }

.newsList {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 720px;
}

.newsList__item {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.3rem;
  transition: padding-left 0.35s var(--ease);
}

.newsList__item:hover { padding-left: 8px; }

.newsList__item time {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  flex-shrink: 0;
}

.newsList__link {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  width: 100%;
  color: inherit;
  transition: color 0.35s var(--ease);
}

.newsList__link:hover { color: var(--text); }

.newsList__more {
  max-width: 720px;
  margin: 20px auto 0;
  text-align: right;
  font-family: var(--font-sans);
  font-size: 1.2rem;
  letter-spacing: 0.12em;
}

.newsList__more a { color: var(--gold); }

/* Store / Goods */
.storeBlock {
  max-width: 900px;
  margin: 0 auto;
}

.goodsList {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 767px) {
  .goodsList { grid-template-columns: repeat(2, 1fr); max-width: 360px; margin: 0 auto; }
}

.goodsList__link {
  display: block;
  color: inherit;
  text-align: center;
  transition: transform 0.4s var(--ease);
}

.goodsList__link:hover { transform: translateY(-4px); color: inherit; }

.goodsList__imgWrap {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
}

.goodsList__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.goodsList__name {
  display: block;
  margin-top: 10px;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
}

.goodsList__price {
  display: block;
  margin-top: 4px;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.06em;
}

.storeBlock__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 28px;
  margin: 28px 0 0;
}

.storeBlock__btn {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  letter-spacing: 0.14em;
  color: var(--text);
  transition: border-color 0.35s var(--ease), background 0.35s var(--ease);
}

.storeBlock__btn:hover {
  border-color: var(--gold);
  background: rgba(255,255,255,0.04);
  color: var(--text);
}

.storeBlock__more {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  color: var(--gold);
}

/* Live list */
.liveList {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 720px;
}

.liveList__item {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.liveList__title {
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.4;
}

.liveList__title a {
  color: inherit;
  transition: color 0.35s var(--ease);
}

.liveList__title a:hover { color: var(--gold); }

.liveList__date,
.liveList__detail {
  margin: 0 0 6px;
  font-size: 1.25rem;
  color: var(--text-dim);
  line-height: 1.6;
}

.liveList__dates {
  list-style: none;
  margin: 0 0 8px;
  padding: 0;
  font-size: 1.25rem;
  color: var(--text-dim);
  line-height: 1.7;
}

.liveList__dates time {
  font-family: var(--font-sans);
  color: var(--gold);
  letter-spacing: 0.08em;
}

.liveList__more {
  max-width: 720px;
  margin: 20px auto 0;
  text-align: right;
  font-family: var(--font-sans);
  font-size: 1.2rem;
  letter-spacing: 0.12em;
}

.liveList__more a { color: var(--gold); }

.singleList {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 840px;
}

@media (max-width: 767px) {
  .singleList { grid-template-columns: 1fr; max-width: 280px; }
}

.singleList__link {
  display: block;
  color: inherit;
  text-align: center;
  transition: transform 0.4s var(--ease);
}

.singleList__link:hover { transform: translateY(-6px); color: inherit; }

.singleList__imgWrap {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid var(--line);
}

.singleList__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.singleList__link:hover .singleList__img { transform: scale(1.07); }

.singleList__name {
  display: block;
  margin-top: 10px;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
}

.profileBlock__name {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin: 0 0 20px;
}

.profileBlock__en {
  display: block;
  margin-top: 6px;
  font-family: var(--font-sans);
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.profileBlock--withPhoto {
  max-width: 960px;
  display: grid;
  grid-template-columns: minmax(200px, 320px) 1fr;
  gap: clamp(24px, 5vw, 48px);
  align-items: start;
}

@media (max-width: 767px) {
  .profileBlock--withPhoto { grid-template-columns: 1fr; max-width: 720px; }
}

.profileBlock__photo {
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.profileBlock__img {
  display: block;
  width: 100%;
  height: auto;
}

.profileBlock p { margin: 0 0 16px; }
.profileBlock__src { font-size: 1.1rem; margin-top: 24px; font-family: var(--font-sans); }

/* Footer */
.footer {
  padding: clamp(48px, 8vw, 80px) 24px 32px;
  border-top: 1px solid var(--line);
  background: rgba(1, 1, 2, 0.75);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.footer__logo {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  user-select: none;
  pointer-events: none;
}

.footer__logoImg {
  display: block;
  width: min(88vw, 520px);
  height: auto;
  opacity: 0.92;
}

.footer__inner {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto auto;
  justify-content: center;
  align-items: start;
  column-gap: clamp(48px, 14vw, 112px);
  row-gap: 24px;
}

@media (max-width: 767px) {
  .footer__inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer__siteLinks {
    justify-content: center;
  }

  .footer__sns {
    justify-content: center;
  }
}

.footer__label {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  letter-spacing: 0.35em;
  color: var(--text-dim);
  margin: 0 0 10px;
}

.footer__siteLinks {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 16px;
}

.footer__siteLinks a {
  display: block;
  line-height: 1.5;
}

.footer__siteLinks a + a {
  padding-left: 16px;
  border-left: 1px solid var(--line-strong);
}

.footer__sns {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.footer__copy {
  text-align: center;
  margin: 32px 0 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text-dim);
  letter-spacing: 0.08em;
}

/* Modal */
.modalRoot {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.modalRoot[hidden] { display: none; }

.modalRoot__bg {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
}

.modalPanel {
  position: relative;
  z-index: 2;
  width: min(600px, 100%);
  max-height: 85vh;
  overflow: auto;
  background: var(--bg-panel);
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  padding: 32px 28px;
  animation: modalPop 0.5s var(--ease);
}

@keyframes modalPop {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
}

.modalPanel__close {
  position: absolute;
  top: 12px; right: 16px;
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 2.4rem;
  line-height: 1;
}

.modalPanel__title {
  margin: 0 0 16px;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  padding-right: 40px;
}

.modalPanel__body { font-size: 1.3rem; color: var(--text-dim); line-height: 1.8; }

.modalDisc h4 { margin: 20px 0 8px; color: var(--text); }
.modalDisc ol { margin: 0; padding-left: 1.4em; }

.modalDisc__tracks {
  list-style: none;
  margin: 0;
  padding: 0;
}

.modalDisc__tracks li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 4px;
  font-size: 1.2rem;
  line-height: 1.6;
}

.modalDisc__tracks li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.modalDisc__note {
  margin: 8px 0 0;
  font-size: 1.15rem;
  color: var(--text-dim);
}

.modalDisc__bluray {
  margin: 0;
}

.modalDisc__bluray dt {
  margin: 12px 0 4px;
  font-family: var(--font-sans);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.modalDisc__bluray dd {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-dim);
}

.modalDisc__warn {
  padding: 12px;
  border-left: 3px solid var(--love);
  background: rgba(255,59,92,0.06);
}

.modalDisc__set { font-size: 1.15rem; line-height: 1.7; }

/* Video modal */
.videoModalRoot {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(0,0,0,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.videoModalRoot[hidden] { display: none; }

.videoModalRoot__close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 3.2rem;
  z-index: 2;
}

.videoModalRoot__frame {
  width: min(1024px, 100%);
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 4px;
  overflow: hidden;
}

.videoModalRoot__frame iframe { width: 100%; height: 100%; border: 0; }

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  filter: blur(4px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee__track { animation: none; transform: none; }
  .marquee__group:not(:first-child) { display: none; }
  .topMv__orb { animation: none; }
  .toScroll__bdr { animation: none; opacity: 0.7; }
  .reveal, .topConts__titleFade { opacity: 1; transform: none; filter: none; transition: none; }
  body.is-boot .reveal, body.is-ready .topMv .reveal { opacity: 1; transform: none; animation: none; }
  .heroJacket { visibility: hidden; }
  .discT1__imgWrap--dock .discT1__img { opacity: 1; }
  .cursor, .cursor-ring { display: none !important; }
  .site-bg__gl { filter: none; }
}
