/* ---------------------------------------------------
mixin
---------------------------------------------------- */
/*-------------------------------------------
font
-------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@600;700;800&display=swap");
/*-------------------------------------------
:root
-------------------------------------------*/
:root {
  --lightgray: #DCDCDC;
  --slightgray: #F7F7F7;
  --gray: #9F9F9F;
  --mgray: #6A6A6A;
  --darkgray: #444444;
  --black: #272727;
  --richblack: #000000;
  --sat: #5FCFFF;
  --sun: #FF4646;
  --reservedGI: #fff000;
  --reservedVS: #932343;
  --reservedSS: #e50012;
  --fieldWing: #00633d;
  --reservedIS: #ed8180;
  --reservedS: #f09b9e;
  --reservedIA: #f08c00;
  --reservedA: #f6b148;
  --reservedOA: #1f286f;
  --panoramaCounter: #5084c4;
  --reservedIB: #004da0;
  --reservedB: #7fc7ef;
  --reservedC: #00b3ec;
  --homeSupporter: #fff697;
  --homeSupporterLeft: #fad7b5;
  --visitorSupporter: #d1e3bf;
}

/*-------------------------------------------
price list
-------------------------------------------*/
.c-map-pricelist {
  position: relative;
  width: 50%;
  margin: 0 auto 30px;
}
@media screen and (max-width: 1024px) {
  .c-map-pricelist {
    width: 60%;
    margin: 0 auto 20px;
  }
}
@media screen and (max-width: 768px) {
  .c-map-pricelist {
    width: 100%;
    margin: 0 auto 10px;
  }
}
.c-map-pricelist .map-image {
  display: block;
  width: 100%;
}
.c-map-pricelist .zoom-btn {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--richblack);
  border: none;
  outline: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.c-map-pricelist .zoom-btn::before, .c-map-pricelist .zoom-btn::after {
  content: "";
  position: absolute;
  background: #fff;
}
.c-map-pricelist .zoom-btn::before {
  width: 16px;
  height: 2px;
}
.c-map-pricelist .zoom-btn::after {
  width: 2px;
  height: 16px;
}
.c-map-pricelist .zoom-btn:hover {
  background: var(--gray);
  -webkit-animation: pop-back 0.4s linear;
          animation: pop-back 0.4s linear;
}

.map-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.25s ease, visibility 0s linear 0.25s;
  transition: opacity 0.25s ease, visibility 0s linear 0.25s;
}
.map-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 1;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}
.map-modal__panel {
  position: relative;
  z-index: 1;
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: opacity 0.55s ease-out 0.1s, -webkit-transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition: opacity 0.55s ease-out 0.1s, -webkit-transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition: opacity 0.55s ease-out 0.1s, transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition: opacity 0.55s ease-out 0.1s, transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1), -webkit-transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.map-modal__img {
  display: block;
  max-width: 92vw;
  max-height: 92vh;
  border-radius: 16px !important;
}
.map-modal__close {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--black);
  border: none;
  outline: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.map-modal__close::before, .map-modal__close::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
}
.map-modal__close::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.map-modal__close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.map-modal__close:hover {
  background: var(--gray);
  -webkit-animation: pop-back 0.4s linear;
          animation: pop-back 0.4s linear;
}
.map-modal[hidden] {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.map-modal[hidden] .map-modal__backdrop {
  opacity: 0;
}
.map-modal[hidden] .map-modal__panel {
  opacity: 0;
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
}

@-webkit-keyframes pop-back {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  15% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  30% {
    -webkit-transform: scale(0.85);
            transform: scale(0.85);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes pop-back {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  15% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  30% {
    -webkit-transform: scale(0.85);
            transform: scale(0.85);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.dynamic-prc {
  display: inline-block;
  border-bottom: var(--black) 1px solid;
  padding: 0 2px 10px;
  margin-top: 30px;
}
.dynamic-prc > a {
  position: relative;
  color: var(--black);
  font-weight: 600;
  padding-left: 30px;
}
.dynamic-prc > a::before {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url("/media/sites/5/ticket/seat/2026/ic_question01.svg") no-repeat 0 0;
  background-size: cover;
}
.dynamic-prc > a:hover {
  opacity: 1;
}
.dynamic-prc:hover {
  border-color: var(--mgray);
  opacity: 0.7;
}

.l-tab-pricelist .l-tab-panel {
  padding: 0;
}
.l-tab-pricelist .l-tab-panel > .c-text {
  margin: 30px;
}
@media screen and (max-width: 1024px) {
  .l-tab-pricelist .l-tab-panel > .c-text {
    margin: 20px;
  }
}
@media screen and (max-width: 768px) {
  .l-tab-pricelist .l-tab-panel > .c-text {
    margin: 20px 10px;
  }
}
@media screen and (max-width: 1024px) {
  .l-tab-pricelist .l-tab-panel > .c-text * {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .l-tab-pricelist .l-tab-panel > .c-text * {
    font-size: 3.3078880407vw;
  }
}
.l-tab-pricelist .l-tab-panel > .c-text > p + p {
  margin-top: 1em;
}
.l-tab-pricelist .l-tab-panel .l-pricelist > dl {
  display: grid;
  grid-template-columns: 2em 1fr;
  border-bottom: 1px solid var(--gray);
}
@media screen and (max-width: 1024px) {
  .l-tab-pricelist .l-tab-panel .l-pricelist > dl {
    grid-template-columns: 1.5em 1fr;
  }
}
@media screen and (max-width: 768px) {
  .l-tab-pricelist .l-tab-panel .l-pricelist > dl {
    grid-template-columns: 1.2em 1fr;
  }
}
.l-tab-pricelist .l-tab-panel .l-pricelist > dl > dt {
  display: grid;
  place-content: center;
  color: #fff;
  font-size: 1.8rem;
  font-family: "Inter", sans-serif;
}
@media screen and (max-width: 1024px) {
  .l-tab-pricelist .l-tab-panel .l-pricelist > dl > dt {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .l-tab-pricelist .l-tab-panel .l-pricelist > dl > dt {
    font-size: 3.0534351145vw;
  }
}
.l-tab-pricelist .l-tab-panel .l-pricelist > dl > dt.reservedGI, .l-tab-pricelist .l-tab-panel .l-pricelist > dl > dt.homeSupporter, .l-tab-pricelist .l-tab-panel .l-pricelist > dl > dt.homeSupporterLeft, .l-tab-pricelist .l-tab-panel .l-pricelist > dl > dt.visitorSupporter {
  color: var(--darkgray);
}
.l-tab-pricelist .l-tab-panel .l-pricelist > dl > dt.reservedGI {
  background-color: var(--reservedGI);
}
.l-tab-pricelist .l-tab-panel .l-pricelist > dl > dt.reservedVS {
  background-color: var(--reservedVS);
}
.l-tab-pricelist .l-tab-panel .l-pricelist > dl > dt.reservedSS {
  background-color: var(--reservedSS);
}
.l-tab-pricelist .l-tab-panel .l-pricelist > dl > dt.fieldWing {
  background-color: var(--fieldWing);
}
.l-tab-pricelist .l-tab-panel .l-pricelist > dl > dt.reservedIS {
  background-color: var(--reservedIS);
}
.l-tab-pricelist .l-tab-panel .l-pricelist > dl > dt.reservedS {
  background-color: var(--reservedS);
}
.l-tab-pricelist .l-tab-panel .l-pricelist > dl > dt.reservedIA {
  background-color: var(--reservedIA);
}
.l-tab-pricelist .l-tab-panel .l-pricelist > dl > dt.reservedA {
  background-color: var(--reservedA);
}
.l-tab-pricelist .l-tab-panel .l-pricelist > dl > dt.reservedOA {
  background-color: var(--reservedOA);
}
.l-tab-pricelist .l-tab-panel .l-pricelist > dl > dt.panoramaCounter {
  background-color: var(--panoramaCounter);
}
.l-tab-pricelist .l-tab-panel .l-pricelist > dl > dt.reservedIB {
  background-color: var(--reservedIB);
}
.l-tab-pricelist .l-tab-panel .l-pricelist > dl > dt.reservedB {
  background-color: var(--reservedB);
}
.l-tab-pricelist .l-tab-panel .l-pricelist > dl > dt.reservedC {
  background-color: var(--reservedC);
}
.l-tab-pricelist .l-tab-panel .l-pricelist > dl > dt.homeSupporter {
  background-color: var(--homeSupporter);
}
.l-tab-pricelist .l-tab-panel .l-pricelist > dl > dt.homeSupporterLeft {
  background-color: var(--homeSupporterLeft);
}
.l-tab-pricelist .l-tab-panel .l-pricelist > dl > dt.visitorSupporter {
  background-color: var(--visitorSupporter);
}
.l-tab-pricelist .l-tab-panel .l-pricelist > dl > dd {
  display: grid;
  grid-template-columns: 30% 70%;
}
@media screen and (max-width: 768px) {
  .l-tab-pricelist .l-tab-panel .l-pricelist > dl > dd {
    grid-template-columns: repeat(1, 1fr);
  }
}
.l-tab-pricelist .l-tab-panel .l-pricelist > dl > dd .seat-name {
  font-size: 1.6rem;
  font-weight: 500;
  padding: 15px 10px;
}
@media screen and (max-width: 1024px) {
  .l-tab-pricelist .l-tab-panel .l-pricelist > dl > dd .seat-name {
    font-size: 1.4rem;
    padding: 10px;
  }
}
@media screen and (max-width: 768px) {
  .l-tab-pricelist .l-tab-panel .l-pricelist > dl > dd .seat-name {
    font-size: 3.3078880407vw;
    padding: 5px;
  }
}
.l-tab-pricelist .l-tab-panel .l-pricelist > dl > dd .seat-name .small {
  font-size: 1.3rem;
}
@media screen and (max-width: 1024px) {
  .l-tab-pricelist .l-tab-panel .l-pricelist > dl > dd .seat-name .small {
    font-size: 1.171875vw;
  }
}
@media screen and (max-width: 768px) {
  .l-tab-pricelist .l-tab-panel .l-pricelist > dl > dd .seat-name .small {
    font-size: 2.5445292621vw;
  }
}
.l-tab-pricelist .l-tab-panel .l-pricelist > dl > dd .range-color {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
}
@media screen and (max-width: 768px) {
  .l-tab-pricelist .l-tab-panel .l-pricelist > dl > dd .range-color {
    gap: 1px;
  }
}
.l-tab-pricelist .l-tab-panel .l-pricelist > dl > dd .range-color li {
  display: grid;
  place-content: center;
  background: var(--lightgray);
  aspect-ratio: 32.64/24;
  color: #fff;
  font-size: 1.4rem;
  font-family: "Inter", sans-serif;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .l-tab-pricelist .l-tab-panel .l-pricelist > dl > dd .range-color li {
    font-size: 1.3671875vw;
  }
}
@media screen and (max-width: 768px) {
  .l-tab-pricelist .l-tab-panel .l-pricelist > dl > dd .range-color li {
    aspect-ratio: 26.45/32;
    font-size: 2.2900763359vw;
    letter-spacing: -0.1em;
  }
}
.l-tab-pricelist .l-tab-panel .l-pricelist > dl > dd .range-color li.t1 {
  background: #000;
}
.l-tab-pricelist .l-tab-panel .l-pricelist > dl > dd .range-color li.t2 {
  background: #555;
}
.l-tab-pricelist .l-tab-panel .l-pricelist > dl > dd .range-color li.t3 {
  background: #808080;
}
.l-tab-pricelist .l-tab-panel .l-pricelist > dl > dd .range-color li.t4 {
  background: #aaa;
}
.l-tab-pricelist .l-tab-panel .l-pricelist > dl > dd .range-color li.t5 {
  background: #ccc;
}
.l-tab-pricelist .l-tab-panel .l-pricelist > dl.category {
  grid-template-columns: repeat(1, 1fr);
}
.l-tab-pricelist .l-tab-panel .l-pricelist > dl.category > dt {
  justify-self: start;
  color: var(--black);
  font-size: 1.8rem;
  font-weight: 700;
  padding: 15px 10px;
}
@media screen and (max-width: 1024px) {
  .l-tab-pricelist .l-tab-panel .l-pricelist > dl.category > dt {
    font-size: 1.5rem;
    padding: 10px;
  }
}
@media screen and (max-width: 768px) {
  .l-tab-pricelist .l-tab-panel .l-pricelist > dl.category > dt {
    font-size: 3.5623409669vw;
    padding: 10px 5px;
  }
}
.l-tab-pricelist .l-tab-panel .l-pricelist > dl:first-child {
  border-top: 1px solid var(--gray);
}
.l-tab-pricelist + .c-text {
  margin-top: 36px;
}
@media screen and (max-width: 1024px) {
  .l-tab-pricelist + .c-text {
    margin-top: 24px;
  }
}
@media screen and (max-width: 1024px) {
  .l-tab-pricelist + .c-text * {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .l-tab-pricelist + .c-text * {
    font-size: 3.3078880407vw;
  }
}

.pricelist-btn {
  position: relative;
  width: 360px;
  background: var(--black);
  border-radius: 30px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin: 36px auto 0;
}
@media screen and (max-width: 1024px) {
  .pricelist-btn {
    width: 280px;
    margin: 24px auto 0;
  }
}
@media screen and (max-width: 768px) {
  .pricelist-btn {
    min-width: 40vw;
  }
}
.pricelist-btn::after {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  right: 16px;
  width: 24px;
  height: 24px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url("/media/sites/5/ticket/top/2025/ic_arrow-r_wht.svg");
}
@media screen and (max-width: 768px) {
  .pricelist-btn::after {
    right: 8px;
  }
}
.pricelist-btn > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 1.6rem;
  font-family: ryo-gothic-plusn, sans-serif;
  line-height: 1.5;
  text-align: center;
  padding: 16px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (max-width: 1024px) {
  .pricelist-btn > a {
    font-size: 1.4rem;
    line-height: 1.2;
  }
}
@media screen and (max-width: 768px) {
  .pricelist-btn > a {
    font-size: 3.5623409669vw;
  }
}
.pricelist-btn > a:hover {
  opacity: 1;
}
.pricelist-btn:hover {
  background: var(--gray);
}/*# sourceMappingURL=2026price.css.map */