@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700&display=swap");
html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
.game {
  background: #030B1C;
  color: #fff;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

main.game-main {
  width: 100%;
  max-width: none;
  margin: 0;
}

body {
  margin: initial;
}

.game img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0;
}

.game-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.l-header .l-header__club .l-header__club-name a,
.l-header .l-header__club.is-scroll .l-header__club-name a {
  gap: 0;
  font-size: 0;
}

.game-nav {
  position: sticky;
  top: var(--header-h, 0px);
  z-index: 900;
  background: #030B1C;
  border-top: 1px solid #fff;
}

.game-nav__list {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 32px;
  margin: 0;
  padding: 0 8px;
  list-style: none;
  overflow-x: auto;
  scrollbar-width: none;
}
@media screen and (min-width: 840px) {
  .game-nav__list {
    justify-content: center;
    gap: 24px;
    height: 48px;
  }
}

.game-nav__list::-webkit-scrollbar {
  display: none;
}

.game-nav__item {
  flex-shrink: 0;
}

.game-nav__link {
  display: flex;
  align-items: center;
  height: 32px;
  padding: 0 8px;
  color: #fff;
  font: 600 14px/1 alternate-gothic-atf, sans-serif;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
}
@media screen and (min-width: 840px) {
  .game-nav__link {
    height: 48px;
    font-size: 20px;
  }
}

.game-nav__link:hover,
.game-nav__link:focus {
  color: #fff;
  text-decoration: none;
}

@media (hover: hover) {
  .game-nav__link:hover {
    opacity: 0.7;
  }
}
.game-fv {
  padding-block-end: 40px;
}
@media screen and (min-width: 840px) {
  .game-fv {
    padding-block-end: 80px;
  }
}

img.game-fv__title {
  width: 200px;
  aspect-ratio: 200/162;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 40px auto;
}
@media screen and (min-width: 840px) {
  img.game-fv__title {
    width: 480px;
    margin-block: 120px;
  }
}

.game-fv__band {
  margin: 0;
  padding: 7px 24px;
  background: var(--game-fv-band-bg, #000);
  color: var(--game-fv-band-color, #fff);
  font: 600 14px/1.2 alternate-gothic-atf, sans-serif;
  font-weight: 600 !important;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (min-width: 840px) {
  .game-fv__band {
    padding: 14px 32px;
    font-size: 28px;
  }
}

.game-section {
  width: 100%;
  padding-block: 40px;
  box-sizing: border-box;
  scroll-margin-block-start: calc(var(--header-h, 0px) + 32px);
}
@media screen and (min-width: 840px) {
  .game-section {
    padding-block: 120px;
    scroll-margin-block-start: calc(var(--header-h, 0px) + 48px);
  }
}

.game-section--black {
  background: #000;
}

.game-section--seam-top {
  padding-block-start: 80px;
}
@media screen and (min-width: 840px) {
  .game-section--seam-top {
    padding-block-start: 120px;
  }
}

.game-section--seam-bottom {
  padding-block-end: 80px;
}
@media screen and (min-width: 840px) {
  .game-section--seam-bottom {
    padding-block-end: 120px;
  }
}

.game-section__inner {
  width: calc(100% - 48px);
  max-width: 1200px;
  margin-inline: auto;
}
@media screen and (min-width: 840px) {
  .game-section__inner {
    width: calc(100% - 64px);
  }
}

.game-section__division {
  max-width: 800px;
  margin-inline: auto;
}

.game-section__title {
  margin: 0 0 24px;
  color: #fff;
  font: 600 32px/1.25 alternate-gothic-atf, sans-serif;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (min-width: 840px) {
  .game-section__title {
    margin-block-end: 56px;
    font-size: 64px;
  }
}

.game-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  padding: 0 8px;
  background: #fff;
  color: #030B1C;
  font: 700 14px/1 alternate-gothic-atf, sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.game-badge--dark {
  background: #000;
  color: #fff;
}

.game-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-block-start: 32px;
}
@media screen and (min-width: 840px) {
  .game-cta {
    margin-block-start: 56px;
  }
}

.game-menu__grid + .game-cta {
  margin-block-start: 16px;
}
@media screen and (min-width: 840px) {
  .game-menu__grid + .game-cta {
    margin-block-start: 56px;
  }
}

.game-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  max-width: 320px;
  min-height: 59px;
  padding: 15px 20px 17px;
  background: #fff;
  color: #030B1C;
  font: 700 16px/1 "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  letter-spacing: 0.06em;
  border: 1px solid #fff;
  box-sizing: border-box;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}
@media screen and (min-width: 840px) {
  .game-cta__button {
    max-width: 360px;
    padding: 17px 28px 19px;
  }
}

.game-cta__button:link,
.game-cta__button:visited,
.game-cta__button:focus,
.game-cta__button:active {
  color: #030B1C;
}

.game-cta__button:hover {
  opacity: 1;
}

@media (hover: hover) {
  .game-cta__button:hover {
    background: transparent;
    color: #fff;
  }
}
.game-cta__button--ghost,
.game-cta__button--ghost:link,
.game-cta__button--ghost:visited,
.game-cta__button--ghost:focus,
.game-cta__button--ghost:active {
  background: transparent;
  color: #fff;
}

@media (hover: hover) {
  .game-cta__button--ghost:hover {
    background: #fff;
    color: #030B1C;
  }
}
.game-cta__button--en {
  padding-block: 17px;
  font-family: alternate-gothic-atf, sans-serif;
  font-size: 17px;
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (min-width: 840px) {
  .game-cta__button--en {
    padding-block: 19px 18px;
    font-size: 20px;
  }
}

.game-cta__button--external::after {
  content: "";
  flex-shrink: 0;
  width: 16px;
  height: 17px;
  background: currentColor;
  -webkit-mask: url("https://altiri.jp/files/user/images/game/26-27/icon/arrow-external.svg") center/contain no-repeat;
  mask: url("https://altiri.jp/files/user/images/game/26-27/icon/arrow-external.svg") center/contain no-repeat;
}

.game-news {
  display: flex;
  color: #fff;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin: 0 0 80px;
}
@media screen and (min-width: 840px) {
  .game-news {
    margin-block-end: 120px;
  }
}

.game-news__date {
  margin-block-start: 2px;
  font: 600 16px/1.25 alternate-gothic-atf, sans-serif;
}

.game-news__text {
  margin: 0;
  font: 500 16px/1.25 "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

.game-menu__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 840px) {
  .game-menu__grid {
    gap: 12px;
  }
}

.game-menu__grid > li {
  flex: 0 0 calc((100% - 4px) / 3);
}
@media screen and (min-width: 840px) {
  .game-menu__grid > li {
    flex-basis: calc((100% - 60px) / 6);
  }
}

.game-menu__tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: 77px;
  padding: 10px 4px;
  background: #fff;
  color: #030B1C;
  box-sizing: border-box;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 840px) {
  .game-menu__tile {
    min-height: 120px;
    gap: 10px;
    padding: 17px 12px 15px;
  }
}

.game-menu__tile:link,
.game-menu__tile:visited {
  color: #030B1C;
}

.game-menu__tile:hover,
.game-menu__tile:focus {
  color: #030B1C;
  text-decoration: none;
}

@media (hover: hover) {
  .game-menu__tile:hover {
    opacity: 0.7;
  }
}
.game-menu__icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

img.game-menu__icon {
  width: auto;
  height: 36px;
}
@media screen and (min-width: 840px) {
  img.game-menu__icon {
    height: 40px;
  }
}

.game-menu__label {
  font: 700 14px/1 alternate-gothic-atf, sans-serif;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (min-width: 840px) {
  .game-menu__label {
    font-size: 16px;
  }
}

.game-band {
  height: 64px;
  background: #000;
  overflow: hidden;
  pointer-events: none;
}

.game-band__track {
  display: flex;
  height: 100%;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
  animation: game-band-scroll var(--band-duration, 0s) linear infinite;
}

@keyframes game-band-scroll {
  to {
    transform: translate3d(var(--band-shift, 0px), 0, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .game-band__track {
    width: 100%;
    justify-content: center;
    animation: none;
  }
  .game-band__group--clone {
    display: none;
  }
}
.game-band__group {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 12px;
  padding-inline: 6px;
}
@media screen and (min-width: 840px) {
  .game-band__group {
    gap: 24px;
    padding-inline: 12px;
  }
}

img.game-band__logo {
  flex-shrink: 0;
  width: auto;
  height: calc(88px * var(--logo-scale, 1));
  margin-inline: -4px;
}

.game-logo--scale-115 {
  --logo-scale: 1.15;
}

.game-logo--scale-130 {
  --logo-scale: 1.3;
}

.game-logo--scale-150 {
  --logo-scale: 1.5;
}

.game-feature__media {
  aspect-ratio: 4/3;
  overflow: hidden;
}

img.game-feature__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.game-feature__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-block-start: 8px;
}
@media screen and (min-width: 840px) {
  .game-feature__meta {
    margin-block-start: 24px;
  }
}

.game-feature__name {
  margin: 0;
  color: #fff;
  font: 600 24px/1.25 alternate-gothic-atf, sans-serif;
  text-transform: uppercase;
}

.game-nocase {
  text-transform: none;
}

.game-feature__name--jp {
  font-size: 19px;
}

.game-text {
  margin: 8px 0 0;
  color: #fff;
  font: 500 14px/1.5 "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 500 !important;
}
@media screen and (min-width: 840px) {
  .game-text {
    margin-block-start: 16px;
    font-size: 16px;
    line-height: 1.8;
  }
}

.game-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 840px) {
  .game-cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px 8px;
  }
}

.game-card {
  position: relative;
  min-width: 0;
}

.game-card__trigger {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  margin: 0;
  padding: 0;
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.game-card__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}

img.game-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.game-card__media--logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14%;
  background: #000;
}

.game-card__media--logo img.game-card__img {
  position: static;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.game-card__badge {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.game-card__name {
  margin: 0;
  color: #fff;
  font: 600 24px/1.25 alternate-gothic-atf, sans-serif;
  text-transform: uppercase;
}

@media (hover: hover) {
  .game-card__trigger:hover .game-card__media {
    opacity: 0.8;
  }
}
.game-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  width: 100%;
  height: 100svh;
  background: rgba(3, 11, 28, 0.92);
  color: #fff;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.game-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.game-modal__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  height: 100%;
  padding: 24px;
  box-sizing: border-box;
  overflow-y: auto;
}
@media screen and (min-width: 840px) {
  .game-modal__inner {
    gap: 24px;
    padding: 32px;
  }
}

.game-modal__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 480px;
  max-height: 100%;
  background: #fff;
  box-sizing: border-box;
  overflow: hidden;
}
@media screen and (min-width: 840px) {
  .game-modal__panel {
    max-width: 560px;
  }
}

.game-modal__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-height: 0;
  padding: 16px;
  overflow-y: auto;
  overscroll-behavior: contain;
}
@media screen and (min-width: 840px) {
  .game-modal__body {
    padding: 20px;
  }
}

.game-modal__card {
  position: relative;
  flex-shrink: 0;
  width: 68%;
  aspect-ratio: 1/1;
  overflow: hidden;
  isolation: isolate;
}

img.game-modal__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.game-modal__card--logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14%;
  background: #000;
}

.game-modal__card--logo img.game-modal__img {
  position: static;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.game-modal__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 2px;
  padding: 10px;
}

.game-modal__overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(115, 115, 115, 0) 0%, #737373 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.game-modal__card--logo .game-modal__overlay::before {
  display: none;
}

.game-modal__overlay > .game-modal__tags,
.game-modal__overlay > .game-modal__name {
  position: relative;
  z-index: 1;
}

.game-modal__tags {
  display: flex;
  align-items: center;
  gap: 6px;
}

.game-modal__name {
  margin: 0;
  color: #fff;
  font: 600 24px/1.3 alternate-gothic-atf, sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.game-modal__desc {
  width: 100%;
  margin: 0;
  color: #000;
  font: 500 14px/1.7 "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 500 !important;
  letter-spacing: 0.04em;
}

.game-modal__list {
  width: 100%;
  margin: 0;
  padding: 0 0 0 1.2em;
  color: #000;
  font: 500 14px/1.7 "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

.game-modal__notes {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.game-modal__note-item {
  color: rgba(0, 0, 0, 0.5);
  font: 400 13px/1.6 "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  letter-spacing: 0.04em;
  text-align: justify;
}

.game-modal__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 32px;
  height: 32px;
  background: #030B1C;
  border: 0;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.game-modal__close::before,
.game-modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 2px;
  background: #fff;
}

.game-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.game-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.game-tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
  max-width: 320px;
  margin-inline: auto;
}
@media screen and (min-width: 840px) {
  .game-tabs {
    max-width: 800px;
  }
}

.game-tabs__input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  opacity: 0;
}

.game-tabs__label {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 48px;
  padding: 2px 0 0;
  border: 1px solid #fff;
  box-sizing: border-box;
  color: #fff;
  font: 600 24px/1 alternate-gothic-atf, sans-serif;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s ease;
}
@media screen and (min-width: 840px) {
  .game-tabs__label {
    height: 56px;
    padding: 0;
    font-size: 28px;
  }
}

.game-tabs__input:checked + .game-tabs__label {
  background: #fff;
  color: #030B1C;
}

@media (hover: hover) {
  .game-tabs__label:hover {
    background: #fff;
    color: #030B1C;
  }
}
.game-tabs__panel {
  display: none;
  width: 100%;
  padding: 16px 24px;
  border: 1px solid #fff;
  border-top: 0;
  box-sizing: border-box;
}
@media screen and (min-width: 840px) {
  .game-tabs__panel {
    padding: 40px;
  }
}

.game-tabs__input:nth-of-type(1):checked ~ .game-tabs__panel:nth-of-type(1),
.game-tabs__input:nth-of-type(2):checked ~ .game-tabs__panel:nth-of-type(2),
.game-tabs__input:nth-of-type(3):checked ~ .game-tabs__panel:nth-of-type(3) {
  display: block;
}

.game-tabs--single .game-tabs__label {
  display: none;
}

.game-tabs--single .game-tabs__panel {
  border-top: 1px solid #fff;
}

.game-timeline__table {
  width: 100%;
  border-collapse: collapse;
}

.game-timeline__row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.game-timeline__time,
.game-timeline__event {
  padding: 8px 0;
  color: #fff;
  font: 500 14px/1.5 "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  text-align: left;
  vertical-align: middle;
}
@media screen and (min-width: 840px) {
  .game-timeline__time,
  .game-timeline__event {
    font-size: 16px;
  }
}

@media screen and (min-width: 840px) {
  .game-timeline__event {
    padding-block: 7px 9px;
  }
}

.game-timeline__time {
  width: 25%;
  padding-inline-end: 16px;
  font-family: alternate-gothic-atf, sans-serif;
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
}
@media screen and (min-width: 840px) {
  .game-timeline__time {
    width: 15%;
    font-size: 20px;
  }
}

.game-timeline__mark {
  color: #5C77FF;
}

.game-timeline__unit {
  margin-inline-start: 0.15em;
  font-size: 0.75em;
  vertical-align: 0.05em;
}

.game-notes {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: #fff;
  font: 500 12px/1.6 "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
@media screen and (min-width: 840px) {
  .game-notes {
    font-size: 13px;
  }
}

.game-logo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 320px;
  height: 178px;
  margin-inline: auto;
  background: #000;
  border: 1px solid #fff;
  box-sizing: border-box;
  overflow: hidden;
}
@media screen and (min-width: 840px) {
  .game-logo-box {
    max-width: 480px;
    height: 240px;
  }
}

img.game-logo-box__img {
  width: calc(60% * var(--logo-scale, 1));
  height: calc(60% * var(--logo-scale, 1));
  -o-object-fit: contain;
     object-fit: contain;
}

.game-preview__logo img.game-logo-box__img,
.game-roster__photo img.game-logo-box__img {
  width: 100%;
  height: 100%;
}

.game-partner__logo img.game-logo-box__img {
  width: calc(92% * var(--logo-scale, 1));
  height: auto;
  aspect-ratio: auto;
}

.game-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 840px) {
  .game-preview {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }
}

@media screen and (min-width: 840px) {
  .game-preview__logo,
  .game-roster__photo,
  .game-partner__logo {
    flex: 0 0 40%;
    max-width: none;
    height: auto;
    aspect-ratio: 16/9;
    margin-inline: 0;
  }
}

.game-preview__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
@media screen and (min-width: 840px) {
  .game-preview__body {
    flex: 1 1 0;
    min-width: 0;
    align-items: flex-start;
  }
}

.game-preview__cta {
  order: -1;
  width: 100%;
}
@media screen and (min-width: 840px) {
  .game-preview__cta {
    order: 0;
    align-items: flex-start;
    margin-block-start: 32px;
  }
}

.game-preview__text,
.game-partner__text {
  max-width: 320px;
  margin: 24px auto 0;
  color: #fff;
  font: 700 14px/1.25 "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 700 !important;
}
@media screen and (min-width: 840px) {
  .game-preview__text,
  .game-partner__text {
    max-width: none;
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
  }
}

.game-roster {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-block-start: 40px;
}
@media screen and (min-width: 840px) {
  .game-roster {
    flex-direction: row;
    align-items: center;
    gap: 40px;
    margin-block-start: 64px;
  }
}

.game-roster__cta {
  width: 100%;
}
@media screen and (min-width: 840px) {
  .game-roster__cta {
    flex: 1 1 0;
    align-items: flex-start;
    margin-block-start: 0;
  }
}

.game-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 840px) {
  .game-info {
    gap: 56px;
  }
}

.game-info__title {
  margin: 0 0 4px;
  color: #fff;
  font: 700 16px/1.5 "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
@media screen and (min-width: 840px) {
  .game-info__title {
    font-size: 18px;
  }
}

.game-info__text {
  margin: 0;
  color: #fff;
  font: 400 14px/1.7 "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
@media screen and (min-width: 840px) {
  .game-info__text {
    font-size: 16px;
    line-height: 1.8;
  }
}

.game-info__notes {
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.7);
  font: 500 12px/1.6 "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
@media screen and (min-width: 840px) {
  .game-info__notes {
    font-size: 13px;
  }
}

.game-info__icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 0 0 8px;
  padding: 8px 0;
}
@media screen and (min-width: 840px) {
  .game-info__icons {
    gap: 32px;
    padding: 16px 0;
  }
}

img.game-info__icon {
  flex: 0 1 96px;
  min-width: 0;
  height: auto;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 840px) {
  img.game-info__icon {
    flex-basis: 128px;
  }
}

.game-info__item--boxed {
  padding: 12px;
  border: 1px solid #fff;
  box-sizing: border-box;
}
@media screen and (min-width: 840px) {
  .game-info__item--boxed {
    padding: 16px;
  }
}

.game-info__item--boxed .game-info__text {
  font-weight: 500 !important;
}

img.game-info__title-icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-inline-end: 4px;
  vertical-align: -1px;
}
@media screen and (min-width: 840px) {
  img.game-info__title-icon {
    width: 18px;
    height: 18px;
    vertical-align: -2px;
  }
}

.game-link,
.game-link:link,
.game-link:visited {
  color: #5C77FF;
  text-decoration: underline;
}

.game-link:hover,
.game-link:focus {
  color: #5C77FF;
  opacity: 1;
  text-decoration: none;
}

.game-notice {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin-block-start: 8px;
  padding: 12px;
  border: 1px solid #fff;
  box-sizing: border-box;
}
@media screen and (min-width: 840px) {
  .game-notice {
    gap: 8px;
    margin-block-start: 16px;
    padding: 16px;
  }
}

img.game-notice__icon {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-block-start: 4px;
}
@media screen and (min-width: 840px) {
  img.game-notice__icon {
    width: 18px;
    height: 18px;
    margin-block-start: 5px;
  }
}

.game-notice__text {
  margin: 0;
  color: #fff;
  font: 500 13px/1.7 "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 500 !important;
}
@media screen and (min-width: 840px) {
  .game-notice__text {
    font-size: 16px;
    line-height: 1.8;
  }
}

img.game-ticket__map {
  width: 100%;
  max-width: 356px;
  margin: 0 auto;
}
@media screen and (min-width: 840px) {
  img.game-ticket__map {
    max-width: 980px;
  }
}

.game-ticket__days {
  max-width: 356px;
  margin-block-start: 24px;
}
@media screen and (min-width: 840px) {
  .game-ticket__days {
    max-width: 800px;
    margin-block-start: 40px;
  }
}

.game-ticket__days .game-tabs__panel {
  padding: 0;
  border: 0;
}

.game-ticket__days :where(.game-tabs__input:not(:checked) + .game-tabs__label) {
  background: #000;
}

.game-price__table {
  width: 100%;
  max-width: 356px;
  margin-inline: auto;
  background: #000;
  border-collapse: separate;
  border-spacing: 1px;
}
@media screen and (min-width: 840px) {
  .game-price__table {
    max-width: 800px;
  }
}

.game-price__th,
.game-price__area,
.game-price__seat,
.game-price__value {
  height: 32px;
  padding: 0 8px;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  white-space: nowrap;
}
@media screen and (min-width: 840px) {
  .game-price__th,
  .game-price__area,
  .game-price__seat,
  .game-price__value {
    height: 48px;
  }
}

.game-price__th {
  background: #000;
  font: 600 14px/1 alternate-gothic-atf, sans-serif;
  text-transform: uppercase;
}
@media screen and (min-width: 840px) {
  .game-price__th {
    font-size: 18px;
  }
}

.game-price__area {
  width: 22.5%;
  background: #000;
  font: 500 14px/1 alternate-gothic-atf, sans-serif;
  text-transform: uppercase;
}
@media screen and (min-width: 840px) {
  .game-price__area {
    font-size: 18px;
  }
}

.game-price__seat {
  width: 34%;
  font: 700 13px/1 "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
@media screen and (min-width: 840px) {
  .game-price__seat {
    font-size: 16px;
  }
}

.game-price__value {
  width: 43.5%;
  font: 500 13px/1 alternate-gothic-atf, sans-serif;
}
@media screen and (min-width: 840px) {
  .game-price__value {
    font-size: 18px;
  }
}

.game-price__row--royal .game-price__seat {
  background: rgba(0, 189, 0, 0.8);
}

.game-price__row--royal .game-price__value {
  background: rgba(0, 189, 0, 0.1);
}

.game-price__row--exciting .game-price__seat {
  background: rgba(0, 158, 0, 0.8);
}

.game-price__row--exciting .game-price__value {
  background: rgba(0, 158, 0, 0.1);
}

.game-price__row--moment .game-price__seat {
  background: rgba(0, 124, 0, 0.8);
}

.game-price__row--moment .game-price__value {
  background: rgba(0, 124, 0, 0.1);
}

.game-price__row--courtside .game-price__seat {
  background: rgba(150, 164, 0, 0.8);
}

.game-price__row--courtside .game-price__value {
  background: rgba(150, 164, 0, 0.1);
}

.game-price__row--courtend .game-price__seat {
  background: rgba(121, 133, 0, 0.8);
}

.game-price__row--courtend .game-price__value {
  background: rgba(121, 133, 0, 0.1);
}

.game-price__row--pair .game-price__seat {
  background: rgba(251, 48, 198, 0.8);
}

.game-price__row--pair .game-price__value {
  background: rgba(251, 48, 198, 0.1);
}

.game-price__row--table .game-price__seat {
  background: rgba(221, 0, 169, 0.8);
}

.game-price__row--table .game-price__value {
  background: rgba(221, 0, 169, 0.1);
}

.game-price__row--dream .game-price__seat {
  background: #950672;
}

.game-price__row--dream .game-price__value {
  background: rgba(149, 6, 114, 0.1);
}

.game-price__row--side .game-price__seat {
  background: #0B84BB;
}

.game-price__row--side .game-price__value {
  background: rgba(11, 132, 187, 0.1);
}

.game-price__row--corner .game-price__seat {
  background: #0670AA;
}

.game-price__row--corner .game-price__value {
  background: rgba(6, 112, 170, 0.1);
}

.game-price__row--end .game-price__seat {
  background: #025387;
}

.game-price__row--end .game-price__value {
  background: rgba(2, 83, 135, 0.1);
}

.game-price__row--lounge .game-price__seat {
  background: #6E06AD;
}

.game-price__row--lounge .game-price__value {
  background: rgba(110, 6, 173, 0.1);
}

.game-price__row--accessibility .game-price__seat {
  background: rgba(89, 108, 118, 0.8);
}

.game-price__row--accessibility .game-price__value {
  background: rgba(89, 108, 118, 0.1);
}

.game-ticket__note {
  max-width: 356px;
  margin: 8px auto 0;
  color: #fff;
  font: 500 12px/1.5 "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 500 !important;
}
@media screen and (min-width: 840px) {
  .game-ticket__note {
    max-width: 800px;
    margin-block-start: 16px;
    font-size: 13px;
  }
}

img.game-arena__img {
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}

.game-arena__name {
  margin: 8px 0 0;
  color: #fff;
  font: 500 16px/1.5 "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 500 !important;
}
@media screen and (min-width: 840px) {
  .game-arena__name {
    margin-block-start: 24px;
    font-size: 18px;
  }
}

.game-arena__address {
  margin: 0;
  color: #fff;
  font: 500 14px/1.5 "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 500 !important;
}
@media screen and (min-width: 840px) {
  .game-arena__address {
    font-size: 16px;
  }
}

.game-partner__block--second {
  margin-block-start: 80px;
}
@media screen and (min-width: 840px) {
  .game-partner__block--second {
    margin-block-start: 120px;
  }
}

.game-partner__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 840px) {
  .game-partner__item {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
  }
}

.game-partner__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin-block-start: 16px;
}
@media screen and (min-width: 840px) {
  .game-partner__body {
    flex: 1 1 0;
    min-width: 0;
    align-items: flex-start;
    gap: 16px;
    margin-block-start: 0;
  }
}

.game-partner__text {
  margin-block-start: 0;
}

.game-nav__link:focus-visible,
.game-menu__tile:focus-visible,
.game-cta__button:focus-visible,
.game-link:focus-visible {
  position: relative;
  z-index: 10;
  outline: 2px solid #FF007A;
  outline-offset: 2px;
}

.game-card__trigger:focus-visible,
.game-modal__close:focus-visible,
.game-tabs__input:focus-visible + .game-tabs__label {
  z-index: 10;
  outline: 2px solid #FF007A;
  outline-offset: -2px;
}/*# sourceMappingURL=altiri-lp-game_26-27.css.map */