@charset "UTF-8";
@import "https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap";
html {
  scroll-behavior: smooth;
}

:target {
  scroll-margin-top: 3rem;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #fff;
  background-color: #036eb8;
}
body.modal_open {
  overflow: hidden;
}

a {
  color: #fff;
  text-decoration: none;
}
a.underline {
  text-decoration-line: underline;
}

ul {
  padding: 0;
  margin: 0;
}
ul li {
  list-style: none;
}

img {
  width: 100%;
  height: auto;
}

p,
span,
small,
td,
th,
a,
dd,
dt {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 31.5px;
  letter-spacing: normal;
}
@media screen and (max-width: 787px) {
  p,
span,
small,
td,
th,
a,
dd,
dt {
    font-size: 0.875rem;
    line-height: 24.5px;
    letter-spacing: 0.7px;
  }
}

.flex, .flex_pc {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media screen and (max-width: 787px) {
  .flex_pc {
    flex-wrap: wrap;
  }
  .flex_pc > * {
    width: 100%;
  }
}

br.sp {
  display: none;
}
@media screen and (max-width: 787px) {
  br.sp {
    display: block;
  }
}

p.bordered {
  padding: 0.8rem 1.5rem;
  border: #fff 1px solid;
}
@media screen and (max-width: 787px) {
  p.bordered {
    padding: 0.45rem 0.85rem;
  }
}

header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  height: 64px;
  padding: 0.75rem 4rem;
  background-color: #036eb8;
}
@media screen and (max-width: 787px) {
  header {
    height: 48px;
    padding: 0.25rem 1rem;
  }
}
header h1 img {
  width: auto;
  height: 100%;
}
header nav ul {
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  height: 100%;
}
header .btn_hamburger {
  z-index: 10;
  display: none;
  align-self: center;
  height: 30px;
  aspect-ratio: 1/1;
  cursor: pointer;
}
@media screen and (max-width: 1023px) {
  header .btn_hamburger {
    display: block;
  }
}
header .btn_hamburger i {
  display: inline-block;
  width: 100%;
  height: 100%;
}
header .btn_hamburger.closed i {
  background: center/contain no-repeat url("../img/btn_hamburger_open.svg");
}
header .btn_hamburger.opened i {
  background: center/contain no-repeat url("../img/btn_hamburger_close.svg");
}

main section {
  overflow-x: hidden;
}
main section:not(.banner_fv) {
  position: relative;
}
main section:not(.banner_fv)::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: calc( 29px + 54px + 145px + 48px );
  content: "";
  background: left/cover no-repeat url("../img/bg_h2.webp");
}
@media screen and (max-width: 787px) {
  main section:not(.banner_fv)::before {
    height: calc(15px + 29px + 19px * 2);
  }
}
main section:not(.banner_fv) h2 {
  padding: 145px 0 48px;
}
@media screen and (max-width: 787px) {
  main section:not(.banner_fv) h2 {
    padding: 19px 0;
  }
}
main section:not(.banner_fv) > * {
  width: min(78.125%, 1000px);
  margin: 0 auto;
}
@media screen and (max-width: 787px) {
  main section:not(.banner_fv) > * {
    width: calc(100% - 2rem);
  }
}
main section.has_bg_ball {
  overflow-y: hidden;
}
main section.has_bg_ball .section_inner::before {
  position: absolute;
  top: calc(calc( 1.25rem + 54px + 145px + 48px ) + 25px);
  left: 53%;
  z-index: -1;
  width: 61.32%;
  aspect-ratio: 78475/90799;
  content: "";
  background: right/contain no-repeat url("../img/bg_ball.svg");
  mix-blend-mode: normal;
}
@media screen and (max-width: 787px) {
  main section.has_bg_ball .section_inner::before {
    top: calc(calc( 0.625rem + 29px + 19px * 2 ) + 10px);
    left: 50%;
    width: 65.38%;
  }
}
main section .section_inner {
  margin: 5rem auto;
}
@media screen and (max-width: 787px) {
  main section .section_inner {
    margin: 2.5rem auto;
  }
}
main section .section_inner.terms h4 {
  margin-bottom: 0.5rem;
}
main section .section_inner.terms p {
  margin-bottom: 1rem;
  font-weight: 400;
}
main section .section_inner.terms p + h4 {
  margin-top: 2rem;
}
main section .section_inner ul li > p {
  margin-left: 1em;
  text-indent: -1em;
}
main section .btn_purchase_outer {
  overflow: visible;
  filter: drop-shadow(0 3px 6px #00000035);
}
main section .btn_purchase_outer .btn_purchase {
  width: -moz-max-content;
  width: max-content;
  margin: 3rem auto;
  clip-path: inset(0 round calc(calc(1.25rem * 2 + 31px)/2));
  background-color: #003256;
  border-radius: calc(calc(1.25rem * 2 + 31px)/2);
}
main section .btn_purchase_outer .btn_purchase img {
  transition: all 0.3s ease;
}
@media screen and (max-width: 787px) {
  main section .btn_purchase_outer .btn_purchase {
    width: 100%;
    clip-path: inset(0 round calc(calc(1.25rem * 2 + 31.5px) / 2));
    border-radius: calc(calc(1.25rem * 2 + 31.5px) / 2);
  }
}
main section .btn_purchase_outer .btn_purchase .btn_purchase_inner {
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
  justify-content: center;
  padding: 1.25rem 5rem;
  pointer-events: none;
}
@media screen and (max-width: 787px) {
  main section .btn_purchase_outer .btn_purchase .btn_purchase_inner {
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
    padding: 1.25rem 0;
  }
}
main section .btn_purchase_outer .btn_purchase .btn_purchase_inner p {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 31px;
  letter-spacing: 2px;
}
@media screen and (max-width: 787px) {
  main section .btn_purchase_outer .btn_purchase .btn_purchase_inner p {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 31.5px;
    letter-spacing: 0.7px;
  }
}
main section .btn_purchase_outer .btn_purchase .btn_purchase_inner img {
  width: auto;
  height: 25px;
}
@media screen and (max-width: 787px) {
  main section .btn_purchase_outer .btn_purchase .btn_purchase_inner img {
    height: 17px;
  }
}
main section .btn_purchase_outer .btn_purchase:hover {
  background-color: #004170;
}
main section .btn_purchase_outer .btn_purchase:hover img {
  transform: translateX(0.25rem);
}
main section .has_h3 h3 {
  display: inline-block;
  padding: 12px 20px;
  margin: 0 0 1rem;
  color: #036eb8;
  background-color: #fff;
  border-left: 4px solid #f2b121;
}
@media screen and (max-width: 787px) {
  main section .has_h3 h3 {
    margin: 0 0 1.5rem;
  }
}
main section .has_h3 > div:not(:first-child) {
  margin-top: 3rem;
}
main section .has_h3 > div:not(:last-child) {
  margin-bottom: 3rem;
}

.seat_select_container {
  align-items: start;
}
.seat_select_container .map-description {
  margin: 1rem 0;
}
.seat_select_container .map-description p {
  margin: 1rem 0 0;
  text-align: center;
}
@media screen and (max-width: 787px) {
  .seat_select_container .map-description p:not(:has(strong)) {
    letter-spacing: 0px;
  }
}
.seat_select_container .map-description p strong {
  font-size: 1.5rem;
}
.seat_select_container #svg-container {
  width: 100%;
  padding: 1rem;
  background-color: #fff;
}
@media screen and (max-width: 787px) {
  .seat_select_container #svg-container {
    width: 100%;
  }
}
.seat_select_container .select-seat-buttons_container {
  width: 100%;
  margin-top: 4.5rem;
}
@media screen and (max-width: 787px) {
  .seat_select_container .select-seat-buttons_container {
    margin-top: 3rem;
  }
}
.seat_select_container .select-seat-buttons_container .btn_select-seat_container {
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0 0 4rem;
}
@media screen and (max-width: 787px) {
  .seat_select_container .select-seat-buttons_container .btn_select-seat_container {
    margin: 0 0 3rem;
  }
}
.seat_select_container .select-seat-buttons_container .btn_select-seat_container .seatmap-container {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
}
@media screen and (max-width: 787px) {
  .seat_select_container .select-seat-buttons_container .btn_select-seat_container .seatmap-container {
    margin-bottom: 0;
  }
}
.seat_select_container .select-seat-buttons_container .btn_select-seat_container .seatmap-container.seatmap-zoom {
  background-color: #5f676c;
}
.seat_select_container .select-seat-buttons_container .btn_select-seat_container .seatmap-container:not(.seatmap-zoom) {
  background-color: #fff;
}
.seat_select_container .select-seat-buttons_container .btn_select-seat_container .btn_select-seat_outer {
  width: calc(50% - 1rem / 2);
  overflow: visible;
  filter: drop-shadow(0 3px 6px #00000035);
}
.seat_select_container .select-seat-buttons_container .btn_select-seat_container .btn_select-seat_outer.dummy {
  pointer-events: none;
  cursor: auto;
  visibility: collapse;
}
.seat_select_container .select-seat-buttons_container .btn_select-seat_container .btn_select-seat_outer .btn_select-seat {
  padding: 0.65rem 0;
  margin: 0;
  cursor: pointer;
  border-radius: 6px;
  color: #fff;
  background: #003256;
  border: solid 1px #727171;
  transition: background 0.3s ease;
}
.seat_select_container .select-seat-buttons_container .btn_select-seat_container .btn_select-seat_outer .btn_select-seat:hover {
  background: #004170;
}
.seat_select_container .select-seat-buttons_container .btn_select-seat_container .btn_select-seat_outer .btn_select-seat p {
  text-align: center;
}
.seat_select_container .select-seat-buttons_container .btn_select-seat_container .btn_select-seat_outer .btn_select-seat.btn_gr {
  color: #fff;
  background: #006857;
  border: solid 1px #727171;
  transition: background 0.3s ease;
}
.seat_select_container .select-seat-buttons_container .btn_select-seat_container .btn_select-seat_outer .btn_select-seat.btn_gr:hover {
  background: #00826c;
}
.seat_select_container .select-seat-buttons_container .btn_select-seat_container .btn_select-seat_outer .btn_select-seat.btn_wh {
  color: #003256;
  background: #fff;
  border: solid 1px #727171;
  transition: background 0.3s ease;
}
.seat_select_container .select-seat-buttons_container .btn_select-seat_container .btn_select-seat_outer .btn_select-seat.btn_wh:hover {
  background: white;
}
.seat_select_container .select-seat-buttons_container .btn_select-seat_container .btn_select-seat_outer .btn_select-seat.btn_wh:hover {
  background: #e0e0e0;
}

#touch-area-0,
#touch-area-1,
#touch-area-2,
#touch-area-3 {
  cursor: pointer;
}

.table_container {
  width: calc(100% + 8px);
  margin: 0 0 1rem;
  overflow-x: scroll;
  white-space: nowrap;
  scrollbar-width: none;
  transform: translateX(-4px);
}
@media screen and (max-width: 787px) {
  .table_container.table_pc {
    display: none;
  }
}
.table_container.table_sp {
  display: none;
}
@media screen and (max-width: 787px) {
  .table_container.table_sp {
    display: block;
  }
  .table_container.table_sp tbody th {
    width: max(calc((100vw - 2rem) / 3), 114px);
  }
}
.table_container table {
  width: 100%;
  table-layout: fixed;
  border-spacing: 0;
}
.table_container td,
.table_container th {
  padding: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5rem;
  text-align: center;
  letter-spacing: 0;
}
.table_container td:not(:first-child),
.table_container th:not(:first-child) {
  width: 13.75rem;
}
@media screen and (max-width: 787px) {
  .table_container td:not(:first-child),
.table_container th:not(:first-child) {
    width: calc(12.5rem);
  }
}
.table_container td:first-child,
.table_container th:first-child {
  width: 8rem;
}
@media screen and (max-width: 787px) {
  .table_container td:first-child,
.table_container th:first-child {
    width: calc(8rem * 0.875);
  }
}
@media screen and (max-width: 787px) {
  .table_container td,
.table_container th {
    font-size: 0.875rem;
  }
}
.table_container td small,
.table_container th small {
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1;
}
@media screen and (max-width: 787px) {
  .table_container thead th {
    letter-spacing: 0.7px;
  }
}
.table_container td {
  color: #000;
}
.table_container .ticket_type {
  background-color: #000;
}
.table_container thead th.owner {
  background-color: #de9d9b;
}
.table_container thead th.premier {
  background-color: #8c7f29;
}
.table_container thead th.loyal {
  background-color: #7c7c7d;
}
.table_container thead th.highgrade {
  background-color: #71442c;
}
.table_container thead th.susanoblue {
  background-color: #31709c;
}
.table_container thead th.beginner {
  background-color: #393939;
}
.table_container thead th.standard {
  color: #000;
  background-color: #ccc;
}
.table_container tbody td.owner {
  background-color: #f4dede;
}
.table_container tbody td.premier {
  background-color: #e5dfc5;
}
.table_container tbody td.loyal {
  background-color: #d5d5d5;
}
.table_container tbody td.highgrade {
  background-color: #e8d4c9;
}
.table_container tbody td.susanoblue {
  background-color: #daeefc;
}
.table_container tbody td.beginner {
  background-color: #eaeaea;
}
.table_container tbody td.standard {
  background-color: #fff;
}

footer {
  padding: 85px 4rem 80px;
  background-color: #003256;
}
@media screen and (max-width: 1023px) {
  footer.flex_pc,
footer .flex_pc {
    flex-wrap: wrap;
  }
  footer.flex_pc > *,
footer .flex_pc > * {
    width: 100%;
  }
}
@media screen and (max-width: 1023px) {
  footer {
    padding: 3rem 1.5rem 1.5rem;
  }
}
footer :where(.flex, .flex_pc) {
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
@media screen and (max-width: 1023px) {
  footer :where(.flex, .flex_pc) {
    -moz-column-gap: unset;
         column-gap: unset;
  }
}
@media screen and (max-width: 1023px) {
  footer .logo_footer {
    width: max(51%, 175px);
    margin: 0 auto;
  }
}
@media screen and (max-width: 1023px) {
  footer .footer_nav {
    margin: 2rem 0 1.5rem;
  }
}
@media screen and (max-width: 1023px) {
  footer .footer_nav ul {
    -moz-column-gap: 1rem;
         column-gap: 1rem;
    justify-content: center;
  }
}
@media screen and (max-width: 1023px) {
  footer .copyright {
    display: inline-block;
    width: 100%;
    text-align: center;
  }
}

@media screen and (max-width: 1023px) {
  body.seasonseat header nav {
    position: absolute;
    right: 0;
    left: 0;
    height: 0;
    overflow: hidden;
    visibility: collapse;
    background-color: #036eb8;
    transition: all 0.2s;
  }
  body.seasonseat header nav ul {
    flex-wrap: wrap;
    row-gap: 2rem;
    place-content: center center;
    align-items: center;
  }
  body.seasonseat header nav ul li {
    width: 100%;
    text-align: center;
  }
  body.seasonseat header nav ul li p {
    display: inline-block;
  }
  body.seasonseat header nav.active {
    top: 0;
    height: 100vh;
    height: 100dvh;
    overflow-y: scroll;
    visibility: visible;
  }
}

.benefits_container {
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
@media screen and (max-width: 787px) {
  .benefits_container {
    flex-wrap: wrap;
    row-gap: 1rem;
    width: 100%;
  }
}

@media screen and (max-width: 1310px) {
  body.ticket header nav {
    position: absolute;
    right: 0;
    left: 0;
    height: 0;
    overflow: hidden;
    visibility: collapse;
    background-color: #036eb8;
    transition: all 0.2s;
  }
  body.ticket header nav ul {
    flex-wrap: wrap;
    row-gap: 2rem;
    place-content: center center;
    align-items: center;
  }
  body.ticket header nav ul li {
    width: 100%;
    text-align: center;
  }
  body.ticket header nav ul li p {
    display: inline-block;
  }
  body.ticket header nav.active {
    top: 0;
    height: 100vh;
    height: 100dvh;
    overflow-y: scroll;
    visibility: visible;
  }
}
@media screen and (max-width: 1310px) {
  body.ticket header .btn_hamburger {
    display: block;
  }
}

.table_notion {
  -moz-column-gap: 0;
       column-gap: 0;
  align-items: start;
  justify-content: start;
}
@media screen and (max-width: 787px) {
  .table_notion {
    margin: 0 0 0.5rem;
  }
}

.faq .faq_container .faq_content {
  margin: 2rem 0;
}
.faq .faq_container .faq_content dl {
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
  align-items: start;
  justify-content: start;
  margin: 1rem 0;
}
@media screen and (max-width: 787px) {
  .faq .faq_container .faq_content dl {
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }
}
.faq .faq_container .faq_content dl dt {
  font-family: abolition, sans-serif;
  font-size: 1.5rem;
  letter-spacing: 2.4px;
}
@media screen and (max-width: 787px) {
  .faq .faq_container .faq_content dl dt {
    font-size: 1.25rem;
  }
}
.faq .faq_container .faq_content dl dd {
  word-break: break-word;
}
.faq .faq_container .faq_content dl.question dt {
  color: #55b9ff;
}
.faq .faq_container .faq_content dl.question dd {
  font-weight: 700;
}
.faq .faq_container .faq_content dl.answer dt {
  color: #ce8080;
}

.noto-sm, header nav ul p, footer .footer_nav ul li {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.7px;
}
@media screen and (max-width: 787px) {
  .noto-sm, header nav ul p, footer .footer_nav ul li {
    font-weight: 500;
  }
}

.noto-xs, footer .copyright {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.55px;
}
@media screen and (max-width: 787px) {
  .noto-xs, footer .copyright {
    font-size: 9px;
    letter-spacing: 0.45px;
  }
}

@media screen and (max-width: 787px) {
  .noto-md-sp, header nav ul p {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: normal;
  }
}

.noto-lg, .tingle-modal-box h3, main section .has_h3 h3 {
  font-size: 20px;
  font-weight: 900;
  line-height: 31px;
  letter-spacing: 2px;
}
@media screen and (max-width: 787px) {
  .noto-lg, .tingle-modal-box h3, main section .has_h3 h3 {
    font-size: 1rem;
    line-height: 24px;
    letter-spacing: 1.6px;
  }
}

h2 {
  font-size: 1.25rem;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 2px;
}
@media screen and (max-width: 787px) {
  h2 {
    font-size: 0.625rem;
    letter-spacing: normal;
  }
}
h2 span {
  font-family: abolition, sans-serif;
  font-size: 3rem;
  line-height: 54px;
  letter-spacing: 4.8px;
}
@media screen and (max-width: 787px) {
  h2 span {
    font-size: 1.625rem;
    line-height: 29px;
    letter-spacing: 2.6px;
  }
}

@font-face {
  font-family: abolition;
  font-style: italic;
  font-weight: 400;
  src: url("https://use.typekit.net/af/19ba86/0000000000000000000171ad/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i4&v=3") format("woff2"), url("https://use.typekit.net/af/19ba86/0000000000000000000171ad/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i4&v=3") format("woff"), url("https://use.typekit.net/af/19ba86/0000000000000000000171ad/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=i4&v=3") format("opentype");
}
@font-face {
  font-family: abolition;
  font-style: normal;
  font-weight: 400;
  src: url("https://use.typekit.net/af/50a714/0000000000000000000171ae/27/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff2"), url("https://use.typekit.net/af/50a714/0000000000000000000171ae/27/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff"), url("https://use.typekit.net/af/50a714/0000000000000000000171ae/27/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("opentype");
}
.svg-container {
  overflow: hidden;
}
.svg-container .hover {
  filter: saturate(110%) brightness(110%);
  transition: 0.2s ease;
}
.svg-container #touch-area > * {
  cursor: pointer;
}

.tingle-modal {
  cursor: default;
  background: #00000090;
}
.tingle-modal .tingle-modal__close {
  top: calc(10% + 1rem);
  right: calc(5% + 1rem);
  left: unset;
  width: 2rem;
  height: 2rem;
  color: #000;
  background-color: transparent;
}
@media screen and (max-width: 787px) {
  .tingle-modal .tingle-modal__close {
    top: calc(5% + 1rem);
    right: calc(5% + 1rem);
    left: unset;
    width: 1.5rem;
    height: 1.5rem;
  }
}
.tingle-modal .tingle-modal__close .tingle-modal__closeIcon {
  width: 100%;
  height: 100%;
}
.tingle-modal .tingle-modal__close .tingle-modal__closeLabel {
  display: none;
}
.tingle-modal .tingle-modal-box-outer {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 90%;
  height: 80%;
  overflow: hidden;
  border-radius: 4px;
}
@media screen and (max-width: 787px) {
  .tingle-modal .tingle-modal-box-outer {
    top: 5%;
    height: 90%;
  }
}
.tingle-modal-box {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
}
.tingle-modal-box * {
  color: #000;
}
.tingle-modal-box h3 {
  display: inline-block;
  padding: 12px 20px;
  margin: 0 0 1rem;
  color: #036eb8;
  background-color: #fff;
  border-left: 4px solid #f2b121;
}
@media screen and (max-width: 787px) {
  .tingle-modal-box h3 {
    margin: 0 0 1.5rem;
  }
}
.tingle-modal-box h4 {
  margin: 0 0 1rem;
  color: #036eb8;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.35rem;
}
@media screen and (max-width: 787px) {
  .tingle-modal-box__content {
    padding: 1rem;
  }
}
.tingle-modal-box__content-inner .seat-modal_inner {
  gap: 2rem;
  align-items: stretch;
}
.tingle-modal-box__content-inner .seat-modal_inner .seat-maps {
  width: 40%;
  padding: 2rem 1rem;
  background-color: #f0f0f0;
  border-radius: 1rem;
}
@media screen and (max-width: 787px) {
  .tingle-modal-box__content-inner .seat-modal_inner .seat-maps {
    width: 100%;
  }
}
.tingle-modal-box__content-inner .seat-modal_inner .seat-maps > * {
  margin: 0 0 1rem;
}
.tingle-modal-box__content-inner .seat-modal_inner .seat_descriptions {
  width: 60%;
}
@media screen and (max-width: 787px) {
  .tingle-modal-box__content-inner .seat-modal_inner .seat_descriptions {
    width: 100%;
  }
}
.tingle-modal-box__content-inner .seat-modal_inner .seat_descriptions .kids-price {
  line-height: normal;
  margin: 0 0 1rem;
}
.tingle-modal-box__content-inner .seat-modal_inner .seat_descriptions > * div,
.tingle-modal-box__content-inner .seat-modal_inner .seat_descriptions > * p,
.tingle-modal-box__content-inner .seat-modal_inner .seat_descriptions > * small {
  margin: 0 0 1rem;
  font-size: 16px;
  line-height: 1.75;
}
.tingle-modal-box__content-inner .seat-modal_inner .seat_descriptions > * small {
  font-size: smaller;
}
.tingle-modal-box__content-inner .seat-modal_inner .seat_descriptions .pricing-table_container {
  width: 100%;
  overflow-x: scroll;
}
.tingle-modal-box__content-inner .seat-modal_inner .seat_descriptions .pricing-table_container table {
  width: auto;
  max-width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}
.tingle-modal-box__content-inner .seat-modal_inner .seat_descriptions .pricing-table_container table th,
.tingle-modal-box__content-inner .seat-modal_inner .seat_descriptions .pricing-table_container table td {
  width: 3.6rem;
  height: 3.6rem;
  padding: 0;
  padding: 0.25rem;
  font-size: 0.85rem;
  text-align: center;
  white-space: nowrap;
  direction: ltr;
  vertical-align: middle;
  line-height: 1;
}
.tingle-modal-box__content-inner .seat-modal_inner .seat_descriptions .pricing-table_container table th[class*=bg-color],
.tingle-modal-box__content-inner .seat-modal_inner .seat_descriptions .pricing-table_container table td[class*=bg-color] {
  padding: 4px;
}
.tingle-modal-box__content-inner .seat-modal_inner .seat_descriptions .pricing-table_container table th[class*=bg-color]::before,
.tingle-modal-box__content-inner .seat-modal_inner .seat_descriptions .pricing-table_container table td[class*=bg-color]::before {
  display: block;
  height: 100%;
  aspect-ratio: 1/1;
  content: "";
}
.tingle-modal-box__content-inner .seat-modal_inner .seat_descriptions .pricing-table_container table th.line-index,
.tingle-modal-box__content-inner .seat-modal_inner .seat_descriptions .pricing-table_container table td.line-index {
  width: 2.5rem;
}
.tingle-modal-box__content-inner .seat-modal_inner .seat_descriptions .pricing-table_container table th.block-id,
.tingle-modal-box__content-inner .seat-modal_inner .seat_descriptions .pricing-table_container table td.block-id {
  min-width: 3.4rem;
}
.tingle-modal-box__content-inner .seat-modal_inner .seat_descriptions .pricing-table_container table th small,
.tingle-modal-box__content-inner .seat-modal_inner .seat_descriptions .pricing-table_container table td small {
  font-size: 0.625rem;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
}
.tingle-modal-box__content-inner .seat-modal_inner .seat_descriptions .pricing-table_container table th {
  border: 1px solid #005089;
}
.tingle-modal-box__content-inner .seat-modal_inner .seat_descriptions .pricing-table_container table td {
  border: 1px solid #003256;
}
.tingle-modal-box__content-inner .seat-modal_inner .seat_descriptions .pricing-table_container table td span {
  display: block;
  margin-top: -0.8rem;
  font-size: 0.8em;
  font-weight: inherit;
  color: inherit;
}
.tingle-modal-box__content-inner .seat-modal_inner .seat_descriptions .pricing-table_container table .row_spacing th,
.tingle-modal-box__content-inner .seat-modal_inner .seat_descriptions .pricing-table_container table .row_spacing td {
  padding: 0.25rem 0;
  border: unset;
}
.tingle-modal-box__content-inner .seat-modal_inner .seat_descriptions .pricing-table_container table .pricing-cell:not(.block-id, .line-index)::before {
  content: "¥";
}
.tingle-modal-box__content-inner .seat-modal_inner .seat_descriptions .court-views_container {
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
}
.tingle-modal-box__content-inner .seat-modal_inner .seat_descriptions .court-views_container .court-views_content {
  width: calc(50% - 0.5rem);
}
@media screen and (max-width: 787px) {
  .tingle-modal-box__content-inner .seat-modal_inner .seat_descriptions .court-views_container .court-views_content {
    width: 100%;
  }
}
.tingle-modal-box__content-inner.seat-modal_tp tr:not(.row_spacing) th:not(.block-id, .line-index)::before {
  content: "¥";
}

.seat-modal_tp .ritz {
  scrollbar-color: #ccc #fff;
}
.seat-modal_tp .ritz::-webkit-scrollbar-thumb {
  background-color: #fff;
}
.seat-modal_tp .ritz thead th {
  color: #fff;
  background-color: #003256;
  border-color: #036eb8;
}
.seat-modal_tp .ritz tbody .line-index {
  color: #fff;
  background: #005089;
}
.seat-modal_tp .ritz tbody .block-id {
  color: #fff;
  background: #005ea3;
}
.seat-modal_tp .ritz tbody tr:not(.row_spacing) {
  border: #003256 1px solid !important;
}
.seat-modal_tp .ritz tbody tr:not(.row_spacing) th {
  border: #003256 1px solid !important;
}
.seat-modal_tp .ritz td {
  border: none !important;
}
.seat-modal_tp .ritz td[class*=bg-color] {
  background-color: #fff;
}
.seat-modal_tp .ritz td[class*=bg-color].bg-color-1::before {
  background-color: #048cea;
}
.seat-modal_tp .ritz td[class*=bg-color].bg-color-2::before {
  background-color: rgba(4, 140, 234, 0.75);
}
.seat-modal_tp .ritz td[class*=bg-color].bg-color-3::before {
  background-color: rgba(4, 140, 234, 0.6);
}
.seat-modal_tp .ritz td[class*=bg-color].bg-color-4::before {
  background-color: rgba(4, 140, 234, 0.45);
}
.seat-modal_tp .ritz td[class*=bg-color].bg-color-5::before {
  background-color: rgba(4, 140, 234, 0.3);
}
.seat-modal_tp .ritz td[class*=bg-color].bg-color-6::before {
  background-color: rgba(4, 140, 234, 0.15);
}
.seat-modal_tp .ritz td[class*=bg-color].bg-color-7::before, .seat-modal_tp .ritz td[class*=bg-color].bg-color-8::before, .seat-modal_tp .ritz td[class*=bg-color].bg-color-9::before {
  background-color: #fff;
}

.seat-modal_ss .pricing-table_container thead th {
  color: #fff;
  background-color: #003256;
  border-color: #036eb8;
}
.seat-modal_ss .pricing-table_container tbody .line-index {
  color: #fff;
  background: #005089;
}
.seat-modal_ss .pricing-table_container tbody .block-id {
  color: #fff;
  background: #005ea3;
}