* {
  box-sizing: border-box;
}

:root {
  --black: #08080a;
  --charcoal: #121014;
  --panel: #1a1215;
  --panel-2: #241416;
  --red: #e50914;
  --red-dark: #8e0610;
  --yellow: #ffd23f;
  --yellow-2: #f3a51b;
  --white: #fff8ea;
  --muted: #c9bfb4;
  --line: rgba(255, 210, 63, 0.28);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  --radius: 22px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(229, 9, 20, 0.20), transparent 32rem),
    radial-gradient(circle at 80% 8%, rgba(255, 210, 63, 0.12), transparent 28rem),
    linear-gradient(180deg, #050506 0%, #12090b 45%, #050506 100%);
  color: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  line-height: 1.75;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.25;
  background-image:
    linear-gradient(120deg, transparent 0 45%, rgba(255,255,255,0.04) 46%, transparent 47% 100%),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 4px);
  mix-blend-mode: screen;
  z-index: 0;
}

a {
  color: inherit;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--yellow);
  color: #111;
  padding: 10px 14px;
  z-index: 100;
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 210, 63, 0.18);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    linear-gradient(110deg, transparent 0 35%, rgba(229, 9, 20, 0.30) 36%, transparent 50%),
    linear-gradient(70deg, transparent 0 55%, rgba(255, 210, 63, 0.18) 56%, transparent 62%),
    radial-gradient(circle at 54% 0%, rgba(255, 210, 63, 0.22), transparent 25rem);
  transform: rotate(-2deg);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 170px;
  background:
    radial-gradient(circle at 8% 100%, rgba(229, 9, 20, 0.36), transparent 12rem),
    linear-gradient(0deg, #050506 0%, transparent 100%);
}

.noise {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,.08) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 60%, rgba(255,255,255,.05) 0 1px, transparent 1px);
  background-size: 19px 23px, 31px 37px;
}

.nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 20;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background: var(--yellow);
  color: #111;
  clip-path: polygon(35% 0, 100% 0, 67% 43%, 100% 43%, 24% 100%, 42% 54%, 0 54%);
}

.brand-text {
  font-size: 14px;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.35);
  color: var(--white);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 800;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  color: #fff !important;
  background: var(--red);
  padding: 10px 15px;
  border-radius: 999px;
  box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.18);
}

.hero {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(28px, 5vw, 72px) 0 80px;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.72fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.kicker,
.eyebrow {
  margin: 0 0 10px;
  color: var(--yellow);
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  line-height: 0.93;
  letter-spacing: -0.075em;
  text-transform: uppercase;
  transform: skew(-4deg);
  text-shadow: 0 8px 0 rgba(0,0,0,.40), 0 0 34px rgba(229, 9, 20, .22);
}

.hero h1 span {
  display: block;
  font-size: clamp(54px, 9vw, 118px);
  color: var(--white);
}

.hero h1 strong {
  display: block;
  color: var(--red);
  font-size: clamp(70px, 13vw, 170px);
  font-weight: 1000;
  letter-spacing: -0.09em;
}

.hero-lead {
  margin: 26px 0 10px;
  font-size: clamp(28px, 5vw, 58px);
  font-weight: 1000;
  line-height: 1.08;
  color: var(--yellow);
  letter-spacing: -0.06em;
}

.hero-text {
  max-width: 700px;
  margin: 0 0 26px;
  color: var(--white);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 950;
  letter-spacing: 0.02em;
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red) 0%, #ff2631 100%);
  box-shadow: 0 16px 40px rgba(229, 9, 20, 0.32);
}

.btn-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255,255,255,.20);
}

.btn.big {
  min-height: 62px;
  padding: 16px 26px;
  font-size: 18px;
}

.event-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.46);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.event-strip div {
  padding: 18px;
  border-right: 1px solid rgba(255, 210, 63, 0.16);
}

.event-strip div:last-child {
  border-right: none;
}

.event-strip span {
  display: block;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
}

.event-strip b {
  display: block;
  font-size: 16px;
  line-height: 1.45;
}

.poster-card {
  position: relative;
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(229,9,20,.85), rgba(255,210,63,.65));
  border-radius: 24px;
  box-shadow: var(--shadow), 0 0 70px rgba(229, 9, 20, 0.25);
  transform: rotate(1.2deg);
}

.poster-card::before {
  content: none;
  position: absolute;
  left: 18px;
  right: auto;
  top: auto;
  bottom: 96px;
  background: var(--yellow);
  color: #15110b;
  font-weight: 1000;
  padding: 9px 16px;
  border-radius: 6px;
  transform: rotate(-6deg);
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
  z-index: 2;
}

.poster-card img {
  display: block;
  border-radius: 16px;
  background: #000;
}

.section {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(52px, 8vw, 96px) 0;
}

.section-head {
  margin-bottom: 26px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.06em;
}

.section-head p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-weight: 700;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .58fr);
  gap: 22px;
}

.copy-block,
.highlight-box,
.detail-card,
.rule-card,
.access-note,
.faq-list details {
  background: linear-gradient(180deg, rgba(35, 19, 23, .92), rgba(15, 12, 14, .92));
  border: 1px solid rgba(255, 210, 63, 0.16);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 34px);
  box-shadow: 0 20px 70px rgba(0,0,0,.30);
}

.copy-block p {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 700;
}

.copy-block p:last-child {
  margin-bottom: 0;
}

.highlight-box {
  border-color: rgba(229, 9, 20, 0.55);
  background:
    linear-gradient(135deg, rgba(229,9,20,.28), rgba(255,210,63,.12)),
    rgba(10,10,12,.9);
}

.highlight-box .label {
  display: inline-block;
  background: var(--red);
  color: #fff;
  border-radius: 999px;
  padding: 5px 10px;
  font-weight: 900;
  font-size: 13px;
}

.highlight-box strong {
  display: block;
  color: var(--yellow);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.1;
  margin: 15px 0 10px;
  letter-spacing: -0.05em;
}

.detail-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.detail-card {
  position: relative;
  overflow: hidden;
}

.detail-card::after {
  content: "";
  position: absolute;
  right: -24px;
  top: -24px;
  width: 120px;
  height: 120px;
  background: rgba(229,9,20,.18);
  border-radius: 50%;
}

.detail-card span {
  color: var(--yellow);
  font-weight: 950;
}

.detail-card strong {
  display: block;
  margin: 8px 0;
  font-size: 24px;
  line-height: 1.35;
}

.detail-card p {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

.part-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.part-card {
  min-height: 190px;
  padding: 22px 16px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 70% 12%, rgba(255, 210, 63, 0.16), transparent 5rem),
    linear-gradient(180deg, rgba(33, 19, 23, .95), rgba(9, 9, 11, .95));
  border: 1px solid rgba(229, 9, 20, 0.42);
  text-align: center;
  box-shadow: 0 22px 70px rgba(0,0,0,.28);
  position: relative;
  overflow: hidden;
}

.part-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 6px;
  background: var(--red);
}

.part-card.hot::before {
  background: var(--yellow);
}

.part-card .icon {
  display: block;
  font-size: 34px;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,.45));
}

.part-card h3 {
  margin: 10px 0 0;
  font-size: 22px;
}

.part-card strong {
  display: block;
  color: var(--yellow);
  font-size: clamp(42px, 6vw, 62px);
  line-height: 1;
  margin-top: 12px;
  letter-spacing: -0.06em;
}

.rule-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.rule-card {
  padding: 26px;
}

.rule-card.important {
  grid-column: 1 / -1;
  border-color: rgba(229, 9, 20, 0.70);
  background:
    linear-gradient(135deg, rgba(229,9,20,.20), rgba(255,210,63,.08)),
    rgba(17, 13, 15, .94);
}

.rule-card h3 {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 26px;
}

.rule-card ul {
  margin: 0;
  padding-left: 1.1em;
}

.rule-card li {
  margin: 8px 0;
  color: var(--muted);
  font-weight: 700;
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 4px solid var(--red);
}

.timeline li {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 0 0 28px 24px;
  position: relative;
}

.timeline li::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 5px;
  width: 20px;
  height: 20px;
  background: var(--yellow);
  border: 4px solid var(--red);
  border-radius: 50%;
}

.timeline time {
  color: var(--red);
  font-size: 28px;
  font-weight: 1000;
  line-height: 1.1;
}

.timeline strong {
  display: block;
  font-size: 24px;
}

.timeline p {
  margin: 4px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.access-note {
  margin-top: 26px;
}

.access-note h3 {
  margin-top: 0;
  color: var(--yellow);
}

.access-note p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 700;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 0;
  overflow: hidden;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 24px;
  font-weight: 950;
  font-size: 18px;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--yellow);
  font-size: 26px;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
  font-weight: 700;
}

.apply-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 26px;
  align-items: center;
  padding: clamp(28px, 5vw, 48px);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(229,9,20,.95), rgba(96, 6, 10, .95)),
    #e50914;
  box-shadow: 0 30px 90px rgba(229, 9, 20, 0.24);
  position: relative;
  overflow: hidden;
}

.apply-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 48%, rgba(255,210,63,.16) 49%, transparent 55%),
    repeating-linear-gradient(-8deg, rgba(0,0,0,.08) 0 2px, transparent 2px 8px);
}

.apply-copy,
.qr-box {
  position: relative;
  z-index: 1;
}

.apply-copy h2 {
  margin: 0;
  font-size: clamp(42px, 7vw, 76px);
  letter-spacing: -0.07em;
  line-height: 1;
}

.apply-copy p {
  max-width: 700px;
  font-weight: 800;
}

.apply-copy .small {
  font-size: 14px;
  color: rgba(255,255,255,.88);
}

.qr-box {
  background: #fff;
  padding: 18px;
  border-radius: 22px;
  text-align: center;
  color: #111;
  transform: rotate(1.5deg);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
}

.qr-box img {
  display: block;
  width: 100%;
}

.qr-box span {
  display: block;
  word-break: break-all;
  font-size: 12px;
  font-weight: 900;
}

.footer {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 36px 0 100px;
  border-top: 1px solid rgba(255, 210, 63, 0.16);
  color: var(--muted);
  font-size: 14px;
}

.footer p {
  margin: 4px 0;
}

.mobile-sticky-cta {
  display: none;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .poster-card {
    max-width: 520px;
    margin: 0 auto;
  }

  .event-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-cards,
  .intro-grid,
  .rule-layout,
  .apply-panel {
    grid-template-columns: 1fr;
  }

  .part-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rule-card.important {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 74px;
  }

  .nav {
    width: min(100% - 24px, 1180px);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(12, 9, 10, .98);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 18px;
    padding: 8px;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 14px;
    border-radius: 12px;
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    width: min(100% - 24px, 1180px);
    padding-top: 20px;
  }

  .hero h1 {
    transform: skew(-2deg);
  }

  .hero h1 strong {
    letter-spacing: -0.08em;
  }

  .hero-lead {
    font-size: clamp(28px, 9vw, 46px);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .event-strip {
    grid-template-columns: 1fr;
  }

  .event-strip div {
    border-right: none;
    border-bottom: 1px solid rgba(255, 210, 63, 0.16);
  }

  .event-strip div:last-child {
    border-bottom: none;
  }

  .section {
    width: min(100% - 24px, 1120px);
    padding: 52px 0;
  }

  .section-head h2 {
    font-size: clamp(32px, 10vw, 48px);
  }

  .part-grid {
    grid-template-columns: 1fr;
  }

  .part-card {
    min-height: 150px;
  }

  .timeline {
    border-left-width: 3px;
  }

  .timeline li {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-left: 20px;
  }

  .timeline time {
    font-size: 24px;
  }

  .apply-panel {
    padding: 26px 18px;
  }

  .qr-box {
    max-width: 260px;
    margin: 0 auto;
  }

  .mobile-sticky-cta {
    display: block;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 50;
  }

  .mobile-sticky-cta a {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 54px;
    background: linear-gradient(135deg, var(--red), #ff2934);
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 950;
    box-shadow: 0 16px 40px rgba(0,0,0,.42);
  }

  .footer {
    padding-bottom: 110px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn {
    transition: none;
  }
}


.shooting-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 22px;
  align-items: stretch;
  margin-bottom: 18px;
}

.shooting-main,
.shooting-side,
.crew-card,
.crew-note {
  background:
    linear-gradient(180deg, rgba(35, 19, 23, .92), rgba(15, 12, 14, .92));
  border: 1px solid rgba(255, 210, 63, 0.16);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 34px);
  box-shadow: 0 20px 70px rgba(0,0,0,.30);
}

.shooting-main {
  border-color: rgba(229, 9, 20, 0.58);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 210, 63, 0.12), transparent 14rem),
    linear-gradient(135deg, rgba(229,9,20,.18), rgba(15, 12, 14, .94));
}

.crew-badge {
  display: inline-flex;
  background: var(--yellow);
  color: #15110b;
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 1000;
  margin-bottom: 14px;
}

.shooting-main h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.05em;
}

.shooting-main p,
.shooting-side p,
.crew-card p,
.crew-note li {
  color: var(--muted);
  font-weight: 700;
}

.shooting-side {
  background:
    linear-gradient(135deg, rgba(229,9,20,.92), rgba(111, 7, 13, .95));
  border-color: rgba(255, 210, 63, .32);
}

.shooting-side h3 {
  margin: 0;
  color: var(--white);
}

.shooting-side strong {
  display: block;
  color: var(--yellow);
  font-size: clamp(54px, 8vw, 82px);
  line-height: 1;
  margin: 10px 0;
  letter-spacing: -0.07em;
}

.crew-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 18px 0;
}

.crew-card {
  position: relative;
  overflow: hidden;
}

.crew-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--red), var(--yellow));
}

.crew-card h3,
.crew-note h3 {
  margin-top: 0;
  color: var(--yellow);
}

.crew-note ul {
  margin: 0;
  padding-left: 1.1em;
}

@media (max-width: 980px) {
  .shooting-panel,
  .crew-grid {
    grid-template-columns: 1fr;
  }
}


.rights-box {
  margin: 18px 0;
  padding: clamp(22px, 3vw, 34px);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 210, 63, 0.46);
  background:
    linear-gradient(135deg, rgba(255, 210, 63, 0.18), rgba(229, 9, 20, 0.13)),
    rgba(15, 12, 14, .96);
  box-shadow: 0 20px 70px rgba(0,0,0,.30);
}

.rights-box h3 {
  margin-top: 0;
  color: var(--yellow);
  font-size: clamp(24px, 3vw, 36px);
}

.rights-box p {
  color: var(--white);
  font-weight: 800;
}

.rights-box p:last-child {
  margin-bottom: 0;
  color: var(--yellow);
}


.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 210, 63, 0.30);
  background:
    linear-gradient(135deg, rgba(229,9,20,.18), rgba(255,210,63,.10)),
    rgba(18, 13, 15, .96);
  box-shadow: 0 20px 70px rgba(0,0,0,.30);
}

.contact-panel h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 60px);
  letter-spacing: -0.06em;
}

.contact-panel p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 800;
}

.mail-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--yellow);
  color: #15110b;
  text-decoration: none;
  font-weight: 1000;
  word-break: break-all;
  box-shadow: 0 16px 40px rgba(0,0,0,.25);
}

@media (max-width: 760px) {
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .mail-link {
    width: 100%;
  }
}


.songs-visual {
  margin: 0 0 22px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 210, 63, 0.24);
  box-shadow: 0 28px 90px rgba(0,0,0,.36);
  background: #08080a;
}

.songs-visual img {
  display: block;
  width: 100%;
}

.song-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.song-card,
.practice-note {
  background:
    linear-gradient(180deg, rgba(35, 19, 23, .92), rgba(15, 12, 14, .92));
  border: 1px solid rgba(255, 210, 63, 0.16);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 34px);
  box-shadow: 0 20px 70px rgba(0,0,0,.30);
}

.song-card {
  position: relative;
  overflow: hidden;
}

.song-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 7px;
  background: linear-gradient(90deg, var(--red), var(--yellow));
}

.main-song {
  border-color: rgba(229, 9, 20, 0.54);
}

.chant-song {
  border-color: rgba(255, 210, 63, 0.38);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 210, 63, 0.15), transparent 14rem),
    linear-gradient(180deg, rgba(35, 19, 23, .92), rgba(15, 12, 14, .92));
}

.song-label {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-weight: 1000;
  font-size: 13px;
}

.chant-song .song-label {
  background: var(--yellow);
  color: #15110b;
}

.song-card h3 {
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.16;
  letter-spacing: -0.05em;
}

.song-card p,
.practice-note li {
  color: var(--muted);
  font-weight: 750;
}

.song-list {
  list-style: none;
  margin: 18px 0;
  padding: 0;
}

.song-list li {
  margin: 10px 0;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(229, 9, 20, 0.16);
  color: var(--white);
  font-size: clamp(30px, 5vw, 54px);
  font-weight: 1000;
  letter-spacing: -0.06em;
  line-height: 1.1;
}

.chant-song strong {
  color: var(--yellow);
  font-size: 1.15em;
}

.song-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.mini-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255,255,255,.18);
  color: var(--white);
  text-decoration: none;
  font-weight: 900;
}

.mini-btn:hover {
  background: var(--red);
}

.practice-note {
  margin-top: 18px;
}

.practice-note h3 {
  margin-top: 0;
  color: var(--yellow);
}

.practice-note ul {
  margin: 0;
  padding-left: 1.15em;
}

@media (max-width: 980px) {
  .song-layout {
    grid-template-columns: 1fr;
  }
}


.access-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.access-card,
.venue-section,
.map-section {
  background: linear-gradient(180deg, rgba(35, 19, 23, .92), rgba(15, 12, 14, .92));
  border: 1px solid rgba(255, 210, 63, 0.16);
  border-radius: var(--radius);
  padding: clamp(22px, 3vw, 34px);
  box-shadow: 0 20px 70px rgba(0,0,0,.30);
}

.access-card.warning {
  border-color: rgba(229, 9, 20, 0.55);
  background:
    linear-gradient(135deg, rgba(229,9,20,.18), rgba(15, 12, 14, .94));
}

.access-card h3,
.venue-section h3,
.map-section h3 {
  margin-top: 0;
  color: var(--yellow);
}

.access-card p,
.access-card li,
.venue-section p,
.venue-section figcaption {
  color: var(--muted);
  font-weight: 750;
}

.access-card ul {
  margin: 0;
  padding-left: 1.1em;
}

.venue-section,
.map-section {
  margin-top: 24px;
}

.venue-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.venue-photos figure {
  margin: 0;
  background: rgba(0,0,0,.24);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  overflow: hidden;
}

.venue-photos img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.venue-photos figcaption {
  padding: 14px 16px 16px;
}

.map-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  background: #111;
}

.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 980px) {
  .access-grid,
  .venue-photos {
    grid-template-columns: 1fr;
  }
}


.news-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 210, 63, 0.30);
  background:
    linear-gradient(135deg, rgba(229,9,20,.20), rgba(255,210,63,.14)),
    rgba(18, 13, 15, .96);
  box-shadow: 0 20px 70px rgba(0,0,0,.30);
}

.news-panel h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.06em;
}

.news-panel p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 800;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 14px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--red), var(--yellow));
  color: #fff;
  text-decoration: none;
  font-weight: 1000;
  font-size: clamp(20px, 3vw, 30px);
  box-shadow: 0 18px 50px rgba(229,9,20,.28);
}

@media (max-width: 760px) {
  .news-panel {
    grid-template-columns: 1fr;
  }

  .instagram-link {
    width: 100%;
  }
}


.akizora-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .8fr);
  gap: 22px;
  align-items: stretch;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 28px;
  border: 1px solid rgba(255, 210, 63, 0.30);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 210, 63, 0.16), transparent 16rem),
    linear-gradient(135deg, rgba(229,9,20,.20), rgba(255,210,63,.10)),
    rgba(18, 13, 15, .96);
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
}

.akizora-copy h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.06em;
}

.akizora-copy p:not(.eyebrow) {
  color: var(--muted);
  font-weight: 800;
}

.akizora-cards {
  display: grid;
  gap: 12px;
}

.akizora-cards article {
  padding: 18px;
  border-radius: 18px;
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.13);
}

.akizora-cards span {
  display: block;
  color: var(--yellow);
  font-weight: 1000;
  font-size: 13px;
}

.akizora-cards strong {
  display: block;
  color: var(--white);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.04em;
}

@media (max-width: 980px) {
  .akizora-panel {
    grid-template-columns: 1fr;
  }
}


.day-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 0 0 32px;
}

.day-overview article {
  padding: clamp(22px, 3vw, 34px);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 210, 63, 0.28);
  background:
    linear-gradient(135deg, rgba(229,9,20,.18), rgba(255,210,63,.10)),
    rgba(15, 12, 14, .94);
  box-shadow: 0 20px 70px rgba(0,0,0,.30);
}

.day-overview span {
  display: block;
  color: var(--yellow);
  font-weight: 1000;
  font-size: 13px;
  letter-spacing: .06em;
}

.day-overview strong {
  display: block;
  margin: 6px 0 10px;
  color: var(--white);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.day-overview p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.timeline li.fes-slot::before {
  background: var(--yellow);
  border-color: rgba(255, 210, 63, 0.80);
}

.timeline li.fes-slot time {
  color: var(--yellow);
}

.timeline li.rockers-slot::before {
  background: var(--red);
  border-color: var(--yellow);
  box-shadow: 0 0 0 6px rgba(229, 9, 20, 0.20);
}

.timeline li.rockers-slot strong {
  color: var(--yellow);
}

@media (max-width: 760px) {
  .day-overview {
    grid-template-columns: 1fr;
  }
}


.akizora .section-head h2 {
  line-height: 1.08;
}

.akizora-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
  gap: 20px;
  margin-top: 22px;
}

.akizora-main,
.akizora-rockers-card,
.akizora-flyer-card,
.akizora-message-card {
  border-radius: 28px;
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
}

.akizora-main {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(167, 221, 155, 0.55);
  background:
    radial-gradient(circle at 100% 0%, rgba(255,255,255,.40), transparent 16rem),
    linear-gradient(180deg, rgba(240, 248, 235, .98), rgba(224, 238, 214, .96));
  color: #14220f;
}

.akizora-kicker {
  margin: 0 0 10px;
  color: #3d6f2a;
  font-weight: 1000;
  letter-spacing: .12em;
  font-size: 13px;
}

.akizora-main h3 {
  margin: 0;
  color: #c02828;
  font-size: clamp(42px, 6vw, 84px);
  line-height: 1;
  letter-spacing: -0.06em;
  text-shadow: 0 2px 0 rgba(255,255,255,.7);
}

.akizora-lead {
  margin: 14px 0 12px;
  color: #234b18;
  font-size: clamp(26px, 3.6vw, 42px);
  font-weight: 1000;
}

.akizora-description {
  margin: 0;
  color: #24311f;
  font-weight: 800;
}

.akizora-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.akizora-points article {
  padding: 16px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(61, 111, 42, .22);
}

.akizora-points span,
.akizora-highlight span {
  display: block;
  color: #3d6f2a;
  font-weight: 1000;
  font-size: 12px;
  letter-spacing: .08em;
}

.akizora-points strong {
  display: block;
  margin-top: 6px;
  color: #131313;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.akizora-points small {
  display: block;
  margin-top: 4px;
  color: #4b4b4b;
  font-weight: 700;
}

.akizora-sub {
  display: grid;
  gap: 14px;
}

.akizora-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--yellow), #9ed48d);
  color: #162212;
  font-weight: 1000;
  letter-spacing: .08em;
}

.akizora-rockers-card {
  padding: clamp(24px, 3.5vw, 36px);
  border: 1px solid rgba(255, 210, 63, 0.30);
  background:
    linear-gradient(135deg, rgba(229,9,20,.18), rgba(255,210,63,.10)),
    rgba(18, 13, 15, .96);
}

.akizora-rockers-card h4 {
  margin: 0;
  color: var(--yellow);
  font-size: clamp(34px, 4.3vw, 54px);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.akizora-rockers-card p,
.akizora-rockers-card li {
  color: var(--muted);
  font-weight: 800;
}

.akizora-rockers-card ul {
  margin: 16px 0 0;
  padding-left: 1.1em;
}

.akizora-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 20px;
  margin-top: 22px;
}

.akizora-flyer-card,
.akizora-message-card {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 210, 63, 0.18);
  background:
    linear-gradient(180deg, rgba(35, 19, 23, .92), rgba(15, 12, 14, .92));
}

.akizora-flyer-head {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.akizora-flyer-head h3,
.akizora-message-card h3 {
  margin: 0;
  color: var(--yellow);
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -0.05em;
}

.akizora-flyer-head p,
.akizora-message-card li,
.akizora-message-card p {
  color: var(--muted);
  font-weight: 780;
}

.akizora-flyer-card figure {
  margin: 0;
}

.akizora-flyer-card img {
  display: block;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 18px 44px rgba(0,0,0,.26);
}

.akizora-flyer-card figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-weight: 700;
  text-align: center;
}

.akizora-message-card ul {
  margin: 0;
  padding-left: 1.15em;
}

.akizora-highlight {
  margin-top: 18px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(167, 221, 155, 0.35);
  background:
    linear-gradient(135deg, rgba(167,221,155,.12), rgba(255,210,63,.08));
}

.akizora-highlight strong {
  display: block;
  margin-top: 6px;
  color: var(--white);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.16;
  letter-spacing: -0.05em;
}

@media (max-width: 1100px) {
  .akizora-hero,
  .akizora-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .akizora-points {
    grid-template-columns: 1fr;
  }
}


.poster-downloads {
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.poster-downloads .mini-btn {
  justify-content: center;
}



.akizora-simple .section-head {
  max-width: 860px;
}

.akizora-simple-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: stretch;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 28px;
  border: 1px solid rgba(255, 210, 63, 0.26);
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 210, 63, 0.12), transparent 16rem),
    linear-gradient(180deg, rgba(35, 19, 23, .92), rgba(15, 12, 14, .94));
  box-shadow: 0 24px 80px rgba(0,0,0,.35);
}

.akizora-simple-main {
  padding: clamp(20px, 3vw, 30px);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(167,221,155,.15), rgba(255,210,63,.08)),
    rgba(0,0,0,.20);
  border: 1px solid rgba(167, 221, 155, 0.28);
}

.akizora-simple-main h3 {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.akizora-simple-main p {
  margin: 0;
  color: var(--muted);
  font-weight: 850;
}

.akizora-info-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.akizora-info-list div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.22);
}

.akizora-info-list dt {
  color: var(--yellow);
  font-weight: 1000;
}

.akizora-info-list dd {
  margin: 0;
  color: var(--white);
  font-weight: 900;
}

@media (max-width: 860px) {
  .akizora-simple-panel {
    grid-template-columns: 1fr;
  }

  .akizora-info-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}


.akizora-nature {
  position: relative;
  margin-top: 28px;
  padding-top: 0;
}

.akizora-nature .section-head {
  max-width: 880px;
}

.akizora-nature .section-head .eyebrow {
  color: #35671f;
}

.akizora-nature .section-head h2,
.akizora-nature .section-head p {
  color: #152314;
}

.akizora-nature-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: 22px;
  align-items: stretch;
  padding: clamp(26px, 4vw, 42px);
  border-radius: 30px;
  border: 1px solid rgba(61, 111, 42, 0.18);
  background:
    linear-gradient(rgba(246, 244, 233, 0.92), rgba(240, 246, 233, 0.95)),
    url("assets/akizora-nature-bg.jpg") center top / cover no-repeat;
  box-shadow: 0 24px 80px rgba(0,0,0,.18);
}

.akizora-nature-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(255,255,255,.55), transparent 18rem),
    linear-gradient(135deg, rgba(88, 153, 53, .10), rgba(255, 210, 63, .08));
  pointer-events: none;
}

.akizora-nature-hero,
.akizora-nature-info {
  position: relative;
  z-index: 1;
}

.akizora-nature-hero {
  padding: clamp(18px, 3vw, 28px);
  border-radius: 22px;
  background: rgba(255,255,255,.56);
  border: 1px solid rgba(61,111,42,.14);
  backdrop-filter: blur(2px);
}

.akizora-mini {
  margin: 0 0 8px;
  color: #3d6f2a;
  font-weight: 1000;
  letter-spacing: .12em;
  font-size: 12px;
}

.akizora-nature-hero h3 {
  margin: 0 0 12px;
  color: #c02828;
  font-size: clamp(40px, 6vw, 74px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.akizora-nature-text {
  margin: 0;
  color: #1f2d1a;
  font-weight: 850;
}

.akizora-nature-info {
  display: grid;
  gap: 10px;
  margin: 0;
}

.akizora-nature-info div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 15px 16px;
  border-radius: 16px;
  border: 1px solid rgba(61,111,42,.12);
  background: rgba(255,255,255,.74);
  backdrop-filter: blur(2px);
}

.akizora-nature-info dt {
  color: #3d6f2a;
  font-weight: 1000;
}

.akizora-nature-info dd {
  margin: 0;
  color: #141414;
  font-weight: 900;
}

@media (max-width: 880px) {
  .akizora-nature-panel {
    grid-template-columns: 1fr;
  }

  .akizora-nature-info div {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}


.akizora-banner-section {
  padding-top: 10px;
}

.akizora-banner-visual {
  width: 100%;
  min-height: clamp(170px, 26vw, 340px);
  margin-top: 18px;
  border-radius: 28px 28px 0 0;
  background: url("assets/akizora-top-band.png") center center / cover no-repeat;
  box-shadow: 0 24px 80px rgba(0,0,0,.22);
}

.akizora-banner-card {
  padding: clamp(22px, 4vw, 40px);
  border-radius: 0 0 28px 28px;
  border: 1px solid rgba(61,111,42,.14);
  border-top: none;
  background:
    linear-gradient(180deg, rgba(247,246,238,.98), rgba(238,245,232,.98));
  box-shadow: 0 24px 80px rgba(0,0,0,.12);
}

.akizora-banner-info {
  display: grid;
  gap: 10px;
  margin: 0;
}

.akizora-banner-info div {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(61,111,42,.12);
  background: rgba(255,255,255,.78);
}

.akizora-banner-info dt {
  color: #3d6f2a;
  font-weight: 1000;
}

.akizora-banner-info dd {
  margin: 0;
  color: #121212;
  font-weight: 900;
}

@media (max-width: 760px) {
  .akizora-banner-visual {
    min-height: 150px;
    border-radius: 22px 22px 0 0;
  }

  .akizora-banner-card {
    border-radius: 0 0 22px 22px;
  }

  .akizora-banner-info div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}


.akizora-banner-info .camp-row dd {
  line-height: 1.55;
}

.akizora-camp-links {
  margin-top: 18px;
  padding: clamp(18px, 3vw, 26px);
  border-radius: 20px;
  border: 1px solid rgba(61,111,42,.16);
  background: rgba(255,255,255,.82);
}

.akizora-camp-links h3 {
  margin: 0 0 8px;
  color: #35671f;
  font-size: clamp(22px, 3vw, 34px);
  letter-spacing: -0.04em;
}

.akizora-camp-links p {
  margin: 0 0 14px;
  color: #24311f;
  font-weight: 850;
}

.camp-link-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.camp-link-actions .mini-btn {
  background: #35671f;
  color: #fff;
  border-color: rgba(255,255,255,.20);
}

.camp-link-actions .mini-btn:hover {
  background: #c02828;
}



.akizora-banner-section {
  padding-top: 22px;
}

.akizora-banner-section .akizora-banner-visual {
  margin-top: 0;
}


/* Top flyer floating label: move away from the date area */
.poster-card::before {
  left: 18px !important;
  right: auto !important;
  top: auto !important;
  bottom: 96px !important;
  transform: rotate(-6deg) !important;
}

.about-origin {
  margin-top: clamp(24px, 4vw, 42px);
  padding: clamp(24px, 4vw, 42px);
  border-radius: 28px;
  border: 1px solid rgba(255, 210, 63, 0.22);
  background:
    radial-gradient(circle at 0% 0%, rgba(229, 9, 20, 0.14), transparent 18rem),
    linear-gradient(180deg, rgba(35, 19, 23, .88), rgba(15, 12, 14, .94));
  box-shadow: 0 24px 80px rgba(0,0,0,.30);
}

.about-origin h3 {
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: clamp(30px, 5vw, 58px);
  line-height: .98;
  letter-spacing: -0.06em;
}

.about-origin p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-weight: 820;
  line-height: 1.85;
}

.about-origin p:not(.eyebrow) + p {
  margin-top: 14px;
}

@media (max-width: 760px) {
  .poster-card::before {
    left: 12px !important;
    bottom: 82px !important;
    font-size: 13px;
    padding: 8px 12px;
  }
}


.shooting-terms-box > p {
  margin-top: 0;
  color: var(--white);
  font-weight: 850;
}

.shooting-terms-list {
  margin: 14px 0 0;
  padding-left: 1.15em;
}

.shooting-terms-list li {
  color: var(--muted);
  font-weight: 760;
  line-height: 1.75;
}

.shooting-terms-list li + li {
  margin-top: 8px;
}

.shooting-terms-list li:nth-child(2),
.shooting-terms-list li:nth-child(3),
.shooting-terms-list li:nth-child(4) {
  color: var(--white);
  font-weight: 850;
}


.shooting-terms-list li:nth-last-child(2),
.shooting-terms-list li:nth-last-child(1) {
  color: var(--white);
  font-weight: 900;
}

/* Remove floating recruit badge around the top flyer */
.poster-card::before,
.floating-recruit-badge,
.poster-badge,
.poster-card .badge,
.poster-card [class*="badge"] {
  display: none !important;
  content: none !important;
}




.song-video-embeds {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.youtube-embed-card {
  min-width: 0;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 210, 63, 0.22);
  background:
    linear-gradient(180deg, rgba(35, 19, 23, .90), rgba(15, 12, 14, .94));
  box-shadow: 0 18px 48px rgba(0,0,0,.24);
}

.youtube-embed-card h3 {
  margin: 0 0 10px;
  color: var(--yellow);
  font-size: clamp(16px, 1.45vw, 22px);
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.youtube-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
  background: #000;
  border: 1px solid rgba(255,255,255,.14);
}

.youtube-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 980px) {
  .song-video-embeds {
    grid-template-columns: 1fr;
  }
}

.loadin-rule-box {
  margin-top: clamp(22px, 4vw, 36px);
  padding: clamp(22px, 3vw, 34px);
  border-radius: 24px;
  border: 1px solid rgba(255, 210, 63, 0.24);
  background: radial-gradient(circle at 0% 0%, rgba(229, 9, 20, 0.13), transparent 16rem),
    linear-gradient(180deg, rgba(35, 19, 23, .90), rgba(15, 12, 14, .95));
  box-shadow: 0 20px 60px rgba(0,0,0,.28);
}
.loadin-rule-box h3 {
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: clamp(24px, 3vw, 38px);
  letter-spacing: -0.04em;
}
.loadin-rule-box ul {
  margin: 0;
  padding-left: 1.15em;
}
.loadin-rule-box li {
  color: var(--muted);
  font-weight: 780;
  line-height: 1.75;
}
.loadin-rule-box li:first-child,
.loadin-rule-box li:nth-child(2) {
  color: var(--white);
  font-weight: 900;
}
.loadin-rule-box li + li {
  margin-top: 8px;
}

.about-unified { display: grid; gap: clamp(20px, 3vw, 32px); }
.about-main-copy, .about-cta-card, .about-origin {
  border-radius: 28px;
  border: 1px solid rgba(255, 210, 63, 0.22);
  background: radial-gradient(circle at 0% 0%, rgba(229, 9, 20, 0.14), transparent 18rem),
    linear-gradient(180deg, rgba(35, 19, 23, .88), rgba(15, 12, 14, .94));
  box-shadow: 0 24px 80px rgba(0,0,0,.30);
}
.about-main-copy, .about-cta-card, .about-origin { padding: clamp(24px, 4vw, 42px); }
.about-main-copy p {
  margin: 0;
  color: var(--white);
  font-weight: 880;
  line-height: 1.85;
  font-size: clamp(17px, 2vw, 22px);
}
.about-main-copy p + p { margin-top: 16px; }
.about-cta-card h3, .about-origin h3 {
  margin: 0 0 14px;
  color: var(--yellow);
  font-size: clamp(30px, 5vw, 62px);
  line-height: .98;
  letter-spacing: -0.06em;
}
.about-cta-card p:not(.eyebrow), .about-origin p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-weight: 820;
  line-height: 1.85;
}
.about-cta-card p:not(.eyebrow) { margin-bottom: 18px; }
.about-origin p:not(.eyebrow) + p { margin-top: 14px; }


.hero-entry-note {
  margin-top: 18px;
  max-width: 620px;
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 210, 63, 0.24);
  background:
    radial-gradient(circle at 0% 0%, rgba(229, 9, 20, 0.18), transparent 14rem),
    linear-gradient(180deg, rgba(35, 19, 23, .86), rgba(15, 12, 14, .92));
  box-shadow: 0 18px 48px rgba(0,0,0,.28);
}

.hero-entry-note .eyebrow {
  margin: 0 0 6px;
}

.hero-entry-note strong {
  display: block;
  color: var(--yellow);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.hero-entry-note span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 820;
  line-height: 1.65;
}

/* TOP entry note was merged into hero text */
.hero-entry-note {
  display: none !important;
}

/* Unified ABOUT block */
.about-fusion {
  padding: clamp(24px, 4vw, 46px);
  border-radius: 28px;
  border: 1px solid rgba(255, 210, 63, 0.22);
  background:
    radial-gradient(circle at 0% 0%, rgba(229, 9, 20, 0.14), transparent 18rem),
    linear-gradient(180deg, rgba(35, 19, 23, .88), rgba(15, 12, 14, .94));
  box-shadow: 0 24px 80px rgba(0,0,0,.30);
}

.about-fusion p {
  margin: 0;
  color: var(--muted);
  font-weight: 820;
  line-height: 1.85;
}

.about-fusion p:first-child,
.about-fusion p:nth-child(2) {
  color: var(--white);
  font-weight: 880;
  font-size: clamp(17px, 2vw, 22px);
}

.about-fusion p + p {
  margin-top: 14px;
}

.about-fusion h3 {
  margin: clamp(26px, 4vw, 38px) 0 14px;
  color: var(--yellow);
  font-size: clamp(30px, 5vw, 58px);
  line-height: .98;
  letter-spacing: -0.06em;
}

/* Slightly reduce the WHY WE START heading size in ABOUT */
.about-fusion h3 {
  font-size: clamp(24px, 3.8vw, 44px) !important;
}


/* Keep the original upper song visual design and absorb lower-card information inside it */
.songs-visual-supplement {
  margin: clamp(14px, 2.4vw, 22px) clamp(14px, 2.4vw, 26px) clamp(16px, 2.6vw, 28px);
  padding: clamp(16px, 2.4vw, 22px);
  border-radius: 18px;
  border: 1px solid rgba(255, 210, 63, 0.22);
  background: rgba(8, 7, 8, .70);
}

.songs-visual-supplement p {
  margin: 0;
  color: var(--white);
  font-weight: 850;
  line-height: 1.75;
}

.songs-visual-supplement p + p {
  margin-top: 10px;
}

.songs-visual-supplement strong {
  color: var(--yellow);
}

.songs-visual-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.songs-visual-links .mini-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Songs: after reordering, upper supplement contains only opening chant guidance */
.songs-visual-supplement {
  margin-top: clamp(14px, 2.4vw, 22px);
}
.songs-visual-supplement .songs-visual-links {
  display: none !important;
}


/* SET LIST補足文を独立した枠ではなく、画像ブロック内の本文として表示 */
.songs-visual-supplement {
  margin: 16px 24px 8px !important;
  padding: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.songs-visual-supplement p {
  color: var(--white) !important;
  font-weight: 850;
  line-height: 1.75;
  margin: 0;
}

.songs-visual-supplement strong {
  color: var(--yellow) !important;
}

.liability-rule-box,
.loadin-rule-box li:last-child {
  color: var(--white);
  font-weight: 900;
}


/* =========================================================
   Text style normalization
   本文の色・太さ・行間をセクション横断で統一
   ========================================================= */

/* 基本文 */
.section p,
.section li,
.detail-card p,
.rule-card li,
.access-card p,
.access-card li,
.faq-item p,
.news-item p,
.about-fusion p,
.practice-note li,
.loadin-rule-box li,
.songs-visual-supplement p,
.youtube-embed-card p,
.akizora-section p,
.contact-card p {
  color: var(--muted) !important;
  font-weight: 760 !important;
  line-height: 1.78 !important;
}

/* 重要文・注意文は白で統一 */
.section strong,
.section b,
.rule-card strong,
.access-card strong,
.faq-item strong,
.practice-note strong,
.loadin-rule-box strong,
.songs-visual-supplement strong,
.about-fusion p:first-child,
.about-fusion p:nth-child(2),
.loadin-rule-box li:first-child,
.loadin-rule-box li:nth-child(2),
.loadin-rule-box li:last-child,
.access-card.warning li,
.rule-card.warning li {
  color: var(--white) !important;
  font-weight: 880 !important;
}

/* 見出し・小見出しの色と太さ */
.section h3,
.detail-card strong,
.rule-card h3,
.access-card h3,
.practice-note h3,
.loadin-rule-box h3,
.youtube-embed-card h3,
.faq-item summary,
.news-item h3,
.contact-card h3 {
  color: var(--yellow) !important;
  font-weight: 950 !important;
}

/* 英字ラベルや小ラベル */
.eyebrow,
.detail-card span,
.song-label,
.part-card span,
.faq-label,
.news-date {
  color: var(--yellow) !important;
  font-weight: 920 !important;
}

/* ボタン類は既存デザインを優先しつつ太さを統一 */
.btn,
.mini-btn,
.nav-links a,
.mobile-sticky-cta {
  font-weight: 900 !important;
}

/* カード内の本文余白を統一 */
.section p + p,
.access-card p + p,
.about-fusion p + p,
.songs-visual-supplement p + p,
.contact-card p + p {
  margin-top: 0.85em;
}

.rule-card li + li,
.practice-note li + li,
.loadin-rule-box li + li,
.access-card li + li {
  margin-top: 0.45em;
}

/* HEROなど大きなコピーは別扱いで維持 */
.hero-copy,
.hero-copy p,
.hero-detail-card,
.hero-detail-card p,
.hero-detail-card strong,
.hero-detail-card span {
  font-weight: inherit;
}

/* チラシ画像周辺の補足文だけ白系で見やすく統一 */
.poster-card p,
.flyer-downloads p {
  color: var(--white) !important;
  font-weight: 820 !important;
}

/* AKIZORA末尾セクションの本文を読みやすく */
.akizora-section li {
  color: var(--muted) !important;
  font-weight: 760 !important;
  line-height: 1.78 !important;
}
