/* ============================================
   CSS Variables
   ============================================ */
:root {
  --c-black: #000000;
  --c-white: #ffffff;
  --c-bg2: #1f1f1f;
  --c-bg3: #30291d;
  --c-footer: #3a3a3a;
  --c-card: #252525;
  --c-gold: #b68d2e;
  --c-yellow-gold: #ecd02d;
  --c-gold-line: #9d7e29;
  --c-link: #987b39;
  --c-hero-ja: #c2c2c2;
  --c-prime: #987b39;
  --c-open: #901d21;
  --c-base: #1360c8;
  --c-gray: #7E7E7E;
  --c-blue: #4a9eff;
  --c-dim: #5a5a5a;
  --c-border-card: #514E47;
  --f-en: 'Bebas Neue', sans-serif;
  --f-ja: 'Noto Sans JP', sans-serif;
}

/* ============================================
   Base
   ============================================ */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: var(--f-ja);
  font-size: clamp(1.6rem, 1.7vw, 1.7rem);
  line-height: 1.7;
  color: var(--c-white);
  background-color: var(--c-black);
  position: relative;
  overflow-x: hidden;
  font-feature-settings: "palt"1;
  letter-spacing: 0;
  overflow-wrap: break-word;
  -webkit-text-size-adjust: 100%;
}

.page {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

a {
  transition: opacity 0.2s;
}

@media (hover: hover) {
  a:hover {
    opacity: 0.5;
  }
}

a:active {
  opacity: 0.5;
}

/* ============================================
   Layout
   ============================================ */
.l-container {
  width: 100%;
  padding: 0 0.8rem;
}

/* ============================================
   Common: Section Title
   ============================================ */
.section-title {
  font-family: var(--f-en);
  font-size: 7.2rem;
  line-height: .8;
  /* 外側ストローク：stroke(2px)を先に描き、fillで内側1pxを覆う */
  color: var(--c-black);
  -webkit-text-stroke: 2px var(--c-gold);
  paint-order: stroke fill;
  padding: 0.8rem;
  margin-bottom: 2.4rem;
  border-bottom: 1px solid var(--c-gold-line);
}

/* NEXT EVENT セクションは背景が #1f1f1f なので fill を合わせる */
.next-event .section-title {
  color: var(--c-bg2);
}

/* ============================================
   Hero
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100svh;
  overflow: hidden;
}

.hero__media {
  width: 100%;
  height: 100%;
}

.hero__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__video--pc {
  display: none;
}

/* ============================================
   Hero Intro
   ============================================ */
.hero-intro {
  padding: 4.8rem 0;
  text-align: center;
}

.hero-intro__lead-en {
  font-family: var(--f-en);
  font-size: clamp(11.2rem, 22vw, 15rem);
  line-height: 0.9;
  color: transparent;
  -webkit-text-stroke: 1px var(--c-gold);
}

.hero-intro__sub-en {
  font-family: var(--f-en);
  font-size: 1.8rem;
  color: #7b6229;
  letter-spacing: 0.04em;
  transform: translateY(-8px);
}

.hero-intro__lead-ja {
  font-size: clamp(3.2rem, 4vw, 4.8rem);
  font-weight: 700;
  color: var(--c-hero-ja);
  line-height: 1.3;
  margin-top: 2.4rem;
}

.hero-intro__sub-ja {
  font-size: clamp(2.4rem, 2.8vw, 3.2rem);
  font-weight: 700;
  color: var(--c-hero-ja);
}

.hero-intro__about-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background-color: var(--c-link);
  color: var(--c-black);
  font-family: var(--f-en);
  font-size: 2.4rem;
  padding: 0.2rem 3.2rem 0.1rem 2.4rem;
  border-radius: 0.4rem;
  margin-top: 3.2rem;
  line-height: 1;
}

/* white SVG → gold tint (#987b39) */
.hero-intro__about-link img {
  width: 1.2rem;
  height: auto;
  filter: brightness(0);
}

/* ============================================
   Next Event
   ============================================ */
.next-event {
  background-color: var(--c-bg2);
  padding: 4.8rem 0;
}

.next-event__image img {
  width: 100%;
  display: block;
}

/* ============================================
   CTA Links
   ============================================ */
.cta-links {
  background-color: var(--c-bg3);
  padding: 6.4rem 0 8rem;
}

.cta-links__grid {
  display: flex;
  flex-direction: column;
  gap: 4.0rem;
}

.cta-card {
  display: block;
}

.cta-card__text {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.8rem;
}

.cta-card__link {
  width: 88%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  font-family: var(--f-en);
  font-size: 3.2rem;
  padding: 1.2rem;
  border: 1px solid;
  margin: 0 auto;
}

.cta-card__link::before {
  content: "→";
  font-family: inherit;
  font-size: 1.6rem;
}

.cta-card--gold .cta-card__link {
  color: var(--c-gold);
  border-color: var(--c-gold);
}

.cta-card--silver .cta-card__link {
  color: var(--c-hero-ja);
  border-color: rgba(194, 194, 194, 0.5);
}

/* ============================================
   Fixed Entry Bar (予選ページ フッター固定)
   ============================================ */
.fixed-entry-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgb(48 41 29 / 88%);
  padding: 1.2rem .8rem .8rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .8rem;
}

.fixed-entry-bar__heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-white);
  letter-spacing: .08em;
}

.fixed-entry-bar__buttons {
  display: flex;
  gap: .8rem;
  width: 100%;
  max-width: 560px;
}

.fixed-entry-bar__link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 0;
  font-family: var(--f-en);
  font-size: 3.2rem;
  color: var(--c-white);
  text-shadow: 1px 1px 1px rgb(0 0 0 / 80%);
  border: 1px solid #93804b;
  background: linear-gradient(135deg, #6f5926 0.000%, #997f43 50.000%, #715a27 100.000%);
}

.fixed-entry-bar__link--open {
  border-color: #a03030;
  background: linear-gradient(135deg, #7a1a1a 0%, #b22a2a 50%, #7a1a1a 100%);
}

.fixed-entry-bar__link--base {
  border-color: #1a4a7a;
  background: linear-gradient(135deg, #0d2d55 0%, #1d5d90 50%, #0d2d55 100%);
}

/* preliminary-page のフッターに固定バー分の余白 */
body:has(.preliminary-page) .footer {
  padding-bottom: 14rem;
}

/* ============================================
   News
   ============================================ */
.news {
  padding: 4.8rem 0;
}

.news__list {}

.news-card {
  padding: 2.4rem 0.8rem 3.2rem;
  border-bottom: 1px solid #474747;
  display: block;
}

.news-card__date {
  display: block;
  font-family: var(--f-en);
  font-size: 2rem;
  color: var(--c-gold-line);
  letter-spacing: 0.02em;
}

.news-card__title {
  font-size: 1.8rem;
  line-height: 1.5;
}

.news__more {
  display: flex;
  justify-content: flex-end;
  margin-top: 2.4rem;
}

.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background-color: var(--c-link);
  color: var(--c-black);
  font-family: var(--f-en);
  font-size: 2.4rem;
  padding: 0.3rem 3.2rem 0.1rem 2.4rem;
  border-radius: 0.4rem;
  line-height: 1;
}

.btn-more img {
  width: 1.2rem;
  height: auto;
  filter: brightness(0);
}

/* ============================================
   Category
   ============================================ */
.category {
  padding: 4.8rem 0;
}

.category__list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.category-card {
  display: flex;
  flex-direction: row;
  background-color: var(--c-card);
  border: 1px solid #6D5620;
}

.category-card__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 11.2rem;
  flex-shrink: 0;
  padding: 1.6rem;
}

.category-card__logo img {
  width: 100%;
  max-width: 8.0rem;
  height: auto;
  display: block;
}

.category-card__body {
  display: flex;
  flex-direction: column;
  padding: 1.6rem;
  flex: 1;
}

.category-card__name {
  font-family: var(--f-en);
  font-size: 6.4rem;
  line-height: 1;
}

.category-card--prime .category-card__name {
  color: var(--c-prime);
}

.category-card--open .category-card__name {
  color: var(--c-open);
}

.category-card--base .category-card__name {
  color: var(--c-base);
}

.category-card__catch {
  font-size: 1.5rem;
  line-height: 1.4;
}

.category-card__desc {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.3;
}

/* → MORE ボタン */
.category-card__more {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  align-self: flex-start;
  background-color: var(--c-link);
  color: var(--c-black);
  font-family: var(--f-en);
  font-size: 2rem;
  padding: 0.2rem 3.2rem 0.1rem 2.4rem;
  border-radius: 0.4rem;
  line-height: 1;
  margin-top: 1.6rem;
}

.category-card__more img {
  width: 1.2rem;
  height: auto;
  filter: brightness(0);
}

/* ============================================
   Schedule
   ============================================ */
.schedule {
  padding: 4.8rem 0;
}

.schedule__list {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.schedule-item {
  display: grid;
  grid-template-columns: 10.4rem 1fr 2.4rem;
  grid-template-rows: auto auto;
  grid-template-areas:
    "date label arrow"
    "date title arrow";
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: .8rem 0;
}

.schedule-item__date {
  grid-area: date;
  font-family: var(--f-en);
  font-size: 2rem;
  letter-spacing: 0.03em;
  border-right: 2px solid #7C7C7C;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: .4rem 0;
  white-space: nowrap;
  line-height: 1.3;
}

.schedule-item__date span {
  font-size: 4rem;
}

.schedule-item__labels {
  grid-area: label;
  align-self: end;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 1.6rem 0 0.4rem 1.6rem;
}

.schedule-item__label {
  display: inline-flex;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.2rem 0.8rem;
  border-radius: .2rem;
}

.schedule-item__label--prime {
  background-color: var(--c-prime);
}

.schedule-item__label--open {
  background-color: var(--c-open);
}

.schedule-item__label--base {
  background-color: var(--c-base);
}

.schedule-item__title {
  grid-area: title;
  align-self: start;
  font-size: 1.6rem;
  line-height: 1.4;
  padding: 0.4rem 1.6rem 1.6rem 1.6rem;
}

.schedule-item__arrow {
  grid-area: arrow;
  background-color: var(--c-link);
  position: relative;
  font-size: 0;
}

.schedule-item__arrow::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../img/icon-arrow.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: 1.2rem;
  filter: brightness(0);
}

/* ============================================
   Winners
   ============================================ */
.winners {
  padding: 4.8rem 0;
}

.winners__list {}

.winner-card {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.winner-card__link {
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
  padding: 1.2rem 0;
}

.winner-card__thumb {
  flex-shrink: 0;
  width: 40%;
}

.winner-card__thumb img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.winner-card__body {
  flex: 1;
  padding-top: 0.4rem;
}

.winner-card__date {
  display: block;
  font-family: var(--f-en);
  font-size: 2rem;
  color: var(--c-gold);
  letter-spacing: 0.02em;
  line-height: 1;
}

.winner-card__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--c-white);
  line-height: 1.4;
}

.winners__more {
  display: flex;
  justify-content: flex-end;
  margin-top: 2.4rem;
}


/* ============================================
   Footer
   ============================================ */
.footer {
  background-color: var(--c-footer);
  padding: 4.8rem 0 1.2rem;
  margin-top: 4.8rem;
}

.footer .l-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__logo {
  margin-bottom: 4rem;
}

.footer__logo img {
  width: 10rem;
  height: auto;
  display: block;
}

.footer__sns-list {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}

.footer__sns-item a {
  display: flex;
  align-items: center;
}

.footer__sns-item img {
  width: 3.2rem;
  height: 3.2rem;
}

.footer__copyright {
  margin-top: 3.2rem;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
}

/* ============================================
   Header
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  height: 5.6rem;
  background-color: var(--c-black);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  height: 100%;
  padding: 0 .8rem;
}

.header__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.header__logo img {
  height: 3.6rem;
  width: auto;
  display: block;
}

.header__hamburger {
  -webkit-appearance: none;
  appearance: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.6rem;
  width: 4.8rem;
  height: 4.8rem;
}

.header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--c-link);
  transition: transform 0.3s ease, opacity 0.3s ease;
  flex-shrink: 0;
}

/* ハンバーガー → × アニメーション */
.header__hamburger.is-active span:nth-child(1) {
  transform: translateY(0.75rem) rotate(45deg);
}

.header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.header__hamburger.is-active span:nth-child(3) {
  transform: translateY(-0.75rem) rotate(-45deg);
}

/* ============================================
   Drawer
   ============================================ */
.drawer {
  position: fixed;
  top: 5.6rem;
  right: 0;
  width: 100%;
  height: calc(100svh - 5.6rem);
  background-color: var(--c-card);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.drawer.is-open {
  transform: translateX(0);
}

.drawer__header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 5.6rem;
  flex-shrink: 0;
  background-color: var(--c-black);
}

.drawer__logo img {
  height: 3.6rem;
  width: auto;
  display: block;
}

/* × ボタン（CSS で2本線を交差） */
.drawer__close {
  position: absolute;
  right: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
  width: 3.2rem;
  height: 3.2rem;
}

.drawer__close::before,
.drawer__close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--c-gold);
  border-radius: 1px;
}

.drawer__close::before {
  transform: translateY(-50%) rotate(45deg);
}

.drawer__close::after {
  transform: translateY(-50%) rotate(-45deg);
}

.drawer__nav {
  flex: 1;
  overflow-y: auto;
  padding: 2.4rem 0;
}

.drawer__link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.2rem;
  padding: 0.6rem 2.4rem;
  font-family: var(--f-en);
  font-size: clamp(4.8rem, 11vw, 5.6rem);
  color: var(--c-link);
  line-height: 1;
}

.drawer__link::after {
  content: '';
  display: block;
  width: 3.2rem;
  height: 1px;
  background-color: var(--c-link);
  flex-shrink: 0;
}

.drawer__sns-list {
  display: flex;
  justify-content: flex-end;
  gap: 2.4rem;
  padding: 2.4rem;
  flex-shrink: 0;
}

.drawer__sns-list a {
  display: flex;
  align-items: center;
}

.drawer__sns-list img {
  width: 3.2rem;
  height: 3.2rem;
}

/* Overlay */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* ============================================
   Sub Page
   ============================================ */
.sub-page {
  padding-top: 4rem;
}

/* ============================================
   404
   ============================================ */
.p-404 {
  padding: 4.8rem 0 8rem;
}

.p-404__body {
  text-align: center;
  padding: 4rem 0;
}

.p-404__message {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1.6rem;
}

.p-404__sub {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 4rem;
  color: var(--c-text-sub, #aaa);
}

.p-404__btn {
  display: inline-block;
  padding: 1.6rem 4.8rem;
  border: 1px solid var(--c-gold-line);
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
  font-weight: 600;
}

.p-404__btn:hover {
  background-color: var(--c-gold-line);
  color: var(--c-black);
}

/* ============================================
   News Archive
   ============================================ */
.news-archive {
  padding: 4.8rem 0;
}

/* カテゴリーフィルター */
.news-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 3.2rem;
}

.news-filter__btn {
  font-family: var(--f-en);
  font-size: 1.8rem;
  padding: 0.6rem 1.6rem 0.3rem;
  background-color: var(--c-gray);
  color: var(--c-white);
  line-height: 1;
  border-radius: 0.4rem;
}

.news-filter__btn.is-active {
  background-color: var(--c-link);
}

/* ページャー */
.pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 4rem;
  padding-bottom: 1.6rem;
}

.pager__item,
.pager__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-family: var(--f-en);
  font-size: 2rem;
  color: var(--c-white);
  line-height: 1;
}

.pager__item.is-current {
  background-color: var(--c-link);
  border-color: var(--c-link);
  color: var(--c-black);
}

/* ============================================
   FAQ
   ============================================ */
.faq-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 3.2rem;
}

.faq-filter__btn {
  font-size: 1.4rem;
  padding: 0.6rem 1.6rem;
  background-color: var(--c-gray);
  color: var(--c-white);
  line-height: 1;
  border-radius: 0.4rem;
}

.faq-filter__btn.is-active {
  background-color: var(--c-link);
}

.faq {
  padding: 4.8rem 0;
}

.faq-panel {
  display: none;
}

.faq-panel.is-active {
  display: block;
}

.faq__list {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.faq-item {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding: 2.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.faq-item__q,
.faq-item__a {
  display: grid;
  grid-template-columns: 3.2rem 1fr;
  gap: 1.2rem;
  align-items: start;
  font-size: clamp(1.6rem, 1.65vw, 1.7rem);
  line-height: 1.7;
}

.faq-item__q::before {
  content: 'Q';
  font-family: var(--f-en);
  font-size: 3.6rem;
  line-height: 1;
  color: var(--c-gold);
}

.faq-item__a::before {
  content: 'A';
  font-family: var(--f-en);
  font-size: 3.6rem;
  line-height: 1;
  color: var(--c-white);
}

.faq-item__q {
  color: var(--c-gold);
  font-weight: 700;
}

.faq-item__a a {
  color: var(--c-blue);
}

/* ============================================
   Entry Guide
   ============================================ */
.guide {
  padding: 4.8rem 0;
}

.guide-step {
  display: grid;
  grid-template-columns: 5.6rem 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.guide-step__left {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.guide-step:not(:last-child) .guide-step__left::after {
  content: '';
  flex: 1;
  width: 1px;
  min-height: 2.4rem;
  background-color: var(--c-dim);
  margin-top: 0.8rem;
}

.guide-step__num {
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 50%;
  background-color: #575247;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.guide-step__num span {
  font-family: var(--f-en);
  font-size: 3.2rem;
  line-height: 1;
  padding-top: 0.4rem;
  /* Bebas Neue の上部余白補正 */
}

.guide-step__body {
  padding-bottom: 4rem;
}

.guide-step:last-child .guide-step__body {
  padding-bottom: 0;
}

.guide-step__title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  line-height: 1.4;
  padding-top: 1.2rem;
}

.guide-step__text {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 1.6rem;
}

.guide-step__text--red {
  color: #c20303;
}

.guide-step__list {
  margin: 1.2rem 0 1.6rem;
}

.guide-step__list li {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.guide-step__link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background-color: var(--c-link);
  color: var(--c-black);
  font-size: 1.5rem;
  font-weight: 700;
  padding: 0.4rem 3.2rem 0.4rem 2.4rem;
  line-height: 1.45;
  border-radius: 0.4rem;
}

/* ============================================
   Category Page
   ============================================ */
.category-page {
  padding: 4.8rem 0 8rem;
}

/* --- カテゴリーブロック（PRIME / OPEN / BASE） --- */
.category-block {
  padding-bottom: 6.4rem;
  margin-bottom: 6.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.category-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.category-block__logo {
  text-align: center;
  margin-bottom: 1.2rem;
}

.category-block__logo img {
  height: 6.4rem;
  width: auto;
  display: inline-block;
}

.category-block__name {
  font-family: var(--f-en);
  font-size: clamp(9.6rem, 28vw, 14.4rem);
  line-height: 0.85;
  color: var(--c-gold);
  letter-spacing: -0.01em;
  text-align: center;
}

.category-block__name--open {
  color: var(--c-open);
}

.category-block__name--base {
  color: var(--c-base);
}

.category-block__sub {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-top: 0.8rem;
  margin-bottom: 1.6rem;
}

.category-tags {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  margin-bottom: 3.2rem;
}

.category-tag {
  font-family: var(--f-en);
  font-size: 2rem;
  padding: 0.4rem 2.4rem 0.2rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

/* --- イベントカード（TEAM / TEAM OFFLINE / etc.） --- */
.category-events {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.category-page .category-card {
  display: flex;
  flex-direction: column;
  background-color: #171717;
  border: 1px solid var(--c-border-card);
  padding: 3.2rem 2.4rem 4.8rem;
}

.category-card__title {
  font-family: var(--f-en);
  font-size: clamp(4.8rem, 9vw, 6.4rem);
  line-height: 1;
  color: var(--c-gold);
  text-align: center;
  margin-bottom: 2.4rem;
}

.category-card__title--open,
#open .category-card__title {
  color: var(--c-open);
}

#open .category-card__heading {
  color: var(--c-open);
}

#base .category-card__heading {
  color: var(--c-base);
}

.category-card__title--base {
  color: var(--c-base);
}

.category-card__section {
  margin-bottom: 4rem;
}

.category-card__section:last-child {
  margin-bottom: 0;
}

.category-page .category-card__section--final {
  background: rgb(100 90 53 / 41%);
  border: 1px solid rgb(140 115 58);
}

.category-card__heading {
  font-size: clamp(1.8rem, 2vw, 2.2rem);
  font-weight: 700;
  color: var(--c-gold);
  text-align: center;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--c-border-card);
  margin-bottom: 2.4rem;
}

.category-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.category-card__list li {
  font-size: clamp(1.5rem, 1.6vw, 1.7rem);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

.category-card__note {
  font-size: clamp(1.4rem, 1.5vw, 1.6rem);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-top: 0.8rem;
}

/* ============================================
   About
   ============================================ */
.about {
  padding: 4.8rem 0;
}

.about-category {
  margin-bottom: 4rem;
}

.about-category img {
  width: 100%;
  height: auto;
  display: block;
}

.about-info__item {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.about-info__item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.about-info__title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--c-gold);
  margin-bottom: 1.2rem;
  line-height: 1.4;
}

.about-info__list {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-bottom: 1.6rem;
}

.about-info__list li {
  font-size: 1.5rem;
  line-height: 1.7;
}

.about-info__text {
  font-size: 1.5rem;
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

/* ============================================
   Winners Single (Custom Post)
   ============================================ */
.winners-post {
  padding: 4.8rem 0;
}

.winners-post__header {
  padding-top: 2rem;
}

.winners-post__date {
  display: block;
  font-family: var(--f-en);
  font-size: 2.4rem;
  line-height: 1;
  padding: 0.4rem;
  margin-bottom: 1.6rem;
  border-bottom: 3px solid var(--c-gold-line);
}

.winners-post__event {
  font-size: clamp(3.2rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 2rem;
}

.winners-post__entries {
  padding: 2rem 0;
}

/* 受賞エントリー */
.winners-post__entries>div {
  padding-bottom: 6.4rem;
  margin-bottom: 6.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.winners-post__entries>div:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.winners-post__entries h1 {
  font-size: clamp(2rem, 2.4vw, 2.8rem);
  font-weight: 700;
  padding: 0.4rem;
  margin-bottom: 2.4rem;
}


/* 賞名 */
.winners-post__entries h2 {
  font-size: clamp(2.6rem, 2.8vw, 3.2rem);
  font-weight: 700;
  padding: 0.4rem;
  border-bottom: 3px solid var(--c-gold-line);
  margin-bottom: 2.4rem;
}

/* 公演写真 */
.winners-post__entries>div>div {
  margin-bottom: 2.4rem;
}

.winners-post__entries>div>div>img {
  width: 100%;
  height: auto;
  display: block;
}

/* チーム名 */
.winners-post__entries h3 {
  font-size: clamp(2.4rem, 2.6vw, 2.8rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1.6rem;
  padding: 0.4rem;
  color: var(--c-yellow-gold);
}

/* コメント */
.winners-post__entries p {
  line-height: 1.8;
  margin-bottom: 3.2rem;
}

/* コレオグラファーラベル */
.winners-post__entries h4 {
  font-weight: 700;
  margin-bottom: 1.2rem;
}

/* ポートレート */
.winners-post__entries figure {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.8rem;
  width: 10.4rem;
}

.winners-post__entries figure img {
  width: 10.4rem;
  height: 10.4rem;
  object-fit: cover;
  display: block;
}

.winners-post__entries figcaption {
  font-size: 1.6rem;
  line-height: 1;
}

/* ============================================
   News Single (Post)
   ============================================ */
.post {
  padding: 4.8rem 0;
}

.post__date {
  display: block;
  font-family: var(--f-en);
  font-size: 2.4rem;
  color: var(--c-link);
}

.post__title {
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 3.2rem;
}

.post__eyecatch {
  margin-bottom: 4rem;
}

.post__eyecatch img {
  width: 100%;
  height: auto;
  display: block;
}

.post__body {
  padding-bottom: 6.4rem;
}

.post__body p {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 1.6rem;
}

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

/* Latest News */
.latest-news {
  padding: 4.8rem 0;
}

/* ============================================
   PC Breakpoint (768px+)
   ============================================ */
@media (min-width: 768px) {
  .header {
    height: 6.4rem;
  }

  .header__logo img {
    height: 4.8rem;
  }

  .l-container {
    max-width: 640px;
    margin: 0 auto;
    padding: 0;
  }

  /* Hero: PC 動画に切り替え */
  .hero__video--sp {
    display: none;
  }

  .hero__video--pc {
    display: block;
  }

  /* Hero Intro */
  .hero-intro__lead-en {
    font-size: 15rem;
  }

  .hero-intro__lead-ja {
    font-size: 4.0rem;
  }

  .hero-intro__sub-ja {
    font-size: 2.0rem;
  }

  /* CTA: 2カラム */
  .cta-links__grid {
    flex-direction: row;
    gap: 3.2rem;
  }

  .cta-card {
    flex: 1;
  }

  /* Category: ロゴ幅を広げる */
  .category-card__logo {
    width: 14.4rem;
  }

  .category-card__name {
    font-size: 6.4rem;
  }

  /* Schedule: カラム幅調整 */
  .schedule-item {
    grid-template-columns: 12.0rem 1fr 2.4rem;
    padding: 1.2rem 0;
  }

  .schedule-item__date {
    font-size: 1.6rem;
  }

  /* Winners */
  .winner-card__title {
    font-size: 1.8rem;
  }
}

/* ============================================
   Final Page
   ============================================ */
.final-page {
  padding: 4.8rem 0 8rem;
}

.final-eyecatch {
  padding: 0 0.8rem;
  margin-bottom: 4rem;
}

.final-eyecatch img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- Eyecatch Slider --- */
.eyecatch-slider {
  position: relative;
  overflow: hidden;
  padding-bottom: 3rem;
  margin-bottom: 5rem;
}

.eyecatch-slider__track {
  display: flex;
  transition: transform 0.4s ease;
}

.eyecatch-slider__slide {
  min-width: 100%;
}

.eyecatch-slider__slide img {
  width: 100%;
  height: auto;
  display: block;
}


.eyecatch-slider__dots {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 1.2rem;
}

.eyecatch-slider__dot {
  width: .8rem;
  height: .8rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s;
}

.eyecatch-slider__dot.is-active {
  background: #fff;
}

.final-header {
  margin-bottom: 4rem;
}

.final-header__date {
  font-family: var(--f-en);
  font-size: clamp(6.4rem, 14vw, 9.6rem);
  line-height: 1;
}

.final-header__title {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.6rem;
}

.final-tags {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-bottom: 3.2rem;
}

.final-tag {
  font-family: var(--f-en);
  font-size: 2rem;
  padding: 0.2rem 1.6rem;
  line-height: 1;
  border-radius: .2rem;
}

.final-tag--prime {
  background-color: var(--c-prime);
}

.final-tag--open {
  background-color: var(--c-open);
}

.final-tag--base {
  background-color: var(--c-base);
}

.final-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 4.8rem;
}

.final-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.final-detail__block {
  margin-bottom: 3.2rem;
}

.final-detail__block:last-child {
  margin-bottom: 0;
}

.final-detail__heading {
  font-size: 1.6rem;
  font-weight: 700;
  background-color: #463F2F;
  padding: 0.8rem 1.2rem;
  margin-bottom: 1.6rem;
}

.final-detail__body p {
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.final-detail__body p:last-child {
  margin-bottom: 0;
}

.venue-address {
  font-size: clamp(1.4rem, 1.5vw, 1.5rem);
}

.text-caution {
  color: #f00;
}

.final-detail__block a,
.post__body a,
.winners-post__entries a {
  color: var(--c-blue);
}

.final-detail__block h4 {
  font-size: clamp(1.7rem, 1.8vw, 1.8rem);
  font-weight: 700;
  padding: 0.8rem 0;
  margin-bottom: 1.6rem;
  border-bottom: solid 1px var(--c-gold-line);
}

.final-detail__block ul {
  margin-bottom: 1.6rem;
}


/* ============================================
   Preliminary Page
   ============================================ */
.preliminary-page {
  padding: 4.8rem 0 8rem;
}

/* GoogleMapリンク */
/* Googleマップ埋め込み */
.prelim-map {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-top: 1.2rem;
}

.prelim-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* 審査員グリッド */
.prelim-judges {
  display: flex;
  flex-direction: column;
}

.prelim-judge__trigger {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1.2rem .8rem;
  cursor: pointer;
  text-align: left;
  color: inherit;
}

.prelim-judge__trigger--static {
  cursor: default;
}

.prelim-judge__photo {
  width: 7.2rem;
  height: 7.2rem;
  object-fit: cover;
  object-position: top;
  flex-shrink: 0;
}

.prelim-judge__photo--empty {
  display: inline-block;
  width: 5.6rem;
  height: 5.6rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
}

.prelim-judge__name {
  flex: 1;
  font-size: 1.6rem;
  font-weight: 700;
}

.prelim-judge__arrow {
  width: 1rem;
  height: 1rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-right: 0.4rem;
}

.prelim-judge__trigger[aria-expanded="true"] .prelim-judge__arrow {
  transform: rotate(225deg);
}

.prelim-judge__bio {
  padding: 1.2rem 0 2.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.prelim-judge__bio p {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 2.4rem;
}

.prelim-judge__sns {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: inherit;
}

.prelim-judge__sns:hover {
  opacity: 1;
}

/* 募集要項 見出し */
.prelim-section-title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 4.8rem;
  margin-bottom: 2.4rem;
  padding: 0.8rem;
  border-bottom: 3px solid var(--c-gold-line);
}

/* タブ */
.prelim-tabs {
  display: flex;
  margin-bottom: 0;
}

.prelim-tab__btn {
  flex: 1;
  font-family: var(--f-en);
  font-size: 2.4rem;
  padding: 1.8rem 0;
  background-color: var(--c-dim);
  line-height: 1;
  text-align: center;
  border-right: 1px solid rgba(0, 0, 0, 0.3);
}

.prelim-tab__btn:last-child {
  border-right: none;
}

.prelim-tab__btn.is-active {
  background-color: var(--c-prime);
}

.prelim-panel {
  display: none;
  padding-top: 3.2rem;
}

.prelim-panel.is-active {
  display: block;
}

/* CTA */
.prelim-cta {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-top: 4.8rem;
}

.prelim-cta__entry,
.prelim-cta__faq {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-family: var(--f-en);
  font-size: 2.4rem;
  padding: 1.6rem;
  line-height: 1;
  letter-spacing: 0.05em;
}

.prelim-cta__entry {
  background-color: var(--c-link);
  color: var(--c-black);
}

.prelim-cta__faq {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--c-white);
}

.text-red {
  color: #af2020;
}
