:root {
  --z-kv: 400;
  --z-header: 300;
  --z-nav: 200;
  --z-cta: 100;
}

html {
  font-size: 100% !important;
}

body {
  font-family: var(--font-noto);
  line-height: var(--leading-base);
  color: var(--blue);
  letter-spacing: 0;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  word-break: break-all;
  font-size: 14px;
  margin: 0;
}

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

main {
  background-image: none;
  padding-bottom: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: inherit;
  font-size: inherit;
}

p {
  margin: 0;
}

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

a,
a:link,
a:visited,
a:hover,
a:active {
  text-decoration: none;
}

a {
  color: inherit;
  transition: opacity 0.3s ease-in-out;
}
a:hover {
  opacity: 0.8;
}

svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  max-width: 100%;
}

dl,
dd,
ul,
ol {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

em {
  font-style: normal;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input,
textarea,
select {
  font: inherit;
  color: inherit;
}

textarea {
  resize: vertical;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th,
td {
  padding: 0;
  text-align: left;
}

figure {
  margin: 0;
}

:root {
  --white: #fff;
  --black: #000;
  --navy: #051f59;
  --blue: #1a4899;
}

:root {
  --font-thin: 100;
  --font-extra-light: 200;
  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semi-bold: 600;
  --font-bold: 700;
  --font-extra-bold: 800;
  --font-black: 900;
  --font-noto: "Noto Sans JP", sans-serif;
  --font-bebas: "Bebas Neue", sans-serif;
  --font-mincho: "BIZ UDPMincho", serif;
  --leading-base: 1.5;
}

.bg {
  position: fixed;
  inset: 0;
  z-index: -1;
}
.bg img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.main__kv {
  position: relative;
  z-index: var(--z-kv);
}

.main__button {
  position: fixed;
  width: 18rem;
  right: 2.5rem;
  bottom: 2.5rem;
  z-index: var(--z-cta);
}
@media (max-width: 767px) {
  .main__button {
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    bottom: 1rem;
  }
}

.sp-only {
  display: none;
}
@media (max-width: 767px) {
  .sp-only {
    display: block;
  }
}

.title {
  display: grid;
  color: var(--white);
  grid-template-columns: 5.5rem 1fr;
  position: relative;
  --bg-color: var(--white);
}
@media (max-width: 1023px) {
  .title {
    grid-template-columns: 3rem 1fr;
  }
}
.title:before {
  content: "";
  align-self: center;
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--bg-color);
  border-radius: 50%;
  margin-inline: auto;
}
._white_ .title {
  --bg-color: var(--blue);
}

.title__text {
  background: linear-gradient(to right, #1a4899, #046ef9);
  font-size: 7.5rem;
  color: var(--white);
  font-family: var(--font-bebas);
  text-transform: uppercase;
  line-height: 6.125rem;
  padding-top: 0.625rem;
}
@media (max-width: 1023px) {
  .title__text {
    font-size: 4rem;
    line-height: 3.75rem;
  }
}

.header {
  height: 6.5rem;
  display: flex;
  align-items: flex-start;
  max-width: 90rem;
  width: 100%;
  z-index: var(--z-header);
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .header {
    height: 3.375rem;
  }
}

.header__inner {
  padding-inline: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: var(--z-header);
}
@media (max-width: 767px) {
  .header__inner {
    padding-inline: 1rem 0.375rem;
  }
}

.header__logos {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: auto;
}
@media (max-width: 767px) {
  .header__logos {
    gap: 0.5rem;
    margin-top: 0;
  }
}

.header__logo {
  width: 7.375rem;
}
@media (max-width: 767px) {
  .header__logo {
    width: 5rem;
  }
}

.header__allblue {
  width: 6.75rem;
}
@media (max-width: 767px) {
  .header__allblue {
    width: 4.375rem;
  }
}

.header__button {
  position: relative;
}
@media (max-width: 767px) {
  .header__button {
    width: 3.125rem;
  }
}

.header__hamburger {
  transition: opacity 0.3s ease-in-out;
}
.header__hamburger[aria-expanded="true"] {
  opacity: 0;
  pointer-events: none;
}

.header__close {
  width: 100%;
  height: 100%;
  padding-inline: 1.25rem;
  transition: opacity 0.3s ease-in-out;
  position: absolute;
  top: 0;
  right: 0;
}
.header__close[aria-expanded="false"] {
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 767px) {
  .header__close {
    padding-inline: 0.625rem;
  }
}

.navigation {
  position: fixed;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  height: 100vh;
  height: 100svh;
  height: 100dvh;
  overflow: auto;
  background-color: #07408b;
  z-index: var(--z-nav);
}
.navigation[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.navigation__container {
  color: var(--white);
  height: 100%;
  width: 100%;
  transform: translateY(-0.5rem);
  transition: transform 0.3s ease;
  position: relative;
}
.navigation[aria-hidden="false"] .navigation__container {
  transform: translateY(0);
}

.navigation__inner {
  padding-block: 10.875rem 10rem;
  max-width: 75rem;
  margin-inline: auto;
  width: calc(100% - 2rem);
}
@media (max-width: 767px) {
  .navigation__inner {
    padding-block: 5.875rem 5rem;
  }
}

.navigation__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(4, 1fr);
  gap: 2.5rem 5rem;
  grid-auto-flow: column;
}
@media (max-width: 767px) {
  .navigation__list {
    display: flex;
    flex-direction: column;
    max-width: 13.4375rem;
    margin-inline: auto;
  }
}

.navigation__link {
  padding-bottom: 1rem;
  font-size: 4rem;
  font-family: var(--font-bebas);
  border-bottom: 1px solid var(--white);
  line-height: 1;
  display: block;
  width: 100%;
}
@media (max-width: 767px) {
  .navigation__link {
    font-size: 2.25rem;
    padding-bottom: 0.25rem;
  }
}

.footer {
  padding-block: 10rem;
  text-align: center;
  color: var(--white);
}
@media (max-width: 767px) {
  .footer {
    padding-block: 5rem;
  }
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

.footer__snsTitle {
  font-family: var(--font-bebas);
  margin-bottom: 0.25rem;
  font-size: 6rem;
  line-height: 1;
}
@media (max-width: 767px) {
  .footer__snsTitle {
    font-size: 3rem;
  }
}

.footer__snsText {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.footer__snsList {
  gap: 1rem;
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .footer__snsList {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer__snsLink {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__snsLink img {
  width: auto;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 2.625rem;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.footer__link:not(:last-child) {
  padding-right: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.footer__link a {
  font-size: 1rem;
}

.footer__copyright {
  font-size: 0.6875rem;
}

.cta {
  padding-block: 5rem;
}

.cta__box {
  color: var(--white);
  max-width: 82rem;
  margin-inline: auto;
  border: 1px solid var(--white);
  padding-block: 2.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
  border-radius: 50vh;
  width: calc(100% - 2rem);
}
@media (max-width: 1023px) {
  .cta__box {
    border-radius: 5rem;
    padding-inline: 2.25rem;
    gap: 1rem;
  }
}

.cta__schedules {
  border-bottom: 1px solid var(--white);
  padding-bottom: 2.125rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  width: 100%;
  max-width: 43.625rem;
}
@media (max-width: 1023px) {
  .cta__schedules {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 1rem;
  }
}

.cta__schedule {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.cta__match {
  grid-column: span 2;
  font-family: var(--font-bebas);
  font-size: 4rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 2rem;
}
@media (max-width: 767px) {
  .cta__match {
    flex-direction: column;
    padding-top: 0.5rem;
    font-size: 3rem;
  }
}

.cta__matchTeam {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cta__matchTeam img {
  width: 8.125rem;
}
@media (max-width: 767px) {
  .cta__matchTeam img {
    width: 4.8125rem;
  }
}
.cta__matchTeam span {
  font-size: 2.5rem;
  line-height: 1.3;
}

.cta__sponsor {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-bebas);
  text-transform: uppercase;
  font-size: 1.25rem;
}
.cta__sponsor span {
  flex-shrink: 0;
}

.cta__sponsorImg {
  width: 15.3125rem;
}
@media (max-width: 1023px) {
  .cta__sponsorImg {
    width: 9.1875rem;
  }
}

.cta__scheduleDate {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: min(8.8888888889vw, 8rem);
  line-height: 1;
  white-space: nowrap;
  font-family: var(--font-bebas);
}
@media (max-width: 1023px) {
  .cta__scheduleDate {
    font-size: 5rem;
    /* line-height: 2.5rem; */
  }
}
.cta__scheduleDate span {
  font-size: 2.875rem;
  line-height: 1;
}

.cta__venue {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 3rem;
  line-height: 1.3;
  font-weight: var(--font-bold);
}
@media (max-width: 1023px) {
  .cta__venue {
    font-size: 2rem;
  }
}
.cta__venue span {
  font-size: 1rem;
  text-transform: uppercase;
  width: 1.75rem;
  height: 1.8125rem;
  border-radius: 50%;
  border: 1px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-bebas);
}

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

.section__inner {
  max-width: 90rem;
  margin: 0 auto;
}

.theme {
  color: var(--white);
  background-image: url(../images/theme/img_bg_theme.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.theme__inner {
  padding-block: 5rem 10rem;
  width: calc(100% - 2rem);
  margin-inline: auto;
  max-width: 75rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  background-image: url(../images//);
}
@media (max-width: 767px) {
  .theme__inner {
    padding-block: 4rem 5rem;
    gap: 1rem;
  }
}

.theme__heading {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

.theme__headingLead {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  line-height: 1.75;
  font-family: var(--font-mincho);
}
@media (max-width: 767px) {
  .theme__headingLead {
    gap: 0.25rem;
  }
}
.theme__headingLead p {
  background: linear-gradient(to right, #2742ff, #172899);
}
.theme__headingLead p:first-child {
  font-size: 1.25rem;
  padding-inline: 1rem;
  letter-spacing: -0.05em;
}
@media (max-width: 767px) {
  .theme__headingLead p:first-child {
    font-size: 0.75rem;
    padding-inline: 0.625rem;
  }
}
.theme__headingLead p:last-child {
  font-size: 2rem;
  padding-inline: 1.5rem;
  letter-spacing: -0.05em;
}
@media (max-width: 767px) {
  .theme__headingLead p:last-child {
    font-size: 1.1875rem;
    padding-inline: 0.875rem;
  }
}

.theme__headingText {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
@media (max-width: 767px) {
  .theme__headingText {
    gap: 0.5rem;
  }
}
.theme__headingText span {
  font-weight: var(--font-bold);
  font-size: 1rem;
  letter-spacing: -0.05em;
  line-height: 1.75;
}
@media (max-width: 767px) {
  .theme__headingText span {
    font-size: 0.875rem;
  }
}

.theme__headingTextTitle {
  font-size: 6rem;
  line-height: 5.75rem;
  font-family: var(--font-bebas);
  border-bottom: 0.25rem solid var(--white);
}
@media (max-width: 767px) {
  .theme__headingTextTitle {
    font-size: 3rem;
    line-height: 2.75rem;
  }
}

.theme__headingTextDesc {
  font-size: 2rem;
  font-weight: var(--font-bold);
  letter-spacing: -0.05em;
  margin-top: 0.25rem;
}
@media (max-width: 767px) {
  .theme__headingTextDesc {
    font-size: 1.25rem;
    margin-top: 0;
  }
}

.theme__contents {
  /* display: grid;
  grid-template-columns: auto 1fr; */
  display: flex;
  gap: 2rem 5rem;
}
@media (max-width: 767px) {
  .theme__contents {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-inline: 1rem;
  }
}

.theme__logo {
  align-self: center;
  width: min(53.9583333333vw, 777px);
}
@media (max-width: 767px) {
  .theme__logo {
    width: min(100%, 600px);
  }
}

.theme__content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  font-weight: var(--font-bold);
  font-size: 0.875rem;
  line-height: 1.75;
  letter-spacing: -0.05em;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .theme__content {
    gap: 0.5rem;
  }
}
.theme__content span {
  font-weight: var(--font-black);
  letter-spacing: -0.05em;
  font-size: 1.25rem;
}
@media (max-width: 767px) {
  .theme__content span {
    font-size: 1.125rem;
  }
}

.game {
  padding-bottom: 5rem;
}
@media (max-width: 767px) {
  /* .game {
    padding-top: 1rem;
  } */
}

.game__inner {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
@media (max-width: 767px) {
  .game__inner {
    gap: 2.5rem;
  }
}

.game__title {
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 0.02em;
  font-weight: var(--font-bold);
  border-top: 1px solid #0554e0;
  padding-top: 2.5rem;
  max-width: 81.25rem;
  margin-inline: auto;
  width: calc(100% - 2rem);
}
@media (max-width: 767px) {
  .game__title {
    font-size: 2rem;
    padding-top: 1.5rem;
  }
}

.game__contents {
  max-width: 78.75rem;
  display: grid;
  gap: 5.125rem 4.625rem;
  grid-template-columns: 1fr 37.619047619%;
  font-size: 1rem;
  letter-spacing: 0.02em;
  width: calc(100% - 1rem);
}
@media (max-width: 767px) {
  .game__contents {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    width: calc(100% - 2rem);
    margin-inline: auto;
  }
}

.game__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  grid-row: 1/2;
  grid-column: 2/3;
  padding-top: 1.25rem;
}
@media (max-width: 767px) {
  .game__content {
    padding-top: 0;
  }
}

.game__player {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2.5rem;
}
@media (max-width: 767px) {
  .game__player {
    gap: 1.5rem;
    align-items: center;
  }
}

.game__playerContent {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  width: 100%;
}
.game__playerContent:before {
  content: "";
  display: block;
  width: 100%;
  height: 0.75rem;
  background-color: var(--bg-color);
}
.game__player1 .game__playerContent {
  max-width: 33.75rem;
  width: calc(100% - 1rem);
  --bg-color: var(--blue);
}
.game__player1 .game__playerContent:before {
  content: "";
  display: block;
  width: 100%;
  height: 0.75rem;
}
@media (max-width: 767px) {
  .game__player1 .game__playerContent {
    width: calc(100vw - 2rem);
  }
}
.game__player2 .game__playerContent {
  --bg-color: #e00000;
}

.game__player1 {
  align-self: center;
  grid-row: span 2;
}

@media (max-width: 767px) {
  .game__playerImg {
    margin-inline: calc(50% - 50vw);
    width: 100vw;
  }
}

.game__playerTeam {
  font-size: 0.875rem;
  font-weight: var(--font-bold);
  letter-spacing: 0.02em;
}

.game__playerName {
  font-size: 2rem;
  letter-spacing: 0.02em;
  font-weight: var(--font-bold);
}
@media (max-width: 767px) {
  .game__playerName {
    font-size: 1.5rem;
  }
}

.game__playerTitle {
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  font-weight: var(--font-bold);
}
@media (max-width: 767px) {
  .game__playerTitle {
    font-size: 1.25rem;
  }
}

.performance {
  background-image: url(../images/performance/img_bg_parefor.jpg);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  padding-bottom: 5rem;
}
@media (max-width: 767px) {
  .performance {
    padding-block: 0px 80px;
  }
}

.performance__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5rem;
  max-width: 81.25rem;
  width: calc(100% - 2rem);
  margin: 0 auto;
  color: var(--white);
  padding-top: 5rem;
}
@media (max-width: 767px) {
  .performance__inner {
    padding-top: 2.5rem;
    gap: 2.5rem;
  }
}

.performance__title {
  padding-top: 2.5rem;
  border-top: 1px solid var(--white);
  width: 100%;
  font-size: 4rem;
  font-weight: var(--font-bold);
  line-height: 1;
  letter-spacing: 0.02em;
}
@media (max-width: 767px) {
  .performance__title {
    padding-top: 1.5rem;
    font-size: 2rem;
  }
}

.performance__list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 68.75rem;
}

.performance__item {
  display: grid;
  grid-template-columns: 37.5939849624% 1fr;
  gap: 2rem;
  background-color: var(--navy);
  padding: 2.25rem;
  padding-left: 0;
}
.performance__item:nth-child(even) {
  padding-inline: 2.25rem 0;
  grid-template-columns: 1fr 37.5939849624%;
}
.performance__item:nth-child(even) .performance__itemImg {
  order: 1;
}
@media (max-width: 767px) {
  .performance__item {
    padding: 1.5rem;
    padding-top: 0;
    grid-template-columns: 1fr;
    gap: 1.625rem;
  }
  .performance__item:nth-child(even) {
    padding-inline: 1.5rem;
    grid-template-columns: 1fr;
  }
  .performance__item:nth-child(even) .performance__itemImg {
    order: 0;
  }
}

.performance__content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (max-width: 767px) {
  .performance__content {
    gap: 0.5rem;
  }
}

.performance__contentTitle {
  font-size: 2rem;
  font-weight: var(--font-bold);
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .performance__contentTitle {
    font-size: 1.5rem;
  }
}

.performance__contentText {
  font-size: 1rem;
  line-height: 1.74;
  letter-spacing: 0.04em;
  opacity: 0.7;
}

.performance__contentLink {
  font-size: 1rem;
  font-weight: var(--font-medium);
  line-height: 1.8;
  letter-spacing: 0.04em;
  margin-top: auto;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.performance__contentLink::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--white);
}
@media (max-width: 767px) {
  .performance__contentLink {
    margin-top: 0.25rem;
  }
}

.arena {
  padding-bottom: 5rem;
}
.arena iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 110/59;
}
@media (max-width: 767px) {
  .arena iframe {
    aspect-ratio: 1/1;
  }
}

.arena__title {
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .arena__title {
    margin-bottom: 2.5rem;
  }
}

.arena__image {
  margin-bottom: 2.5rem;
}

.arena__content {
  max-width: 68.75rem;
  width: calc(100% - 2rem);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}
@media (max-width: 767px) {
  .arena__content {
    gap: 1.5rem;
  }
}

.arena__contentTitle {
  background-color: var(--blue);
  font-size: 2.5rem;
  color: var(--white);
  letter-spacing: 0.02em;
  padding-inline: 1.5rem;
  width: 100%;
  font-weight: var(--font-bold);
}
@media (max-width: 767px) {
  .arena__contentTitle {
    font-size: 2rem;
  }
}

.arena__contentInner {
  font-size: 1rem;
  letter-spacing: 0.02em;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}
@media (max-width: 767px) {
  .arena__contentInner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.arena__contentLead {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.arena__contentLeadText {
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  font-weight: var(--font-bold);
}
@media (max-width: 767px) {
  .arena__contentLeadText {
    font-size: 1.125rem;
  }
}

.arena__access {
  font-weight: var(--font-bold);
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  align-self: center;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .arena__access {
    gap: 1rem;
  }
}

.arena__accessItem {
  border-bottom: 1px solid var(--blue);
  padding-bottom: 1.25rem;
  padding-inline: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.arena__accessNote {
  color: #f13939;
}

.arena__accessItemList {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.arena__accessItemText {
  display: flex;
  gap: 0.25rem;
  align-items: flex-start;
}
@media (max-width: 767px) {
  .arena__accessItemText {
    font-size: 0.875rem;
  }
}
.arena__accessItemText img {
  width: auto;
}

.arena__link {
  border: 1px solid var(--navy);
  border-radius: 50vh;
  max-width: 29rem;
  width: 100%;
  margin: 0 auto;
  height: 4.375rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 1.5rem;
  font-size: 0.875rem;
  font-weight: var(--font-bold);
  letter-spacing: 0.02em;
  text-align: center;
  gap: 1rem;
}
@media (max-width: 767px) {
  .arena__link {
    padding-right: 1rem;
    height: 3rem;
  }
}
.arena__link:before {
  content: "";
  background-color: var(--blue);
  width: 0.25rem;
  height: 0.25rem;
  display: block;
  border-radius: 50%;
  flex-shrink: 0;
}
.arena__link:after {
  content: "";
  background-image: url("../images/icons/ic_arrow_bl.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  display: block;
  width: 3rem;
  height: 3rem;
}
@media (max-width: 767px) {
  .arena__link:after {
    width: 1.9375rem;
    height: 1.9375rem;
  }
}

.ticket__inner {
  padding-block: 5rem;
  max-width: 68.75rem;
  margin-inline: auto;
  width: calc(100% - 2rem);
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (max-width: 767px) {
  .ticket__inner {
    padding-top: 2.5rem;
  }
}

.ticket__images {
  display: grid;
  grid-template-columns: 45.4545454545% 49.0909090909%;
  row-gap: 1.5rem;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 767px) {
  .ticket__images {
    grid-template-columns: 1fr;
  }
}

.ticket__price {
  max-height: 42.9375rem;
  overflow-y: auto;
  position: relative;
  aspect-ratio: 540/687;
}
@media (max-width: 767px) {
  .ticket__price {
    aspect-ratio: 344/440;
    margin-inline: auto;
    max-height: none;
  }
}

.ticket__hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10rem;
  opacity: 0.5;
  pointer-events: none;
  animation: scrollHintFloat 2s ease-in-out infinite;
  transition: opacity 0.2s ease;
}
.ticket__hint.is-hidden {
  opacity: 0;
}

@keyframes scrollHintFloat {
  0% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-6px);
  }
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }
}
.ticket__map {
  position: relative;
  background-color: #333;
  padding: 2rem 1.25rem;
  transition: opacity 0.2s ease-in-out;
}
@media (max-width: 767px) {
  .ticket__map {
    pointer-events: none;
    margin-inline: -1rem;
    padding: 1.75rem 0.5625rem;
  }
}
.ticket__map:hover {
  opacity: 0.8;
}
.ticket__map span {
  font-size: 0.875rem;
  line-height: 1;
  font-family: var(--font-bebas);
  color: var(--white);
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0.25rem;
  right: 0.25rem;
}
.ticket__map span:after {
  content: "";
  display: block;
  background: url(../images/icons/ic_plus-box.svg) no-repeat center center/contain;
  width: 3.5rem;
  height: 3.5rem;
}
@media (max-width: 767px) {
  .ticket__map span {
    display: none;
  }
  .ticket__map span:after {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.ticket__seat {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  color: var(--white);
}

.ticket__seatTitle {
  font-size: 2.5rem;
  font-weight: var(--font-bold);
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--white);
}
@media (max-width: 767px) {
  .ticket__seatTitle {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .ticket__seatSwiper {
    margin-inline: -1rem;
  }
}
@media (max-width: 767px) {
  .ticket__seatSwiper .swiper {
    padding-left: 1rem;
  }
}

.ticket__seatList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.ticket__seatItem {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ticket__seatContent {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: center;
  font-size: 1.125rem;
  font-weight: var(--font-bold);
  letter-spacing: 0.04em;
}

.ticket__seatType {
  font-size: 1rem;
  letter-spacing: 0.04em;
  border: 1px solid var(--white);
  padding-block: 1em;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.modal[aria-hidden="false"] {
  opacity: 1;
  pointer-events: auto;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}

.modal__dialog {
  position: relative;
  max-width: 900px;
  max-height: 690px;
  height: 100%;
  width: calc(100% - 2rem);
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
  background: #333;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
@media (max-width: 767px) {
  .modal__dialog {
    padding: 1rem;
    height: auto;
  }
}

.modal__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 2.5rem;
}

.modal__content {
  max-width: 43.125rem;
}

.gallery {
  padding-bottom: 5rem;
}

.gallery__inner {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
@media (max-width: 767px) {
  .gallery__inner {
    gap: 2.5rem;
  }
}

.seats__link {
  border: 1px solid white;
  border-radius: 50vh;
  max-width: 29rem;
  width: 100%;
  margin: 0 auto;
  height: 4.375rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 1.5rem;
  font-size: 0.875rem;
  font-weight: var(--font-bold);
  letter-spacing: 0.02em;
  text-align: center;
  gap: 1rem;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .seats__link_wrapper {
    margin-right: 1rem;
  }
  .seats__link {
    padding-right: 1rem;
    height: 3rem;
  }
}
.seats__link:before {
  content: "";
  background-color: white;
  width: 0.25rem;
  height: 0.25rem;
  display: block;
  border-radius: 50%;
  flex-shrink: 0;
}
.seats__link:after {
  content: "";
  background-image: url("../images/icons/ic_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  display: block;
  width: 3rem;
  height: 3rem;
}
@media (max-width: 767px) {
  .seats__link:after {
    width: 1.9375rem;
    height: 1.9375rem;
  }
}

.faq__inner {
  padding-right: min(5.5555555556vw, 5rem);
  display: grid;
  grid-template-columns: 18.5rem 1fr;
  gap: min(5.5555555556vw, 5rem);
  align-items: flex-start;
}
@media (max-width: 1023px) {
  .faq__inner {
    display: block;
    padding: 0;
    gap: 2.5rem;
  }
}

.faq__list {
  padding-block: 7.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (max-width: 1023px) {
  .faq__list {
    padding-block: 2.5rem 5rem;
    padding-inline: 1rem;
  }
}

.faq__header {
  color: var(--blue);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.25rem;
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  width: 100%;
  text-align: left;
  padding: 0 0.5rem 1.25rem;
  font-weight: var(--font-bold);
}
@media (max-width: 767px) {
  .faq__header {
    font-size: 1rem;
  }
}
.faq__header:after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background-image: url(../images/icons/ic_plus_bl.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.faq__header.is-active:after {
  background-image: url(../images/icons/ic_minus_bl.svg);
}

.faq__wrapper {
  border-bottom: 0.0625rem solid var(--blue);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease-in-out;
}

.faq__content {
  padding: 0 1.75rem 1.25rem 0.5rem;
  letter-spacing: 0.04em;
  font-size: 1rem;
}
@media (max-width: 767px) {
  .faq__content {
    font-size: 0.875rem;
  }
}

.button {
  max-width: 39.5rem;
  width: 100%;
  display: block;
  border: 1px solid var(--white);
  border-radius: 50vh;
  overflow: hidden;
  text-align: center;
}
.button[href=""] {
  position: relative;
  pointer-events: none;
}
.button[href=""]:before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.button:hover {
  opacity: 1 !important;
}

.button__inner {
  height: 7rem;
  padding-inline: 1.5rem 1rem;
  transition: opacity 0.3s ease-in-out;
  background: linear-gradient(to right, #2323ff, #d6b841);
  position: relative;
  z-index: 1;
}
@media (max-width: 1023px) {
  .button__inner {
    height: 5rem;
  }
}
._sm_ .button__inner {
  height: 6.25rem;
}
@media (max-width: 767px) {
  ._sm_ .button__inner {
    height: 4rem;
  }
}
.button__inner:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #d6b841, #2323ff);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.button__inner:hover:after {
  opacity: 1;
}

.button__text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--white);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  font-weight: var(--font-bold);
  height: 100%;
}
@media (max-width: 1023px) {
  .button__text {
    font-size: 1rem;
  }
}
._sm_ .button__text {
  font-size: 1rem;
}
.button__text:before {
  content: "";
  display: block;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background-color: var(--white);
}
.button__text:after {
  content: "";
  display: block;
  background-image: url(../images/icons/ic_arrow.svg);
  width: 3rem;
  height: 3rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 767px) {
  .button__text:after {
    width: 2rem;
    height: 2rem;
  }
}

/* Scroll-in animations */
.slidein {
  opacity: 0;
  will-change: transform, opacity;
}
.slidein.is-animated {
  animation: slideIn 1s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes slideIn {
  0% {
    transform: translateX(180px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%,
  100% {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .slidein {
    opacity: 1 !important;
    transform: none !important;
  }
  .slidein.is-animated {
    animation: none !important;
  }
}
/* Popup animation */
.popup {
  opacity: 0;
  will-change: transform, opacity;
}
.popup.is-animated {
  animation: popup 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes popup {
  0% {
    transform: translateY(40px) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
  }
  80%,
  100% {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .popup {
    opacity: 1 !important;
    transform: none !important;
  }
  .popup.is-animated {
    animation: none !important;
  }
}
/* Fade-in animation */
.fadein {
  opacity: 0;
  will-change: opacity;
}
.fadein.is-animated {
  animation: fadeIn 0.7s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes fadeIn {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .fadein {
    opacity: 1 !important;
  }
  .fadein.is-animated {
    animation: none !important;
  }
}
