/* ---------------------------------------------------
mixin
---------------------------------------------------- */
/*-------------------------------------------
font
-------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@500;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;
}

/*-------------------------------------------
seat map
-------------------------------------------*/
.l-seat-slider .seat-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 22px;
}
@media screen and (max-width: 768px) {
  .l-seat-slider .seat-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}
.l-seat-slider .seat-wrapper .seat-left, .l-seat-slider .seat-wrapper .seat-right {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .l-seat-slider .seat-wrapper .seat-left, .l-seat-slider .seat-wrapper .seat-right {
    width: 100%;
  }
}
.l-seat-slider .seat-wrapper .seat-left .seat-category {
  margin-bottom: 24px;
}
.l-seat-slider .seat-wrapper .seat-left .seat-category ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .l-seat-slider .seat-wrapper .seat-left .seat-category ul {
    gap: 4px;
  }
}
.l-seat-slider .seat-wrapper .seat-left .seat-category ul > li > a {
  display: block;
  border: var(--lightgray) 1px solid;
  border-radius: 4px;
  background: #fff;
  color: var(--black);
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  padding: 16px;
}
.l-seat-slider .seat-wrapper .seat-left .seat-category ul > li > a:hover {
  background: var(--mgray);
  color: #fff;
}
.l-seat-slider .seat-wrapper .seat-left .seat-category ul > li.is-active > a {
  background: var(--richblack);
  color: #fff;
  pointer-events: none;
}
.l-seat-slider .seat-wrapper .seat-left .seatImages .swiper-wrapper .swiper-slide {
  position: relative;
  text-align: center;
}
.l-seat-slider .seat-wrapper .seat-left .seatImages .swiper-wrapper .swiper-slide .seat-image {
  width: 100%;
}
.l-seat-slider .seat-wrapper .seat-left .seatImages .swiper-wrapper .swiper-slide .zoom-btn {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--richblack);
  border: none;
  outline: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.l-seat-slider .seat-wrapper .seat-left .seatImages .swiper-wrapper .swiper-slide .zoom-btn::before, .l-seat-slider .seat-wrapper .seat-left .seatImages .swiper-wrapper .swiper-slide .zoom-btn::after {
  content: "";
  position: absolute;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .l-seat-slider .seat-wrapper .seat-left .seatImages .swiper-wrapper .swiper-slide .zoom-btn::before, .l-seat-slider .seat-wrapper .seat-left .seatImages .swiper-wrapper .swiper-slide .zoom-btn::after {
    background: transparent;
  }
}
.l-seat-slider .seat-wrapper .seat-left .seatImages .swiper-wrapper .swiper-slide .zoom-btn::before {
  width: 16px;
  height: 2px;
}
@media screen and (max-width: 768px) {
  .l-seat-slider .seat-wrapper .seat-left .seatImages .swiper-wrapper .swiper-slide .zoom-btn::before {
    height: 16px;
    background: url(/media/sites/5/ticket/seat/2026/ic_zoom-in01.svg) no-repeat;
    background-size: cover;
  }
}
.l-seat-slider .seat-wrapper .seat-left .seatImages .swiper-wrapper .swiper-slide .zoom-btn::after {
  width: 2px;
  height: 16px;
}
@media screen and (max-width: 768px) {
  .l-seat-slider .seat-wrapper .seat-left .seatImages .swiper-wrapper .swiper-slide .zoom-btn::after {
    display: none;
  }
}
.l-seat-slider .seat-wrapper .seat-left .seatImages .swiper-wrapper .swiper-slide .zoom-btn:hover {
  background: var(--gray);
  -webkit-animation: pop-back 0.4s linear;
          animation: pop-back 0.4s linear;
}
.l-seat-slider .seat-wrapper .seat-left .seat-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px 0;
}
@media screen and (max-width: 768px) {
  .l-seat-slider .seat-wrapper .seat-left .seat-name {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding: 12px 0;
  }
}
.l-seat-slider .seat-wrapper .seat-left .seat-name .seat-title {
  color: var(--black);
  font-size: 1.8rem;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .l-seat-slider .seat-wrapper .seat-left .seat-name .seat-title {
    display: none;
  }
}
.l-seat-slider .seat-wrapper .seat-left .seat-name .seat-title .seat-title__num {
  font-family: "Inter", sans-serif;
  margin-right: 0.2em;
}
.l-seat-slider .seat-wrapper .seat-left .seat-name .seat-title .seat-title__text {
  font-family: inherit;
  font-weight: 700;
}
.l-seat-slider .seat-wrapper .seat-left .seat-name .seat-nav button {
  position: relative;
  width: 32px;
  height: 32px;
  background-color: #fff;
  border: 1px solid var(--lightgray);
  outline: none;
  border-radius: 50%;
  z-index: 10;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.l-seat-slider .seat-wrapper .seat-left .seat-name .seat-nav button:hover {
  background-color: var(--black);
}
.l-seat-slider .seat-wrapper .seat-left .seat-name .seat-nav button::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  border-top: 1px solid var(--richblack);
  border-right: 1px solid var(--richblack);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-seat-slider .seat-wrapper .seat-left .seat-name .seat-nav button:hover::before {
  border-color: #fff;
  -webkit-transform: translate(-50%, -50%) scale(1.2);
          transform: translate(-50%, -50%) scale(1.2);
}
.l-seat-slider .seat-wrapper .seat-left .seat-name .seat-nav button.seat-prev {
  -webkit-transform: rotate(-135deg) scale(1);
          transform: rotate(-135deg) scale(1);
}
.l-seat-slider .seat-wrapper .seat-left .seat-name .seat-nav button.seat-prev:hover {
  -webkit-transform: rotate(-135deg) scale(1.2);
          transform: rotate(-135deg) scale(1.2);
}
.l-seat-slider .seat-wrapper .seat-left .seat-name .seat-nav button.seat-next {
  -webkit-transform: rotate(45deg) scale(1);
          transform: rotate(45deg) scale(1);
}
.l-seat-slider .seat-wrapper .seat-left .seat-name .seat-nav button.seat-next:hover {
  -webkit-transform: rotate(45deg) scale(1.2);
          transform: rotate(45deg) scale(1.2);
}
.l-seat-slider .seat-wrapper .seat-left .seat-name .seat-nav button.seat-prev.swiper-button-disabled, .l-seat-slider .seat-wrapper .seat-left .seat-name .seat-nav button.seat-next.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.l-seat-slider .seat-wrapper .seat-left .seat-name .seat-nav button + button {
  margin-left: 12px;
}
.l-seat-slider .seat-wrapper .seat-left .seat-thumbs {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  .l-seat-slider .seat-wrapper .seat-left .seat-thumbs {
    grid-template-columns: repeat(8, 1fr);
    gap: 8px;
  }
}
@media screen and (max-width: 768px) {
  .l-seat-slider .seat-wrapper .seat-left .seat-thumbs {
    gap: 6px;
  }
}
.l-seat-slider .seat-wrapper .seat-left .seat-thumbs button {
  background: #fff;
  border-color: var(--lightgray);
  outline: none;
  aspect-ratio: 1/1;
  color: var(--black);
  font-size: 14px;
  font-family: "Inter", sans-serif;
  line-height: 1;
  cursor: pointer;
  -webkit-transition: background-color 0.5s ease 0.1s;
  transition: background-color 0.5s ease 0.1s;
}
.l-seat-slider .seat-wrapper .seat-left .seat-thumbs button.active, .l-seat-slider .seat-wrapper .seat-left .seat-thumbs button:hover {
  background: var(--black);
  color: #fff;
  border-radius: 4px;
}
.l-seat-slider .seat-wrapper .seat-left .seat-thumbs button:hover {
  opacity: 1;
  -webkit-transition-duration: 0.1s;
          transition-duration: 0.1s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
@media screen and (max-width: 768px) {
  .l-seat-slider .seat-wrapper .seat-right {
    border-top: var(--lightgray) 1px solid;
    padding-top: 40px;
  }
}
.l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper {
  position: relative;
}
.l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0 !important;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
.l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail h2 {
  color: var(--black);
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 24px;
}
@media screen and (max-width: 1024px) {
  .l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail h2 {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 768px) {
  .l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail h2 {
    font-size: 2rem;
    margin-bottom: 32px;
  }
}
.l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail h2 .num {
  font-family: "Inter", sans-serif;
  margin-right: 0.5em;
}
.l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .innerGallery {
  position: relative;
  width: 100%;
}
.l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .innerGallery img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .innerGallery .inner-pager {
  position: absolute;
  display: block;
  width: 100%;
  left: 0;
  right: 0;
  bottom: 54px;
  text-align: left;
  z-index: 10;
}
.l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .innerGallery .inner-pager .swiper-pagination-bullet {
  background: var(--black);
}
.l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .innerGallery .inner-pager .swiper-pagination-bullet:first-child {
  margin-left: 0;
}
.l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .innerGallery .inner-navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: 16px 6px 24px 0;
}
@media screen and (max-width: 768px) {
  .l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .innerGallery .inner-navi {
    margin: 12px 0 0 0;
  }
}
.l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .innerGallery .inner-navi button {
  position: relative;
  width: 32px;
  height: 32px;
  background-color: #fff;
  border: 1px solid var(--lightgray);
  outline: none;
  border-radius: 50%;
  z-index: 10;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, -webkit-transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease;
  transition: background-color 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .innerGallery .inner-navi button:hover {
  background-color: var(--black);
}
.l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .innerGallery .inner-navi button::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  border-top: 1px solid var(--richblack);
  border-right: 1px solid var(--richblack);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .innerGallery .inner-navi button:hover::before {
  border-color: #fff;
  -webkit-transform: translate(-50%, -50%) scale(1.2);
          transform: translate(-50%, -50%) scale(1.2);
}
.l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .innerGallery .inner-navi button.inner-prev {
  -webkit-transform: rotate(-135deg) scale(1);
          transform: rotate(-135deg) scale(1);
}
.l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .innerGallery .inner-navi button.inner-prev:hover {
  -webkit-transform: rotate(-135deg) scale(1.2);
          transform: rotate(-135deg) scale(1.2);
}
.l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .innerGallery .inner-navi button.inner-next {
  -webkit-transform: rotate(45deg) scale(1);
          transform: rotate(45deg) scale(1);
}
.l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .innerGallery .inner-navi button.inner-next:hover {
  -webkit-transform: rotate(45deg) scale(1.2);
          transform: rotate(45deg) scale(1.2);
}
.l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .innerGallery .inner-navi button.inner-prev.swiper-button-disabled, .l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .innerGallery .inner-navi button.inner-next.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .innerGallery .inner-navi button + button {
  margin-left: 12px;
}
.l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-text {
  border-top: var(--lightgray) 1px solid;
  padding: 40px 0 48px;
}
@media screen and (max-width: 768px) {
  .l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-text {
    border-top: none;
  }
}
.l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-text h3 {
  color: var(--black);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-text h3 {
    font-size: 1.6rem;
    margin-bottom: 32px;
  }
}
.l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-text p {
  color: var(--darkgray);
  font-size: 1.4rem;
  line-height: 1.8;
}
.l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-range {
  background: var(--slightgray);
  border-radius: 4px;
  padding: 36px 24px;
}
@media screen and (max-width: 1024px) {
  .l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-range {
    padding: 36px 16px;
  }
}
@media screen and (max-width: 768px) {
  .l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-range {
    padding: 40px 10px;
  }
}
.l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-range h3 {
  color: var(--black);
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1em;
}
.l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-range h3.comment {
  line-height: 1.5;
  margin-bottom: 0;
}
.l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-range h3 + p {
  font-size: 1.4rem;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-range h3 + p {
    font-size: 1.5625vw;
  }
}
@media screen and (max-width: 768px) {
  .l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-range h3 + p {
    font-size: 3.5623409669vw;
  }
}
.l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-range h3 + p.read {
  text-align: left;
  line-height: 1.5;
  font-size: 1.3rem;
}
@media screen and (max-width: 1024px) {
  .l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-range h3 + p.read {
    font-size: 1.46484375vw;
  }
}
@media screen and (max-width: 768px) {
  .l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-range h3 + p.read {
    font-size: 3.3078880407vw;
  }
}
.l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-range p {
  color: var(--darkgray);
  font-size: 1.3rem;
  line-height: 1.6;
}
@media screen and (max-width: 1024px) {
  .l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-range p {
    font-size: 1.46484375vw;
  }
}
@media screen and (max-width: 768px) {
  .l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-range p {
    font-size: 3.3078880407vw;
  }
}
.l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-range p.read {
  text-align: left;
}
.l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-range .range-image {
  margin: 32px 0;
}
.l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-range .range-image .axis {
  width: calc(100% - 80px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: 80px;
}
@media screen and (max-width: 1024px) {
  .l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-range .range-image .axis {
    width: calc(100% - 70px);
    margin-left: 70px;
  }
}
.l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-range .range-image .axis > li {
  color: var(--darkgray);
  font-size: 1.3rem;
  font-family: "Inter", sans-serif;
}
@media screen and (max-width: 1024px) {
  .l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-range .range-image .axis > li {
    font-size: 1.46484375vw;
  }
}
@media screen and (max-width: 768px) {
  .l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-range .range-image .axis > li {
    font-size: 3.0534351145vw;
  }
}
.l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-range .range-image .under-axis {
  position: relative;
  width: calc(100% - 80px);
  height: 8px;
  background: repeating-linear-gradient(to right, var(--gray) 0 1px, transparent 1px 10%);
  padding-right: 0;
  margin: 8px 0 8px 80px;
}
@media screen and (max-width: 1024px) {
  .l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-range .range-image .under-axis {
    width: calc(100% - 70px);
    margin: 8px 0 8px 70px;
  }
}
.l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-range .range-image .under-axis::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 1px;
  height: 8px;
  background: var(--gray);
}
.l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-range .range-image .range-color dl {
  width: 100%;
  display: grid;
  grid-template-columns: 78px repeat(11, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
}
@media screen and (max-width: 1024px) {
  .l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-range .range-image .range-color dl {
    grid-template-columns: 69px repeat(11, 1fr);
    gap: 1px;
  }
}
.l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-range .range-image .range-color dl dt {
  color: var(--black);
  font-size: 1.4rem;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-range .range-image .range-color dl dt {
    font-size: 1.5625vw;
  }
}
@media screen and (max-width: 768px) {
  .l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-range .range-image .range-color dl dt {
    font-size: 3.3078880407vw;
  }
}
.l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-range .range-image .range-color dl dd {
  background: var(--lightgray);
  aspect-ratio: 32.64/24;
}
@media screen and (max-width: 768px) {
  .l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-range .range-image .range-color dl dd {
    aspect-ratio: 26.45/32;
  }
}
.l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-range .range-image .range-color dl dd.t1 {
  background: #000;
}
.l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-range .range-image .range-color dl dd.t2 {
  background: #555;
}
.l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-range .range-image .range-color dl dd.t3 {
  background: #808080;
}
.l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-range .range-image .range-color dl dd.t4 {
  background: #aaa;
}
.l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-range .range-image .range-color dl dd.t5 {
  background: #ccc;
}
.l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-range .range-image .range-color dl dd.high {
  display: grid;
  place-content: center;
}
.l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-range .range-image .range-color dl dd.high > span {
  position: relative;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 8px;
  line-height: 1;
  padding-top: 8px;
}
@media screen and (max-width: 1024px) {
  .l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-range .range-image .range-color dl dd.high > span {
    font-size: 0.78125vw;
  }
}
@media screen and (max-width: 768px) {
  .l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-range .range-image .range-color dl dd.high > span {
    font-size: 2.0356234097vw;
    padding-top: 10px;
  }
}
.l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-range .range-image .range-color dl dd.high > span::before {
  position: absolute;
  content: "";
  background: url(/media/sites/5/ticket/seat/2026/ic_high01.svg) no-repeat;
  background-size: cover;
  width: 8px;
  height: 6px;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-range .range-image .range-color dl + dl {
  margin-top: 3px;
}
.l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-range .dynamic-prc {
  display: inline-block;
  border-bottom: var(--black) 1px solid;
  padding: 0 2px 10px;
  margin-top: 30px;
}
.l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-range .dynamic-prc > a {
  position: relative;
  color: var(--black);
  font-size: 1.4rem;
  font-weight: 600;
  padding-left: 30px;
}
@media screen and (max-width: 1024px) {
  .l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-range .dynamic-prc > a {
    font-size: 1.5625vw;
  }
}
@media screen and (max-width: 768px) {
  .l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-range .dynamic-prc > a {
    font-size: 3.5623409669vw;
  }
}
.l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-range .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;
}
.l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-range .dynamic-prc > a:hover {
  opacity: 1;
}
.l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-range .dynamic-prc:hover {
  border-color: var(--mgray);
  opacity: 0.7;
}
.l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-btn {
  position: relative;
  width: 280px;
  background: var(--black);
  border-radius: 30px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  margin: 36px auto 0;
}
@media screen and (max-width: 1024px) {
  .l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-btn {
    width: 240px;
  }
}
@media screen and (max-width: 768px) {
  .l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-btn {
    min-width: 40vw;
  }
}
.l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-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) {
  .l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-btn::after {
    right: 8px;
  }
}
.l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-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.4rem;
  font-family: ryo-gothic-plusn, sans-serif;
  line-height: 1.2;
  text-align: center;
  padding: 16px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  .l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-btn > a {
    font-size: 3.5623409669vw;
  }
}
.l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-btn > a:hover {
  opacity: 1;
}
.l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper > .swiper-slide .seat-detail .seat-btn:hover {
  background: var(--gray);
}
.l-seat-slider .seat-wrapper .seat-right .seatContents > .swiper-wrapper .swiper-slide-active {
  opacity: 1 !important;
}

.seat-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;
}
.seat-modal .seat-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 1;
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: transform 0.25s ease, opacity 0.25s ease;
  transition: transform 0.25s ease, opacity 0.25s ease, -webkit-transform 0.25s ease;
}
.seat-modal .seat-modal__panel {
  position: relative;
  background: transparent;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  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);
}
.seat-modal .seat-modal__panel .seat-modal__img {
  display: block;
  max-width: 92vw;
  max-height: 92vh;
  border-radius: 16px;
}
.seat-modal .seat-modal__panel .seat-modal__close {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--black);
  display: grid;
  place-items: center;
  border: none;
  outline: none;
  cursor: pointer;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.seat-modal .seat-modal__panel .seat-modal__close::before, .seat-modal .seat-modal__panel .seat-modal__close::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
}
.seat-modal .seat-modal__panel .seat-modal__close::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.seat-modal .seat-modal__panel .seat-modal__close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.seat-modal .seat-modal__panel .seat-modal__close:hover {
  background: var(--gray);
  -webkit-animation: pop-back 0.4s linear;
          animation: pop-back 0.4s linear;
}
.seat-modal[hidden] {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.seat-modal[hidden] .seat-modal__backdrop {
  opacity: 0;
}
.seat-modal[hidden] .seat-modal__panel {
  opacity: 0;
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
}
.seat-modal[hidden] .map-modal__close {
  -webkit-animation: none !important;
          animation: none !important;
}

@-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);
  }
}/*# sourceMappingURL=2026seat.css.map */