@charset "UTF-8";

/* ===== Design Tokens ===== */
:root {
  --navy-deep: #070f24;
  --navy: #0d1d47;
  --navy-mid: #173174;
  --gold: #e7c468;
  --gold-light: #f6e0a0;
  --gold-glow: rgba(246, 224, 160, 0.28);
  --pink: #eaa6bd;
  --pink-soft: #f4cdd8;
  --get-pink: #ff6aa6;
  --purple: #a78cd0;
  --ink: #eef0f6;
  --ink-dim: #a9b0cc;
  --washi: #f5efe3;
  --washi-ink: #2a2740;
  --washi-dim: #8a8198;
  --line: rgba(231, 196, 104, 0.22);
  --cta: #0b0f22;
  --maxw: 560px;

  --sp: 8px;
  --r: 16px;

  --font-display: "Zen Kaku Gothic New", sans-serif;
  --font-body: "Zen Kaku Gothic New", sans-serif;
  --font-num: "Zen Kaku Gothic New", sans-serif;
  --font-accent: "Caveat", cursive;
}

/* ===== Reset ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
img,
svg {
  max-width: 100%;
  display: block;
}
ul,
ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.85;
  background: var(--navy-deep);
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.01em;
}

.lp {
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding-bottom: 104px;
  background: linear-gradient(
    180deg,
    #070f24 0%,
    #0d1d47 30%,
    #101f54 55%,
    #0d1d47 80%,
    #070f24 100%
  );
}
.lp > * {
  position: relative;
  z-index: 1;
}
.lp--flush {
  padding-bottom: 32px;
}

section {
  padding: 40px 26px;
}

/* ===== アイコン共通 ===== */
.icn {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: middle;
  fill: currentColor;
}

/* ===== 見出し（飾りを排し、ラベル＋タイトルで構成） ===== */
.section-head {
  text-align: center;
}
.section-head__eyebrow {
  display: inline-block;
  font-weight: 700;
  letter-spacing: 0.34em;
  color: var(--gold);
  font-size: 0.68rem;
  margin-bottom: 14px;
  text-indent: 0.34em;
}
.section-head__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.72rem;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1.3;
  padding-bottom: 2rem;
}
.section-head--small .section-head__title {
  font-size: 1.28rem;
}
.section-head__lead {
  margin-top: 14px;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--ink-dim);
  line-height: 1.9;
}

/* ===== GET! 差し ===== */
.get {
  font-family: var(--font-accent);
  font-weight: 700;
  color: var(--get-pink);
  font-size: 1.4em;
  line-height: 1;
  display: inline-block;
  transform: rotate(-3deg);
  margin-left: 0.12em;
}
.hl {
  color: var(--get-pink);
}
.hl-gold {
  color: var(--gold-light);
}

/* ===== 開催中バッジ ===== */
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  padding: 8px 18px;
  border-radius: 30px;
  margin-bottom: 22px;
}
.live-badge::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--get-pink);
  box-shadow: 0 0 8px var(--get-pink);
  animation: blink 1.4s infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

/* ============ ファーストビュー ============ */
.main-visual {
  position: relative;
  padding: 54px 26px 48px;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(
      125% 80% at 50% -10%,
      rgba(167, 140, 208, 0.28),
      transparent 62%
    ),
    linear-gradient(180deg, #06112e 0%, #0f2768 60%, #0c1f52 100%);
}
.main-visual .milky-way {
  position: absolute;
  inset: -20% -40%;
  background: linear-gradient(
    115deg,
    transparent 42%,
    rgba(246, 224, 160, 0.14) 49%,
    rgba(255, 255, 255, 0.2) 50%,
    rgba(167, 140, 208, 0.14) 51%,
    transparent 58%
  );
  filter: blur(8px);
  transform: rotate(-7deg);
  pointer-events: none;
}
.main-visual .stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(2px 2px at 80% 26%, var(--gold-light), transparent),
    radial-gradient(1.6px 1.6px at 30% 60%, var(--gold-light), transparent);
  background-repeat: no-repeat;
}
.main-visual__inner {
  position: relative;
  z-index: 2;
}

.cast_main{
  width: 100%;
  right: 0.6rem;
  position: absolute;
}

.main-visual__eyebrow {
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  font-size: 0.74rem;
  margin-bottom: 16px;
  text-indent: 0.2em;
}
.main-visual__title-sub {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: 0.1em;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.main-visual__title-main {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.4rem;
  line-height: 1.45;
  letter-spacing: 0.01em;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}
.main-visual__title-main .hl-gold {
  color: var(--gold-light);
}

/* ヒーローエンブレム（GPT画像が入るまでの上品なプレースホルダ） */
.hero-emblem {
  width: 164px;
  height: 164px;
  margin: 22px auto 24px;
  color: var(--gold-light);
  filter: drop-shadow(0 0 18px var(--gold-glow));
}
.hero-emblem .twk {
  animation: emblemTw 3.2s ease-in-out infinite;
  transform-origin: center;
}
.hero-emblem .twk2 {
  animation: emblemTw 3.2s ease-in-out 0.9s infinite;
  transform-origin: center;
}
.hero-emblem .twk3 {
  animation: emblemTw 3.2s ease-in-out 1.8s infinite;
  transform-origin: center;
}
@keyframes emblemTw {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.period-banner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  background: rgba(7, 15, 36, 0.5);
  border: 1px solid var(--line);
  border-radius: 40px;
  padding: 10px 22px;
  margin-top: 14rem;
}
.period-banner__label {
  background: transparent;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  border-right: 1px solid var(--line);
  padding-right: 12px;
}
.period-banner__day {
  font-size: 0.74em;
  color: var(--ink-dim);
  font-weight: 500;
}

/* キャンペーンリボン（cast FV） */
.campaign-ribbon {
  display: inline-block;
  position: relative;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: 0.01em;
  color: #fff;
  background: linear-gradient(135deg, #7e2c3b, #561c28);
  padding: 12px 32px;
  border-radius: 4px;
  margin-bottom: 24px;
}
.campaign-ribbon::before,
.campaign-ribbon::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 11px solid transparent;
}
.campaign-ribbon::before {
  left: -16px;
  border-right-color: #561c28;
}
.campaign-ribbon::after {
  right: -16px;
  border-left-color: #561c28;
}
.campaign-ribbon strong {
  font-size: 1.45em;
  color: var(--gold-light);
  margin: 0 0.05em;
}

/* ============ 特典まとめ（左組みエディトリアル） ============ */
.perks__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 460px;
  margin: 0 auto;
}
.perk {
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 22px 24px;
  text-align: left;
}
.perk__num {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: linear-gradient(150deg, #16306e, #0b1838);
  border: 1px solid rgba(231, 196, 104, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.perk__num small {
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gold-light);
}
.perk__num strong {
  font-family: var(--font-num);
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  margin-top: 2px;
}
.perk__text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--ink);
}
.perk__text .hl,
.perk__text .hl-gold {
  font-weight: 900;
}

/* ============ ポイントバック（guest） ============ */
.point-back {
  text-align: center;
}
.point-back__panel {
  max-width: 440px;
  margin: 0 auto;
  background: rgba(167, 140, 208, 0.1);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px 26px;
}
.point-back__rate {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.3rem;
  line-height: 1.5;
}
.point-back__rate strong {
  font-family: var(--font-num);
  font-weight: 900;
  font-size: 3rem;
  color: var(--gold-light);
  display: inline-block;
  margin: 0.1em 0;
}
.point-back__time {
  display: inline-block;
  margin-top: 18px;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--pink-soft);
  border-radius: 30px;
  padding: 8px 22px;
}
.point-back__time strong {
  color: var(--gold-light);
}
.point-back__period {
  margin-top: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink-dim);
}

/* ============ 条件 ============ */
.conditions__box {
  max-width: 440px;
  margin: 0 auto;
  text-align: left;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px 24px;
}
.conditions__item {
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 18px;
  padding-left: 26px;
  position: relative;
  color: var(--ink);
}
.conditions__item:last-child {
  margin-bottom: 0;
}
.conditions__item::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 2px solid var(--gold);
}
.conditions__sub {
  display: block;
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--ink-dim);
  margin-top: 6px;
  padding-left: 2px;
  line-height: 1.7;
}
.conditions__sub--ok::before {
  content: "○ ";
  color: var(--gold);
}
.conditions__sub--ng::before {
  content: "× ";
  color: var(--get-pink);
}
.conditions__sub--note::before {
  content: "※ ";
  color: var(--washi-dim);
}

/* ============ イベント概要 ============ */
.event-overview {
  text-align: center;
}
.event-overview__lead {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  line-height: 1.7;
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
.event-overview__lead strong {
  color: var(--gold-light);
}
.event-overview__text {
  font-weight: 500;
  font-size: 0.96rem;
  color: var(--ink-dim);
  line-height: 2.05;
}
.event-overview__text strong {
  font-weight: 700;
  color: var(--ink);
}
.event-overview .medal-size img{
  width: 53%;
  margin: 0 auto;
  padding-top: 20px;
}

/* ============ 限定ギフト ============ */
.gift-lineup__count {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--gold-light);
  margin: -18px auto 26px;
  letter-spacing: 0.02em;
}
.gift-lineup__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  max-width: 440px;
  margin: 0 auto;
}
.gift-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 26px 16px 22px;
  text-align: center;
  position: relative;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease;
}
.gift-card:hover {
  transform: translateY(-3px);
  border-color: rgba(231, 196, 104, 0.5);
}
.gift-card--premium {
  border-color: rgba(231, 196, 104, 0.55);
  background: linear-gradient(
    180deg,
    rgba(231, 196, 104, 0.1),
    rgba(167, 140, 208, 0.07)
  );
}
.gift-card--premium::after {
  content: "PREMIUM";
  position: absolute;
  top: 11px;
  right: 12px;
  font-weight: 700;
  font-size: 0.56rem;
  letter-spacing: 0.16em;
  color: var(--gold-light);
}
.gift-card__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
}
.gift-card__icon svg {
  width: 26px;
  height: 26px;
}
.gift-card__icon--stardust {
  color: var(--gold-light);
}
.gift-card__icon--tanzaku {
  color: var(--pink);
}
.gift-card__icon--milkyway {
  color: var(--purple);
}
.gift-card__icon--wish {
  color: var(--gold);
}
.gift-card__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.gift-card__desc {
  font-weight: 500;
  font-size: 0.77rem;
  color: var(--ink-dim);
  line-height: 1.75;
  min-height: 3.6em;
  margin-bottom: 14px;
}
.gift-card__point {
  font-family: var(--font-num);
  font-weight: 900;
  font-size: 1.55rem;
  color: var(--gold-light);
  line-height: 1;
}
.gift-card__point span {
  font-size: 0.86rem;
  margin-left: 1px;
}
.gift-card__point em {
  font-style: normal;
  font-weight: 700;
  font-size: 0.7rem;
  color: var(--ink-dim);
}
.gift-lineup__note {
  text-align: center;
  font-weight: 500;
  font-size: 0.7rem;
  color: var(--ink-dim);
  margin-top: 24px;
  opacity: 0.75;
}
.gift-card__memo {
  font-weight: 500;
  font-size: 0.77rem;
  color: var(--ink-dim);
  line-height: 1.75;
  padding-top: 10px;
}

/* コンプリート特典 */
.secret {
  max-width: 440px;
  margin: 30px auto 0;
  align-items: center;
  gap: 16px;
  background: rgba(167, 140, 208, 0.1);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 20px 22px;
}
.secret__icon {
  text-align: center;
  width: 100%;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.secret__icon img {
  align-items: center;
}
.secret__text {

  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.94rem;
  line-height: 1.65;
  text-align: center;
}
.secret__text .hl-gold {
  font-weight: 900;
}

/* ============ ランキング & 称号 ============ */
.ranking-result {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 30px 26px 24px;
  max-width: 400px;
  margin: 0 auto;
}
.ranking-result__list {
  display: flex;
  flex-direction: column;
}
.ranking-result__item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 11px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.ranking-result__item:last-child {
  border-bottom: none;
}
.ranking-result__rank {
  flex: 0 0 auto;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.95rem;
  width: 40px;
  text-align: center;
  color: var(--ink-dim);
}
.ranking-result__item--1 .ranking-result__rank,
.ranking-result__item--2 .ranking-result__rank,
.ranking-result__item--3 .ranking-result__rank {
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  color: #1a1206;
}
.ranking-result__item--1 .ranking-result__rank {
  background: linear-gradient(135deg, #f4d678, #d2a23c);
}
.ranking-result__item--2 .ranking-result__rank {
  background: linear-gradient(135deg, #e3e3e8, #b3b3bd);
}
.ranking-result__item--3 .ranking-result__rank {
  background: linear-gradient(135deg, #e6bd92, #c08858);
}
.ranking-result__count {
  margin-left: auto;
  font-family: var(--font-num);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--gold-light);
}
.ranking-result__count em {
  font-style: normal;
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--ink-dim);
  margin-left: 3px;
}
.ranking-result__note {
  text-align: center;
  font-weight: 500;
  font-size: 0.72rem;
  color: var(--ink-dim);
  margin-top: 16px;
}

/* ランキング賞 */
.prize-tiers {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 440px;
  margin: 30px auto 0;
}
.prize-tiers__head {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 6px;
}
.prize-tier {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px 20px;
}
.prize-tier__rank {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.86rem;
  color: #1a1206;
}
.prize-tier--1 .prize-tier__rank {
  background: linear-gradient(135deg, #f4d678, #d2a23c);
}
.prize-tier--2 .prize-tier__rank {
  background: linear-gradient(135deg, #e3e3e8, #b3b3bd);
}
.prize-tier--3 .prize-tier__rank {
  background: linear-gradient(135deg, #e6bd92, #c08858);
}
.prize-tier__reward {
  flex: 1;
  text-align: left;
}
.prize-tier__reward small {
  display: block;
  font-weight: 500;
  font-size: 0.7rem;
  color: var(--ink-dim);
  letter-spacing: 0.02em;
  margin-bottom: 2px;
}
.prize-tier__reward strong {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.98rem;
  color: var(--gold-light);
  line-height: 1.4;
}

/* 称号 */
.title-award {
  text-align: center;
  margin-top: 54px;
}
.title-award__lead {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.06rem;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.title-award__name {
  display: inline-block;
  margin: 14px 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.32rem;
  color: #fff;
  letter-spacing: 0.03em;
  background: linear-gradient(135deg, #c87fa0, #8e74c0);
  padding: 9px 28px;
  border-radius: 40px;
}
.tanabata-king {
  margin: 34px auto 20px;
  width: 180px;
}
.tanabata-king__badge {
  width: 144px;
  height: 144px;
  margin: 0 auto;
  border-radius: 50%;
  background: radial-gradient(
    circle at 50% 38%,
    #f3c6d6 0%,
    #d486a8 55%,
    #b1547c 100%
  );
  box-shadow:
    0 0 0 5px rgba(246, 224, 160, 0.4),
    0 10px 26px rgba(0, 0, 0, 0.4);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.tanabata-king__badge::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px dashed rgba(246, 224, 160, 0.5);
}
.tanabata-king__year {
  font-family: var(--font-num);
  font-weight: 900;
  font-size: 2.2rem;
  color: #fff;
  line-height: 1;
}
.tanabata-king__star {
  color: var(--gold-light);
  margin-top: 4px;
}
.tanabata-king__star svg {
  width: 20px;
  height: 20px;
}
.tanabata-king__ribbon {
  display: inline-block;
  margin-top: -10px;
  position: relative;
  z-index: 2;
  background: linear-gradient(135deg, #cfa450, #a87f37);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  padding: 6px 16px;
  border-radius: 3px;
}
.title-award__flex {
  font-weight: 700;
  font-size: 0.84rem;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  margin: 8px 0 16px;
}
.title-award__text {
  font-weight: 500;
  font-size: 0.96rem;
  line-height: 1.95;
  color: var(--ink-dim);
}
.title-award__text strong {
  color: var(--pink);
  font-weight: 900;
}
.accent {
  color: var(--gold-light);
  font-weight: 900;
}

/* 達成称号 */
.milestone {
  margin-top: 50px;
  text-align: center;
}
.milestone__head {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.milestone__list {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.milestone__item {
  flex: 1;
  max-width: 160px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 14px;
}
.milestone__icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.milestone__icon svg {
  width: 22px;
  height: 22px;
}
.milestone__count {
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--ink-dim);
  line-height: 1.6;
  margin-bottom: 8px;
}
.milestone__count strong {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 900;
}
.milestone__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.98rem;
  color: var(--gold-light);
  letter-spacing: 0.02em;
}

/* ============ ギフトの贈り方 ============ */
.gift-howto {
  text-align: center;
}
.gift-howto__gift {
  position: relative;
  width: 104px;
  height: 104px;
  margin: 0 auto 8px;
  border-radius: 18px;
  background: linear-gradient(160deg, #e9b0c4, #cf7b9b);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.gift-howto__gift::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 14px;
  height: 100%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.5);
}
.gift-howto__gift::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  height: 14px;
  width: 100%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.5);
}
.gift-howto__gift svg {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  color: #fff;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}
.gift-howto__price {
  display: inline-block;
  margin: 14px auto 24px;
  font-family: var(--font-num);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--gold-light);
  background: rgba(7, 15, 36, 0.6);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 5px 24px;
}
.gift-howto__inst {
  max-width: 420px;
  margin: 0 auto 22px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 24px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.9;
}
.gift-howto__inst .mark {
  color: var(--gold-light);
}
.gift-howto__notes {
  max-width: 420px;
  margin: 0 auto;
  text-align: left;
}
.gift-howto__notes li {
  position: relative;
  padding-left: 18px;
  font-weight: 500;
  font-size: 0.81rem;
  color: var(--ink-dim);
  line-height: 1.85;
  margin-bottom: 4px;
}
.gift-howto__notes li::before {
  content: "※";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ============ キャンペーン特典（cast） ============ */
.campaign-benefit {
  text-align: center;
}
.campaign-benefit__intro {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.22rem;
  line-height: 1.7;
  margin-bottom: 26px;
}
.campaign-benefit__intro strong {
  font-family: var(--font-num);
  font-size: 1.45em;
  color: var(--gold-light);
}
.campaign-benefit__heart {
  width: 220px;
  height: 200px;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.campaign-benefit__heart::before {
  content: "";
  position: absolute;
  inset: 0;
}
.campaign-benefit__small {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 700;
  color: #fff;
  font-size: 0.98rem;
}
.campaign-benefit__big {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 900;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1.1;
}
.campaign-benefit__big em {
  font-style: normal;
  color: var(--gold-light);
}

/* ============ 注意（cast） ============ */
.caution__box {
  max-width: 440px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 26px 24px;
}
.caution__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.06rem;
  color: var(--gold-light);
  margin-bottom: 16px;
  letter-spacing: 0.04em;
}
.caution__title svg {
  width: 18px;
  height: 18px;
}
.caution__box li {
  position: relative;
  padding-left: 18px;
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--ink-dim);
  line-height: 1.9;
  margin-bottom: 8px;
}
.caution__box li:last-child {
  margin-bottom: 0;
}
.caution__box li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.8em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}
.caution__box strong {
  color: var(--ink);
  font-weight: 700;
}

/* ============ 参加方法 ============ */
.how-to-join__steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 420px;
  margin: 0 auto;
}
.join-step {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  gap: 6px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 20px 22px;
}
.join-step__num {
  grid-row: 1 / span 2;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-num);
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(231, 196, 104, 0.45);
}
.join-step__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.06rem;
  letter-spacing: 0.02em;
  align-self: end;
}
.join-step__text {
  font-weight: 500;
  font-size: 0.84rem;
  color: var(--ink-dim);
  line-height: 1.7;
  align-self: start;
}

/* ============ 注意事項 ============ */
.notes {
  background: rgba(7, 15, 36, 0.4);
}
.notes__list {
  max-width: 440px;
  margin: 0 auto;
}
.notes__list li {
  position: relative;
  padding-left: 16px;
  font-weight: 500;
  font-size: 0.82rem;
  color: var(--ink-dim);
  line-height: 1.95;
  margin-bottom: 5px;
}
.notes__list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.85em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

/* ============ 次回予告 ============ */
.next-teaser {
  padding: 64px 26px 72px;
  text-align: center;
}
.next-teaser__inner {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px 28px;
  max-width: 440px;
  margin: 0 auto;
  background: radial-gradient(
    120% 100% at 50% 0%,
    rgba(167, 140, 208, 0.14),
    transparent 72%
  );
}
.next-teaser__text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.85;
  letter-spacing: 0.02em;
}
.next-teaser__sign {
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--gold-light);
  margin-top: 18px;
}

/* ============ ページ切替 ============ */
.page-switch {
  text-align: center;
  padding: 0 26px 8px;
}
.page-switch__link {
  display: inline-block;
  font-weight: 700;
  font-size: 0.84rem;
  letter-spacing: 0.02em;
  color: var(--ink-dim);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 11px 26px;
  transition:
    border-color 0.2s,
    color 0.2s;
}
.page-switch__link:hover {
  border-color: rgba(231, 196, 104, 0.5);
  color: var(--ink);
}
.page-switch__link span {
  color: var(--gold-light);
  font-weight: 900;
}

/* ============ Footer ============ */
.lp-footer {
  text-align: center;
  padding: 26px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--ink-dim);
  font-size: 0.8rem;
  background: var(--navy-deep);
}

/* ============ 固定CTA ============ */
.cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: flex;
  justify-content: center;
  padding: 14px 16px calc(16px + env(safe-area-inset-bottom));
  background: linear-gradient(
    180deg,
    rgba(7, 15, 36, 0),
    rgba(7, 15, 36, 0.92) 48%
  );
  pointer-events: none;
}
.cta-bar__btn {
  pointer-events: auto;
  width: 100%;
  max-width: 528px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #1c2348, #0b1024);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.04rem;
  letter-spacing: 0.03em;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid rgba(231, 196, 104, 0.5);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.5);
}
.cta-bar__btn .arrow {
  color: var(--gold-light);
}

/* ============ 流れ星 ============ */
.shooters {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.lp > .shooters {
  z-index: 0;
}
.main-visual .shooters--hero {
  z-index: 1;
}
.shoot {
  position: absolute;
  width: 140px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(190, 225, 255, 0) 28%,
    rgba(255, 255, 255, 0.95) 100%
  );
  filter: drop-shadow(0 0 5px rgba(190, 225, 255, 0.85));
  opacity: 0;
  transform-origin: right center;
  will-change: transform, opacity;
}
.shoot::after {
  content: "";
  position: absolute;
  right: -2px;
  top: -2.5px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 12px 4px rgba(205, 232, 255, 0.95);
}
@keyframes meteorA {
  0% {
    opacity: 0;
    transform: rotate(34deg) translateX(-70px);
  }
  7% {
    opacity: 0.95;
  }
  55% {
    opacity: 0.95;
  }
  74%,
  100% {
    opacity: 0;
    transform: rotate(34deg) translateX(540px);
  }
}
@keyframes meteorB {
  0% {
    opacity: 0;
    transform: rotate(24deg) translateX(-70px);
  }
  7% {
    opacity: 0.95;
  }
  55% {
    opacity: 0.95;
  }
  74%,
  100% {
    opacity: 0;
    transform: rotate(24deg) translateX(560px);
  }
}
.shoot.b1 {
  top: 950px;
  left: 6%;
  animation: meteorA 8s cubic-bezier(0.45, 0.05, 0.75, 0.35) 1.5s infinite;
}
.shoot.b2 {
  top: 1850px;
  left: 58%;
  animation: meteorB 11s cubic-bezier(0.45, 0.05, 0.75, 0.35) 5s infinite;
}
.shoot.b3 {
  top: 3050px;
  left: 10%;
  animation: meteorA 9.5s cubic-bezier(0.45, 0.05, 0.75, 0.35) 8s infinite;
}
.shoot.b4 {
  top: 4300px;
  left: 54%;
  animation: meteorB 12s cubic-bezier(0.45, 0.05, 0.75, 0.35) 11s infinite;
}
.shoot.b5 {
  top: 5400px;
  left: 28%;
  animation: meteorA 10s cubic-bezier(0.45, 0.05, 0.75, 0.35) 3.5s infinite;
}
.shoot.h1 {
  top: 150px;
  left: 5%;
  animation: meteorA 7s cubic-bezier(0.45, 0.05, 0.75, 0.35) 0.8s infinite;
}
.shoot.h2 {
  top: 300px;
  left: 56%;
  animation: meteorB 9s cubic-bezier(0.45, 0.05, 0.75, 0.35) 3s infinite;
}

/* ============ またたく星屑 ============ */
.starfield {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.lp > .starfield {
  z-index: 0;
}
.main-visual .starfield {
  z-index: 1;
}
.starfield i {
  position: absolute;
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 6px 1px rgba(255, 255, 255, 0.6);
  animation: tw 3.6s ease-in-out infinite;
  will-change: opacity, transform;
}
@keyframes tw {
  0%,
  100% {
    opacity: 0.22;
    transform: scale(0.7);
  }
  50% {
    opacity: 0.95;
    transform: scale(1.1);
  }
}

/* ===== Responsive ===== */
@media (max-width: 380px) {
  .main-visual__title-main {
    font-size: 2.05rem;
  }
  .gift-lineup__list {
    gap: 11px;
  }
  .gift-card {
    padding: 22px 12px 18px;
  }
  .section-head__title {
    font-size: 1.55rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .main-visual .stars,
  .live-badge::before,
  .hero-emblem .twk,
  .hero-emblem .twk2,
  .hero-emblem .twk3 {
    animation: none;
  }
  .starfield i {
    animation: none;
    opacity: 0.7;
  }
  .shoot {
    display: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* =====================================================
   ▼ ゲストLP 確定内容 追加コンポーネント
   ===================================================== */

/* ヒーローのフック（最大50%還元） */
.hero-hook {
  display: block;
  width: fit-content;
  margin: 0 auto 14px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.12rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(231, 196, 104, 0.5);
  border-radius: 30px;
  padding: 9px 24px;
}
.hero-hook strong {
  font-family: var(--font-num);
  font-size: 1.65em;
  color: var(--gold-light);
  margin: 0 0.04em;
  vertical-align: -0.04em;
}

/* セットギフト */
.set-gift {
  max-width: 440px;
  margin: 36px auto 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px 24px;
  text-align: center;
}
.set-gift__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.08rem;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}
.set-gift__img {
  width: 96px;
  height: 96px;
  margin: 0 auto 22px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px dashed var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
}
.set-gift__img svg {
  width: 40px;
  height: 40px;
}
.set-gift__rows {
  display: flex;
  flex-direction: column;
}
.set-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 12px 2px;
}
.set-row:last-child {
  border-bottom: none;
}
.set-row__name {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--ink);
}
.set-row__price {
  font-family: var(--font-num);
  font-weight: 900;
  font-size: 1.22rem;
  color: var(--gold-light);
}
.set-gift__note {
  margin-top: 18px;
  font-weight: 500;
  font-size: 0.82rem;
  color: var(--ink-dim);
}

/* 情報カード（ポイント還元について） */
.info-lead {
  max-width: 440px;
  margin: 0 auto 20px;
  text-align: center;
  font-weight: 700;
  font-size: 0.98rem;
  line-height: 1.9;
  color: var(--ink);
}
.info-box {
  max-width: 440px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 26px 24px;
}
.info-list li {
  position: relative;
  padding-left: 22px;
  font-weight: 700;
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 14px;
  color: var(--ink);
}
.info-list li:last-child {
  margin-bottom: 0;
}
.info-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 0.62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 2px solid var(--gold);
}
.info-list li strong {
  color: var(--gold-light);
  font-weight: 900;
}
.info-note {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.info-note p {
  position: relative;
  padding-left: 18px;
  font-weight: 500;
  font-size: 0.82rem;
  color: var(--ink-dim);
  line-height: 1.85;
  margin-bottom: 8px;
}
.info-note p:last-child {
  margin-bottom: 0;
}
.info-note p::before {
  content: "※";
  position: absolute;
  left: 0;
  color: var(--washi-dim);
}
.info-extra {
  max-width: 440px;
  margin: 18px auto 0;
  text-align: center;
  font-weight: 500;
  font-size: 0.84rem;
  color: var(--ink-dim);
  line-height: 1.85;
}

/* コンプリート特典 */
.complete {
  text-align: center;
}
.complete__lead {
  max-width: 440px;
  margin: 0 auto 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.04rem;
  line-height: 1.85;
}
.complete__lead .hl-gold {
  font-weight: 900;
}
.complete__flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 30px;
}
.complete__icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.complete__icons span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
}
.complete__icons span svg {
  width: 20px;
  height: 20px;
}
.complete__arrow {
  color: var(--gold);
  font-size: 1.6rem;
  font-weight: 900;
}
.complete__price {
  display: inline-block;
  margin-bottom: 6px;
  font-family: var(--font-num);
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--gold-light);
  background: rgba(7, 15, 36, 0.6);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 7px 26px;
}
.complete__price small {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.58em;
  color: var(--ink-dim);
  margin-right: 8px;
  letter-spacing: 0.02em;
}
.complete__memo {
  font-weight: 500;
  font-size: 0.77rem;
  color: var(--ink-dim);
  line-height: 1.75;
  padding-top: 10px;
}
.complete__note {
  max-width: 440px;
  margin: 24px auto 0;
  text-align: left;
}
.complete__note p {
  position: relative;
  padding-left: 18px;
  font-weight: 500;
  font-size: 0.82rem;
  color: var(--ink-dim);
  line-height: 1.85;
  margin-bottom: 6px;
}
.complete__note p::before {
  content: "※";
  position: absolute;
  left: 0;
  color: var(--washi-dim);
}
.complete .medal-size img{
  width: 53%;
  margin: 0 auto;
  padding-top: 20px;
}

/* 推しキャストを応援しよう */
.support__card {
  max-width: 440px;
  margin: 0 auto;
  background: linear-gradient(
    180deg,
    rgba(167, 140, 208, 0.16),
    rgba(255, 255, 255, 0.03)
  );
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 32px 26px;
  text-align: center;
}
.support__text {
  font-weight: 500;
  font-size: 0.94rem;
  line-height: 1.95;
  color: var(--ink-dim);
}
.support__text strong {
  color: var(--ink);
  font-weight: 700;
}
.support__rewards {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 22px 0;
}
.support__reward {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.02rem;
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
}
.support__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.96rem;
  color: #fff;
  background: linear-gradient(135deg, #c87fa0, #8e74c0);
  border-radius: 30px;
  padding: 13px 30px;
}
.support__link span {
  color: var(--gold-light);
}

/* =====================================================
   ▼ ヒーロー強化 / キャラクター枠 / 区切り（単調さ解消）
   ===================================================== */

/* ヒーロー上部の余白（吊り短冊ぶん） */
.main-visual {
  padding-top: 36px;
}

/* 月 */
.moon {
  position: absolute;
  top: 42px;
  right: 30px;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 34%, #fff7e6, #f4dda0 58%, #e6c879);
  box-shadow: 0 0 36px 10px rgba(246, 224, 160, 0.32);
  z-index: 1;
}

/* 天の川を強調 */
.main-visual .milky-way {
  inset: -22% -42%;
  background: linear-gradient(
    112deg,
    transparent 36%,
    rgba(246, 224, 160, 0.16) 46%,
    rgba(255, 255, 255, 0.34) 50%,
    rgba(167, 140, 208, 0.2) 54%,
    transparent 64%
  );
  filter: blur(6px);
}

/* 吊り下げ短冊（上部フレーム） */
.hanging {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  z-index: 2;
  pointer-events: none;
}
.hanging .tz {
  position: absolute;
  top: 0;
  width: 24px;
  height: 50px;
  border-radius: 0 0 4px 4px;
  transform-origin: top center;
  animation: sway2 6s ease-in-out infinite;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}
.hanging .tz::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 50%;
  width: 1px;
  height: 16px;
  background: rgba(246, 224, 160, 0.55);
}
@keyframes sway2 {
  0%,
  100% {
    transform: rotate(-4.5deg);
  }
  50% {
    transform: rotate(4.5deg);
  }
}
.tz--a {
  left: 9%;
  background: linear-gradient(180deg, #f0a8bf, #d97fa0);
}
.tz--b {
  left: 25%;
  height: 42px;
  background: linear-gradient(180deg, #b89ad9, #9170c2);
  animation-delay: 0.7s;
}
.tz--c {
  left: 49%;
  background: linear-gradient(180deg, #f3d68a, #dcae4f);
  animation-delay: 1.4s;
}
.tz--d {
  left: 71%;
  height: 46px;
  background: linear-gradient(180deg, #8fb3e0, #6e8fd0);
  animation-delay: 0.4s;
}
.tz--e {
  left: 87%;
  height: 40px;
  background: linear-gradient(180deg, #f0a8bf, #d97fa0);
  animation-delay: 1.1s;
}

/* キャラクター枠（織姫×彦星 / GPTのキャラ画像差し込み口） */
.hero-pair {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 26px auto 28px;
  max-width: 330px;
}
.hero-pair__fig {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}
.hero-pair__portrait {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(246, 224, 160, 0.55);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: var(--gold-light);
  box-shadow: 0 0 24px var(--gold-glow);
  overflow: hidden;
}
.hero-pair__portrait svg {
  width: 54px;
  height: 54px;
}
.hero-pair__label {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.82rem;
  color: var(--ink);
  letter-spacing: 0.08em;
}
.hero-pair__bridge {
  flex: 1;
  height: 86px;
  position: relative;
}
.hero-pair__bridge::before {
  content: "";
  position: absolute;
  top: 43px;
  left: 4px;
  right: 4px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(246, 224, 160, 0.7),
    transparent
  );
}
.hero-pair__bridge::after {
  content: "";
  position: absolute;
  top: 39px;
  left: 50%;
  transform: translateX(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 10px 2px rgba(246, 224, 160, 0.95);
}

/* 区切り装飾（夜空の星ライン） */
.divider {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.divider svg {
  width: 220px;
  height: 22px;
  color: var(--gold);
  opacity: 0.55;
}

/* セクションの色変化（単調さ解消） */
.gift-lineup {
  background: rgba(167, 140, 208, 0.06);
}
.redemption {
  background: rgba(7, 15, 36, 0.4);
}
.complete {
  background: rgba(167, 140, 208, 0.06);
}

/* ヒーロー読み込みアニメーション */
.main-visual__inner > * {
  opacity: 0;
  animation: riseIn 0.7s ease forwards;
}
.main-visual__inner > *:nth-child(1) {
  animation-delay: 0.05s;
}
.main-visual__inner > *:nth-child(2) {
  animation-delay: 0.18s;
}
.main-visual__inner > *:nth-child(3) {
  animation-delay: 0.31s;
}
.main-visual__inner > *:nth-child(4) {
  animation-delay: 0.44s;
}
.main-visual__inner > *:nth-child(5) {
  animation-delay: 0.57s;
}
@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hanging .tz {
    animation: none;
  }
  .main-visual__inner > * {
    opacity: 1;
    animation: none;
  }
}

/* ============ ライブランキング（スプレッドシート連携） ============ */
.live-rank {
  max-width: 440px;
  margin: 34px auto 0;
}
.live-rank__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 14px;
}
.live-rank__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.12rem;
  color: #fff;
}
.live-rank__live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.64rem;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 4px 11px;
}
.live-rank__live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--get-pink);
  box-shadow: 0 0 7px var(--get-pink);
  animation: blink 1.4s infinite;
}
.live-rank__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 8px 18px;
}
.live-rank__row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.live-rank__row:last-child {
  border-bottom: none;
}
.live-rank__rank {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.82rem;
  color: var(--ink-dim);
  background: rgba(255, 255, 255, 0.05);
}
.live-rank__row--1 .live-rank__rank {
  background: linear-gradient(135deg, #f4d678, #d2a23c);
  color: #1a1206;
}
.live-rank__row--2 .live-rank__rank {
  background: linear-gradient(135deg, #e3e3e8, #b3b3bd);
  color: #1a1206;
}
.live-rank__row--3 .live-rank__rank {
  background: linear-gradient(135deg, #e6bd92, #c08858);
  color: #1a1206;
}
.live-rank__name {
  flex: 1;
  font-weight: 700;
  font-size: 0.94rem;
  color: var(--ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.live-rank__count {
  flex: 0 0 auto;
  font-family: var(--font-num);
  font-weight: 900;
  font-size: 1.12rem;
  color: var(--gold-light);
}
.live-rank__count span {
  font-size: 0.64em;
  font-weight: 500;
  color: var(--ink-dim);
  margin-left: 2px;
}
.live-rank__note {
  text-align: center;
  font-weight: 500;
  font-size: 0.72rem;
  color: var(--ink-dim);
  margin-top: 12px;
}
.live-rank__state {
  text-align: center;
  padding: 26px 10px;
  color: var(--ink-dim);
  font-size: 0.88rem;
}

/* ============ 枠デザイン：案B 角飾り ＋ 案E グラデ＋グロー ============ */
/* 案B 角飾りフレーム（和の額装）— 特典・称号系に使用 */
.fr-ornament {
  position: relative;
  border: 1px solid rgba(231, 196, 104, 0.12) !important;
  border-radius: 12px;
}
.fr-ornament::before,
.fr-ornament::after,
.fr-ornament > .corner::before,
.fr-ornament > .corner::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--gold);
  pointer-events: none;
}
.fr-ornament::before {
  top: 8px;
  left: 8px;
  border-right: 0;
  border-bottom: 0;
}
.fr-ornament::after {
  bottom: 8px;
  right: 8px;
  border-left: 0;
  border-top: 0;
}
.fr-ornament > .corner::before {
  top: 8px;
  right: 8px;
  border-left: 0;
  border-bottom: 0;
}
.fr-ornament > .corner::after {
  bottom: 8px;
  left: 8px;
  border-right: 0;
  border-top: 0;
}

/* 案E グラデ枠＋グロー（プレミアム）— 上位ギフト・目玉特典に使用 */
.fr-premium {
  border: 1.6px solid transparent !important;
  border-radius: 16px;
  background:
    linear-gradient(rgba(11, 24, 58, 0.72), rgba(11, 24, 58, 0.72)) padding-box,
    linear-gradient(135deg, var(--gold-light), var(--purple)) border-box !important;
  box-shadow: 0 0 26px rgba(246, 224, 160, 0.2);
}

/* 適用先の調整 */
.prize-frame {
  padding: 24px 18px 22px;
  margin: 30px auto 0;
  max-width: 440px;
}
.prize-frame .prize-tiers {
  margin-top: 0;
}
.complete__panel {
  max-width: 440px;
  margin: 0 auto 8px;
  padding: 30px 24px 26px;
}
.complete__panel .complete__flow {
  margin-bottom: 24px;
}
.complete__panel .complete__price {
  margin-bottom: 0;
}

/* ============ さらに単調さを崩す：横スクロール/和紙/非対称/区切り種類/E追加 ============ */

/* ギフト一覧：横スクロール */
.gift-lineup__list {
  display: flex;
  grid-template-columns: none;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 4px 2px 14px;
  scrollbar-width: none;
}
.gift-lineup__list::-webkit-scrollbar {
  display: none;
}
.gift-lineup__list .gift-card {
  flex: 0 0 62%;
  max-width: 210px;
  scroll-snap-align: center;
}
.gift-lineup__hint {
  text-align: center;
  font-size: 0.72rem;
  color: var(--ink-dim);
  margin-top: 4px;
  letter-spacing: 0.14em;
}

/* 案D 和紙パネル（明）— 還元ボックスに適用して明暗のリズム */
.fr-washi {
  background: linear-gradient(180deg, #f5efe3, #e7dcc6) !important;
  border: 1px solid #cdb480 !important;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.3);
}
.fr-washi .info-list li {
  color: var(--washi-ink);
}
.fr-washi .info-list li::before {
  border-color: #c08a2e;
}
.fr-washi .info-list li strong {
  color: #a9772f;
}
.fr-washi .info-note {
  border-top-color: rgba(0, 0, 0, 0.12);
}
.fr-washi .info-note p {
  color: #6f6680;
}
.fr-washi .info-note p::before {
  color: #b0a48f;
}

/* 案E をライブランキングへ＋1位を強調 */
.live-rank__row--1 {
  background: linear-gradient(90deg, rgba(246, 224, 160, 0.14), transparent);
  border-radius: 10px;
}

/* 左寄せ見出し（非対称リズム） */
.section-head--left {
  text-align: left;
  padding-left: 2px;
}
.section-head--left .section-head__eyebrow {
  position: relative;
  padding-left: 14px;
  text-indent: 0;
  margin-bottom: 12px;
}
.section-head--left .section-head__eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 15px;
  border-radius: 2px;
  background: linear-gradient(var(--gold-light), var(--purple));
}

/* 区切りの種類（流れ星／天の川） */
.divider--meteor svg,
.divider--wave svg {
  width: 230px;
}

/* ============ ギフト画像（イラスト素材を主役に） ============ */
.gift-card__media {
  height: 116px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.gift-card__media img {
  max-height: 116px;
  max-width: 94%;
  object-fit: contain;
  filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.45));
}
.gift-card__ph {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gift-card__ph svg {
  width: 28px;
  height: 28px;
}
.gift-card__ph--stardust {
  color: var(--gold-light);
}
.gift-card__ph--tanzaku {
  color: var(--pink);
}
.gift-card__ph--wish {
  color: var(--gold);
}
.gift-card__ph--milkyway {
  color: var(--purple);
}
/* セットギフト画像 */
.set-gift__img {
  width: auto !important;
  height: 164px !important;
  background: none !important;
  border: none !important;
  margin: 0 auto 20px;
}
.set-gift__img img {
  max-height: 164px;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45));
}

/* ============ ハイブリッドヘッダー：大々的タイトル(CSS文字)＋アート差し込み口 ============ */
/* GPTの文字なしアートを敷くレイヤー（届いたら有効化） */
.main-visual__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}
.main-visual__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(7, 15, 36, 0.4),
    rgba(7, 15, 36, 0) 38%,
    rgba(7, 15, 36, 0.25)
  );
}
.main-visual__inner {
  position: relative;
  z-index: 3;
}

/* 大々的タイトル（本文と別フォント＝Dela Gothic One ＋ 金グラデ風・縁取り・影・グロー） */
.main-visual__title-sub {
  font-size: 1.06rem !important;
  color: var(--gold-light) !important;
  letter-spacing: 0.12em !important;
}
.main-visual__title-main {
  font-family: "Dela Gothic One", "Zen Kaku Gothic New", sans-serif !important;
  font-weight: 400 !important;
  font-size: 2.9rem !important;
  line-height: 1.12 !important;
  color: #f7e3a4 !important;
  -webkit-text-stroke: 2.5px #2a2056;
  paint-order: stroke fill;
  text-shadow:
    0 5px 0 rgba(0, 0, 0, 0.32),
    0 0 24px rgba(246, 224, 160, 0.5);
  letter-spacing: 0.01em;
}
.live-badge {
  font-size: 0.82rem !important;
  padding: 8px 20px !important;
}
.hero-hook {
  font-size: 1.22rem !important;
  padding: 11px 26px !important;
}
.hero-hook strong {
  font-size: 1.8em !important;
}
/* タイトル周りのキラキラ */
.hero-spk {
  position: absolute;
  color: var(--gold-light);
  filter: drop-shadow(0 0 6px rgba(246, 224, 160, 0.85));
  pointer-events: none;
  z-index: 4;
}

/* ============ ヘッダーアート適用（ハイブリッド本番） ============ */
.main-visual--art {
  aspect-ratio: 1.3;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
}
.main-visual--art .main-visual__bg {
  object-position: center 66%;
}
/* アートに含まれる装飾はCSS側を非表示（重複回避） */
.main-visual--art .moon,
.main-visual--art .hanging,
.main-visual--art .hero-pair,
.main-visual--art .milky-way,
.main-visual--art .stars {
  display: none !important;
}
/* 残す動き：流れ星・またたき・キラキラ／文字は上に */
.main-visual--art .main-visual__inner {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 5% 26px 0;
}
/* フック＋期間はヘッダー直下の帯へ */
.hero-belt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px 26px 4px;
}
.main-visual--art .main-visual__title-main {
  text-shadow:
    0 5px 0 rgba(0, 0, 0, 0.4),
    0 0 26px rgba(7, 15, 36, 0.9),
    0 0 30px rgba(246, 224, 160, 0.4);
}

/* ===== ヘッダー：見出しにフック・期間を内包＋「推しに願いを」強調＋高さ微調整 ===== */
.main-visual--art {
  aspect-ratio: 0.95;
}
.main-visual--art .main-visual__bg {
  object-position: center 56%;
}
.main-visual--art .main-visual__inner {
  padding: 5% 26px 0;
}
.main-visual--art .main-visual__title-main {
  font-size: 2.7rem !important;
}
.main-visual--art .hero-hook {
  margin-top: 12px;
}
.main-visual--art .period-banner {
  margin-top: 12px;
}
/* 「推しに願いを」を強調 */
.main-visual--art .main-visual__title-sub {
  font-size: 1.34rem !important;
  font-weight: 900 !important;
  color: #fbe7b0 !important;
  letter-spacing: 0.16em !important;
  margin-bottom: 10px !important;
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 0.55),
    0 0 16px rgba(246, 224, 160, 0.5);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.main-visual--art .main-visual__title-sub::before,
.main-visual--art .main-visual__title-sub::after {
  content: "";
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-light));
}
.main-visual--art .main-visual__title-sub::after {
  background: linear-gradient(90deg, var(--gold-light), transparent);
}

/* ===== ヘッダー3要素すべて Dela Gothic One（極太）で統一 ===== */
.main-visual--art .main-visual__title-sub {
  font-family: "Dela Gothic One", "Zen Kaku Gothic New", sans-serif !important;
  font-weight: 400 !important;
  font-size: 1.18rem !important;
  letter-spacing: 0.1em !important;
}
.main-visual--art .hero-hook {
  font-family: "Dela Gothic One", "Zen Kaku Gothic New", sans-serif !important;
  font-weight: 400 !important;
  font-size: 1.12rem !important;
  letter-spacing: 0.02em;
}
.main-visual--art .hero-hook strong {
  font-size: 1.65em !important;
}

/* ===== 「最大50%還元！」バッジを一新（背景に埋もれない高コントラスト） ===== */
.main-visual--art .hero-hook {
  display: inline-flex !important;
  align-items: baseline;
  gap: 1px;
  font-family: "Dela Gothic One", "Zen Kaku Gothic New", sans-serif !important;
  font-weight: 400 !important;
  font-size: 1.18rem !important;
  color: #2a1d52 !important;
  letter-spacing: 0.005em;
  background: linear-gradient(180deg, #fff4d2, #f4d074 52%, #e3ad44) !important;
  border: 2px solid #fff3c8 !important;
  border-radius: 16px !important;
  padding: 13px 30px !important;
  margin-top: 14px !important;
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.5),
    0 0 0 3px rgba(120, 80, 20, 0.3),
    inset 0 2px 0 rgba(255, 255, 255, 0.65),
    inset 0 -3px 0 rgba(150, 100, 30, 0.28);
  text-shadow: none !important;
  -webkit-text-stroke: 0 !important;
}
.main-visual--art .hero-hook strong {
  color: #c81e63 !important;
  font-size: 1.9em !important;
  margin: 0 0.03em;
  line-height: 1;
}

/* ============ ランキングを強調パネル化＋ゲスト/キャストのタブ ============ */
.live-rank {
  max-width: 466px;
  margin: 4px auto 0;
  padding: 18px 16px 14px;
  background: linear-gradient(
    180deg,
    rgba(34, 54, 118, 0.95),
    rgba(12, 24, 58, 0.95)
  );
  border: 1.5px solid rgba(246, 224, 160, 0.5);
  border-radius: 20px;
  box-shadow:
    0 0 30px rgba(246, 224, 160, 0.2),
    0 16px 34px rgba(0, 0, 0, 0.5);
}
.live-rank__head {
  margin-bottom: 14px;
}
.live-rank__title {
  font-size: 1.2rem;
}
/* タブ（セグメント） */
.live-rank__tabs {
  display: flex;
  gap: 6px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 13px;
  padding: 5px;
  margin-bottom: 14px;
}
.live-rank__tab {
  flex: 1;
  border: none;
  background: none;
  color: var(--ink-dim);
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.96rem;
  letter-spacing: 0.06em;
  padding: 10px 0;
  border-radius: 9px;
  transition:
    background 0.2s,
    color 0.2s,
    box-shadow 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.live-rank__tab.is-active {
  background: linear-gradient(135deg, #f4d074, #e3ad44);
  color: #241a4d;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
}
/* パネル内のリストはフレーム無し（外側パネルが枠） */
.live-rank__card {
  background: none !important;
  border: none !important;
  padding: 0 !important;
  box-shadow: none !important;
}
.live-rank__card[hidden] {
  display: none;
}
.live-rank__row {
  padding: 13px 6px;
}
.live-rank__row--1 {
  background: linear-gradient(90deg, rgba(246, 224, 160, 0.16), transparent);
  border-radius: 10px;
}
.live-rank__state {
  padding: 26px 8px;
  text-align: center;
  color: var(--ink-dim);
  font-size: 0.9rem;
}

/* ============ 追加調整：一行表示／コンプ画像／ヘッダー拡大／応援=キャスト薄ピンク ============ */
/* 「複数キャストへの送付数…」を一行表示に */
.info-extra {
  white-space: nowrap;
  font-size: clamp(0.52rem, 2.5vw, 0.76rem);
}

/* コンプリートギフト画像（1枚） */
.complete__giftimg {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
  margin: 0 auto 8px;
}
.complete__giftimg img {
  max-height: 150px;
  max-width: 78%;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45));
}
.complete__giftph {
  width: 104px;
  height: 104px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px dashed rgba(246, 224, 160, 0.5);
  color: var(--gold-light);
}
.complete__giftph svg {
  width: 46px;
  height: 46px;
}

/* ヘッダータイトルを大きく */
.main-visual--art .main-visual__title-main {
  font-size: 3.15rem !important;
  line-height: 1.1 !important;
}

/* 応援セクション＝キャスト向け（薄ピンク背景で区別） */
.support {
  background: linear-gradient(180deg, #fdeaf1, #fbdbe6);
}
.support .section-head__eyebrow {
  color: #c2185b;
}
.support .section-head__title {
  color: #3a2233;
}
.support__card {
  background: #fff7fa !important;
  border: 1px solid #f2c8d6 !important;
  box-shadow: 0 12px 28px rgba(150, 50, 90, 0.13);
}
.support .fr-ornament::before,
.support .fr-ornament::after,
.support .fr-ornament > .corner::before,
.support .fr-ornament > .corner::after {
  border-color: #dd8fab;
}
.support__text {
  color: #6a4a57;
}
.support__text strong {
  color: #c2185b;
  font-weight: 900;
}
.support__reward {
  color: #a23b63 !important;
  background: #fdeef3 !important;
  border: 1px solid #f2c0d2 !important;
}

/* ===== ヘッダー文字を縦中心寄りに（バランス調整） ===== */
.main-visual--art .main-visual__inner {
  flex: 1 !important;
  justify-content: center !important;
  padding: 2% 26px 34% !important;
}

/* 七夕クッキーギフト を「4種類すべて」と同じゴールド＋太さに */
.cookie-ranking .event-overview__text .hl-gold {
  font-weight: 900;
}

/* ===== ギフト一覧：横スクロール廃止→4種すべて見える2×2グリッド ===== */
.gift-lineup__list {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 14px !important;
  overflow: visible !important;
  padding: 4px 0 2px !important;
  scroll-snap-type: none !important;
}
.gift-lineup__list .gift-card {
  flex: none !important;
  width: auto !important;
  max-width: none !important;
}
