:root {
  --black: #0f0f0f;
  --white: #ffffff;
  --off: #f7f7f5;
  --muted: #888;
  --pink: #FF3366;
  --teal: #00C8B4;
  --yellow: #FFE600;
  --purple: #5B2C83;
  --gold: #D4AF37;
  --rule: 1px solid #e0e0e0;
  --rule-b: 1px solid #222;
  --font-ja: 'Noto Sans JP', sans-serif;
  --font-en: 'DM Sans', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-ja);
  background: var(--white);
  color: var(--black);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}

a {
  color: inherit;
  transition: color 0.5s ease, background-color .25s ease, border-color .25s ease;
}



/* ── LOADER ─────────────────────────── */
#loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  transition: opacity .7s ease, visibility .7s ease;
}

#loader.done {
  opacity: 0;
  visibility: hidden;
}

.ldr-logo {
  font-family: var(--font-ja);
  font-size: clamp(24px, 4.5vw, 40px);
  font-weight: 900;
  letter-spacing: .18em;
  color: var(--white);
  text-align: center;
  opacity: 0;
  transform: translateY(18px);
  animation: ldrUp .165s ease .25s forwards;
}

.ldr-logo small {
  display: block;
  font-size: .58em;
  font-weight: 300;
  letter-spacing: .4em;
  color: var(--white);
  margin-top: 10px;
  font-family: var(--font-en);
}

.ldr-bar {
  width: 0;
  height: 1px;
  background: var(--gold);
  animation: ldrBar 1s ease .6s forwards;
}

.ldr-date {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: .45em;
  color: #444;
  opacity: 0;
  animation: ldrUp .5s ease 1.1s forwards;
}

@keyframes ldrUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ldrBar {
  to {
    width: 100px;
  }
}

/* ── NAV ─────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 60px;
  transition: background .4s ease, border-color .4s ease;
}

nav.scrolled {
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(8px);
}

.nav-logo {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .18em;
  white-space: nowrap;
  opacity: 0;
  transition: opacity .5s ease;
}

nav.scrolled .nav-logo {
  opacity: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  overflow-x: auto;
  scrollbar-width: none;
}

.nav-links a {
  text-decoration: none;
}

.nav-links::-webkit-scrollbar {
  display: none;
}

.nav-link {
  display: block;
  padding: 8px 18px;
  font-family: var(--font-en);
  font-weight: 400;
  font-size: 12px;
  letter-spacing: .12em;
  border-radius: 2px;
  transition: background .15s, color .15s;
  white-space: nowrap;
  opacity: 0;
  color: var(--black);
}

nav.scrolled .nav-link {
  opacity: 1;
}

.nav-link:hover {
  background: var(--off);
}

.nav-link.goods {
  background: var(--gold);
  color: var(--white);
  border-radius: 2px;
}

.nav-link.goods:hover {
  background: var(--black);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--black);
  border-radius: 1px;
}

/* ── HERO ────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 64px;
  position: relative;
  overflow: hidden;
  border-bottom: var(--rule-b);
  background-image: url('../images/topimg.png');
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .45);
  z-index: 0;
}


.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-en);
  font-size: clamp(80px, 16vw, 200px);
  font-weight: 900;
  letter-spacing: -.04em;
  color: #f0f0f0;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3vw;
  font-weight: 600;
  line-height: .95;
  letter-spacing: .03em;
  color: var(--white);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}

.hero.visible .hero-title {
  opacity: 1;
  transform: none;
  transition-delay: .25s;
}

.hero-sub {
  margin-top: 24px;
  font-family: var(--font-en);
  font-size: clamp(13px, 1.6vw, 17px);
  font-weight: 300;
  letter-spacing: .25em;
  color: var(--teal);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .8s ease, transform .8s ease;
}

.hero.visible .hero-sub {
  opacity: 1;
  transform: none;
  transition-delay: .4s;
}

.hero-meta {
  position: absolute;
  right: 64px;
  bottom: 72px;
  text-align: right;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: .12em;
  line-height: 2;
  color: #777;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .8s ease, transform .8s ease;
}

.hero.visible .hero-meta {
  opacity: 1;
  transform: none;
  transition-delay: .55s;
}

.hero-meta strong {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: var(--black);
  letter-spacing: -.01em;
  line-height: 1;
  margin-bottom: 6px;
  font-family: var(--font-ja);
}

/* ── SECTION COMMONS ─────────────────── */
.section {
  padding: 120px 64px;
}

.section+.section {
  border-top: var(--rule);
}

.section--dark {
  background: var(--black);
  color: var(--white);
}

.section--dark .section+.section {
  border-top-color: #222;
}

.section--off {
  background: var(--off);
}

.inner {
  max-width: 1160px;
  margin: 0 auto;
}

.s-label {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: .4em;
  color: var(--muted);
  margin-bottom: 16px;
}

.section--dark .s-label {
  color: #555;
}

.s-heading {
  font-size: clamp(40px, 6.5vw, 88px);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -.03em;
  margin-bottom: 64px;
}

.s-heading-en {
  font-family: var(--font-en);
  font-size: .95em;
  font-weight: 300;
  display: block;
  letter-spacing: -.01em;
}

.s-heading-ja {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .3em;
  margin: 16px 0 0 3px;
}



/* ── REVEAL ANIMATIONS ───────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-stagger>* {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}

.reveal-stagger.visible>*:nth-child(1) {
  opacity: 1;
  transform: none;
  transition-delay: .04s;
}

.reveal-stagger.visible>*:nth-child(2) {
  opacity: 1;
  transform: none;
  transition-delay: .12s;
}

.reveal-stagger.visible>*:nth-child(3) {
  opacity: 1;
  transform: none;
  transition-delay: .2s;
}

.reveal-stagger.visible>*:nth-child(4) {
  opacity: 1;
  transform: none;
  transition-delay: .28s;
}

.reveal-stagger.visible>*:nth-child(5) {
  opacity: 1;
  transform: none;
  transition-delay: .36s;
}

.reveal-stagger.visible>*:nth-child(6) {
  opacity: 1;
  transform: none;
  transition-delay: .44s;
}

.sched-row {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity .5s ease, transform .5s ease;
}

.sched-row.visible {
  opacity: 1;
  transform: none;
}

/* ── ABOUT ───────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}

.about-text p {
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 1.4em;
  color: #333;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.about-aside {
  position: sticky;
  top: 80px;
}

.about-stat {
  padding: 28px 0;
  border-top: var(--rule);
}

.about-stat:last-child {
  border-bottom: var(--rule);
}

.about-stat .num {
  font-family: var(--font-en);
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 300;
  line-height: 1;
  color: #e0e0e0;
  letter-spacing: -.03em;
}

.about-stat .lbl {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: .35em;
  color: var(--muted);
  margin-top: 4px;
}

/* ── NOTICE ──────────────────────────── */
.notice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: #2a2a2a;
  border: 1px solid #2a2a2a;
  margin-bottom: 48px;
}

.notice-card {
  background: #161616;
  padding: 36px 32px;
}

.notice-card h3 {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: .35em;
  color: var(--teal);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #2a2a2a;
}

.notice-card p,
.notice-card li {
  font-size: 14px;
  line-height: 1.9;
  color: #ccc;
}

.notice-card ul {
  padding-left: 1.2em;
  margin-top: 12px;
}

.notice-card li {
  margin-bottom: 4px;
}

.notice-note {
  font-size: 14px;
  line-height: 1.8;
  color: #888;
}

.notice-note p {
  margin-bottom: 1em;
}

/* ── TRADE ───────────────────────────── */
.trade-intro {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
  max-width: 760px;
  margin-bottom: 64px;
}

.trade-fees {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 56px;
}

.trade-fee {
  border: var(--rule);
  padding: 36px 32px;
  border-radius: 4px;
}

.trade-fee .lbl {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: .35em;
  color: var(--muted);
  margin-bottom: 16px;
}

.trade-fee .amount {
  font-family: var(--font-en);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1;
  color: var(--gold);
  letter-spacing: -.02em;
  margin-bottom: 12px;
}

.trade-fee .note {
  font-size: 13px;
  color: #888;
  line-height: 1.75;
}

.trade-rule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 56px;
}

.trade-rule {
  border: var(--rule);
  padding: 32px;
  border-radius: 4px;
}

.trade-rule h3 {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 300;
  letter-spacing: .3em;
  color: var(--muted);
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e8e8e8;
}

.trade-rule p,
.trade-rule li {
  font-size: 14px;
  line-height: 1.85;
  color: #444;
}

.trade-rule ul {
  padding-left: 1.2em;
  margin-top: 8px;
}

.trade-rule li {
  margin-bottom: 6px;
}

/* trade table */
.table-wrap {
  border: var(--rule);
  border-radius: 4px;
  overflow: hidden;
  overflow-x: auto;
  margin-bottom: 48px;
}

.trade-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  min-width: 640px;
}

.trade-table th {
  background: var(--off);
  color: #666;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .2em;
  padding: 14px 20px;
  text-align: left;
  white-space: nowrap;
  border-bottom: var(--rule);
}

.trade-table td {
  padding: 13px 20px;
  border-bottom: var(--rule);
  color: #333;
  white-space: nowrap;
}

.trade-table tr:last-child td {
  border-bottom: none;
}

.trade-table tr:hover td {
  background: #fffdf0;
}

.trade-btns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.trade-btn {
  display: block;
  padding: 18px 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-align: center;
  border-radius: 3px;
  transition: background .15s, color .15s, transform .1s;
}

.trade-btn:hover {
  transform: translateY(-1px);
}

.btn-outline {
  border: 1px solid #ccc;
  color: var(--black);
}

.btn-outline:hover {
  border-color: var(--black);
  background: var(--off);
}

/* ── GOODS STRIP ─────────────────────── */
.goods-strip {
  background: var(--yellow);
  border-top: var(--rule-b);
  border-bottom: var(--rule-b);
}

.goods-strip-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 40px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.goods-strip h2 {
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 900;
}

.goods-strip p {
  font-size: 14px;
  margin-top: 4px;
  color: #555;
}

.goods-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--black);
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .1em;
  padding: 14px 28px;
  border-radius: 3px;
  transition: background .15s;
}

.goods-link:hover {
  background: #333;
}

/* ── SCHEDULE ────────────────────────── */
.sched-list {
  list-style: none;
}

.sched-row {
  display: grid;
  grid-template-columns: 10% 8% 8% 1fr 20% 12%;
  align-items: center;
  border-top: 1px solid #ececec;

}

.sched-list li:last-child .sched-row {
  border-bottom: 1px solid #ececec;
}

.sched-date {
  padding: 26px 0;
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .06em;
  color: var(--black);
}

.sched-day {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  background: transparent;
  letter-spacing: 0;
  align-self: center;
  color: var(--muted);
  border: 1px solid var(--muted);
  border-radius: 50%;
}

.sched-city {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: .2em;
  color: #666;
  padding: 2px 8px 0;
  background-color: #000;
  color: #fff;
  font-weight: 700;
  text-align: center;
}

.sched-venue {
  font-size: 20px;
  font-weight: 500;
  padding: 0 20px;
  letter-spacing: 0.08em;
  color: var(--black);
}

.sched-time {
  font-family: var(--font-en);
  font-size: 13.5px;
  font-weight: 400;
  color: #555;
  white-space: nowrap;
  letter-spacing: .04em;
  padding-right: 8px;
}

.sched-eventer {
  font-family: var(--font-en);
  font-size: 12.5px;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: .08em;
  white-space: nowrap;
  padding-left: 20px;
  align-self: center;
  text-decoration: none;
  transition: color .15s;
  text-decoration: underline;
}




/* ── TICKET ──────────────────────────── */

.ticket-price-block {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 16px;
}

.ticket-currency {
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 300;
  color: #aaa;
}

.ticket-price {
  font-family: var(--font-en);
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 300;
  line-height: 1;
  color: var(--white);
  letter-spacing: -.02em;
}

.ticket-tax {
  font-size: 18px;
  font-weight: 300;
  color: #555;
  font-family: var(--font-en);
}

.ticket-yen {
  font-size: .45em;
  font-weight: 300;
  vertical-align: bottom;
  padding-left: 8px;
  padding-bottom: 5px;
}

.ticket-text p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 1.8em;
  color: #ccc;
}


.ticket-notes {
  font-size: 13px;
  color: #999;
  line-height: 1.8;
}

.ticket-info {
  margin: 56px 0 5px;
}

.ticket-info-row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0 40px;
  align-items: baseline;
  padding: 22px 0;
  border-top: 1px solid #2a2a2a;
}

.ticket-info dt {
  font-family: var(--font-ja);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #777;
}

.ticket-info dd {
  font-size: 15px;
  line-height: 1.8;
  color: #ccc;
}

.ticket-info dd .note {
  font-size: 12.5px;
  color: #999;
}

.ticket-info dd .generalsale {
  font-size: 18.5px;
}

.ticket-info h4 {
  color: #fff;
}

.ticket-info h4:last-of-type {
  margin-top: 20px;
}

.ticket-ended {
  font-size: 12px;
  color: #777;
  margin-left: 12px;
}


.ticket-fc {
  border-top: 1px solid #2a2a2a;
  padding-top: 48px;
}

.ticket-fc>h3 {
  font-family: var(--font-ja);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--white);
  margin-bottom: 24px;
}

.ticket-fc h3,
.ticket-other h3 {
  border-left: 3px solid #fff;
  padding-left: 15px;
}

.fc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 36px 0 26px;
}

.fc-card {
  background: #1a1a1a;
  padding: 24px;
  margin-right: 20px;
  border: 1px solid #2a2a2a;
}

.fc-card:last-of-type {
  margin-right: 0px;
}

.fc-card h4 {
  font-family: var(--font-ja);
  color: var(--gold);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .05em;
  margin-bottom: 12px;
}

.fc-card h5 {
  color: #fff;
  font-size: 15px;
}

.fc-card h5:last-of-type {
  margin-top: 10px;
}

.fc-card p {
  font-size: 15px;
  line-height: 1.9;
  color: #ccc;
}

.fc-card .device {
  font-size: 11px;
  margin: -.3vw 0 -.25vw;
}

.fc-card .url {
  font-size: 13px;
  margin-bottom: 1vw;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  padding-bottom: 1vw;
}

.ticket-other {
  margin-top: 48px;
}

.ticket-other>h3 {
  font-family: var(--font-ja);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--white);
  margin-bottom: 24px;
}

.ticket-other-item {
  border-top: 1px solid #2a2a2a;
  padding: 20px 0;
  font-size: 16px;
  line-height: 1.9;
  color: #fff;
}

.ticket-other-item h4 {
  font-family: var(--font-ja);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--gold);
}

.ticket-other-item strong {
  display: block;
  color: var(--white);
  margin-bottom: 4px;
  font-weight: 700;
}

.ticket-other-item span {
  display: block;
  font-size: 13px;
  color: #ccc;
  line-height: 1.5;
  margin-top: .5rem;
}

.ticket-other-item span.close {
  display: inline;
  color: #d80000;
}

/* ── CONTACT ─────────────────────────── */
.contact-box {
  border: var(--rule);
  border-radius: 4px;
  padding: 48px;
  background: var(--off);
  margin-bottom: 48px;
}

.contact-box p {
  font-size: 15px;
  line-height: 1.95;
  color: #444;
}

.contact-box a.faq {
  color: #444;
}

.contact-box .email {
  font-size: 12px;
  color: var(--muted);
  padding-left: 10px;
  letter-spacing: 0.1em;
}

.contact-mail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  background: var(--black);
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  padding: 14px 24px;
  border-radius: 3px;
  transition: background .15s;
  text-decoration: none;
}

.contact-mail:hover {
  background: var(--gold);
}

.contact-mail-note {
  font-size: 13px;
  color: #999;
  line-height: 2;
  margin-top: 16px;
}

.promoter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 1px;
  background: #e0e0e0;
  border: var(--rule);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 20px;
}

.promoter {
  background: var(--white);
  padding: 24px;
}

.promoter h3 {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: 10px;
}

.promoter a {
  font-weight: 700;
  font-size: 14px;
  display: block;
}

.promoter a:hover {
  color: var(--gold);
}

.promoter p {
  font-size: 12px;
  color: #888;
  line-height: 1.9;
  margin-top: 6px;
}


/* ── FOOTER ──────────────────────────── */
footer {
  border-top: var(--rule-b);
  padding: 32px 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-name {
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .15em;
}

.footer-copy {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 300;
  color: #bbb;
  letter-spacing: .08em;
}

/* ── ABOUT INFO CARDS ────────────────── */
.about-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: 88px;
  align-self: start;
}

/*.info-card {
  display: grid;
  grid-template-columns: 28px 1fr 20px;
  grid-template-rows: auto auto;
  gap: 0 14px;
  align-items: start;
  padding: 20px 20px 20px 16px;
  background: var(--off);
  border: none;
  border-left: 2px solid transparent;
  text-align: left;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
  width: 100%;
}*/

.info-card {
  display: grid;
  grid-template-columns: 1fr 20px;
  grid-template-rows: auto auto;
  gap: 0 12px;
  align-items: start;
  padding: 18px 20px;
  background: transparent;
  border: 1.5px solid var(--black);
  border-radius: 8px;
  text-align: left;
  cursor: pointer;
  transition: border-color .5s ease, background .2s ease;
  width: 100%;
}

.info-card--inactive {
  cursor: default;
  pointer-events: none;
}

.info-card:hover {
  border-color: var(--gold);
}

.info-card-num {
  display: none;
}

.info-card-title {
  grid-column: 1;
  grid-row: 1;
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.5;
  letter-spacing: .02em;
}

.info-card-desc {
  grid-column: 1;
  grid-row: 2;
  font-size: 12px;
  color: #888;
  line-height: 1.7;
  margin-top: 6px;
}

.info-card-arrow {
  grid-column: 2;
  grid-row: 1;
  font-size: 14px;
  color: #bbb;
  padding-top: 2px;
  transition: transform .2s ease, color .2s ease;
}

.info-card:hover .info-card-arrow {
  transform: translateX(3px);
  color: var(--gold);
}

/* ── MODAL ───────────────────────────── */
#modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0, 0, 0, .55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

#modal-overlay.active {
  display: flex;
}

.modal {
  display: none;
  background: var(--white);
  width: 100%;
  max-width: 640px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  animation: modalIn .25s ease forwards;
}

.modal.active {
  display: block;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-size: 18px;
  color: #aaa;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color .15s;
}

.modal-close:hover {
  color: var(--black);
}

.modal-body {
  padding: 48px 48px 40px;
}

.modal-body h3 {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -.01em;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e8e8e8;
}

.modal-body h4 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  margin: 24px 0 8px;
}

.modal-body p {
  font-size: 14px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 12px;
}

/* ── ACCORDION ───────────────────────── */
.accordion {
  margin-top: 32px;
  border-top: var(--rule);
}

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  background: none;
  border: none;
  border-bottom: var(--rule);
  font-family: var(--font-ja);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .03em;
  color: var(--black);
  cursor: pointer;
  text-align: left;
  gap: 12px;
  transition: color .15s;
}



.accordion-icon {
  font-size: 18px;
  font-weight: 300;
  flex-shrink: 0;
  line-height: 1;
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}

.accordion-sub {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #888;
  line-height: 1.6;
  margin-top: 10px;
  letter-spacing: .02em;
}

.accordion-trigger:hover .accordion-sub {
  color: #aaa;
}

.accordion-icon {
  font-size: 18px;
  font-weight: 300;
  flex-shrink: 0;
  line-height: 1;
}

.accordion-content {
  padding: 24px 0 8px;
}

.accordion-content h4 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .06em;
  margin: 20px 0 8px;
}

.accordion-content h4:first-child {
  margin-top: 0;
}

.accordion-content p {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
  margin: 12px 0;
}

.accordion-content .pledge {
  font-size: 16px;
  margin-top: 30px;
  font-weight: 500;
  color: #d80000;
}

.accordion-content-wrap {
  background: var(--off);
  padding: 20px;
  font-weight: 700;
}

.accordion-content-wrap span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #888;
  padding-top: 3px;
  margin-bottom: 8px;
}

.accordion-content-wrap small {
  font-weight: normal;
}

.accordion-content a {
  text-decoration: underline;
}


@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  #loader {
    display: none;
  }

  .hero-eyebrow,
  .hero-title,
  .hero-sub,
  .hero-meta,
  .hero-scroll-hint,
  .reveal,
  .reveal-stagger>*,
  .sched-row {
    opacity: 1;
    transform: none;
  }
}