:root {
  --red: #a8131d;
  --red-dark: #7a0f17;
  --black: #0e0e0e;
  --black-soft: #1a1a1a;
  --gold: #f4c842;
  --gold-light: #ffd96b;
  --white: #fff;
  --ivory: #f5efe5;
  --muted: #b8b8b8;
  --content: 850px;
  --sans: "Noto Sans JP", sans-serif;
  --serif: "Noto Serif JP", serif;
  --latin: "Cormorant Garamond", serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  color: var(--ivory);
  background:
    radial-gradient(circle at 15% 8%, rgba(244, 200, 66, .18), transparent 24rem),
    linear-gradient(180deg, var(--red), var(--red-dark));
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.9;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .08;
  background-image:
    linear-gradient(135deg, rgba(255,255,255,.7) 12.5%, transparent 12.5%, transparent 50%, rgba(255,255,255,.7) 50%, rgba(255,255,255,.7) 62.5%, transparent 62.5%),
    linear-gradient(45deg, rgba(255,255,255,.45) 12.5%, transparent 12.5%, transparent 50%, rgba(255,255,255,.45) 50%, rgba(255,255,255,.45) 62.5%, transparent 62.5%);
  background-size: 64px 64px;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; height: auto; }
ul { list-style: none; }

.siteHeader {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 95px;
  padding: 10px clamp(16px, 4vw, 40px);
  background: linear-gradient(180deg, rgba(14,14,14,.88), rgba(14,14,14,0));
  transition: background .3s, padding .3s, min-height .3s;
}
.siteHeader.scrolled {
  min-height: 87px;
  padding-top: 6px;
  padding-bottom: 6px;
  background: rgba(14,14,14,.92);
  backdrop-filter: blur(10px);
}
.siteHeader_logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.siteHeader_logo img {
  width: auto;
  height: 85px;
  max-width: min(42vw, 460px);
}
.globalNav {
  display: flex;
  gap: 22px;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}
.globalNav a {
  position: relative;
  padding-bottom: 5px;
}
.globalNav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gold);
  transition: transform .25s;
}
.globalNav a:hover::after { transform: scaleX(1); }
.navButton {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(244,200,66,.5);
  background: rgba(14,14,14,.75);
  cursor: pointer;
}
.navButton span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--gold);
  transition: transform .25s, opacity .25s;
}
.navButton.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navButton.open span:nth-child(2) { opacity: 0; }
.navButton.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 126px 20px 70px;
  overflow: hidden;
  background: var(--black);
  opacity: 0;
  transform: translate3d(0, 70px, 0) scale(.96);
  animation: heroSceneIntro 1.25s cubic-bezier(.16, 1, .3, 1) .12s forwards;
}
.hero_slideshow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero_slide {
  position: absolute;
  inset: 0;
  overflow: hidden;
  opacity: 0;
  transform: scale(1.08);
  animation: heroSlideshow 24s linear infinite;
}
.hero_slide picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero_slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero_slide01 {
  animation-delay: 0s;
}
.hero_slide02 {
  animation-delay: 6s;
}
.hero_slide03 {
  animation-delay: 12s;
}
.hero_slide04 {
  animation-delay: 18s;
}
.hero_inner {
  position: relative;
  z-index: 2;
  width: min(100%, 720px);
  margin-top: -8vh;
  text-align: center;
  display: grid;
  justify-items: center;
}
.hero_inner.heroIntro {
  opacity: 0;
  transform: translate3d(0, 82px, 0) scale(.86);
  animation: heroContentIntro 1.1s cubic-bezier(.16, 1, .3, 1) .45s forwards;
}
.sectionHeading p {
  color: var(--gold);
  font-family: var(--latin);
  font-size: 20px;
  font-style: italic;
  font-weight: 700;
}
.hero h1 {
  margin-top: 0;
  margin-bottom: 10px;
  font-family: var(--serif);
  font-size: clamp(46px, 10vw, 86px);
  font-weight: 900;
  line-height: 1.1;
  text-shadow: 0 6px 24px rgba(0,0,0,.7);
}
.hero h1 span { color: var(--gold); }
.hero_logo {
  width: auto;
  height: min(66svh, 570px);
  max-width: min(70vw, 500px);
  margin: 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,.68));
}
.hero_copy {
  display: inline-block;
  margin-top: 6px;
  padding: 0;
  font-family: var(--serif);
  font-size: clamp(25px, 4.6vw, 40px);
  font-weight: 900;
  line-height: 1.5;
  text-shadow: 0 4px 18px rgba(0,0,0,.86), 0 1px 3px rgba(0,0,0,.95);
  word-break: keep-all;
  overflow-wrap: normal;
}
.hero_copy span {
  display: inline;
}
.hero_lead {
  max-width: 620px;
  margin: 14px auto 0;
  padding: 14px 18px;
  color: var(--ivory);
  background: rgba(14,14,14,.64);
  box-shadow: 0 10px 26px rgba(0,0,0,.24);
}
.hero_info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(100%, var(--content));
  margin: 24px auto 0;
  overflow: hidden;
  border: 1px solid rgba(244,200,66,.45);
  background: rgba(244,200,66,.45);
}
.hero_info div {
  padding: 14px 10px;
  background: rgba(14,14,14,.72);
}
.hero_info dt {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
}
.hero_info dd {
  margin-top: 2px;
  font-size: 14px;
  font-weight: 700;
}
.buttonRow {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 26px;
  border: 2px solid var(--gold);
  font-weight: 900;
  transition: background .25s, color .25s, transform .25s;
}
.button:hover { transform: translateY(-2px); }
.buttonPrimary {
  color: var(--black);
  background: var(--gold);
}
.buttonGhost {
  color: var(--gold);
  background: rgba(14,14,14,.55);
}
.buttonGhost:hover,
.buttonPrimary:hover {
  color: var(--black);
  background: var(--gold-light);
}

.section {
  position: relative;
  padding: clamp(58px, 9vw, 96px) 20px;
  scroll-margin-top: 104px;
}
.sectionRed {
  background:
    radial-gradient(circle at 80% 10%, rgba(255,217,107,.13), transparent 18rem),
    linear-gradient(180deg, var(--red), var(--red-dark));
}
.sectionBlack { background: var(--black); }
#about {
  background: url("../img/bg/sec01.png") no-repeat top center;
}
#highlight {
  background: url("../img/bg/sec02.png") repeat;
}
#information {
  background:
    linear-gradient(rgba(0,0,0,.5), rgba(0,0,0,.5)),
    url("../img/bg/sec07.jpg") center / cover no-repeat;
}
#access {
  background:
    radial-gradient(circle at 18% 12%, rgba(83, 132, 190, .25), transparent 28rem),
    linear-gradient(160deg, #071426 0%, #102c4f 48%, #04101f 100%);
}
.section_inner {
  width: min(100%, var(--content));
  margin: 0 auto;
}
.sectionHeading {
  position: relative;
  margin-bottom: 32px;
  padding-left: 18px;
}
.sectionHeading::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 5px;
  height: 44px;
  background: var(--gold);
}
.sectionHeading h2 {
  margin-top: 6px;
  font-family: var(--serif);
  font-size: clamp(30px, 6vw, 42px);
  font-weight: 900;
  line-height: 1.35;
}
.headingLine {
  display: inline-block;
}

.about_grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(240px, .85fr);
  gap: 34px;
  align-items: center;
}
.about_text p + p { margin-top: 18px; }
.about_statement {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 900;
}
.photoFrame {
  overflow: hidden;
  color: var(--ivory);
  background: transparent;
  box-shadow: 0 24px 50px rgba(0,0,0,.24);
}
.photoTilt { transform: rotate(3deg); }
.photoFrame img {
  aspect-ratio: auto;
  height: auto;
  object-fit: contain;
  object-position: center center;
}
.photoFrame figcaption {
  margin-top: 0;
  padding: 10px 12px;
  color: var(--ivory);
  font-size: 12px;
  text-align: center;
  background: rgba(14,14,14,.78);
}

.highlight_lead {
  margin-bottom: 28px;
  padding: 18px 20px;
  border-left: 4px solid var(--gold);
  background: rgba(14,14,14,.32);
}
.highlight_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 46px;
}
.highlight_card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 42%) minmax(0, 1fr);
  align-items: start;
  min-height: 282px;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.highlight_card::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 76px;
  right: 0;
  bottom: 0;
  left: 37%;
  background: var(--black);
  box-shadow: 0 18px 38px rgba(0,0,0,.18);
}
.highlight_card .number {
  position: relative;
  z-index: 1;
  grid-column: 2;
  color: var(--gold);
  font-family: var(--latin);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  margin: 108px 32px 8px;
}
.highlight_card img,
.iconPanel {
  position: relative;
  z-index: 1;
  grid-column: 1;
  grid-row: 1 / span 4;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin: 0;
  object-fit: cover;
  border: 0;
  box-shadow: 0 16px 32px rgba(0,0,0,.32);
}
.iconPanel {
  display: grid;
  place-items: center;
  color: var(--gold);
  background:
    radial-gradient(circle at center, rgba(255,217,107,.24), transparent 42%),
    linear-gradient(135deg, #101010, #391015);
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 900;
}
.highlight_card h3 {
  position: relative;
  z-index: 1;
  grid-column: 2;
  color: var(--white);
  font-size: 24px;
  line-height: 1.45;
  margin: 0 32px;
}
.highlight_card p {
  position: relative;
  z-index: 1;
  grid-column: 2;
  margin: 12px 32px 32px;
  color: var(--ivory);
  font-size: 14px;
}
.note {
  margin-top: 24px;
  color: var(--muted);
  font-size: 13px;
}

.program { overflow: hidden; }
.goldRail {
  position: absolute;
  top: 0;
  bottom: 0;
  left: max(20px, calc(50% - 495px));
  width: 7px;
  background: var(--gold);
}
.tabButtons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}
.tabButton {
  min-height: 54px;
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
  font: 900 15px/1.4 var(--sans);
  cursor: pointer;
}
.tabButton.active {
  color: var(--black);
  background: var(--gold);
}
.program_day { display: grid; gap: 12px; }
.program_day[hidden] { display: none; }
.program_item {
  display: grid;
  grid-template-columns: 104px 150px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(244,200,66,.25);
  background: var(--black-soft);
}
.program_item img {
  width: 104px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.program_item img.program_imageMagewappa {
  object-fit: cover;
  object-position: 78% 18%;
}
.program_item time {
  color: var(--gold);
  font-family: var(--latin);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
}
.program_item h3 {
  color: var(--white);
  font-size: 20px;
}
.program_item p {
  color: var(--muted);
  font-size: 14px;
}
.widePhoto {
  margin-top: 28px;
  border: 8px solid var(--ivory);
  box-shadow: 0 22px 48px rgba(0,0,0,.42);
}
.widePhoto img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.history_box {
  position: relative;
  padding: clamp(26px, 5vw, 42px);
  background: rgba(245,239,229,.95);
  color: #231514;
  box-shadow: 0 24px 50px rgba(0,0,0,.25);
}
.history_box::after {
  content: "千年";
  position: absolute;
  top: 20px;
  right: 18px;
  color: rgba(168,19,29,.12);
  writing-mode: vertical-rl;
  font-family: var(--serif);
  font-size: 92px;
  font-weight: 900;
  line-height: 1;
}
.history_box p,
.history_box h3 {
  position: relative;
  z-index: 1;
}
.history_box p + p { margin-top: 18px; }
.history_box h3 {
  margin-top: 28px;
  color: var(--red-dark);
  font-family: var(--serif);
  font-size: 24px;
}

.infoGrid,
.access_cards,
.stage_cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.blackCard,
.stage_card,
.access_card,
.infoCard,
.organizerInfo,
.contactBox {
  padding: 24px;
  border: 1px solid rgba(244,200,66,.25);
  background: rgba(14,14,14,.92);
  box-shadow: 0 18px 36px rgba(0,0,0,.22);
}
.blackCard h3,
.access_card h3 {
  color: var(--gold);
  font-size: 20px;
}
.blackCard li + li { margin-top: 8px; }
.bannerText {
  margin-top: 18px;
  padding: 12px 14px;
  color: var(--black);
  background: var(--gold);
  font-weight: 900;
}
.stage_card span {
  color: var(--gold);
  font-family: var(--latin);
  font-size: 38px;
  font-weight: 700;
}
.stage_card h3 { margin-top: 4px; color: var(--white); }
.stage_cards {
  grid-template-columns: 1fr;
  gap: 46px;
}
.stage_card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 42%) minmax(0, 1fr);
  align-items: start;
  min-height: 282px;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.stage_card::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 76px;
  right: 0;
  bottom: 0;
  left: 37%;
  background: var(--black);
  box-shadow: 0 18px 38px rgba(0,0,0,.18);
}
.stage_card img {
  position: relative;
  z-index: 1;
  grid-column: 1;
  grid-row: 1 / span 4;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin: 0;
  object-fit: cover;
  box-shadow: 0 16px 32px rgba(0,0,0,.32);
}
.stage_card span {
  position: relative;
  z-index: 1;
  grid-column: 2;
  font-size: 24px;
  line-height: 1;
  margin: 108px 32px 8px;
}
.stage_card h3 {
  position: relative;
  z-index: 1;
  grid-column: 2;
  margin: 0 32px;
  font-size: 24px;
  line-height: 1.45;
}
.stage_card p {
  position: relative;
  z-index: 1;
  grid-column: 2;
  margin: 12px 32px 32px;
  color: var(--ivory);
  font-size: 14px;
}
.infoCard { text-align: center; }
.dateSummary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(16px, 3vw, 32px);
  align-items: center;
  margin-bottom: 20px;
}
.dateSummary_label {
  color: var(--gold);
  font-weight: 900;
  line-height: 1.3;
  white-space: nowrap;
}
.dateLarge {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: center;
  gap: 18px;
  color: var(--gold);
  font-family: var(--latin);
  font-weight: 700;
  line-height: 1.08;
}
.dateLarge_item {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: .12em;
  width: 100%;
  flex-wrap: wrap;
  color: #fff;
}
.dateLarge_year {
  font-size: clamp(26px, 4.2vw, 42px);
  letter-spacing: .02em;
}
.dateLarge_dot {
  font-size: clamp(30px, 5vw, 48px);
}
.dateLarge_main {
  font-size: clamp(52px, 9vw, 82px);
  font-weight: 700;
  letter-spacing: .01em;
}
.dateLarge_week {
  font-family: var(--sans);
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 900;
}
.dateLarge_time {
  margin-left: .42em;
  color: var(--gold);
  font-size: clamp(24px, 4.6vw, 42px);
  line-height: 1.18;
  white-space: nowrap;
}
.dateLarge_arrow {
  align-self: center;
  width: clamp(42px, 7vw, 70px);
  height: auto;
  overflow: visible;
  fill: none;
  stroke: var(--gold);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.infoCard dl {
  display: grid;
  gap: 14px;
  text-align: left;
}
.infoCard div {
  padding-top: 14px;
  border-top: 1px solid rgba(244,200,66,.32);
}
.infoCard dt {
  color: var(--gold);
  font-weight: 900;
}
.organizerInfo {
  margin-bottom: 34px;
}
.organizerInfo dl {
  display: grid;
  gap: 14px;
}
.organizerInfo div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 18px;
  align-items: start;
  padding-top: 14px;
  border-top: 1px solid rgba(244,200,66,.32);
}
.organizerInfo div:first-child {
  padding-top: 0;
  border-top: 0;
}
.organizerInfo dt {
  color: var(--gold);
  font-weight: 900;
}
.organizerInfo dd {
  color: var(--ivory);
}
.mapBox {
  overflow: hidden;
  border: 8px solid var(--black);
  box-shadow: 0 22px 48px rgba(0,0,0,.3);
}
.mapBox iframe {
  display: block;
  width: 100%;
  height: 340px;
  border: 0;
  filter: saturate(.9) contrast(1.04);
}
.venueMap {
  margin-top: 34px;
}
.venueMap h3 {
  margin-bottom: 14px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(24px, 5vw, 32px);
  font-weight: 900;
  line-height: 1.35;
}
.venueMap_placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: clamp(260px, 48vw, 420px);
  border: 8px solid var(--black);
  background:
    linear-gradient(135deg, rgba(255,255,255,.08) 25%, transparent 25%) 0 0 / 24px 24px,
    linear-gradient(135deg, transparent 75%, rgba(255,255,255,.08) 75%) 0 0 / 24px 24px,
    rgba(245,239,229,.92);
  box-shadow: 0 22px 48px rgba(0,0,0,.3);
}
.access_cards { margin-top: 18px; }

/* 交通規制情報 */
.trafficInfo {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,.15);
}
.trafficInfo h3 {
    margin-bottom: 14px;
    color: var(--gold);
    font-family: var(--serif);
    font-size: clamp(24px, 5vw, 32px);
    font-weight: 900;
    line-height: 1.35;
}
.trafficInfo > p {
    margin-bottom: 20px;
    font-size: 15px;
    opacity: .85;
}
.trafficInfo_list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 28px;
}
.trafficInfo_list > div {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 16px 20px;
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 6px;
}
.trafficInfo_list dt {
    font-size: 14px;
    font-weight: 700;
    opacity: .7;
}
.trafficInfo_list dd {
    font-size: 16px;
    font-weight: 700;
}
.trafficMap {
    margin: 0;
}
.trafficMap figcaption {
    color: var(--gold);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}
.trafficMap img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 22px 48px rgba(0,0,0,.3);
}
/* /交通規制情報 */

.faq_list {
  display: grid;
  gap: 12px;
}
details {
  border: 1px solid rgba(244,200,66,.28);
  background: var(--black-soft);
}
summary {
  position: relative;
  padding: 18px 54px 18px 20px;
  color: var(--gold);
  font-weight: 900;
  cursor: pointer;
}
summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
}
details[open] summary::after { content: "-"; }
details p {
  padding: 0 20px 20px;
  color: var(--ivory);
}
.contactBox { text-align: center; }
.organizer {
  color: var(--gold);
  font-family: var(--serif);
  font-size: clamp(22px, 4.2vw, 28px);
  font-weight: 900;
  line-height: 1.45;
  overflow-wrap: keep-all;
  word-break: keep-all;
}
.tel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .18em;
  margin-top: 14px;
  color: var(--gold);
  font-family: var(--latin);
  font-size: clamp(42px, 9vw, 70px);
  font-weight: 700;
  line-height: 1;
}
.tel_icon {
  width: .58em;
  height: .58em;
  fill: currentColor;
  flex: 0 0 auto;
}
.socialTitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(100%, 280px);
  margin: 34px auto 0;
  color: var(--gold);
  font-family: var(--latin);
  font-size: 22px;
  font-style: italic;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1;
}
.socialTitle::before,
.socialTitle::after {
  content: "";
  height: 1px;
  flex: 1 1 48px;
  background: rgba(244,200,66,.55);
}
.socialLinks {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.socialLink {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--gold);
  border: 1px solid rgba(244,200,66,.52);
  background: rgba(255,255,255,.06);
  transition: color .25s, background .25s, transform .25s;
}
.socialLink:hover,
.socialLink:focus-visible {
  color: var(--black);
  background: var(--gold);
  transform: translateY(-2px);
}
.socialLink svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}
.socialLink[data-platform="instagram"] svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}
.socialLink[data-platform="tiktok"] svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.socialPlay { fill: var(--black); }
.socialLink:hover .socialPlay,
.socialLink:focus-visible .socialPlay {
  fill: var(--gold);
}
.socialLink.isPending { cursor: help; }

.footer {
  padding: 54px 20px;
  text-align: center;
  background: var(--black);
  border-top: 1px solid rgba(244,200,66,.25);
}
.footer nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 14px;
}
.footer p {
  color: var(--muted);
  font-size: 12px;
}

.pageTopButton {
  position: fixed;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 34px);
  z-index: 60;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--black);
  background: var(--gold);
  border: 2px solid rgba(255,255,255,.78);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(0,0,0,.38);
  transition: transform .28s ease, background .28s ease, box-shadow .28s ease;
}
.pageTopButton:hover,
.pageTopButton:focus-visible {
  transform: translateY(-5px);
  background: var(--gold-light);
  box-shadow: 0 18px 42px rgba(0,0,0,.48);
}
.pageTopButton svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.fadeTarget {
  opacity: 0;
  transform: translate3d(0, 110px, 0) scale(.9);
  transition:
    opacity .9s cubic-bezier(.22, 1, .36, 1),
    transform .9s cubic-bezier(.22, 1, .36, 1);
  transition-delay: var(--anim-delay, 0s);
  will-change: opacity, transform;
}
.animFromBottom { transform: translate3d(0, 140px, 0) scale(.88); }
.animFromTop { transform: translate3d(0, -140px, 0) scale(.88); }
.animFromLeft { transform: translate3d(-170px, 0, 0) scale(.9); }
.animFromRight { transform: translate3d(170px, 0, 0) scale(.9); }
.animZoomIn { transform: translate3d(0, 70px, 0) scale(.72); }
.animRotateLeft { transform: translate3d(-130px, 70px, 0) rotate(-7deg) scale(.86); }
.animRotateRight { transform: translate3d(130px, 70px, 0) rotate(7deg) scale(.86); }
.animPop {
  transform: translate3d(0, 0, 0) scale(.58);
  transition-duration: .78s;
}
.fadeTarget.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
}
@keyframes heroSceneIntro {
  0% {
    opacity: 0;
    transform: translate3d(0, 70px, 0) scale(.96);
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes heroContentIntro {
  0% {
    opacity: 0;
    transform: translate3d(0, 82px, 0) scale(.86);
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes heroSlideshow {
  0% {
    opacity: 0;
    transform: scale(1.08);
  }
  5% {
    opacity: 1;
  }
  25% {
    opacity: 1;
    transform: scale(1);
  }
  30%,
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms;
    animation-iteration-count: 1;
    scroll-behavior: auto;
    transition-duration: .01ms;
  }
  .fadeTarget {
    opacity: 1;
    transform: none;
  }
  .hero,
  .hero_inner.heroIntro {
    opacity: 1;
    transform: none;
    filter: none;
  }
  .hero_slide {
    animation: none;
    opacity: 0;
    transform: none;
  }
  .hero_slide01 { opacity: 1; }
}

@media screen and (max-width: 768px) {
  body { font-size: 15px; }
  .section {
    scroll-margin-top: 136px;
  }
  .animFromLeft,
  .animFromRight,
  .animRotateLeft,
  .animRotateRight {
    transform: translate3d(0, 110px, 0) scale(.9);
  }
  .sectionHeading.fadeTarget,
  .sectionHeading.fadeTarget.visible {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
  .navButton { display: block; }
  .globalNav {
    position: fixed;
    top: 96px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    padding: 12px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    background: rgba(14,14,14,.96);
    border: 1px solid rgba(244,200,66,.3);
    transition: opacity .25s, transform .25s;
  }
  .globalNav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .globalNav a { padding: 13px 8px; }
  .hero {
    min-height: auto;
    display: block;
    padding: 96px 0 44px;
  }
  .hero_slideshow {
    position: relative;
    inset: auto;
    width: 100%;
    aspect-ratio: 1200 / 1471;
    margin: -96px 0 0;
    background: var(--black);
    overflow: hidden;
  }
  .hero_slide { transform: none; }
  .hero_slide img {
    object-fit: contain;
    background: var(--black);
  }
  .hero_inner {
    min-height: calc(100vw * 1471 / 1200);
    margin-top: calc(-100vw * 1471 / 1200);
    padding: 100px 16px 22px;
    align-content: end;
  }
  .hero h1 {
    margin-bottom: 0;
    transform: translateY(-5vw);
  }
  .hero_logo {
    height: clamp(285px, 76vw, 395px);
    max-width: 84vw;
  }
  .hero_copy {
    margin-top: 2px;
    font-size: clamp(17px, 4.85vw, 24px);
    line-height: 1.55;
    transform: translateY(-4vw);
  }
  .hero_copy span { display: block; }
  .hero_copy,
  .hero_lead { width: min(100%, 620px); }
  .hero .buttonRow {
    width: min(100%, 340px);
    margin-top: 18px;
  }
  .hero_info { grid-template-columns: 1fr; }
  .about_grid,
  .highlight_list,
  .infoGrid,
  .access_cards,
  .stage_cards {
    grid-template-columns: 1fr;
  }
  .highlight_card {
    display: block;
    min-height: 0;
    background: var(--black);
    box-shadow: 0 18px 38px rgba(0,0,0,.18);
  }
  .highlight_card::before { display: none; }
  .highlight_card img,
  .iconPanel {
    aspect-ratio: 16 / 10;
    box-shadow: none;
  }
  .highlight_card .number {
    display: block;
    margin: 22px 22px 8px;
  }
  .highlight_card h3 { margin: 0 22px; }
  .highlight_card p { margin: 12px 22px 24px; }
  .stage_card {
    display: block;
    min-height: 0;
    background: var(--black);
    box-shadow: 0 18px 38px rgba(0,0,0,.18);
  }
  .stage_card::before { display: none; }
  .stage_card img {
    aspect-ratio: 16 / 10;
    box-shadow: none;
  }
  .stage_card span {
    display: block;
    margin: 22px 22px 8px;
  }
  .stage_card h3 { margin: 0 22px; }
  .stage_card p { margin: 12px 22px 24px; }
  .photoTilt { transform: rotate(0); }
  .dateLarge {
    align-items: center;
    gap: 14px;
  }
  .dateSummary {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .dateSummary_label {
    text-align: center;
  }
  .dateLarge_time {
    width: 100%;
    margin: 6px 0 0;
    text-align: center;
  }
  .program_item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .program_item img { width: 100%; aspect-ratio: 16 / 9; }
  .program_item img.program_imageMagewappa {
    object-position: center center;
  }
  .goldRail { left: 10px; width: 4px; display: none; }
  .venueMap_placeholder {
    min-height: 260px;
    border-width: 6px;
  }
  .history_box::after {
    font-size: 60px;
    opacity: .7;
  }
  .trafficInfo_list {
    grid-template-columns: 1fr;
  }
}

@media screen and (min-width: 600px) and (max-width: 768px) {
  .hero {
    padding-bottom: 56px;
  }
}

@media screen and (max-width: 480px) {
  .buttonRow { display: grid; grid-template-columns: 1fr; }
  .button { width: 100%; }
  .tabButtons { grid-template-columns: 1fr; }
  .section { padding-left: 16px; padding-right: 16px; }
  .blackCard,
  .access_card,
  .infoCard,
  .organizerInfo,
  .contactBox {
    padding: 20px;
  }
  .organizerInfo div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .pageTopButton {
    width: 50px;
    height: 50px;
  }
  .pageTopButton svg {
    width: 24px;
    height: 24px;
  }
}
