@charset "UTF-8";

:root {
  --bg: #030304;
  --text: #f4f1ea;
  --text-dim: rgba(244, 241, 234, 0.5);
  --gold: #d4b872;
  --love: #c93250;
  --hate: #138aa8;
  --line: rgba(255, 255, 255, 0.07);
  --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);
}

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

html {
  font-size: 62.5%;
  height: 100%;
}

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

a {
  color: rgba(221, 240, 244, 0.85);
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

a:hover { color: var(--love); }

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  opacity: 0.04;
  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");
}

.comming {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  min-height: 100svh;
}

.comming__marquee {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  height: 36px;
  border-bottom: 1px solid var(--line);
  background: rgba(3, 3, 4, 0.88);
  backdrop-filter: blur(14px);
}

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

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

.comming__marqueeGroup {
  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);
}

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

.comming__chip--gold { color: var(--gold); }
.comming__chip--love { color: var(--love); }
.comming__chip--hate { color: var(--hate); }

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

@media (prefers-reduced-motion: reduce) {
  .comming__marqueeTrack {
    animation: none;
  }
}

.comming__main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(36px + 48px) 24px 80px;
  text-align: center;
}

.comming__status {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 200;
  letter-spacing: 0.55em;
  color: var(--text-dim);
}

.comming__statusLine {
  display: block;
  width: 1px;
  height: 48px;
  margin: 0 auto 24px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  animation: commingPulse 2.4s ease-in-out infinite;
}

@keyframes commingPulse {
  0%, 100% { opacity: 0.35; transform: scaleY(0.85); }
  50% { opacity: 1; transform: scaleY(1); }
}

.comming__release {
  margin: 28px 0 0;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  letter-spacing: 0.28em;
  color: rgba(221, 240, 244, 0.72);
}

.comming__footer {
  padding: 32px 24px 28px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.comming__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}

.comming__copy {
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: var(--text-dim);
}

@media (max-width: 767px) {
  .comming__main { padding-top: calc(36px + 40px); }
  .comming__status { letter-spacing: 0.32em; }
}
