/* SuperSTRIKE X3 予約ページ */
.p-superstrike-x3-reserve {
  --bg: #0B0D12;
  --surface: #12151C;
  --surface-2: #181C26;
  --line: #262B38;
  --text: #EDEFF5;
  --text-dim: #8991A8;
  --accent: #35E7FF;
  --accent-soft: rgba(53, 231, 255, .12);
  --accent-2: #FF3D81;
  --tbd: #FFB648;
  --tbd-soft: rgba(255, 182, 72, .12);
  --maxw: 1180px;

  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.p-superstrike-x3-reserve * {
  box-sizing: border-box;
}

.p-superstrike-x3-reserve h1,
.p-superstrike-x3-reserve h2,
.p-superstrike-x3-reserve h3,
.p-superstrike-x3-reserve .display {
  font-family: 'Rajdhani', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: .01em;
  margin: 0;
}

.p-superstrike-x3-reserve .wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.p-superstrike-x3-reserve a {
  color: inherit;
}

.p-superstrike-x3-reserve img,
.p-superstrike-x3-reserve svg {
  display: block;
  max-width: 100%;
}

/* ---------- buttons / pills ---------- */
.p-superstrike-x3-reserve .btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: transform .15s ease, background .15s ease;
}

.p-superstrike-x3-reserve .btn-primary {
  background: var(--accent);
  color: #04181C;
}

.p-superstrike-x3-reserve .btn-primary:hover {
  transform: translateY(-1px);
  background: #5EEEFF;
}

.p-superstrike-x3-reserve .btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line);
}

.p-superstrike-x3-reserve .btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.p-superstrike-x3-reserve .btn-sm {
  padding: 9px 16px;
  font-size: 13px;
}

.p-superstrike-x3-reserve .pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--line);
  color: var(--text-dim);
}

.p-superstrike-x3-reserve .pill .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tbd);
}

.p-superstrike-x3-reserve .pill.is-open {
  color: var(--accent);
  border-color: rgba(53, 231, 255, .35);
  background: var(--accent-soft);
}

.p-superstrike-x3-reserve .pill.is-open .dot {
  background: var(--accent);
}

.p-superstrike-x3-reserve .tbd-tag {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--tbd);
  background: var(--tbd-soft);
  border: 1px solid rgba(255, 182, 72, .3);
  padding: 3px 9px;
  border-radius: 5px;
}

/* ---------- hero ---------- */
.p-superstrike-x3-reserve .hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 96px;
  border-bottom: 1px solid var(--line);
}

.p-superstrike-x3-reserve .hero .wrap {
  display: grid;
  grid-template-columns: 1.1fr .5fr;
  gap: 56px;
  align-items: center;
}

.p-superstrike-x3-reserve .hero .wrap>div {
  opacity: 0;
  transform: translateY(28px);
  animation: p-superstrike-x3-reserve-fade-up .8s ease forwards;
}

.p-superstrike-x3-reserve .hero .wrap>div:nth-child(2) {
  animation-delay: .22s;
}

@keyframes p-superstrike-x3-reserve-fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion:reduce) {
  .p-superstrike-x3-reserve .hero .wrap>div {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.p-superstrike-x3-reserve .hero-eyebrow {
  margin-bottom: 22px;
}

.p-superstrike-x3-reserve .hero h1 {
  font-size: clamp(52px, 7vw, 88px);
  line-height: .95;
  color: var(--text);
}

.p-superstrike-x3-reserve .hero h1 span {
  color: var(--accent);
}

.p-superstrike-x3-reserve .hero-sub {
  margin-top: 22px;
  max-width: 46ch;
  color: var(--text-dim);
  font-size: 17px;
}

.p-superstrike-x3-reserve .hero-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.p-superstrike-x3-reserve .hero-date {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
}

.p-superstrike-x3-reserve .hero-date small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: var(--text-dim);
}

.p-superstrike-x3-reserve .hero-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.p-superstrike-x3-reserve .hero-actions+.note {
  font-size: 12.5px;
  color: var(--text-dim);
  margin-top: 14px;
}

.p-superstrike-x3-reserve .hero-visual {
  position: relative;
  aspect-ratio: 3/4;
  max-width: 420px;
  margin: 0 auto;
}

.p-superstrike-x3-reserve .hero-visual-img {
  position: relative;
  z-index: 1;
  width: 100%;
}

.p-superstrike-x3-reserve .visual-caption {
  text-align: center;
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 18px;
}

/* ---------- section shell ---------- */
.p-superstrike-x3-reserve section {
  padding: 88px 0;
}

.p-superstrike-x3-reserve .section-alt {
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.p-superstrike-x3-reserve .section-head {
  max-width: 640px;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}

.p-superstrike-x3-reserve .section-head.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion:reduce) {
  .p-superstrike-x3-reserve .section-head {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.p-superstrike-x3-reserve .section-head .pill {
  margin-bottom: 18px;
}

.p-superstrike-x3-reserve .section-head h2 {
  font-size: clamp(30px, 3.4vw, 40px);
  color: var(--text);
}

.p-superstrike-x3-reserve .section-head p {
  margin-top: 14px;
  color: var(--text-dim);
  font-size: 15.5px;
}

.p-superstrike-x3-reserve .lead-band {
  border-bottom: 1px solid var(--line);
  padding: 64px 0;
}

.p-superstrike-x3-reserve .lead-band p {
  max-width: 64ch;
  font-size: 17px;
  color: var(--text-dim);
  margin: 0;
}

.p-superstrike-x3-reserve .lead-band strong {
  color: var(--text);
  font-weight: 600;
}

/* ---------- features ---------- */
.p-superstrike-x3-reserve .feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}

.p-superstrike-x3-reserve .feature-card {
  background: var(--surface);
  padding: 32px 28px;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
}

.p-superstrike-x3-reserve .feature-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  color: var(--accent);
}

.p-superstrike-x3-reserve .feature-card h3 {
  font-size: 19px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 10px;
}

.p-superstrike-x3-reserve .feature-card p {
  font-size: 14px;
  color: var(--text-dim);
  margin: 0;
}

.p-superstrike-x3-reserve .spec-table-wrap {
  margin-top: 24px;
  overflow-x: auto;
}

.p-superstrike-x3-reserve .spec-table {
  width: 100%;
  min-width: 360px;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}

.p-superstrike-x3-reserve .spec-table tr {
  border-top: 1px solid var(--line);
}

.p-superstrike-x3-reserve .spec-table tr:first-child {
  border-top: none;
}

.p-superstrike-x3-reserve .spec-table th,
.p-superstrike-x3-reserve .spec-table td {
  padding: 14px 20px;
  font-size: 13.5px;
  text-align: left;
  vertical-align: top;
}

.p-superstrike-x3-reserve .spec-table th {
  width: 9em;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--text);
  background: var(--surface-2);
  white-space: nowrap;
}

.p-superstrike-x3-reserve .spec-table td {
  color: var(--text-dim);
  background: var(--surface);
}

/* ---------- timeline ---------- */
.p-superstrike-x3-reserve .timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 8px;
}

.p-superstrike-x3-reserve .tl-step {
  position: relative;
  padding: 0 20px 0 0;
}

.p-superstrike-x3-reserve .tl-step:first-child {
  padding-left: 0;
}

.p-superstrike-x3-reserve .tl-line {
  position: absolute;
  top: 15px;
  left: 0;
  right: 20px;
  height: 1px;
  background: var(--line);
}

.p-superstrike-x3-reserve .tl-step:first-child .tl-line {
  display: none;
}

.p-superstrike-x3-reserve .tl-dot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 14px;
  background: var(--surface-2);
  border: 1px solid var(--line);
  color: var(--text-dim);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.p-superstrike-x3-reserve .tl-step.is-next .tl-dot {
  background: var(--accent);
  border-color: var(--accent);
  color: #04181C;
}

.p-superstrike-x3-reserve .tl-step .tl-date {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 6px;
}

.p-superstrike-x3-reserve .tl-step.is-dim .tl-date {
  color: var(--text-dim);
}

.p-superstrike-x3-reserve .tl-step h4 {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 8px;
}

.p-superstrike-x3-reserve .tl-step p {
  font-size: 13px;
  color: var(--text-dim);
  margin: 0;
  padding-right: 12px;
}

/* ---------- preorder flow ---------- */
.p-superstrike-x3-reserve .flow-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 36px;
}

.p-superstrike-x3-reserve .flow-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.p-superstrike-x3-reserve .flow-steps li {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px;
  background: var(--surface-2);
}

.p-superstrike-x3-reserve .flow-steps .n {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  color: var(--accent);
  font-size: 13px;
  margin-bottom: 10px;
  display: block;
}

.p-superstrike-x3-reserve .flow-steps p {
  font-size: 13.5px;
  color: var(--text-dim);
  margin: 0;
}

.p-superstrike-x3-reserve .flow-notes {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.p-superstrike-x3-reserve .flow-notes h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 14px;
}

.p-superstrike-x3-reserve .flow-notes ul {
  margin: 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p-superstrike-x3-reserve .flow-notes li {
  font-size: 13.5px;
  color: var(--text-dim);
}

.p-superstrike-x3-reserve .flow-common {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--text-dim);
}

.p-superstrike-x3-reserve .flow-common .tbd-tag {
  margin-right: 8px;
}

.p-superstrike-x3-reserve .flow-common strong {
  color: var(--text);
}

/* ---------- other lineup ---------- */
.p-superstrike-x3-reserve .group-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  margin: 0 0 20px;
}

.p-superstrike-x3-reserve .group-label .n {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  border: 1px solid rgba(53, 231, 255, .35);
  background: var(--accent-soft);
  color: var(--accent);
  padding: 3px 11px;
  border-radius: 100px;
}

.p-superstrike-x3-reserve .group-label.is-muted .n {
  border-color: var(--line);
  background: transparent;
  color: var(--text-dim);
}

.p-superstrike-x3-reserve .lineup-grid-preorder {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.p-superstrike-x3-reserve .lineup-card,.p-superstrike-x3-reserve .lineup-card-lg{
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 30px;
}

.p-superstrike-x3-reserve .lineup-card-lg {
  border: 1px solid rgba(53, 231, 255, .3);
  border-radius: 12px;
  padding: 30px;
  background: var(--surface);
/*   display: flex;
  flex-direction: column;
  align-items: flex-start; */
}

.p-superstrike-x3-reserve .thumb {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  /* margin-bottom: 18px; */
}

.p-superstrike-x3-reserve .lineup-card-lg h4 {
  font-size: 19px;
  font-weight: 600;
  /* margin: 0 0 10px; */
  color: var(--text);
}

.p-superstrike-x3-reserve .lineup-card-lg p {
  font-size: 13.5px;
  color: var(--text-dim);
  /* margin: 0 0 18px; */
  max-width: 32ch;
}

.p-superstrike-x3-reserve .tag-preorder {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(53, 231, 255, .3);
  padding: 3px 9px;
  border-radius: 5px;
  justify-self: start;
  /* margin-bottom: 16px; */
}

.p-superstrike-x3-reserve .is-muted {
  filter: saturate(0);
}

.p-superstrike-x3-reserve .lineup-card-lg .btn {
  /* margin-top: auto; */
  width: 100%;
  justify-content: center;
}

.p-superstrike-x3-reserve .lineup-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.p-superstrike-x3-reserve .lineup-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px;
  background: var(--surface);
  gap: 22px;
  grid-row: span 3;
/*   display: flex;
  flex-direction: column;
  align-items: flex-start; */
}

.p-superstrike-x3-reserve .lineup-card h4 {
  font-size: 15px;
  font-weight: 600;
  /* margin: 0 0 8px; */
  color: var(--text);
}

.p-superstrike-x3-reserve .lineup-card p {
  font-size: 12.5px;
  color: var(--text-dim);
  /* margin: 0 0 14px; */
}

/* ---------- faq ---------- */
.p-superstrike-x3-reserve .faq {
  border-top: 1px solid var(--line);
}

.p-superstrike-x3-reserve .faq details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}

.p-superstrike-x3-reserve .faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
}

.p-superstrike-x3-reserve .faq summary::-webkit-details-marker {
  display: none;
}

.p-superstrike-x3-reserve .faq summary .icon {
  width: 20px;
  height: 20px;
  flex: none;
  color: var(--text-dim);
  transition: transform .2s ease;
}

.p-superstrike-x3-reserve .faq details[open] summary .icon {
  transform: rotate(45deg);
  color: var(--accent);
}

.p-superstrike-x3-reserve .faq .a {
  margin-top: 14px;
  font-size: 14.5px;
  color: var(--text-dim);
  max-width: 60ch;
}

@media (max-width:860px) {
  .p-superstrike-x3-reserve .hero .wrap {
    grid-template-columns: 1fr;
    gap: 48px;
    justify-content: center;
  }

  .p-superstrike-x3-reserve .hero-visual {
    order: -1;
    max-width: 280px;
  }

  .p-superstrike-x3-reserve .feature-grid {
    grid-template-columns: 1fr;
  }

  .p-superstrike-x3-reserve .timeline {
    grid-template-columns: 1fr;
    row-gap: 28px;
  }

  .p-superstrike-x3-reserve .tl-line {
    display: none;
  }

  .p-superstrike-x3-reserve .flow-steps {
    grid-template-columns: 1fr;
  }

  .p-superstrike-x3-reserve .lineup-grid-preorder {
    grid-template-columns: 1fr 1fr;
  }

  .p-superstrike-x3-reserve .lineup-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:520px) {
  .p-superstrike-x3-reserve .lineup-grid-preorder {
    grid-template-columns: 1fr;
  }

  .p-superstrike-x3-reserve .lineup-grid {
    grid-template-columns: 1fr;
  }
}