@charset "UTF-8";

/* ========================================
   Variables & Fonts
   ======================================== */
@font-face {
  font-family: "Alternate Gothic";
  src: url("../font/alternate-gothic-no3-d.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --design-width: 1920px;
  --sp-width: 390px;
  --pc-side-width: 576px;
  --pc-center-width: 768px;
  --color-pink: #e95599;
  --color-pink-light: #e95599;
  --color-cyan: #00a0d2;
  --color-cyan-dark: #008fbd;
  --color-black: #000;
  --color-white: #fff;
  --font-title: "Alternate Gothic", sans-serif;
  --font-body: "Noto Sans JP", sans-serif;
  --btn-hover-duration: 0.25s;
  --btn-hover-easing: ease;
  --btn-hover-scale: 1.02;
  --btn-hover-arrow-shift: 4px;
  --btn-hover-opacity: 0.85;
}

/* ========================================
   Reset & Base
   ======================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-title);
  font-weight: 700;
  line-height: 1.7;
  color: var(--color-white);
  background: var(--color-black);
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

ul {
  list-style: none;
}

[data-device="pc"] {
  display: none !important;
}

/* ========================================
   Page / SP Column
   ======================================== */
.l-page {
  position: relative;
  width: 100%;
  overflow-x: clip;
}

.l-sp-column {
  position: relative;
  width: var(--sp-width);
  min-width: var(--sp-width);
  max-width: var(--sp-width);
  margin: 0 auto;
  background: var(--color-black);
}

/* ========================================
   Header（全幅）
   ======================================== */
.g-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  width: 100%;
  padding: 10px 16px;
  background: #000;
  backdrop-filter: blur(4px);
}

.g-header__brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.g-header__logo img {
  width: 120px;
}

.g-header__season {
  font-family: var(--font-title);
  font-size: 50px;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-align: left;
}

.g-header__season-year {
  color: #e95599;
}

.g-header__season-game {
  color: #00a0d2;
  margin-left: 0.35em;
}

.g-header__menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-left: auto;
  padding: 4px;
  flex-shrink: 0;
}

.g-header__menu-label {
  position: relative;
  display: inline-block;
  min-width: 5em;
  height: 1em;
  font-family: var(--font-title);
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
}

.g-header__menu-label-open,
.g-header__menu-label-close {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.g-header__menu-label-close {
  opacity: 0;
  visibility: hidden;
}

body.is-menu-open .g-header__menu-label-open {
  opacity: 0;
  visibility: hidden;
}

body.is-menu-open .g-header__menu-label-close {
  opacity: 1;
  visibility: visible;
}

body.is-menu-open .g-header {
  z-index: 201;
}

.g-header__menu-icon {
  position: relative;
  display: block;
  width: 12px;
  height: 8px;
  background: none;
  transition: transform 0.3s;
}

.g-header__menu-icon::before,
.g-header__menu-icon::after {
  content: "";
  position: absolute;
  top: 2px;
  width: 9px;
  height: 2px;
  background: var(--color-white);
}

.g-header__menu-icon::before {
  left: 0;
  transform: rotate(45deg);
  transform-origin: left center;
}

.g-header__menu-icon::after {
  right: 0;
  transform: rotate(-45deg);
  transform-origin: right center;
}

body.is-menu-open .g-header__menu-icon {
  transform: rotate(180deg);
}

/* ========================================
   SP Menu
   ======================================== */
.sp-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, 0.95);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  overflow-y: auto;
}

body.is-menu-open {
  overflow: hidden;
}

body.is-menu-open .sp-menu {
  opacity: 1;
  visibility: visible;
}

.sp-menu__inner {
  padding: 80px 24px 40px;
}

.sp-menu__title {
  font-family: var(--font-title);
  font-size: 48px;
  color: var(--color-pink);
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}

.sp-menu__ticket {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 20px;
  margin-bottom: 20px;
  background: var(--color-pink);
  border: 2px solid var(--color-cyan);
  border-radius: 999px;
  font-size: 15px;
  color: var(--color-white);
  box-shadow: 3px 3px 0 var(--color-cyan);
}

.sp-menu__ticket img {
  width: 28px;
}

.sp-menu__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sp-menu__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 999px;
  font-family: var(--font-title);
  font-size: 22px;
  letter-spacing: 0.05em;
  transition: opacity 0.3s;
}

.sp-menu__link span {
  font-family: var(--font-title);
  font-size: 11px;
  opacity: 0.8;
}

.sp-menu__link--pink {
  border: 2px solid var(--color-pink);
  color: var(--color-pink);
}

.sp-menu__link--pink span {
  color: var(--color-pink);
}

.sp-menu__link--cyan {
  border: 2px solid var(--color-cyan);
  color: var(--color-cyan);
}

.sp-menu__link--cyan span {
  color: var(--color-cyan);
}

.sp-menu__link:hover {
  opacity: 0.7;
}

/* ========================================
   KV（全幅）
   ======================================== */
.m-kv {
  width: 100%;
}

.m-kv picture {
  display: block;
  width: 100%;
}

.m-kv img {
  width: 100%;
  display: block;
}

/* ========================================
   Sections
   ======================================== */
.m-section {
  position: relative;
  padding: 40px 30px 30px;
}

.m-section:first-child {
  padding-top: 70px;
}

/* Today's Match〜グッズ：中央カラム共通背景 */
.m-main-area {
  background-image: url("../img/main_bg.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.m-section--ticket {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-image: url("../img/ticket_bg.jpg");
}

.m-section--access {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-image: url("../img/access_bg.jpg");
}

.m-section--guide {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-image: url("../img/guide_bg.jpg");
}

.m-section__title {
  text-align: center;
  margin-bottom: 28px;
}

.m-section__title-en {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-title);
  font-size: 80px;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.m-section__title-en::before,
.m-section__title-en::after {
  content: "";
  flex-shrink: 0;
  display: block;
  width: 100px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.m-section__title-en::before {
  background-image: url("../img/ttl_icon-l.png");
}

.m-section__title-en::after {
  background-image: url("../img/ttl_icon-r.png");
}

.m-section__title--pink .m-section__title-en {
  color: var(--color-pink);
}

.m-section__title--cyan .m-section__title-en {
  color: var(--color-cyan);
}

.m-section__title-ja {
  display: block;
  font-family: var(--font-title);
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: -18px;
}

.m-section__title--pink .m-section__title-ja {
  color: var(--color-pink-light);
}

.m-section__title--cyan .m-section__title-ja {
  color: var(--color-cyan);
}

.m-section__body {
  position: relative;
}

/* Coming Soon */
.m-coming-soon {
  border: 3px solid var(--color-pink);
  border-radius: 16px;
  padding: 20px 0px;
  width: 75%;
  margin: 0 auto;
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
}

.m-coming-soon--cyan {
  border-color: var(--color-cyan);
}

.m-coming-soon__text {
  font-family: var(--font-title);
  font-size: 50px;
  color: var(--color-pink);
  letter-spacing: 0em;
}

.m-coming-soon--cyan .m-coming-soon__text {
  color: var(--color-cyan);
}

/* ========================================
   today's match section
   ======================================== */
.sectionConceptTitle {
  z-index: 1;
  position: relative;
  width: 76.4705882353%;
  margin-inline: auto;
  margin-block-end: 4.7058823529%;
  padding-top: 7%;
  max-width: 550px;
}

.sectionConceptCopyMain {
  margin-block-end: 0.8333333333em;
  color: #fff;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.6;
  text-align: center;
}

.sectionConceptCopyBody {
  font-size: 28px;
  text-align: center;
  line-height: 1.8;
  color: #fff;
  margin-block-start: 0.8333333333em;
}

.sectionConceptTitle img {
  width: 100%;
}

/* ========================================
   Special Event Slider
   ======================================== */
.m-special-slider {
  position: relative;
  max-width: 85%;
  margin: 0 auto;
  padding: 0 40px;
}

.m-special-slider__viewport {
  overflow: hidden;
  width: 100%;
  touch-action: pan-y;
  cursor: grab;
}

.m-special-slider__viewport.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.m-special-slider__track {
  display: flex;
  align-items: stretch;
  gap: 12px;
  will-change: transform;
}

.m-special-slide {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  width: 100%;
  min-width: 0;
  align-self: stretch;
}

.m-special-slide__frame {
  position: relative;
  z-index: 0;
  display: flex;
  flex: 1;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
  border-radius: 22px;
  padding: 5px;
  background: transparent;
}

/* 枠線：左下シアン → 右上ピンク */
.m-special-slide__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  padding: 5px;
  background: linear-gradient(to top right, var(--color-cyan) 0%, var(--color-pink) 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.m-special-slide__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 17px;
  background: #ebebeb;
}

.m-special-slide__img {
  position: relative;
  display: block;
  flex-shrink: 0;
  width: 100%;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #fff;
}

.m-special-slide__img img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
}

.m-special-slide__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px 16px 22px;
}

.m-special-slide__title {
  flex-shrink: 0;
  margin-bottom: 8px;
  color: #000;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.m-special-slide__desc {
  flex: 1;
  min-height: calc(1.55em * 2);
  margin-bottom: 16px;
  color: #000;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
}

.m-special-slide__btn {
  position: relative;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 75%;
  margin: auto auto 0;
  padding: 12px 52px;
  border: none;
  border-radius: 999px;
  background: var(--color-cyan);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.m-special-slide__btn-text {
  text-align: center;
}

.m-special-slide__btn-arrow {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-white);
}

.m-special-slide__btn-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent var(--color-cyan);
}

.m-special-slider__prev,
.m-special-slider__next {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 50%;
  background: var(--color-cyan);
  cursor: pointer;
  transform: translateY(-50%);
  transition: opacity 0.3s;
}

.m-special-slider__prev:hover,
.m-special-slider__next:hover {
  opacity: 0.85;
}

.m-special-slider__prev {
  left: -15px;
}

.m-special-slider__next {
  right: -15px;
}

.m-special-slider__prev::after,
.m-special-slider__next::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border-style: solid;
  border-width: 10px 13px 10px 0;
  border-color: transparent var(--color-black) transparent transparent;
  transform: translate(-60%, -50%);
}

.m-special-slider__next::after {
  border-width: 10px 0 10px 13px;
  border-color: transparent transparent transparent var(--color-black);
  transform: translate(-40%, -50%);
}

.m-special-slider__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.m-special-slider__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #b5b5b5;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.m-special-slider__dot.is-active {
  background: var(--color-cyan);
  transform: scale(1.15);
}

/* ========================================
   Ticket Section
   ======================================== */
.m-ticket__venue {
  margin-bottom: 32px;
  border-radius: 12px;
  overflow: hidden;
}

.m-ticket__venue img {
  width: 100%;
}

.m-ticket__subttl {
  font-family: var(--font-title);
  font-size: 50px;
  color: #fff;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}

.m-ticket__lead {
  font-family: var(--font-title);
  text-align: center;
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 24px;
  font-weight: 700;
}

.m-seat-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 32px;
  align-items: stretch;
}

.m-seat-card {
  display: flex;
  height: 100%;
}

.m-seat-card__btn {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  text-align: left;
  background: var(--color-black);
  border-radius: 12px;
  overflow: hidden;
  color: var(--color-white);
}

.m-seat-card__thumb {
  flex-shrink: 0;
  aspect-ratio: 1;
  overflow: hidden;
}

.m-seat-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.m-seat-card__name {
  flex-shrink: 0;
  font-size: 24px;
  padding: 15px 10px 4px 10px;
  line-height: 1.4;
  color: var(--color-pink);
}

.m-seat-card__desc {
  flex: 1 1 auto;
  min-height: calc(1.5em * 3);
  font-family: var(--font-title);
  font-size: 15px;
  font-weight: 700;
  padding: 10px 10px;
  line-height: 1.5;
  color: var(--color-white);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.m-seat-card__more {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin: 0 10px 10px;
  margin-top: auto;
  padding: 8px;
  background: var(--color-black);
  color: var(--color-pink);
  border: 2px solid var(--color-pink);
  font-size: 12px;
  border-radius: 999px;
  width: 85%;
  margin: 0 auto 25px;
}

.m-seat-card__more-text {
  flex: 1;
  text-align: center;
}

.m-seat-card__more-arrow {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-left: auto;
  border-radius: 50%;
  background: #e95599;
}

.m-seat-card__more-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent #000;
}

.m-ticket__buy {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  width: 60%;
  padding: 14px 16px;
  background: #e95599;
  border: 3px solid #00a0d2;
  border-radius: 16px;
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 4px 4px 0 #00a0d2;
  transition: opacity 0.3s;
  margin: 0 auto;
  margin-bottom: 30px;
}

.m-ticket__buy:hover {
  opacity: 0.85;
}

.m-ticket__buy-icons {
  display: flex;
  align-items: center;
}

.m-ticket__buy-icons img {
  width: 60px;
  height: auto;
}

.m-ticket__buy-text {
  text-align: center;
  line-height: 1.3;
  font-size: 20px;
}

.m-ticket__buy-arrow {
  position: relative;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--color-white);
}

.m-ticket__buy-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent #e95599;
}

/* ========================================
   Access Section
   ======================================== */
.m-access__route {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  padding: 16px;
  border-radius: 16px;
  background: var(--color-white);
}

.m-access__route img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
}

.m-access__detail {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.m-access__map {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 10 / 10;
}

.m-access__map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.m-access__block-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-title);
  font-size: 25px;
  font-weight: 700;
  margin: 20px 0;
  color: var(--color-white);
}

.m-access__block-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
}

.m-access__block-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.m-access__list dt {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  margin-top: 20px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 3px solid rgba(255, 255, 255, 0.35);
}

.m-access__list dt::before {
  content: "";
  flex-shrink: 0;
  border-style: solid;
  border-width: 10px 0 10px 15px;
  border-color: transparent transparent transparent var(--color-pink);
}

.m-access__list dt:first-child {
  margin-top: 0;
}

.m-access__list dd {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.92);
}

/* ========================================
   Guide Section
   ======================================== */
.m-section__title--guide .m-section__title-en::before,
.m-section__title--guide .m-section__title-en::after {
  content: none;
  display: none;
}

.m-section__title--guide .m-section__title-en {
  gap: 0;
}

.m-guide__arch {
  display: block;
  width: min(100%, 420px);
  height: auto;
  margin: 0 auto 8px;
  overflow: visible;
  margin-bottom: -50px;
}

.m-guide__arch text {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 30px;
}

.m-guide__catch {
  text-align: center;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.m-guide__movie {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
}

.m-guide__movie iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.m-guide__more {
  display: flex;
  align-items: center;
  width: 85%;
  max-width: 280px;
  margin: 20px auto 0;
  padding: 10px 12px;
  background: var(--color-black);
  color: var(--color-pink);
  border: 2px solid var(--color-pink);
  border-radius: 999px;
  font-size: 14px;
}

.m-guide__more-text {
  flex: 1;
  text-align: center;
}

.m-guide__more-arrow {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-left: auto;
  border-radius: 50%;
  background: var(--color-pink);
}

.m-guide__more-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent var(--color-black);
}

/* ========================================
   Detail Button Hover (unified)
   ======================================== */
.m-special-slide__btn,
.m-seat-card__more,
.m-guide__more {
  transition:
    transform var(--btn-hover-duration) var(--btn-hover-easing),
    opacity var(--btn-hover-duration) var(--btn-hover-easing);
}

.m-special-slide__btn-arrow,
.m-seat-card__more-arrow,
.m-guide__more-arrow {
  transition: transform var(--btn-hover-duration) var(--btn-hover-easing);
}

@media (hover: hover) {

  .m-special-slide__btn:hover,
  .m-guide__more:hover,
  .m-seat-card__more:hover {
    transform: scale(var(--btn-hover-scale));
    opacity: var(--btn-hover-opacity);
  }

  .m-special-slide__btn:hover .m-special-slide__btn-arrow {
    transform: translateY(-50%) translateX(var(--btn-hover-arrow-shift));
  }

  .m-guide__more:hover .m-guide__more-arrow,
  .m-seat-card__more:hover .m-seat-card__more-arrow {
    transform: translateX(var(--btn-hover-arrow-shift));
  }
}

/* ========================================
   Footer
   ======================================== */
.g-footer {
  padding: 48px 16px 100px;
  text-align: center;
  background: var(--color-black);
}

.g-footer__sns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  list-style: none;
  padding: 0;
}

.g-footer__sns a {
  display: block;
  line-height: 0;
  transition: opacity 0.3s;
}

.g-footer__sns img {
  display: block;
  width: 48px;
  height: 48px;
}

.g-footer__sns a:hover {
  opacity: 0.7;
}

.g-footer__logo {
  display: inline-block;
  margin-bottom: 28px;
  line-height: 0;
}

.g-footer__logo img {
  display: block;
  width: 160px;
  height: auto;
}

.g-footer__copy {
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--color-white);
}

/* ========================================
   Fixed Ticket Button
   ======================================== */
.fixed-ticket {
  display: none;
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.fixed-ticket.is-visible {
  opacity: 1;
  visibility: visible;
}

.fixed-ticket.is-dismissed {
  display: none;
}

.fixed-ticket__close {
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 2;
  width: 24px;
  height: 24px;
  background: var(--color-black);
  border: 2px solid var(--color-white);
  border-radius: 50%;
}

.fixed-ticket__close::before,
.fixed-ticket__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background: var(--color-white);
}

.fixed-ticket__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.fixed-ticket__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.fixed-ticket__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 12px 36px 12px 44px;
  background: var(--color-pink);
  border: 3px solid var(--color-white);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.4;
  text-align: center;
  transition: background 0.3s;
}

.fixed-ticket__text {
  flex: 1;
  text-align: center;
}

.fixed-ticket__link:hover {
  background: var(--color-pink-light);
}

.fixed-ticket__link img {
  position: absolute;
  left: 12px;
  width: 28px;
  height: auto;
}

.fixed-ticket__arrow {
  position: absolute;
  right: 12px;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.167 10 6.292 4.125A.964.964 0 0 1 6 3.417c0-.278.097-.514.292-.709A.964.964 0 0 1 7 2.417c.278 0 .514.097.708.291l6.23 6.23c.152.152.263.319.333.5a1.553 1.553 0 0 1 0 1.124c-.07.181-.18.348-.334.5l-6.229 6.23a.965.965 0 0 1-.708.291.965.965 0 0 1-.708-.291.964.964 0 0 1-.292-.709c0-.277.097-.514.292-.708L12.167 10Z' fill='%23fff'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ========================================
   Modal (Seat Popup)
   ======================================== */
.m-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.m-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.m-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.m-modal__box {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 700px;
  max-height: auto;
  overflow: hidden;
  background: var(--color-black);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.m-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 32px;
  height: 32px;
  background: var(--color-black);
  border: none;
  border-radius: 50%;
}

.m-modal__close::before,
.m-modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: var(--color-white);
}

.m-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.m-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.m-modal__img {
  margin: 0;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.m-modal__img img {
  width: 100%;
  display: block;
}

[id^="modalSpecial"] .m-modal__img {
  position: relative;
  aspect-ratio: 4 / 3;
  background: #fff;
}

[id^="modalSpecial"] .m-modal__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
}

.m-modal__body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 16px 20px 24px;
}

.m-modal__title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 30px;
  color: var(--color-pink);
  margin-bottom: 8px;
  text-align: left;
  width: 90%;
  margin: 0 auto;
}

.m-modal__desc {
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: left;
  width: 90%;
  margin: 0 auto 10px;
}

.m-modal__price {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 10px 16px 12px;
  border-radius: 16px;
  text-align: left;
  width: 90%;
  margin: 0 auto 10px;
}

.m-modal__price--pink {
  background: var(--color-pink);
  color: var(--color-black);
}

.m-modal__price--cyan {
  background: var(--color-cyan);
  color: var(--color-black);
}

.m-modal__price-label {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2px;
}

.m-modal__price-value {
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-family: var(--font-title);
  font-size: 42px;
  line-height: 1;
  letter-spacing: 0.02em;
}

.m-modal__price-value small {
  font-family: var(--font-title);
  font-size: 11px;
  font-weight: 700;
}

.m-modal__note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 12px;
  text-align: left;
}

/* Opening Video Modal */
.m-modal--video {
  z-index: 1100;
}

.m-modal__box--video {
  max-width: 1400px;
  padding: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #000;
}

.m-modal__video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.m-modal__video iframe,
.m-modal__video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: contain;
  pointer-events: auto;
  -webkit-touch-callout: none;
  user-select: none;
}

/* ========================================
   SP Layout（1023px以下）
   ======================================== */
@media (max-width: 1023px) {

  /* ========================================
   Page / SP Column
   ======================================== */
  .l-page {
    position: relative;
    width: 100%;
    overflow-x: clip;
  }

  .l-sp-column {
    position: relative;
    width: 100%;
    max-width: var(--sp-width);
    min-width: 0;
    margin: 0 auto;
    background: var(--color-black);
  }

  /* ========================================
   Header（全幅）
   ======================================== */
  .g-header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 3.07692vw;
    width: 100%;
    padding: 2.5641vw 0 2.5641vw 2.10256vw;
    background: #000;
    backdrop-filter: blur(1.02564vw);
  }

  .g-header__brand {
    display: flex;
    align-items: center;
    gap: 2.05128vw;
  }

  .g-header__logo img {
    width: 15vw;
  }

  .g-header__season {
    font-family: var(--font-title);
    font-size: 5.33333vw;
    letter-spacing: 0.05em;
    line-height: 1.2;
    text-align: left;
  }

  .g-header__season-year {
    color: #e95599;
  }

  .g-header__season-game {
    color: #00a0d2;
    margin-left: 0.35em;
  }

  .g-header__menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.02564vw;
    margin-left: auto;
    padding: 1.02564vw;
    flex-shrink: 0;
  }

  .g-header__menu-label {
    position: relative;
    display: inline-block;
    min-width: 5em;
    height: 1em;
    font-family: var(--font-title);
    font-size: 3.07692vw;
    letter-spacing: 0.1em;
    line-height: 1;
    text-align: center;
  }

  .g-header__menu-label-open,
  .g-header__menu-label-close {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }

  .g-header__menu-label-close {
    opacity: 0;
    visibility: hidden;
  }

  body.is-menu-open .g-header__menu-label-open {
    opacity: 0;
    visibility: hidden;
  }

  body.is-menu-open .g-header__menu-label-close {
    opacity: 1;
    visibility: visible;
  }

  body.is-menu-open .g-header {
    z-index: 201;
  }

  .g-header__menu-icon {
    position: relative;
    display: block;
    width: 3.07692vw;
    height: 2.05128vw;
    background: none;
    transition: transform 0.3s;
  }

  .g-header__menu-icon::before,
  .g-header__menu-icon::after {
    content: "";
    position: absolute;
    top: 0.51282vw;
    width: 2.30769vw;
    height: 0.51282vw;
    background: var(--color-white);
  }

  .g-header__menu-icon::before {
    left: 0;
    transform: rotate(45deg);
    transform-origin: left center;
  }

  .g-header__menu-icon::after {
    right: 0;
    transform: rotate(-45deg);
    transform-origin: right center;
  }

  body.is-menu-open .g-header__menu-icon {
    transform: rotate(180deg);
  }

  /* ========================================
   SP Menu
   ======================================== */
  .sp-menu {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.95);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    overflow-y: auto;
  }

  body.is-menu-open {
    overflow: hidden;
  }

  body.is-menu-open .sp-menu {
    opacity: 1;
    visibility: visible;
  }

  .sp-menu__inner {
    padding: 13.51282vw 6.15385vw 10.25641vw;
  }

  .sp-menu__title {
    font-family: var(--font-title);
    font-size: 10.30769vw;
    color: var(--color-pink);
    text-align: center;
    margin-bottom: 0vw;
    letter-spacing: 0.05em;
  }

  .sp-menu__ticket {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5641vw;
    width: 100%;
    padding: 2.10256vw 5.12821vw;
    margin-bottom: 5.12821vw;
    background: var(--color-pink);
    border: 0.51282vw solid var(--color-cyan);
    border-radius: 18px;
    font-size: 3.84615vw;
    color: var(--color-white);
    box-shadow: 0.76923vw 0.76923vw 0 var(--color-cyan);
  }

  .sp-menu__ticket img {
    width: 12.17949vw;
  }

  .sp-menu__list {
    display: flex;
    flex-direction: column;
    gap: 3.07692vw;
  }

  .sp-menu__link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 2.05128vw;
    padding: 1.58974vw 4.12821vw;
    border-radius: 18px;
    font-family: var(--font-title);
    font-size: 5.64103vw;
    letter-spacing: 0.05em;
    transition: opacity 0.3s;
  }

  .sp-menu__link span {
    font-family: var(--font-title);
    font-size: 2.82051vw;
    opacity: 0.8;
  }

  .sp-menu__link--pink {
    border: 0.51282vw solid var(--color-pink);
    color: var(--color-pink);
  }

  .sp-menu__link--pink span {
    color: var(--color-pink);
  }

  .sp-menu__link--cyan {
    border: 0.51282vw solid var(--color-cyan);
    color: var(--color-cyan);
  }

  .sp-menu__link--cyan span {
    color: var(--color-cyan);
  }

  .sp-menu__link:hover {
    opacity: 0.7;
  }

  .sp-menu__inner .m-ticket__buy {
    width: 100%;
    margin-bottom: 4vw;
  }



  /* ========================================
   KV（全幅）
   ======================================== */
  .m-kv {
    width: 100%;
  }

  .m-kv picture {
    display: block;
    width: 100%;
  }

  .m-kv img {
    width: 100%;
    display: block;
  }

  /* ========================================
   Sections
   ======================================== */
  .m-section {
    position: relative;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
  }

  .m-section:first-child {
    padding-top: 7.33333vw;
  }

  /* Today's Match〜グッズ：中央カラム共通背景 */
  .m-main-area {
    background-image: url("../img/main_bg.jpg");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
  }

  .m-section--ticket {
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-image: url("../img/ticket_bg.jpg");
  }

  .m-section--access {
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-image: url("../img/access_bg.jpg");
  }

  .m-section--guide {
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    background-image: url("../img/guide_bg.jpg");
  }

  .m-section__title {
    text-align: center;
    margin-bottom: 0vw;
  }

  .m-section__title-en {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5641vw;
    font-family: var(--font-title);
    font-size: 10.33333vw;
    letter-spacing: 0.04em;
    line-height: 1.1;
  }

  .m-section__title-en::before,
  .m-section__title-en::after {
    content: "";
    flex-shrink: 0;
    display: block;
    width: 15vw;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .m-section__title-en::before {
    background-image: url("../img/ttl_icon-l.png");
  }

  .m-section__title-en::after {
    background-image: url("../img/ttl_icon-r.png");
  }

  .m-section__title--pink .m-section__title-en {
    color: var(--color-pink);
  }

  .m-section__title--cyan .m-section__title-en {
    color: var(--color-cyan);
  }

  .m-section__title-ja {
    display: block;
    font-family: var(--font-title);
    font-size: 3.33333vw;
    font-weight: 700;
    margin-top: -8.97436vw;
    letter-spacing: 0.1em;
  }

  .m-section__title--pink .m-section__title-ja {
    color: var(--color-pink-light);
  }

  .m-section__title--cyan .m-section__title-ja {
    color: var(--color-cyan);
  }

  #todays-match .m-section__body {
    position: relative;
    margin-top: 0;
  }

  .m-section__body {
    position: relative;
    width: 95%;
    margin: 5.12821vw auto;
  }

  /* Coming Soon */
  .m-coming-soon {
    border: 0.5vw solid var(--color-pink);
    border-radius: 4.10256vw;
    padding: 2vw 0vw;
    width: 75%;
    margin: 0 auto;
    text-align: center;
    background: rgba(0, 0, 0, 0.4);
  }

  .m-coming-soon--cyan {
    border-color: var(--color-cyan);
  }

  .m-coming-soon__text {
    font-family: var(--font-title);
    font-size: 7.33333vw;
    color: var(--color-pink);
    letter-spacing: 0em;
  }

  .m-coming-soon--cyan .m-coming-soon__text {
    color: var(--color-cyan);
  }

  /* ========================================
   Ticket Section
   ======================================== */
  .m-ticket__venue {
    margin-bottom: 8.20513vw;
    border-radius: 3.07692vw;
    overflow: hidden;
  }

  .m-ticket__venue img {
    width: 100%;
  }

  .m-ticket__subttl {
    font-family: var(--font-title);
    font-size: 7.82051vw;
    color: #fff;
    text-align: center;
    margin-bottom: 0;
    letter-spacing: 0.05em;
  }

  .m-ticket__lead {
    text-align: center;
    font-size: 3.33333vw;
    line-height: 1.9;
    margin-bottom: 6.15385vw;
  }

  .m-seat-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2vw;
    margin-bottom: 8.20513vw;
    align-items: stretch;
  }

  .m-seat-card {
    display: flex;
    height: 100%;
  }

  .m-seat-card__btn {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    text-align: left;
    background: var(--color-black);
    border-radius: 3.07692vw;
    overflow: hidden;
    color: var(--color-white);
  }

  .m-seat-card__thumb {
    flex-shrink: 0;
    aspect-ratio: 1;
    overflow: hidden;
  }

  .m-seat-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .m-seat-card__name {
    flex-shrink: 0;
    font-size: 3.33333vw;
    padding: 2.5641vw 0 0 2.5641vw;
    line-height: 1.4;
    color: var(--color-pink);
  }

  .m-seat-card__desc {
    flex: 1 1 auto;
    min-height: calc(1.5em * 5);
    font-size: 2.8vw;
    padding: 2.5641vw 2.5641vw;
    line-height: 1.5;
    color: var(--color-white);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .m-seat-card__more {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    margin: 0 2.5641vw 2.5641vw;
    margin-top: auto;
    padding: 1vw;
    background: var(--color-black);
    color: var(--color-pink);
    border: 0.51282vw solid var(--color-pink);
    font-size: 3.07692vw;
    border-radius: 999px;
    width: 85%;
    margin: 0 auto 3.84615vw;
  }

  .m-seat-card__more-text {
    flex: 1;
    text-align: center;
  }

  .m-seat-card__more-arrow {
    position: relative;
    flex-shrink: 0;
    width: 4.12821vw;
    height: 4.12821vw;
    margin-left: auto;
    border-radius: 50%;
    background: #e95599;
  }

  .m-seat-card__more-arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 60%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 1.28205vw 0 1.28205vw 2.05128vw;
    border-color: transparent transparent transparent #000;
  }

  .m-ticket__buy {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2.5641vw;
    width: 82%;
    padding: 2.58974vw 6.10256vw;
    background: #e95599;
    border: 0.76923vw solid #00a0d2;
    border-radius: 3.10256vw;
    color: var(--color-white);
    font-size: 3.58974vw;
    font-weight: 700;
    box-shadow: 1.02564vw 1.02564vw 0 #00a0d2;
    transition: opacity 0.3s;
    margin: 0 auto;
    margin-bottom: 0.69231vw;
  }

  .m-ticket__buy:hover {
    opacity: 0.85;
  }

  .m-ticket__buy-icons {
    display: flex;
    align-items: center;
  }

  .m-ticket__buy-icons img {
    width: 10vw;
    height: auto;
  }

  .m-ticket__buy-text {
    text-align: center;
    line-height: 1.3;
    font-size: 3.7vw;
  }

  .m-ticket__buy-arrow {
    position: relative;
    flex-shrink: 0;
    width: 5.69231vw;
    height: 5.69231vw;
    border-radius: 50%;
    background: var(--color-white);
  }

  .m-ticket__buy-arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 54%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 1.28205vw 0 1.28205vw 2.05128vw;
    border-color: transparent transparent transparent #e95599;
  }

  /* ========================================
   Access Section
   ======================================== */
  .m-access__route {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 7.17949vw;
    padding: 4.10256vw;
    border-radius: 4.10256vw;
    background: var(--color-white);
  }

  .m-access__route img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
  }

  .m-access__detail {
    display: flex;
    flex-direction: column;
    gap: 7.17949vw;
  }

  .m-access__map {
    border-radius: 4.10256vw;
    overflow: hidden;
    aspect-ratio: 10 / 10;
  }

  .m-access__map iframe {
    width: 100%;
    height: 100%;
    display: block;
  }

  .m-access__block-title {
    display: flex;
    align-items: center;
    gap: 2.5641vw;
    font-family: var(--font-title);
    font-size: 4.33333vw;
    font-weight: 700;
    margin: 5.12821vw 0;
    color: var(--color-white);
  }

  .m-access__block-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 7.82051vw;
    height: 7.82051vw;
  }

  .m-access__block-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  .m-access__list dt {
    display: flex;
    align-items: center;
    gap: 2.05128vw;
    font-family: var(--font-title);
    font-size: 3.8vw;
    font-weight: 700;
    color: var(--color-white);
    margin-top: 5.12821vw;
    margin-bottom: 2.5641vw;
    padding-bottom: 2.5641vw;
    border-bottom: 0.76923vw solid rgba(255, 255, 255, 0.35);
  }

  .m-access__list dt::before {
    content: "";
    flex-shrink: 0;
    border-style: solid;
    border-width: 1.5641vw 0 1.5641vw 2.84615vw;
    border-color: transparent transparent transparent var(--color-pink);
  }

  .m-access__list dt:first-child {
    margin-top: 0;
  }

  .m-access__list dd {
    font-family: var(--font-title);
    font-size: 3.33333vw;
    font-weight: 700;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.92);
  }

  /* ========================================
   today's match section
   ======================================== */
  .sectionConceptTitle {
    z-index: 1;
    position: relative;
    width: 76.4705882353%;
    margin-inline: auto;
    margin-block-end: 4.7058823529%;
    padding-top: 7%;
    max-width: 550px;
  }

  .sectionConceptCopyMain {
    margin-block-end: 0.8333333333em;
    color: #fff;
    font-weight: 700;
    font-size: 5vw;
    line-height: 1.6;
    /* font-family: "M PLUS Rounded 1c", sans-serif; */
    text-align: center;
  }

  .sectionConceptCopyBody {
    font-size: 4.33333vw;
    text-align: center;
    line-height: 1.8;
    color: #fff;
    margin-top: 4vw;
  }

  .sectionConceptTitle img {
    width: 100%;
  }

  /* Special Event Slider */
  .m-special-slider {
    max-width: 100%;
    padding: 0 10.25641vw;
  }

  .m-special-slider__track {
    gap: 3.07692vw;
  }

  .m-special-slide__frame {
    padding: 1.28205vw;
    border-radius: 5.64103vw;
  }

  .m-special-slide__frame::before {
    padding: 1.28205vw;
  }

  .m-special-slide__inner {
    border-radius: 4.35897vw;
  }

  .m-special-slide__img {
    aspect-ratio: 4 / 3;
  }

  .m-special-slide__body {
    padding: 4.61538vw 4.10256vw 5.64103vw;
  }

  .m-special-slide__title {
    margin-bottom: 2.05128vw;
    font-size: 4.33333vw;
  }

  .m-special-slide__desc {
    min-height: calc(1.55em * 2);
    margin-bottom: 4.10256vw;
    font-size: 3.33333vw;
  }

  .m-special-slide__btn {
    width: 100%;
    margin: 0 auto;
    padding: 3.07692vw 13.33333vw;
    font-size: 3.58974vw;
  }

  .m-special-slide__btn-arrow {
    right: 3.58974vw;
    width: 7.17949vw;
    height: 7.17949vw;
  }

  .m-special-slide__btn-arrow::after {
    border-width: 1.28205vw 0 1.28205vw 2.05128vw;
  }

  .m-special-slider__prev,
  .m-special-slider__next {
    width: 9.23077vw;
    height: 9.23077vw;
  }

  .m-special-slider__prev {
    left: 0px;
  }

  .m-special-slider__next {
    right: 0px;
  }

  .m-special-slider__prev::after,
  .m-special-slider__next::after {
    border-width: 1.79487vw 2.5641vw 1.79487vw 0;
  }

  .m-special-slider__next::after {
    border-width: 1.79487vw 0 1.79487vw 2.5641vw;
  }

  .m-special-slider__dots {
    gap: 2.5641vw;
    margin-top: 5.12821vw;
  }

  .m-special-slider__dot {
    width: 2.5641vw;
    height: 2.5641vw;
  }

  /* Today's Match - concept image（中央カラム全幅） */
  .sectionConceptImg {
    width: 90%;
    margin: 0 auto;
    background-color: #000;
  }

  .sectionConceptImg img {
    display: block;
    width: 100%;
    height: auto;
    margin-inline: auto;
    border-radius: 16px;
    border: 2px solid #e95599;
    padding: 10px;
  }

  /* ========================================
   Special Event Section
   ======================================== */

  /* ========================================
   Guide Section
   ======================================== */
  .m-section__title--guide .m-section__title-en::before,
  .m-section__title--guide .m-section__title-en::after {
    content: none;
    display: none;
  }

  .m-section__title--guide .m-section__title-en {
    gap: 0;
  }

  .m-guide__arch {
    display: block;
    width: min(100%, 107.69231vw);
    height: auto;
    margin: 0 auto 2.05128vw;
    overflow: visible;
    margin-bottom: -12.82051vw;
  }

  .m-guide__arch text {
    font-family: var(--font-title);
    font-size: 6.69231vw;
  }

  .m-guide__catch {
    text-align: center;
    font-size: 4.61538vw;
    line-height: 1.8;
    margin-bottom: 6.15385vw;
  }

  .m-guide__movie {
    position: relative;
    aspect-ratio: 16/9;
    border-radius: 3.07692vw;
    overflow: hidden;
  }

  .m-guide__movie iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .m-guide__more {
    display: flex;
    align-items: center;
    width: 85%;
    max-width: 71.79487vw;
    margin: 5.12821vw auto 0;
    padding: 2.5641vw 3.07692vw;
    background: var(--color-black);
    color: var(--color-pink);
    border: 0.51282vw solid var(--color-pink);
    border-radius: 999px;
    font-size: 3.58974vw;
  }

  .m-guide__more-text {
    flex: 1;
    text-align: center;
  }

  .m-guide__more-arrow {
    position: relative;
    flex-shrink: 0;
    width: 5.12821vw;
    height: 5.12821vw;
    margin-left: auto;
    border-radius: 50%;
    background: var(--color-pink);
  }

  .m-guide__more-arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 54%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 1.28205vw 0 1.28205vw 2.05128vw;
    border-color: transparent transparent transparent var(--color-black);
  }

  /* ========================================
   Footer
   ======================================== */
  .g-footer {
    padding: 12.30769vw 4.10256vw 25.64103vw;
    text-align: center;
    background: var(--color-black);
  }

  .g-footer__sns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5.12821vw;
    margin-bottom: 8.20513vw;
    list-style: none;
    padding: 0;
  }

  .g-footer__sns a {
    display: block;
    line-height: 0;
    transition: opacity 0.3s;
  }

  .g-footer__sns img {
    display: block;
    width: 9.30769vw;
    height: 9.30769vw;
  }

  .g-footer__sns a:hover {
    opacity: 0.7;
  }

  .g-footer__logo {
    display: inline-block;
    margin-bottom: 7.17949vw;
    line-height: 0;
  }

  .g-footer__logo img {
    display: block;
    width: 41.02564vw;
    height: auto;
  }

  .g-footer__copy {
    font-family: var(--font-title);
    font-size: 2.82051vw;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--color-white);
  }

  /* ========================================
   Fixed Ticket Button
   ======================================== */
  .fixed-ticket {
    display: block;
    position: fixed;
    right: -4.10256vw;
    bottom: 4.10256vw;
    z-index: 90;
    visibility: hidden;
    transition: opacity 0.4s, visibility 0.4s;
  }

  .fixed-ticket.is-visible {
    opacity: 1;
    visibility: visible;
  }

  .fixed-ticket.is-dismissed {
    display: none;
  }

  .fixed-ticket__close {
    position: absolute;
    top: -2.5641vw;
    right: 4.5vw;
    z-index: 2;
    width: 5.15385vw;
    height: 5.15385vw;
    background: #fff;
    border-radius: 50%;
  }

  .fixed-ticket__close::before,
  .fixed-ticket__close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2.5641vw;
    height: 0.51282vw;
    background: #000;
  }

  .fixed-ticket__close::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .fixed-ticket__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .fixed-ticket__link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 13.33333vw;
    padding: 3.07692vw 9.23077vw 3.07692vw 11.28205vw;
    background: var(--color-pink);
    border: 0.76923vw solid var(--color-white);
    border-radius: 2.05128vw;
    font-size: 3.33333vw;
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.4;
    text-align: center;
    transition: background 0.3s;
  }

  .fixed-ticket__text {
    flex: 1;
    text-align: center;
  }

  .fixed-ticket__link:hover {
    background: var(--color-pink-light);
  }

  .fixed-ticket__link img {
    position: absolute;
    left: 3.07692vw;
    width: 7.17949vw;
    height: auto;
  }

  .fixed-ticket__arrow {
    position: absolute;
    right: 3.07692vw;
    width: 5.12821vw;
    height: 5.12821vw;
    background: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.167 10 6.292 4.125A.964.964 0 0 1 6 3.417c0-.278.097-.514.292-.709A.964.964 0 0 1 7 2.417c.278 0 .514.097.708.291l6.23 6.23c.152.152.263.319.333.5a1.553 1.553 0 0 1 0 1.124c-.07.181-.18.348-.334.5l-6.229 6.23a.965.965 0 0 1-.708.291.965.965 0 0 1-.708-.291.964.964 0 0 1-.292-.709c0-.277.097-.514.292-.708L12.167 10Z' fill='%23fff'/%3E%3C/svg%3E") center/contain no-repeat;
  }

  /* ========================================
   Modal (Seat Popup)
   ======================================== */
  .m-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5.12821vw;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }

  .m-modal.is-open {
    opacity: 1;
    visibility: visible;
  }

  .m-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
  }

  .m-modal__box {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 179.48718vw;
    max-height: 90vh;
    overflow: hidden;
    background: var(--color-black);
    border-radius: 5.12821vw;
    box-shadow: 0 2.05128vw 8.20513vw rgba(0, 0, 0, 0.5);
  }

  .m-modal__close {
    position: absolute;
    top: 9.07692vw;
    right: 1.07692vw;
    z-index: 2;
    width: 8.20513vw;
    height: 8.20513vw;
    background: var(--color-black);
    border: none;
    border-radius: 50%;
  }

  .m-modal__close::before,
  .m-modal__close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3.58974vw;
    height: 0.51282vw;
    background: var(--color-white);
  }

  .m-modal__close::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .m-modal__close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .m-modal__img {
    margin: 0;
  }

  .m-modal__img img {
    width: 100%;
    display: block;
  }

  [id^="modalSpecial"] .m-modal__img {
    position: relative;
    aspect-ratio: 4 / 3;
    background: #fff;
  }

  [id^="modalSpecial"] .m-modal__img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: contain;
    object-position: center;
  }

  .m-modal__body {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    padding: 4.10256vw 5.12821vw 6.15385vw;
  }

  .m-modal__title {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 4.69231vw;
    color: var(--color-pink);
    margin-bottom: 2.05128vw;
    text-align: left;
    width: 90%;
    margin: 0 auto;
  }

  .m-modal__desc {
    font-size: 3.33333vw;
    line-height: 1.7;
    margin-bottom: 5.12821vw;
    text-align: left;
    width: 90%;
    margin: 0 auto 2.5641vw;
    font-family: var(--font-title);
    font-weight: 700;
  }

  .m-modal__price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5641vw 4.10256vw 1.5641vw;
    border-radius: 4.10256vw;
    text-align: left;
    width: 90%;
    margin: 0 auto 2.5641vw;
  }

  .m-modal__price--pink {
    background: var(--color-pink);
    color: var(--color-black);
  }

  .m-modal__price--cyan {
    background: var(--color-cyan);
    color: var(--color-black);
  }

  .m-modal__price-label {
    font-size: 3.33333vw;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.51282vw;
  }

  .m-modal__price-value {
    display: flex;
    align-items: baseline;
    gap: 1.02564vw;
    font-family: var(--font-title);
    font-size: 7.76923vw;
    line-height: 1;
    letter-spacing: 0.02em;
  }

  .m-modal__price-value small {
    font-family: var(--font-title);
    font-size: 2.82051vw;
    font-weight: 700;
  }

  .m-modal__note {
    font-size: 2.82051vw;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 3.07692vw;
    text-align: left;
  }

  /* Opening Video Modal（SP縦動画） */
  .m-modal--video {
    padding: 2.5641vw;
  }

  .m-modal__box--video {
    width: min(calc(100vw - 5.1282vw), calc((90vh - 5.1282vw) * 8 / 16));
    max-width: none;
    overflow: hidden;
    border-radius: 5.12821vw;
  }

  .m-modal__video {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    border-radius: 5.12821vw;
  }

  .m-modal__video video {
    object-fit: cover;
    background: #000;
  }
}

/* ========================================
   Tablet Layout (768px–1023px)
   ======================================== */
@media (min-width: 768px) and (max-width: 1023px) {
  .l-sp-column {
    width: 100%;
    min-width: 0;
    max-width: none;
  }
}

/* ========================================
   PC Layout (1024px+)
   ======================================== */
@media (min-width: 1024px) {
  [data-device="pc"] {
    display: block !important;
  }

  [data-device="sp"] {
    display: none !important;
  }

  body {
    background: #0a0014;
    width: var(--design-width);
    min-width: var(--design-width);
  }

  .m-pcfixed {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--design-width);
    height: calc(100vh / var(--design-scale, 1));
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
  }

  .m-pcfixed.is-visible {
    opacity: 1;
    visibility: visible;
  }

  /* サイドより前面に（KV表示中は隠れないように） */
  .g-header {
    position: static;
    z-index: 100;
  }

  .m-kv {
    position: relative;
    z-index: 15;
  }

  .l-side {
    position: absolute;
    top: 0;
    width: var(--pc-side-width);
    height: 100%;
    overflow: auto;
    pointer-events: auto;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0;
    /* 背景画像を使用する場合はコメントアウトを解除 */
    background-image: url("../img/main_bg.jpg");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    /* background-color: #fff; */
  }

  .l-side--left {
    left: 0;
  }

  .l-side--right .pc-menu {
    width: 400px;
  }

  .l-side--right {
    right: 0;
  }

  .l-page {
    position: relative;
    z-index: 5;
    width: var(--design-width);
    min-width: var(--design-width);
  }

  .l-sp-column {
    position: relative;
    width: var(--pc-center-width);
    min-width: var(--pc-center-width);
    max-width: var(--pc-center-width);
    margin-left: var(--pc-side-width);
    margin-right: var(--pc-side-width);
    box-shadow: 0 0 40px rgba(228, 0, 127, 0.15);
  }

  /* PC中央コンテンツ枠線 */
  .l-sp-column::before,
  .l-sp-column::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    pointer-events: none;
    z-index: 2;
  }

  .l-sp-column::before {
    left: 0;
    background:
      url("../img/pc_side_line_left.png") center top / 100% 100% no-repeat,
      linear-gradient(180deg, #e95599 0%, #00a0d2 25%, #e95599 50%, #00a0d2 75%, #e95599 100%);
    box-shadow: 0 0 8px rgba(233, 85, 153, 0.6), 0 0 8px rgba(0, 160, 210, 0.6);
  }

  .l-sp-column::after {
    right: 0;
    background:
      url("../img/pc_side_line_right.png") center top / 100% 100% no-repeat,
      linear-gradient(180deg, #00a0d2 0%, #e95599 25%, #00a0d2 50%, #e95599 75%, #00a0d2 100%);
    box-shadow: 0 0 8px rgba(0, 160, 210, 0.6), 0 0 8px rgba(233, 85, 153, 0.6);
  }

  /* Today's Match - concept image（中央カラム全幅） */
  .sectionConceptImg {
    width: 90%;
    margin: 0 auto;
    background-color: #000;
  }

  .sectionConceptImg img {
    display: block;
    width: 100%;
    height: auto;
    margin-inline: auto;
    border-radius: 16px;
    border: 3px solid #e95599;
    padding: 10px;
  }

  .g-header,
  .m-kv {
    width: var(--design-width);
    max-width: var(--design-width);
  }

  /* PC Left - Match Info */
  .pc-game {
    display: inline-grid;
    /* grid-template-columns: max-content;
    width: fit-content;
    max-width: 100%; */
    text-align: center;
    color: var(--color-white);
  }

  .pc-game__date {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 4px;
    margin-bottom: 16px;
    line-height: 1;
    grid-column: 1;
    justify-self: center;
  }

  .pc-game__body {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    grid-column: 1;
    width: 100%;
    min-width: 0;
  }

  .pc-game__num {
    font-family: var(--font-title);
    font-size: 430px;
    font-weight: 400;
    color: #000;
    letter-spacing: -0.04em;
    line-height: 0.85;
  }

  .pc-game__num--cyan {
    text-shadow:
      0 0 2px #fff,
      0 0 6px #fff,
      0 0 8px #00a0d2,
      0 0 20px #00a0d2,
      0 0 40px rgba(0, 160, 210, 0.9),
      0 0 60px rgba(0, 160, 210, 0.6);
  }

  .pc-game__num--pink {
    text-shadow:
      0 0 2px #fff,
      0 0 6px #fff,
      0 0 8px #e95599,
      0 0 20px #e95599,
      0 0 40px rgba(233, 85, 153, 0.9),
      0 0 60px rgba(233, 85, 153, 0.6);
  }

  .pc-game__dot {
    flex-shrink: 0;
    width: 45px;
    height: 55px;
    margin: 0px 5px 25px 12px;
    background: #000;
    box-shadow: 0 0 8px #00a0d2,
      0 0 20px #00a0d2,
      0 0 40px rgba(0, 160, 210, 0.9),
      0 0 60px rgba(0, 160, 210, 0.6);
  }

  .pc-game__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 14px;
    width: 100%;
    margin-top: -50px;
  }

  .pc-game__league {
    width: auto;
    max-width: 50%;
    height: auto;
  }

  .pc-game__day {
    font-family: var(--font-title);
    font-size: 110px;
    color: var(--color-cyan);
    letter-spacing: 0.05em;
  }

  .pc-game__home {
    margin-top: -30px;

  }

  .pc-game__home span {
    display: block;
    width: 75%;
    margin: 0 auto;
    padding: 8px 12px;
    background: #e95599;
    color: #000;
    font-family: var(--font-title);
    font-size: 75px;
    letter-spacing: 0.08em;
    line-height: 1;
    transform: scaleY(1.12);
    transform-origin: center;
  }

  .pc-game__kick {
    font-family: var(--font-title);
    font-size: 80px;
    letter-spacing: 0.04em;
    margin-bottom: 20px;
    transform: scaleY(1.12);
    transform-origin: center;
  }

  .pc-game__teams {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
  }

  .pc-game__emblem {
    width: 34%;
    height: auto;
  }

  .pc-game__cross {
    position: relative;
    flex-shrink: 0;
    display: inline-block;
    width: 58px;
    height: 75px;
  }

  .pc-game__cross::before,
  .pc-game__cross::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--color-white);
    transform-origin: center;
  }

  .pc-game__cross::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .pc-game__cross::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .pc-game__vs {
    font-family: var(--font-title);
    font-size: 30px;
    letter-spacing: 0.08em;
    font-weight: 700;
  }

  /* PC Right - Menu */
  .pc-menu {
    width: 400px;
  }

  .pc-menu__title {
    font-family: var(--font-title);
    font-size: 60px;
    color: #e95599;
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: 0.06em;
    line-height: 1;
  }

  .pc-menu__ticket {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 20px;
    background: #e95599;
    border: 3px solid #00a0d2;
    border-radius: 16px;
    color: var(--color-white);
    font-size: 14px;
    font-weight: 700;
    box-shadow: 4px 4px 0 #00a0d2;
    transition: opacity 0.3s;
  }

  .pc-menu__ticket:hover {
    opacity: 0.85;
  }

  .pc-menu__ticket-icons {
    display: flex;
    align-items: center;
    gap: 2px;
  }

  .pc-menu__ticket-icons img {
    width: 90px;
    height: auto;
  }

  .pc-menu__ticket-icons img:last-child {
    transform: rotate(-8deg);
    margin-left: -6px;
  }

  .pc-menu__ticket-text {
    text-align: left;
    line-height: 1.3;
    font-size: 20px;
    padding-left: 10px;
  }

  .pc-menu__ticket-arrow {
    position: relative;
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-white);
  }

  .pc-menu__ticket-arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 54%;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-width: 5px 0 5px 8px;
    border-color: transparent transparent transparent #e95599;
  }

  .pc-menu__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .pc-menu__link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px;
    width: 100%;
    padding: 12px 16px 12px 40px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.85);
    border: 3px solid;
    font-family: var(--font-title);
    font-size: 40px;
    letter-spacing: 0.04em;
    line-height: 1.2;
    white-space: nowrap;
    transition: opacity 0.3s;
  }

  .pc-menu__link span {
    font-family: var(--font-title);
    font-size: 20px;
    letter-spacing: 0.02em;
    flex-shrink: 0;
    font-weight: 700;
  }

  .pc-menu__link--pink {
    border-color: var(--color-pink);
    color: var(--color-pink);
  }

  .pc-menu__link--pink span {
    color: var(--color-pink);
  }

  .pc-menu__link--cyan {
    border-color: var(--color-cyan);
    color: var(--color-cyan);
  }

  .pc-menu__link--cyan span {
    color: var(--color-cyan);
  }

  .pc-menu__link:hover {
    opacity: 0.75;
  }

  /* Hide SP menu on PC */
  .g-header__menu {
    display: none;
  }

  .sp-menu {
    display: none;
  }


  .fixed-ticket__link {
    min-height: 56px;
    padding: 14px 40px 14px 52px;
    font-size: 15px;
  }

  .fixed-ticket__link img {
    left: 14px;
    width: 32px;
  }

  /* Modal（PC角丸） */
  .m-modal__box {
    overflow: hidden;
    border-radius: 20px;
  }

  .m-modal__img {
    overflow: hidden;
    border-radius: 20px 20px 0 0;
  }

  .m-modal__box--video {
    overflow: hidden;
    border-radius: 20px;
  }
}