@charset "UTF-8";

:root {
  --p5-bg: #08080b;
  --p5-surface: rgba(8, 8, 12, 0.84);
  --p5-surface-strong: rgba(10, 10, 15, 0.96);
  --p5-border: rgba(230, 180, 34, 0.34);
  --p5-border-strong: rgba(230, 180, 34, 0.72);
  --p5-gold: #e6b422;
  --p5-gold-soft: #f7dfa1;
  --p5-red: #cf1236;
  --p5-red-deep: #7f0920;
  --p5-cyan: #49bfd7;
  --p5-violet: #8b39ac;
  --p5-text: #f7f4ec;
  --p5-muted: rgba(247, 244, 236, 0.72);
  --p5-shadow: 0 20px 60px rgba(0, 0, 0, 0.42);
  --p5-radius: 18px;
  --p5-max: 1180px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body.p5-ui-refresh {
  color: var(--p5-text);
  background:
    radial-gradient(circle at top left, rgba(207, 18, 54, 0.12), transparent 24%),
    radial-gradient(circle at top right, rgba(73, 191, 215, 0.1), transparent 18%),
    #07070a;
}

body.p5-ui-refresh a {
  transition: color .24s ease, background-color .24s ease, border-color .24s ease, transform .24s ease, box-shadow .24s ease, opacity .24s ease;
}

body.p5-ui-refresh a:hover {
  background-color: transparent;
}

body.p5-ui-refresh .header {
  height: auto;
  min-height: 80px;
  padding: 14px 24px;
  background: linear-gradient(180deg, rgba(4,4,6,.95) 0%, rgba(7,7,10,.82) 100%);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

body.p5-ui-refresh .header-logo {
  width: 120px;
  display: flex;
  align-items: center;
}

body.p5-ui-refresh .global-navigation {
  display: flex;
  align-items: center;
}

body.p5-ui-refresh .global-navigation-lists {
  align-items: center;
  gap: 10px;
  font-size: 1.55rem;
  flex-wrap: wrap;
}

body.p5-ui-refresh .global-navigation-list {
  margin-left: 0;
  padding: 0;
}

body.p5-ui-refresh .global-navigation-list::before {
  display: none;
}

body.p5-ui-refresh .global-navigation-list a {
  height: auto;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--p5-gold-soft);
  border: 1px solid transparent;
  font-size: clamp(1.25rem, 1vw, 1.45rem);
  letter-spacing: .06em;
}

body.p5-ui-refresh .global-navigation-list a:hover,
body.p5-ui-refresh .global-navigation-list a:focus-visible {
  color: #fff;
  background: linear-gradient(135deg, rgba(207,18,54,.9), rgba(122,9,32,.9));
  border-color: rgba(255,255,255,.12);
  box-shadow: 0 10px 24px rgba(207,18,54,.26);
}

body.p5-ui-refresh .topmain {
  position: relative;
  padding-bottom: 48px;
}

body.p5-ui-refresh .topmain::before {
  content: "";
  position: absolute;
  inset: 80px 0 auto 0;
  height: min(72vw, 760px);
  background: linear-gradient(180deg, rgba(0,0,0,0) 50%, rgba(7,7,10,1) 100%);
  pointer-events: none;
  z-index: 2;
}

body.p5-ui-refresh .topmain-image {
  margin-top: 80px;
  box-shadow: none;
}

body.p5-ui-refresh .topmain-image img {
  display: block;
  width: 100%;
  min-height: 480px;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.03);
}

body.p5-ui-refresh .topmain-lead {
  position: relative;
  z-index: 3;
  max-width: min(92vw, 1120px);
  margin: -84px auto 0;
  padding: 0 20px;
}

body.p5-ui-refresh .topmain-lead img {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.42));
}

body.p5-ui-refresh .hero-info-bar {
  position: relative;
  z-index: 3;
  width: min(1120px, calc(100% - 40px));
  margin: 28px auto 0;
  padding: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  gap: 16px;
  background: linear-gradient(135deg, rgba(7,7,10,.92), rgba(17,17,24,.88));
  border: 1px solid var(--p5-border);
  border-radius: 24px;
  box-shadow: var(--p5-shadow);
  backdrop-filter: blur(12px);
}

body.p5-ui-refresh .hero-info-card {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.08);
}

body.p5-ui-refresh .hero-info-card strong {
  font-size: clamp(1.8rem, 2vw, 2.4rem);
  line-height: 1.2;
  color: #fff;
}

body.p5-ui-refresh .hero-info-card span:last-child {
  color: var(--p5-muted);
  line-height: 1.5;
  font-size: 1.4rem;
}

body.p5-ui-refresh .hero-info-card__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  font-size: 1.15rem;
  letter-spacing: .18em;
  color: var(--p5-gold);
}

body.p5-ui-refresh .hero-info-card__label::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--p5-gold), #fff0b2);
  box-shadow: 0 0 10px rgba(230,180,34,.55);
}

body.p5-ui-refresh .hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}

body.p5-ui-refresh .hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .06em;
}

body.p5-ui-refresh .hero-cta::after {
  content: "→";
  margin-left: 10px;
  font-size: 1.2em;
}

body.p5-ui-refresh .hero-cta--primary {
  background: linear-gradient(135deg, #d21438 0%, #8f0a27 100%);
  border-color: rgba(255,255,255,.12);
  box-shadow: 0 14px 28px rgba(210,20,56,.28);
}

body.p5-ui-refresh .hero-cta:hover,
body.p5-ui-refresh .hero-cta:focus-visible {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 12px 24px rgba(0,0,0,.28);
}

body.p5-ui-refresh .yt-thumb {
  position: relative;
  width: min(1120px, calc(100% - 40px));
  margin: 30px auto 0;
  padding: 20px;
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(9,9,13,.92), rgba(21,21,28,.84));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: var(--p5-shadow);
  overflow: hidden;
}

body.p5-ui-refresh .yt-thumb::before {
  content: "VIDEO";
  position: absolute;
  top: 18px;
  left: 20px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: var(--p5-gold-soft);
  font-size: 1.1rem;
  letter-spacing: .18em;
  z-index: 2;
}

body.p5-ui-refresh .desc-text {
  display: inline-block;
  margin: 8px auto 18px;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(0,0,0,.58);
  color: #fff;
  line-height: 1.8;
  box-shadow: 0 8px 24px rgba(0,0,0,.24);
}

body.p5-ui-refresh .yt-thumb img {
  padding: 0;
  border-radius: 18px;
}

body.p5-ui-refresh .top-info-wrapper,
body.p5-ui-refresh .wrapper-default {
  max-width: var(--p5-max);
  width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
}

body.p5-ui-refresh .top-info-wrapper {
  display: block;
  margin-top: 48px;
  margin-bottom: 110px;
}

body.p5-ui-refresh .top-info-section {
  width: 100%;
  margin: 0;
}

body.p5-ui-refresh .section-default {
  padding-top: 36px;
}

body.p5-ui-refresh .heading-default,
body.p5-ui-refresh .top-info-heading {
  margin-bottom: 20px;
}

body.p5-ui-refresh .top-info-heading::before {
  height: 3px;
  background: linear-gradient(90deg, var(--p5-gold) 0%, rgba(230,180,34,0) 100%);
}

body.p5-ui-refresh .frame-default,
body.p5-ui-refresh .frame-default1,
body.p5-ui-refresh .top-news-lists-container,
body.p5-ui-refresh .top-ticket-goods-frame,
body.p5-ui-refresh .top-ticket-goods-frame1,
body.p5-ui-refresh .top-ticket-caution-frame,
body.p5-ui-refresh .note-box,
body.p5-ui-refresh .notice__inner {
  border-radius: var(--p5-radius);
  background: linear-gradient(180deg, rgba(10,10,15,.96) 0%, rgba(18,18,25,.9) 100%);
  border: 1px solid var(--p5-border);
  box-shadow: var(--p5-shadow);
}

body.p5-ui-refresh .frame-default,
body.p5-ui-refresh .frame-default1 {
  padding: 28px;
}

body.p5-ui-refresh .top-news-lists-container {
  height: auto;
  max-height: 440px;
  padding: 20px;
}

body.p5-ui-refresh .top-news-list-item {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 18px;
  align-items: start;
  margin-bottom: 12px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  background: rgba(255,255,255,.03);
}

body.p5-ui-refresh .top-news-list-item:last-child {
  margin-bottom: 0;
}

body.p5-ui-refresh .top-news-lists dt {
  margin-bottom: 0;
  font-size: 1.4rem;
  color: var(--p5-gold);
}

body.p5-ui-refresh .top-news-lists dd {
  line-height: 1.7;
  font-size: 1.55rem;
}

body.p5-ui-refresh .top-news-lists dd a {
  color: #fff;
}

body.p5-ui-refresh .top-news-lists dd a::before {
  display: none;
}

body.p5-ui-refresh .top-news-lists dd a::after {
  inset: auto 0 0 0;
  height: 2px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--p5-red), rgba(207,18,54,0));
  transition: transform .24s ease;
}

body.p5-ui-refresh .top-news-lists dd a:hover::after {
  transform: scaleX(1);
}

body.p5-ui-refresh .top-about-lists {
  display: grid;
  gap: 14px;
}

body.p5-ui-refresh .top-about-list-item {
  padding: 16px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
}

body.p5-ui-refresh .top-about-list-item dt {
  color: var(--p5-gold-soft);
  font-size: 1.3rem;
  letter-spacing: .08em;
  margin-bottom: 8px;
}

body.p5-ui-refresh .top-about-list-item dd,
body.p5-ui-refresh .access,
body.p5-ui-refresh .top-ticket-goods-text,
body.p5-ui-refresh .notice-lists,
body.p5-ui-refresh .notice__inner,
body.p5-ui-refresh p.tickets {
  line-height: 1.9;
}

body.p5-ui-refresh .top-ticket-goods-text {
  font-size: clamp(1.55rem, 1.8vw, 2.05rem);
  text-wrap: pretty;
}

body.p5-ui-refresh .accordion {
  margin-top: 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(0,0,0,.25);
}

body.p5-ui-refresh .accordion-header {
  padding: 14px 18px;
  background: linear-gradient(90deg, rgba(230,180,34,.14), rgba(255,255,255,.04));
  color: #fff;
  font-weight: 700;
  letter-spacing: .06em;
}

body.p5-ui-refresh .accordion-content {
  padding: 0 18px 18px;
}

body.p5-ui-refresh .notice__item + .notice__item {
  margin-top: 18px;
}

body.p5-ui-refresh .notice__title {
  cursor: pointer;
}

body.p5-ui-refresh .notice__title span {
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(230,180,34,.16), rgba(207,18,54,.16));
  border: 1px solid var(--p5-border-strong);
  font-size: clamp(1.55rem, 1.8vw, 1.95rem);
  line-height: 1.7;
  padding: 18px 64px 18px 20px;
}

body.p5-ui-refresh .notice__title span::before,
body.p5-ui-refresh .notice__title span::after {
  right: 22px;
  background: #fff;
}

body.p5-ui-refresh .notice__inner {
  margin-top: 10px;
  padding: 22px 22px 18px;
}

body.p5-ui-refresh .notice-list {
  color: var(--p5-muted);
}

body.p5-ui-refresh .ticket-wrap {
  padding-top: 12px;
}

body.p5-ui-refresh .ticket-table,
body.p5-ui-refresh .top-ticket-table {
  width: 100%;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid var(--p5-border);
  background: rgba(255,255,255,.02);
}

body.p5-ui-refresh .ticket-table thead th,
body.p5-ui-refresh .top-ticket-table-thead {
  background: linear-gradient(90deg, rgba(230,180,34,.18), rgba(207,18,54,.14));
}

body.p5-ui-refresh .ticket-table th,
body.p5-ui-refresh .ticket-table td,
body.p5-ui-refresh .top-ticket-table-header,
body.p5-ui-refresh .top-ticket-table-data {
  border-color: rgba(255,255,255,.08);
}

body.p5-ui-refresh .ticket-table .seat,
body.p5-ui-refresh .ticket-table .price {
  padding: 22px 20px;
}

body.p5-ui-refresh .ticket-footnote {
  margin-top: 14px;
  color: var(--p5-muted);
  font-size: 1.35rem;
}

body.p5-ui-refresh .seatmap-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

body.p5-ui-refresh .thumbnail {
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 10px 30px rgba(0,0,0,.24);
}

body.p5-ui-refresh .ticket-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  height: auto;
  padding: 0 70px 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: linear-gradient(135deg, #d21438 0%, #8f0a27 100%);
  color: #fff !important;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.4;
  box-shadow: 0 16px 28px rgba(210,20,56,.24);
}

body.p5-ui-refresh .ticket-btn::before {
  display: none;
}

body.p5-ui-refresh .ticket-btn::after {
  content: "→";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4em;
}

body.p5-ui-refresh .ticket-btn:hover,
body.p5-ui-refresh .ticket-btn:focus-visible {
  color: #fff !important;
  transform: translateY(-2px);
}

body.p5-ui-refresh .goods-list-b2,
body.p5-ui-refresh .vertical-images,
body.p5-ui-refresh .container,
body.p5-ui-refresh .row {
  gap: 18px;
}

body.p5-ui-refresh .goods-list-b2 img,
body.p5-ui-refresh .vertical-images img,
body.p5-ui-refresh .column img,
body.p5-ui-refresh .row img,
body.p5-ui-refresh .goodsinfo img {
  border-radius: 18px;
  box-shadow: 0 14px 32px rgba(0,0,0,.26);
}

body.p5-ui-refresh .goods-list-b2 > a,
body.p5-ui-refresh .vertical-images > a,
body.p5-ui-refresh .column > a {
  display: block;
}

body.p5-ui-refresh .goods-list-b2 > a:hover img,
body.p5-ui-refresh .vertical-images > a:hover img,
body.p5-ui-refresh .column > a:hover img {
  transform: translateY(-3px);
}

body.p5-ui-refresh .goods-list-b2 img,
body.p5-ui-refresh .vertical-images img,
body.p5-ui-refresh .column img {
  transition: transform .24s ease, box-shadow .24s ease;
}

body.p5-ui-refresh .note-box {
  padding: 18px 20px;
}

body.p5-ui-refresh .pagetop {
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(0,0,0,.3);
}

body.p5-ui-refresh .yt-dialog,
body.p5-ui-refresh .goods-image-modal__content img,
body.p5-ui-refresh .lightbox-image {
  border-radius: 18px;
}

@media only screen and (max-width: 1280px) {
  body.p5-ui-refresh .global-navigation-mob-btn {
    top: 14px;
    right: 16px;
    width: 54px;
    height: 54px;
    background: rgba(7,7,10,.92);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    backdrop-filter: blur(14px);
  }

  body.p5-ui-refresh .global-navigation-mob-btn span,
  body.p5-ui-refresh .global-navigation-mob-btn span::before,
  body.p5-ui-refresh .global-navigation-mob-btn span::after {
    width: 28px;
    background-color: var(--p5-gold-soft);
  }

  body.p5-ui-refresh .global-navigation {
    right: -120%;
    background: linear-gradient(180deg, rgba(8,8,12,.98) 0%, rgba(16,16,22,.96) 100%);
    background-image: none;
    padding: 90px 20px 28px;
  }

  body.p5-ui-refresh .global-navigation-lists {
    margin-top: 0;
    gap: 8px;
    font-size: 2.2rem;
  }

  body.p5-ui-refresh .global-navigation-list {
    width: 100%;
  }

  body.p5-ui-refresh .global-navigation-list a {
    width: 100%;
    padding: 16px 18px;
    border-radius: 14px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
  }
}

@media only screen and (max-width: 900px) {
  body.p5-ui-refresh .hero-info-bar {
    grid-template-columns: 1fr;
  }

  body.p5-ui-refresh .hero-cta-group {
    flex-direction: row;
    flex-wrap: wrap;
  }

  body.p5-ui-refresh .hero-cta {
    flex: 1 1 220px;
  }

  body.p5-ui-refresh .top-news-list-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  body.p5-ui-refresh .seatmap-grid {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 767px) {
  html {
    scroll-padding-top: 88px;
  }

  body.p5-ui-refresh .header {
    padding: 12px 16px;
    min-height: 72px;
  }

  body.p5-ui-refresh .header-logo {
    width: 92px;
  }

  body.p5-ui-refresh .topmain::before {
    inset: 60px 0 auto 0;
    height: 62vw;
  }

  body.p5-ui-refresh .topmain-image {
    margin-top: 72px;
  }

  body.p5-ui-refresh .topmain-image img {
    min-height: 320px;
  }

  body.p5-ui-refresh .topmain-lead {
    margin-top: -26px;
    padding: 0 12px;
  }

  body.p5-ui-refresh .hero-info-bar,
  body.p5-ui-refresh .yt-thumb,
  body.p5-ui-refresh .top-info-wrapper,
  body.p5-ui-refresh .wrapper-default {
    width: calc(100% - 24px);
  }

  body.p5-ui-refresh .hero-info-bar {
    margin-top: 18px;
    padding: 16px;
    border-radius: 18px;
  }

  body.p5-ui-refresh .hero-info-card {
    padding: 14px;
  }

  body.p5-ui-refresh .hero-info-card strong {
    font-size: 1.85rem;
  }

  body.p5-ui-refresh .hero-cta-group {
    flex-direction: column;
  }

  body.p5-ui-refresh .hero-cta {
    width: 100%;
  }

  body.p5-ui-refresh .yt-thumb {
    margin-top: 18px;
    padding: 16px;
    border-radius: 18px;
  }

  body.p5-ui-refresh .yt-thumb::before {
    top: 12px;
    left: 12px;
  }

  body.p5-ui-refresh .desc-text {
    margin-top: 24px;
    font-size: 1.25rem;
    text-align: left;
  }

  body.p5-ui-refresh .top-info-wrapper {
    margin-top: 24px;
    margin-bottom: 72px;
  }

  body.p5-ui-refresh .frame-default,
  body.p5-ui-refresh .frame-default1,
  body.p5-ui-refresh .top-news-lists-container,
  body.p5-ui-refresh .notice__inner {
    padding: 16px;
  }

  body.p5-ui-refresh .top-ticket-goods-text {
    font-size: 1.5rem;
  }

  body.p5-ui-refresh .notice__title span {
    padding: 16px 54px 16px 16px;
  }

  body.p5-ui-refresh .ticket-btn {
    width: 100%;
    padding-left: 18px;
    padding-right: 56px;
    font-size: 1.45rem;
  }

  body.p5-ui-refresh .goods-list-b2 {
    grid-template-columns: 1fr;
  }
}
