@charset "utf-8";

/* ==========================================================================
   FLOCSS: Foundation / Layout / Component / Project / Utility
   ========================================================================== */

:root {
  --color-accent-bronze: #947d3f;
  --color-accent-danger: #de0515;
  --color-accent-gold: #ffbe1d;
  --color-accent-orange: #f66;
  --color-accent-pink: #f6e2e2;
  /* Color: Accent */
  --color-accent-primary: #b80041;
  --color-accent-red: #dd0000;
  --color-accent-red-bright: #f73838;
  --color-accent-red-light: #ff6c6c;
  --color-await: #4399b3;
  --color-banner-bg: rgba(0, 0, 0, 0.78);
  --color-banner-border: rgba(159, 198, 255, 0.28);
  --color-banner-text: #9fc6ff;
  --color-bg-base: #222;
  --color-bg-html: #000;
  --color-black: #333333;
  --color-gold-dark: #a37e46;
  --color-gray-100: #efefef;
  --color-gray-200: #ddd;
  --color-gray-300: #ccc;
  --color-gray-400: #aaa;
  --color-gray-600: #666;
  --color-gray-700: #333;
  --color-gray-800: #2a2a2a;
  --color-gray-850: #131313;
  /* Color: Gray */
  --color-gray-900: #111;
  --color-gray-alpha-20: rgb(59 59 59 / 0.2);
  --color-hero-bg: #010622;
  --color-inbox-bg: rgb(60 60 60 / 80%);
  --color-inbox-gradient-end: rgba(6, 10, 24, 0.82);
  --color-inbox-gradient-start: rgb(51 0 21 / 81%);
  --color-inner-block-bg: rgba(0, 10, 40 / 150%);
  --color-muted: #949494;
  /* Color: Theme */
  --color-navy: #07162a;
  --color-overlay-dark: rgba(0, 0, 0, 0.8);
  --color-overlay-mid: rgba(0, 0, 0, 0.45);
  --color-pure-red: rgb(255 0 0 / 100%);
  /* モーダルのボタンカラー */
  --color-success: #0e8a0e;
  --color-surface-light: #f7f7f7;
  --color-surface-mint: #f2f8f7;
  --color-transparent: rgba(0, 0, 0, 0);
  /* Color: Base */
  --color-white: #fff;
  --color-white-15: rgba(255, 255, 255, 0.15);
  --color-white-20: rgba(255, 255, 255, 0.2);
  --color-white-50: #ffffff50;
  --color-white-75: rgba(255, 255, 255, 0.75);
  --color-white-80: rgba(255, 255, 255, 0.8);
  --color-white-90: rgba(255, 255, 255, 0.9);
  --shadow-glow-lg: 0px 0px 50px var(--color-white-90), 0px 0px 100px var(--color-white-80);
  --shadow-glow-md: 0px 0px 20px var(--color-white-90), 0px 0px 40px var(--color-white-80);
  --shadow-glow-sm: 0px 0px 20px var(--color-white-90), 0px 0px 30px var(--color-white-80);
  --shadow-glow-xl: 0px 0px 60px var(--color-white-90), 0px 0px 120px var(--color-white-80);
  /* Shadow */
  --shadow-section: 0 20px 60px rgba(0, 0, 0, 0.35);
  --star-color-pc: var(--color-white);
  --star-color-sp: var(--color-white-20);
  /* Star motif */
  --star-size-pc: 12px;
  --star-size-sp: 140px;
}
* {
  box-sizing: border-box;
  outline: none;
  -webkit-tap-highlight-color: var(--color-transparent);
}
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  vertical-align: baseline;
  outline: 0;
}
html {
  background: var(--color-bg-html);
  -webkit-text-size-adjust: 100%;
}
body {
  width: 100%;
  font-variant-numeric: tabular-nums;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  font-optical-sizing: auto;
  font-smoothing: antialiased;
  text-autospace: normal;
  -webkit-font-smoothing: antialiased;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
ul,
ol {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
a {
  margin: 0;
  padding: 0;
  color: inherit;
  text-decoration: none;
  vertical-align: baseline;
  transition: 0.5s ease;
}
input,
select {
  vertical-align: middle;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
  padding: 0;
  border: none;
  background-color: transparent;
  line-height: 1;
  outline: none;
  cursor: pointer;
  appearance: none;
}
button[disabled],
[type="button"][disabled],
[type="reset"][disabled],
[type="submit"][disabled] {
  cursor: default;
}
button,
input,
optgroup,
select,
textarea {
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: inherit;
  vertical-align: middle;
  outline: 0;
  -webkit-appearance: none;
  appearance: none;
}
img {
  width: 100%;
  line-height: 1;
  vertical-align: bottom;
}
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
.fa,
.fas {
  display: inline;
}
.soon {
  text-align: center;
}
.allContain {
  height: 100%;
  overflow: hidden;
  background: var(--color-bg-base);
  color: var(--color-white);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4em;
  font-family: "Roboto", "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", meiryo, Osaka, "ＭＳ Ｐゴシック", sans-serif;
  letter-spacing: 0.08em;
}
.contentsWrap {
  overflow: hidden;
}
.newsBox,
.scheduleBox,
.attentionBox,
.ticketBox,
.faqBox,
.goodsBox {
  z-index: 100;
  margin-bottom: 150px;
  padding: 0 32px;
}
.inBox {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px;
  box-sizing: border-box;
  background: var(--color-inbox-bg);
}
.inBox > * {
  margin-bottom: 70px;
}
.inBox > *:last-child {
  margin-bottom: 0;
  line-height: 1.4;
}
@media screen and (min-width: 770px) {
  .sp {
    display: none;
  }
}
@media screen and (min-width: 770px) and (max-width: 960px) {
  .inBox,
  .attentionBox .attentionBlock {
    padding: 40px;
  }
}
@media screen and (max-width: 960px) {
  .pc {
    display: none;
  }
  .contentsWrap {
    padding: 80px 0 0;
    overflow: hidden;
  }
  .newsBox,
  .scheduleBox,
  .ticketBox,
  .faqBox,
  .goodsBox {
    margin-bottom: 80px;
    padding: 0 20px;
  }
  .inBox,
  .attentionBox .attentionBlock {
    padding: 20px;
  }
  .inBox > * {
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 768px) {
  .newsBox,
  .scheduleBox,
  .ticketBox,
  .faqBox,
  .goodsBox {
    padding: 0;
  }
}
.titBlock > h3 {
  margin-bottom: 10px;
  font-weight: 100;
  font-size: 500%;
  line-height: 1em;
  font-family: "Libre Baskerville", serif;
}
.titBlock > h3[id],
.ticketListBox[id] {
  margin-top: -40px;
  padding-top: 40px;
  scroll-margin-top: 40px;
}
.titBlock > h4 {
  font-weight: 300;
  font-size: 200%;
  line-height: 1em;
  font-family: "Noto Serif JP", serif;
}
.tit {
  font-weight: 600;
  font-size: 160%;
  line-height: 1.5em;
}
.cautionList li {
  position: relative;
  margin: 0 0 10px;
  padding: 0 0 0 15px;
  font-size: 80%;
  line-height: 1.5em;
}
.cautionList li:before {
  position: absolute;
  left: 0;
  content: "・";
}
.cautionList li:last-child {
  margin: 0;
}
.cautionList li.red {
  color: var(--color-accent-red);
}
.cautionList li.bold {
  font-weight: 700;
}
.fillBox {
  padding: 40px;
  box-sizing: border-box;
  background: var(--color-gray-100);
}
.strokeBox {
  padding: 40px;
  border: 1px solid;
  box-sizing: border-box;
}
.fillBox > *,
.strokeBox > * {
  margin-bottom: 40px;
}
.fillBox > *:last-child,
.strokeBox > *:last-child {
  margin-bottom: 0;
}
.titBlock {
  max-width: 1200px;
  margin: 0 auto 30px;
  text-shadow: var(--color-inbox-gradient-start) 1px 0 3px;
}
@media screen and (max-width: 960px) {
  .titBlock {
    padding-inline: 20px;
  }
}
.comingsoon {
  opacity: 0.1;
  padding: 60px 0;
  font-weight: 700;
  font-size: 300%;
  font-family: "Poppins", sans-serif;
  text-align: center;
}
@media screen and (min-width: 770px) {
  .accordionList .accordionTit:hover {
    background: var(--color-gray-300);
  }
}
@media screen and (max-width: 960px) {
  .titBlock > h3 {
    font-size: min(calc(80 / 960 * 100vw), 300%);
  }
  .titBlock > h4 {
    font-size: min(calc(36 / 960 * 100vw), 200%);
  }
  .lead {
    font-size: 80%;
    line-height: 1.6em;
  }
  .tit {
    font-size: 80%;
  }
  .txt {
    font-size: 0.875rem;
  }
  .fillBox {
    padding: 20px;
  }
  .strokeBox {
    padding: 20px;
  }
  .cautionList li {
    font-size: 70%;
  }
  .accordionList .accordionDetail {
    padding: 20px;
  }
  .comingsoon {
    font-size: 200%;
  }
}
.innerLink {
  text-decoration: underline;
}
.btnBase a {
  display: block;
  width: 300px;
  margin: 0 0 20px;
  padding: 20px;
  background: var(--color-gray-200);
  font-weight: 400;
  font-size: 18px;
  text-align: center;
}
@media (hover: hover) {
  a:hover,
  .op_accord .accordionList .accordionDetail a:hover {
    color: var(--color-accent-primary);
  }
  .btnBase a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 960px) {
  .btn a {
    width: 100%;
    margin: 0 auto;
  }
}
.navigation {
  position: relative;
  z-index: 200;
  transition: 0.5s ease;
  mix-blend-mode: difference;
}
.navigation .headerNav {
  opacity: 0;
  transition: 0.5s ease;
}
.navigation .headerNav li {
  position: relative;
  line-height: 1em;
}
.navigation .headerNav li:last-child {
  margin: 0;
}
.navigation .headerNav li:last-child:after {
  content: none;
}
.navigation .headerNav li a {
  display: inline-block;
  position: relative;
  margin: 0 0 25px;
  color: var(--color-white);
  font-weight: 400;
  font-size: 18px;
  line-height: 1em;
  font-family: "Libre Baskerville", serif;
}
.navigation .headerNav li:last-child a {
  margin: 0;
}
.navigation .headerNav li a.blank {
  opacity: 0.3;
  pointer-events: none;
}
@media screen and (min-width: 1201px) {
  .navigation .headerNav li a:hover {
    opacity: 1;
    color: var(--color-accent-primary);
  }
  .navigation .headerNav {
    position: fixed;
    top: 30px;
    right: 30px;
    transform-origin: top right;
    text-align: right;
  }
  .navigation .navLogo {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  .hamBtn {
    display: block;
    opacity: 0;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    width: 30px;
    height: 25px;
    box-sizing: border-box;
    cursor: pointer;
    transition: all 0.3s ease;
    mix-blend-mode: difference;
  }
  .loaded.headerFix .hamBtn {
    opacity: 1;
    pointer-events: auto;
  }
  .hamMenu {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .hamBtn span {
    display: block;
    position: absolute;
    right: 0;
    width: 100%;
    height: 2px;
    background: var(--color-white);
    transition: all 0.3s ease;
  }
  .headerFix .hamBtn span {
    background: var(--color-white);
  }
  .hamMenu :nth-of-type(1) {
    top: 0;
  }
  .hamMenu :nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  .hamMenu :nth-of-type(3) {
    bottom: 0;
  }
  .hamBtn.open {
    opacity: 1;
    pointer-events: auto;
  }
  .hamBtn.open span {
    background: var(--color-white);
  }
  .hamBtn.open span:nth-of-type(1) {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
  }
  .hamBtn.open span:nth-of-type(2) {
    opacity: 0;
  }
  .hamBtn.open span:nth-of-type(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(45deg);
  }
  .navigation {
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 300;
    pointer-events: none;
    width: 100%;
    height: 100%;
    background: var(--color-bg-html);
    transition-delay: 0s !important;
    mix-blend-mode: initial;
  }
  .navigation.active {
    opacity: 1 !important;
    pointer-events: auto;
    transition: opacity 0.5s ease;
  }
  .navigation .headerNav {
    display: block;
    padding: 30px 30px 45px;
  }
  .navigation .headerNav li {
    position: relative;
    margin: 0;
    padding: 0;
  }
  .navigation .headerNav li:after {
    content: none;
  }
  .navigation .headerNav li a {
    margin: 0 0 25px;
    color: var(--color-white);
    font-size: 125%;
  }
  .navigation .navinLogo {
    padding: 60px 60px 0;
  }
  .navigation .navLogo {
    position: absolute;
    right: 30px;
    bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .navigation .navLogo {
    right: 50%;
    translate: 50% 0;
    width: 100%;
    padding-right: 0.75rem;
    padding-left: 1.25rem;
  }
}
.loader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  pointer-events: none;
  width: 100%;
  height: 100%;
}
.loader p {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: var(--color-black);
  transition: 1s ease;
}
.loader p:nth-child(1) {
  top: 0;
}
.loader p:nth-child(2) {
  bottom: 0;
}
.newsBox.delighter,
.scheduleBox.delighter,
.ticketBox.delighter,
.faqBox.delighter,
.goodsBox.delighter {
  opacity: 0;
  transition: 0.8s ease 0.3s;
}
.newsBox.delighter.started,
.scheduleBox.delighter.started,
.ticketBox.delighter.started,
.faqBox.delighter.started,
.goodsBox.delighter.started {
  opacity: 1;
}
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  overflow: auto;
  box-sizing: border-box;
  color: var(--color-white);
  -webkit-overflow-scrolling: touch;
}
.popup.popActive {
  display: block;
}
.popup .popupShade {
  position: absolute;
  left: 0;
  z-index: 0;
  width: 100%;
  height: auto;
  min-height: 100%;
  background: var(--color-overlay-dark);
}
.popup .popTit {
  margin: 0 0 60px;
  color: var(--color-black);
  font-size: 30px;
  line-height: 1em;
  letter-spacing: 0.1em;
  text-align: center;
}
.popup .close {
  position: fixed;
  top: 30px;
  right: 50px;
  transform: rotate(45deg);
  width: 50px;
  height: 50px;
  border-radius: 100px;
  background: var(--color-gray-700);
  cursor: pointer;
  transition: 0.3s ease;
}
.popup .close::before,
.popup .close::after {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60%;
  height: 2px;
  background: var(--color-white);
  content: "";
}
.popup .close::before {
  transform: translate(-50%, -50%);
}
.popup .close::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.popup .popInBox {
  width: 90%;
  max-width: 1200px;
  margin: 100px auto;
  padding: 40px;
  background: var(--color-surface-light);
  color: var(--color-black);
}
@media screen and (min-width: 770px) {
  .popup .close:hover {
    transform: rotate(135deg);
  }
}
@media screen and (max-width: 960px) {
  .popup .close {
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
  }
  .popup .popInBox {
    margin: 60px auto;
    padding: 20px;
  }
}
.op_accord .accordionList .accordionTit {
  position: relative;
  padding: 20px;
  background: var(--color-gray-200);
  font-weight: 500;
  cursor: pointer;
  transition: 0.5s ease;
}
.op_accord .accordionList .accordionTit span {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: rotate(180deg) translateY(50%);
  width: 12px;
  height: 12px;
  transition: 0.3s ease;
}
.op_accord .accordionList .accordionTit.open span {
  transform: translateY(-50%);
}
.op_accord .accordionList .accordionTit span:before {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translatex(-50%) rotate(-45deg);
  width: 100%;
  height: 100%;
  border-top: 1px solid;
  border-right: 1px solid;
  content: "";
}
.op_accord .accordionList .accordionDetail {
  display: none;
  padding: 40px;
  background: var(--color-gray-100);
}
@media screen and (min-width: 770px) {
  .op_accord .accordionList .accordionTit:hover {
    background: var(--color-gray-300);
  }
}
@media screen and (max-width: 960px) {
  .op_accord .accordionList .accordionDetail {
    padding: 20px;
  }
}
.op_news .newsList {
  position: relative;
  margin: 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--color-white);
}
.op_news .newsList:after {
  position: absolute;
  top: -1px;
  width: 15%;
  height: 1px;
  background: var(--color-accent-primary);
  content: "";
}
.op_news .newsList a {
  display: block;
  position: relative;
  margin: 0 0 20px;
  border-bottom: 1px solid var(--color-white);
}
.op_news .newsList > a:last-of-type {
  margin: 0;
}
.op_news .moreDetail a:last-of-type {
  margin: 0;
}
.op_news .newsList a.nolink {
  pointer-events: none;
}
/* newsList:after（上線）と同じく、白線の上にアクセントを乗せる */
.op_news .newsList a:before {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 15%;
  height: 1px;
  background: var(--color-accent-primary);
  content: "";
  pointer-events: none;
  transition: 0.5s ease;
}
.op_news .newsDetail {
  display: flex;
}
.op_news .newsDetail dt {
  display: flex;
  align-items: center;
  width: 120px;
  padding: 0 0 20px;
  box-sizing: border-box;
}
.op_news .newsDetail dt .txt {
  font-weight: 600;
  font-size: 150%;
}
.op_news .newsDetail dd {
  display: flex;
  align-items: center;
  width: calc(100% - 120px);
  padding: 0 0 20px 45px;
  box-sizing: border-box;
}
.op_news .moreOpen {
  display: inline-block;
  position: relative;
  font-weight: 800;
  font-size: 90%;
  cursor: pointer;
  transition: 0.3s ease;
}
.op_news .moreOpen:after {
  display: block;
  position: absolute;
  top: 50%;
  left: 12ch;
  transform: translate(0, -80%) rotate(135deg);
  width: 5px;
  height: 5px;
  border-top: 2px solid;
  border-right: 2px solid;
  content: "";
  transition: 0.5s ease;
}

.newsMoreList {
  padding-block: 20px;
}

.moreOpen {
  width: 100%;
}

.op_news .moreOpen.open:after {
  transform: translate(0, -30%) rotate(-45deg);
}
.op_news .moreDetail {
  display: none;
  margin-bottom: 20px;
}
@media screen and (min-width: 770px) {
  .op_news .newsList a:hover:before {
    width: 100%;
  }
  .op_news .moreOpen:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 960px) {
  .op_news .newsList {
    border-top: 1px solid var(--color-white);
  }
  .op_news .newsList:after {
    content: none;
  }
  .op_news .newsDetail {
    display: block;
    padding: 0 0 20px;
  }
  .op_news .newsDetail dt {
    display: block;
    width: 100%;
    padding: 0 0 10px;
  }
  .op_news .newsDetail dt .txt {
    font-size: 100%;
    line-height: 1em;
  }
  .op_news .newsDetail dd {
    display: block;
    width: 100%;
    padding: 0;
  }
  .op_news .newsDetail dd .txt {
    font-size: 90%;
  }
  .op_news .newsList a:before {
    content: none;
  }
}
.op_detail .detailList {
  display: flex;
  align-items: stretch;
  margin: 0 0 15px;
  padding: 0 0 15px;
  border-bottom: 1px solid;
}
.op_detail .detailList:first-child {
  padding: 15px 0 15px;
  border-top: 1px solid;
}
.op_detail .detailList:last-child {
  margin: 0;
}
.op_detail .detailList dt {
  display: flex;
  align-items: center;
  width: 20%;
  padding: 0 40px 0 0;
  font-weight: 500;
  line-height: 1.6em;
}
.op_detail .detailList dd {
  display: flex;
  align-items: center;
  position: relative;
  width: 80%;
  padding: 0 0 0 40px;
}
.op_detail .detailList dd:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: var(--color-black);
  content: "";
}
.op_detail .detailList dd > * {
  margin-bottom: 20px;
}
.op_detail .detailList dd > *:last-child {
  margin-bottom: 0;
}
.op_detail .detailList dd .detailInner {
  width: 100%;
}
.op_detail .detailList dd .detailInner > * {
  margin-bottom: 10px;
}
.op_detail .detailList dd .detailInner > *:last-child {
  margin-bottom: 0;
}
.op_detail .detailFootnote {
  margin: 0 0 15px;
  padding: 0 0 15px;
  font-size: 90%;
  line-height: 1.6em;
}
.op_detail .ticketBtn {
  padding: 25px 0 0;
}
.op_detail .ticketBtn a,
.op_detail .ticketBtn span.noSelect {
  display: block;
  width: 90%;
  max-width: 460px;
  margin: 0 auto;
  padding: 20px;
  border-radius: 10px;
  background: var(--color-accent-primary);
  color: var(--color-white);
  font-weight: 600;
  font-size: 120%;
  text-align: center;
}
.op_detail .ticketBtn span.noSelect {
  user-select: none;
  pointer-events: none;
  cursor: default;
}
@media screen and (max-width: 960px) {
  .op_detail .detailList {
    display: block;
  }
  .op_detail .detailList dt {
    width: 100%;
    margin: 0 0 10px;
    padding: 0 0 0 10px;
    border-left: 5px solid;
    font-weight: 600;
    font-size: 100%;
  }
  .op_detail .detailList dd {
    position: relative;
    width: 100%;
    padding: 0;
  }
  .op_detail .detailList dd:before {
    content: none;
  }
  .op_detail .ticketBtn {
    padding: 5px 0 0;
  }
  .op_detail .ticketBtn a,
  .op_detail .ticketBtn span.noSelect {
    width: 100%;
    padding: 20px;
  }
}
.heroView .kvBg,
.heroView .kvFilter,
.announce img,
.heroView .act3,
.heroView .act4 {
  pointer-events: none;
}
.loaded .heroView .kvBg,
.loaded .heroView .kvFilter {
  opacity: 0;
}
body.headerFix .heroView .kvBg {
  opacity: 1;
}
body.headerFix .heroView .kvFilter {
  opacity: 1;
}
.heroView .act3,
.heroView .act4,
.heroView .kvBg,
.heroView .kvFilter {
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}
body.headerFix body.headerFix .heroView .act3,
body.headerFix .heroView .act4 {
  opacity: 0;
}
@media screen and (min-width: 770px) {
  .btnBase.btnBuy a:hover,
  .btnBuy a:hover {
    transform: translateY(-2px);
    animation: btnRainbow 2s linear infinite;
  }
}
@keyframes btnRainbow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 300% 50%;
  }
}
.heroView {
  position: relative;
  z-index: 100;
  min-height: 600px;
  overflow: hidden;
  background: var(--color-black);
}
.heroView .action {
  opacity: 0;
  pointer-events: none;
  transition: 0.5s ease;
}
.heroView .act1 {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -6;
  width: 100%;
  height: 100%;
  background-color: var(--color-hero-bg);
}
.heroView .act3 {
  position: fixed;
  top: 0;
  right: 0;
  z-index: -4;
  isolation: isolate;
  contain: strict;
  width: 100%;
  height: 100%;
  overflow: clip;
}
.heroView .act3 picture {
  display: block;
  width: 100%;
  height: 100%;
}
.heroView .act3 img {
  display: block;
  transform: scale(1.2) translateZ(0);
  object-fit: cover;
  object-position: center;
  backface-visibility: hidden;
  width: 100%;
  height: 100%;
  transition:
    transform 2s cubic-bezier(0.22, 1, 0.36, 1),
    filter 2s cubic-bezier(0.22, 1, 0.36, 1);
  filter: blur(15px);
  will-change: transform, filter;
}
.heroView .act3.is-animated img {
  transform: scale(1) translateZ(0);
  filter: blur(0);
  will-change: auto;
}
.heroView .act4 {
  opacity: 1;
  position: fixed;
  top: calc(50% + 80px);
  left: 50%;
  translate: -50% -50%;
  /* 1200-360 */
  width: clamp(336px, calc(171.429px + 45.714vw), 720px);
}
@media screen and (max-width: 575px) {
  .heroView .act4 {
    top: calc(50% + 40px);
    left: 50%;
    translate: -50% -50%;
  }
}
.heroView .act4 .mainLogo .logoMask {
  display: block;
  backface-visibility: hidden;
  overflow: hidden;
  transition:
    -webkit-mask-position 1s cubic-bezier(0.22, 1, 0.36, 1),
    mask-position 1s cubic-bezier(0.22, 1, 0.36, 1);
  mask-image: linear-gradient(135deg, #000 50%, transparent 50%);
  mask-size: 250% 250%;
  mask-repeat: no-repeat;
  mask-position: 100% 100%;
  will-change: mask-position;
  -webkit-mask-image: linear-gradient(135deg, #000 50%, transparent 50%);
  -webkit-mask-size: 250% 250%;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: 100% 100%;
}
.heroView .act4 .mainLogo .logoMask.is-animated {
  mask-position: 0% 0%;
  will-change: auto;
  -webkit-mask-position: 0% 0%;
}
.heroView .act4 .mainLogo .logoMask.is-animated .logoInn {
  transform: translate3d(0, 0, 0);
}
.heroView .act4 .mainLogo .logoInn {
  display: block;
  transform: translate3d(-30%, 100%, 0);
  backface-visibility: hidden;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.heroView .act4 .mainLogo img {
  display: block;
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 2px rgb(7 8 14 / 1));
}
.heroView .act4 .mainLogo .act5 {
  opacity: 0;
  transition: 0.5s ease;
}
.heroView .animBg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  background-color: var(--color-surface-mint);
  transition: 1s ease;
}
.heroView .kvFilter {
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: var(--color-overlay-mid);
  transition: all 1s ease;
}
@media screen and (max-width: 1200px) {
  .heroView .kvBg {
    background-position: left center;
  }
}
@keyframes lightAnim01 {
  0% {
    opacity: 0;
    transform: translate(-5%, -8%) scale(0.9);
    box-shadow:
      0px 0px 20px var(--color-white-90),
      0px 0px 40px var(--color-white-90),
      0px 0px 80px var(--color-white-75),
      0px 0px 120px var(--color-white-75);
  }
  50% {
    opacity: 1;
    transform: translate(-5%, -8%) scale(1);
    box-shadow:
      0px 0px 60px var(--color-white-90),
      0px 0px 120px var(--color-white-90),
      0px 0px 200px var(--color-white-75),
      0px 0px 360px var(--color-white-75);
  }
  100% {
    opacity: 0;
    transform: translate(-5%, -8%) scale(0.9);
    box-shadow:
      0px 0px 20px var(--color-white-90),
      0px 0px 40px var(--color-white-90),
      0px 0px 80px var(--color-white-75),
      0px 0px 120px var(--color-white-75);
  }
}
@keyframes lightAnim02 {
  0% {
    opacity: 0;
    transform: translate(-60%, 7%) scale(0.9);
    box-shadow:
      0px 0px 20px var(--color-white-90),
      0px 0px 30px var(--color-white-90),
      0px 0px 60px var(--color-white-80),
      0px 0px 90px var(--color-white-80);
  }
  50% {
    opacity: 1;
    transform: translate(-60%, 7%) scale(1);
    box-shadow:
      0px 0px 50px var(--color-white-90),
      0px 0px 100px var(--color-white-90),
      0px 0px 200px var(--color-white-80),
      0px 0px 300px var(--color-white-80);
  }
  100% {
    opacity: 0;
    transform: translate(-60%, 7%) scale(0.9);
    box-shadow:
      0px 0px 20px var(--color-white-90),
      0px 0px 30px var(--color-white-90),
      0px 0px 60px var(--color-white-80),
      0px 0px 90px var(--color-white-80);
  }
}
@keyframes lightAnim03 {
  0% {
    opacity: 0;
    transform: translate(-60%, 7%) scale(0.9);
    box-shadow:
      0px 0px 20px var(--color-white-90),
      0px 0px 30px var(--color-white-90),
      0px 0px 60px var(--color-white-80),
      0px 0px 90px var(--color-white-80);
  }
  50% {
    opacity: 1;
    transform: translate(-60%, 7%) scale(1);
    box-shadow:
      0px 0px 50px var(--color-white-90),
      0px 0px 100px var(--color-white-90),
      0px 0px 200px var(--color-white-80),
      0px 0px 300px var(--color-white-80);
  }
  100% {
    opacity: 0;
    transform: translate(-60%, 7%) scale(0.9);
    box-shadow:
      0px 0px 20px var(--color-white-90),
      0px 0px 30px var(--color-white-90),
      0px 0px 60px var(--color-white-80),
      0px 0px 90px var(--color-white-80);
  }
}
.credit {
  opacity: 0;
  position: fixed;
  right: 30px;
  bottom: 40px;
  z-index: 999;
  pointer-events: none;
  text-align: center;
  transition: 0.5s ease;
}
.credit .homeLogo {
  width: 100px;
  transition: 0.5s ease;
}
.credit .creditTxt {
  font-size: 70%;
  transition: 0.5s ease;
}
.loaded .heroView .action {
  opacity: 1;
}
.loaded .heroView .act4 .mainLogo .act5 {
  opacity: 1;
  transition-delay: 2.5s;
}
.loaded .loader p:nth-child(1) {
  left: -100%;
  transition-delay: 1s;
}
.loaded .loader p:nth-child(2) {
  left: 100%;
  transition-delay: 1s;
}
.loaded .scrollBox,
.loaded .hamBtn,
.loaded .headerNav {
  opacity: 1;
  transition-delay: 2.5s;
}
.loaded .heroView .animBg {
  left: 100%;
  transition-delay: 1s;
}
.headerFix .heroView .act3 {
  opacity: 0;
  transition-delay: 0s;
}
.headerFix .heroView .act4 {
  opacity: 0;
  transition-delay: 0s;
}
.scrolled .headerNav {
  transition-delay: 0s;
}
.bottomFix .credit {
  opacity: 1;
}
.bottomFix .credit .homeLogo,
.bottomFix .credit .creditTxt {
  opacity: 1;
}
.bottomFix .act6 {
  opacity: 1;
}
@media screen and (max-width: 1200px) {
  .heroView {
    min-height: 450px;
  }
  .scrollBox .scrollArrow {
    bottom: 20px;
    left: 25px;
  }
  .scrollBox .scrollArrow .txt {
    line-height: 0;
  }
  .heroView .spNav {
    display: none;
  }
  .loaded .heroView .spNav {
    opacity: 1;
    transition-delay: 2s;
  }
  .loaded .navigation {
    transition-delay: 0s !important;
  }
  .scrolled .navigation {
    transition-delay: 0s;
  }
}

.scrollBox {
  opacity: 0;
  position: fixed;
  top: 0;
  z-index: 1;
  pointer-events: none;
  width: 100%;
  height: 100svh;
  transition: 0.5s ease;
}
.scrollBox .scrollArrow {
  position: absolute;
  bottom: 30px;
  left: 30px;
  transition: 0.5s ease;
}
.scrollBox .scrollArrow .txt {
  padding: 0 0 15px 0;
  color: var(--color-white);
  font-weight: bold;
  line-height: 1;
  text-shadow: var(--color-gray-900) 1px 0 10px;
  writing-mode: vertical-rl;
}
.scrollBox .scrollArrow span {
  display: block;
  z-index: 1;
  width: 1px;
  height: 60px;
  background: var(--color-white);
  animation: scrollarrow 3s cubic-bezier(0.19, 1, 0.22, 1) 0.5s infinite;
}
@keyframes scrollarrow {
  0% {
    clip-path: inset(0 0 100% 0);
  }
  25% {
    clip-path: inset(0 0 0 0);
  }
  75% {
    clip-path: inset(0 0 0 0);
  }
  100% {
    clip-path: inset(100% 0 0 0);
  }
}
.headerFix .scrollBox .scrollArrow {
  opacity: 0;
}
@media screen and (max-width: 960px) {
  .scrollBox .scrollArrow {
    position: absolute;
    bottom: 20px;
    left: 20px;
  }
}
@media screen and (min-width: 770px) {
  footer {
    display: none;
  }
}
@media screen and (min-width: 770px) and (max-width: 960px) {
  footer {
    display: block;
    position: relative;
    z-index: 10;
    padding: 0 60px 60px;
  }
  footer .homeLogo {
    width: 40%;
    max-width: 200px;
    margin: 0 auto 10px;
  }
  footer .creditTxt {
    font-size: 70%;
    text-align: center;
  }
}
@media screen and (max-width: 960px) {
  footer {
    position: relative;
    z-index: 100;
    padding: 0 60px 60px;
  }
  footer .homeLogo {
    width: 40%;
    margin: 0 auto 10px;
  }
  .credit {
    display: none;
  }
  footer .creditTxt {
    font-size: 70%;
    text-align: center;
  }
}
.newsBox {
  position: relative;
}
.newsBox .inBox {
  position: relative;
}
.newsBox .op_news {
  position: relative;
  margin: 0;
  padding: 0;
}
.newsPop .date {
  font-weight: 600;
  font-size: 120%;
}
.newsPop .tit {
  margin: 0 0 20px;
  padding: 0 0 20px;
  border-bottom: 1px dashed;
}
.newsPop .newsBody > * {
  margin: 0 0 20px;
}
.newsPop .newsBody > *:last-child {
  margin: 0;
}
.newsPop .newsBody .txt a {
  text-decoration: underline;
}
@media screen and (min-width: 770px) and (max-width: 960px) {
  .newsBox {
    padding: 0 40px;
  }
}
@media screen and (max-width: 960px) {
  .newsBox {
    position: relative;
  }
  .newsBox:before {
    width: calc(100% - 20px);
  }
  .newsBox .op_news {
    width: 100%;
    padding: 0;
  }
  .newsBox .op_news:before {
    content: none;
  }
  .newsPop .date {
    font-size: 100%;
  }
  .newsPop .tit {
    font-size: 110%;
  }
}
.scheduleBox.attentionBox:before {
  content: none;
}
.attentionBox .inBox {
  position: relative;
  margin: 0 auto;
  padding: 0;
}
.announce__img {
  width: 100%;
  height: auto;
  line-height: 1;
  vertical-align: bottom;
}

.call-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto 1fr auto auto;
  max-width: 1000px;
  margin-inline: auto;
  padding-block: 40px;
  background: var(--color-white);
  color: var(--color-black);
  font-family: inherit;
  --call-flow-circle-size: clamp(64px, 8vw, 80px);
}
.call-flow__section {
  display: grid;
  grid-row: span 5;
  grid-template-rows: subgrid;
  position: relative;
  min-height: 300px;
  text-align: center;
}
.announce__item {
  display: contents;
}
.call-flow__section::before,
.call-flow__section::after {
  position: absolute;
  top: 4px;
  bottom: 8px;
  width: 3px;
  background-image: linear-gradient(to bottom, var(--color-gray-300) 0 8px, transparent 8px 16px);
  background-size: 1px 16px;
  content: "";
}
.call-flow__section::before {
  left: 0;
}
.call-flow__section::after {
  right: -1px;
}
.call-flow__section + .call-flow__section::before {
  display: none;
}
.call-flow__title {
  margin: 0.5em 0;
  font-weight: 700;
  /* 960-360 */
  font-size: clamp(1.13rem, calc(0.9rem + 1vw), 1.5rem);
  line-height: 1.3;
}
.call-flow__actions {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  gap: 12px;
  width: fit-content;
  margin-inline: auto;
}
.call-flow__pill {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: min(100%, 260px);
  min-height: 32px;
  margin-inline: auto;
  padding: 0.25em 1em;
  border-radius: 999px;
  background: var(--color-gray-900);
  color: var(--color-white);
  font-weight: 700;
  /* 960-360 */
  font-size: clamp(0.75rem, calc(0.563rem + 0.938vw), 1.13rem);
  line-height: 1.2;
  white-space: nowrap;
}
.call-flow__status {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding-top: 1em;
  padding-bottom: 1.5em;
  font-weight: 700;
  font-size: clamp(1.2rem, 2.3vw, 1.5rem);
  line-height: 1.3;
}
.call-flow__status--ok {
  color: #4998ed;
}
.call-flow__status--ng {
  color: #ff2b2b;
}
.call-flow__timeline {
  align-self: stretch;
  min-height: 0;
}
.call-flow__timeline > .call-flow__circle:first-child {
  left: 0;
  translate: -50% 40%;
}
.call-flow__timeline > .call-flow__circle:last-child {
  right: 0;
  translate: 50% 40%;
}
.call-flow__circle {
  display: grid;
  place-items: center;
  position: absolute;
  bottom: 0;
  z-index: 1;
  aspect-ratio: 1;
  width: 4em;
  border-radius: 50%;
  background: var(--color-gray-600);
  color: var(--color-white);
  font-weight: 700;
  font-size: clamp(0.75rem, calc(0.563rem + 0.938vw), 1.13rem);
}
.call-flow__section .call-flow__arrow {
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  translate: 0 -50%;
  width: 100%;
  height: 8px;
}
.call-flow__timeline:not(:has(.call-flow__circle)) .call-flow__arrow {
  width: calc(100% - 2.5em);
  margin-right: 0.225em;
  margin-left: auto;
}
.call-flow__timeline:has(.call-flow__circle):not(:has(.call-flow__circle ~ .call-flow__circle)) .call-flow__arrow {
  width: calc(100% - 2.5em);
  margin-right: auto;
  margin-left: 0.225em;
}
.call-flow__timeline:has(.call-flow__circle ~ .call-flow__circle) .call-flow__arrow {
  width: calc(100% - 5em);
  margin-inline: auto;
}
.call-flow__arrow::before,
.call-flow__arrow::after {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 0;
  height: 0;
  content: "";
  border-block: 10px solid transparent;
}
.call-flow__arrow--blue {
  background: #58a8ff;
}
.call-flow__arrow--red {
  background: #ff2b2b;
}
.call-flow__arrow--blue::before {
  left: -4px;
  border-right: 12px solid #58a8ff;
}
.call-flow__arrow--blue::after {
  right: -4px;
  border-left: 12px solid #58a8ff;
}
.call-flow__arrow--red::before {
  left: -4px;
  border-right: 12px solid #ff2b2b;
}
.call-flow__arrow--red::after {
  right: -4px;
  border-left: 12px solid #ff2b2b;
}
@media screen and (768px <= width <= 960px) {
  .call-flow {
    padding-top: 24px;
    padding-inline: 3.5em;
  }
}
@media screen and (max-width: 768px) {
  .call-flow {
    grid-template-columns: 1fr;
    grid-template-rows: initial;
    padding-top: 1em;
    padding-bottom: 2em;
    padding-inline: 1em;
  }
  .call-flow__section {
    align-items: center;
    grid-row: auto;
    grid-template-columns: 1fr minmax(48px, auto);
    grid-template-rows: initial;
    min-height: 260px;
    padding: 0.5em 0;
    border-top: 1px dashed var(--color-gray-400);
  }
  .call-flow__section:last-child {
    border-bottom: 1px dashed var(--color-gray-400);
  }
  .call-flow__section::before,
  .call-flow__section::after {
    display: none;
  }
  .call-flow__timeline > .call-flow__circle:first-child,
  .call-flow__timeline > .call-flow__circle:last-child {
    position: relative;
    top: auto;
    right: auto;
    left: 50%;
    translate: -50%;
  }
  .call-flow__section .call-flow__arrow {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    translate: none;
    width: auto;
  }
  .call-flow__timeline {
    display: grid;
    align-items: center;
  }
  .call-flow__title {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    margin: 0 0 0.5em 0;
  }
  .call-flow__actions {
    flex-direction: row;
    grid-column: 1 / 2;
    grid-row: 3 / 4;
  }
  .call-flow__status {
    grid-column: 1 / 2;
    grid-row: 4 / 5;
    padding-top: 0.5em;
    padding-bottom: 0;
  }
  .call-flow__timeline {
    grid-column: 2 / 3;
    grid-row: 1 / 5;
    grid-template-rows: auto 1fr auto;
    /* padding-right: 0.5em; */
  }
  .call-flow__pill {
    width: min(100%, 280px);
  }
  .call-flow__timeline:not(:has(.call-flow__circle)) .call-flow__arrow {
    width: 0.5em;
    height: 100%;
    margin-inline: auto;
  }
  .call-flow__section--main .call-flow__timeline {
    align-items: stretch;
    grid-template-rows: 1fr;
  }
  .call-flow__section--main .call-flow__timeline .call-flow__arrow {
    align-self: stretch;
    width: 0.5em;
    height: 100%;
    min-height: 100%;
    margin-inline: auto;
  }
  .call-flow__section--main .call-flow__arrow--red::before {
    top: 0;
    left: -2px;
    rotate: 90deg;
  }
  .call-flow__section--main .call-flow__arrow--red::after {
    top: initial;
    right: -2px;
    bottom: -0.75em;
    translate: unset;
    rotate: 90deg;
  }
  .call-flow__arrow--blue::before {
    top: -2px;
    left: -2px;
    rotate: 90deg;
  }
  .call-flow__arrow--blue::after {
    top: initial;
    right: -2px;
    bottom: -12px;
    translate: unset;
    rotate: 90deg;
  }
  .call-flow__timeline:has(.call-flow__circle ~ .call-flow__circle) .call-flow__arrow {
    width: 0.5em;
    height: calc(100% - 1em);
    margin-inline: auto;
  }
  .call-flow__timeline:has(.call-flow__circle):not(:has(.call-flow__circle ~ .call-flow__circle)) .call-flow__arrow {
    width: 0.5em;
    height: calc(100% - 0.5em);
    margin-inline: auto;
  }
  .call-flow__section:nth-child(2) .call-flow__timeline {
    padding-right: clamp(0em, calc(-0.882em + 3.922vw), 1em);
  }
  .call-flow__section:nth-child(3) .call-flow__timeline {
    grid-template-rows: 1fr auto;
  }
  .call-flow__section:nth-child(3) .call-flow__arrow--blue::before {
    top: -6px;
  }
  .call-flow__section:nth-child(3) .call-flow__arrow--blue::after {
    bottom: -8px;
  }
}
@media screen and (max-width: 960px) {
  .scheduleBox.attentionBox {
    position: relative;
    margin-bottom: 80px;
  }
  .attentionBox .titBlock {
    margin-bottom: 20px;
  }
  .attentionBox .titBlock h3 {
    font-size: 240%;
  }
  .attentionBox .titBlock h4 {
    font-size: 100%;
  }
}
.ticketBox {
  position: relative;
}
.ticketBox .priceList {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

@media screen and (max-width: 960px) {
  .ticketBox .priceList:has(.seat) {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 575px) {
  .ticketBox .priceList:has(.seat) {
    grid-template-columns: 1fr;
  }
}

.ticketBox .priceList li {
  display: flex;
  flex-direction: column;
  border: 1px solid;
  background: var(--color-accent-primary);
  line-height: 1;
}
.ticketBox .priceList li.normal {
  background: var(--color-navy);
}
.ticketBox .priceList li:last-child {
  margin-right: 0;
}
.ticketBox .priceList li :is(.blueBox, .redBox) {
  width: 100%;
  line-height: 1;
}
.ticketBox .priceList li .seat {
  margin: 0 0 20px;
  padding: 15px 10px;
  background: var(--color-white);
  color: var(--color-accent-primary);
  font-weight: bold;
  text-align: center;
}
.ticketBox .priceList li .seat:has(+ .redBox .benefits) {
  margin-bottom: 8px;
}
.ticketBox .priceList li.normal .seat {
  color: var(--color-navy);
}
.ticketBox .priceList li .rank {
  margin: 10px 0 10px;
  font-weight: bold;
  font-size: clamp(1.13rem, calc(0.839rem + 0.595vw), 1.38rem);
  text-align: center;
}
.ticketBox .priceList li .rank .benefits {
  display: block;
  margin-top: 0.5em;
  font-size: 0.75em;
}
.ticketBox .priceList li .price {
  margin: 0 0 20px;
  padding: 0 0 40px;
  border-bottom: 1px dashed var(--color-white-50);
  font-weight: bold;
  font-size: 20px;
  text-align: center;
}
.ticketBox .priceList li .redBox .price {
  padding-bottom: 28px;
}
.ticketBox .priceList li .price span {
  padding: 0 0 0 5px;
  font-size: 14px;
}
.ticketBox .priceList li .detailBox {
  margin: 0 0 20px;
  padding: 0 20px 20px;
  border-bottom: 1px dashed var(--color-white-50);
}
.ticketBox .priceList li .detailBox:last-child {
  margin: 0;
  border: none;
}
.ticketBox .priceList li .detailBox .tit {
  position: relative;
  margin: 0 0 10px;
  padding: 0 0 0 10px;
  border-left: 3px solid;
  font-size: 15px;
}
.ticketBox .priceList li .detailBox .tit span {
  margin: 0 0 0 5px;
  padding: 3px 6px;
  background: var(--color-white);
  color: var(--color-accent-primary);
  font-size: 14px;
}
.ticketBox .priceList li .detailBox .txt {
  font-size: 14px;
  line-height: 1.5;
}
.ticketBox .priceList li .detailBox .txt p {
  margin-bottom: 5px;
}
.ticketBox .priceList li .detailBox .txt p:last-child {
  margin-bottom: 0;
}
.ticketBox .priceList li .detailBox .txt p.indent {
  padding: 0 0 0 1em;
  text-indent: -1em;
}
.ticketBox .priceList li .detailBox .txt .target {
  width: 100%;
  margin: 0 0 7px;
  padding: 5px 10px;
  border-radius: 100px;
  font-weight: bold;
  font-size: 12px;
  text-align: center;
}
.ticketBox .priceList li .detailBox .txt .target.s {
  padding: 2px 0px;
  font-weight: 400;
}
.ticketBox .priceList li .detailBox .txt .target.s span {
  color: var(--color-accent-gold);
  font-weight: bold;
  font-size: 16px;
}
.ticketBox .priceList li .detailBox .txt .target.w {
  background: var(--color-white);
  color: var(--color-accent-primary);
}
.ticketBox .priceList li.normal .detailBox .txt .target.w {
  color: #0a142a;
}
.ticketBox .priceList li .detailBox .txt .target.club {
  border: 1px solid var(--color-white);
  background: var(--color-accent-danger);
}
.ticketBox .priceList li .detailBox .txt .target.e {
  border: 1px solid var(--color-white);
  background: var(--color-accent-bronze);
}
.ticketBox .priceList li .detailBox .txt .target.normal {
  border: 1px solid;
}
.ticketBox .priceList li .detailBox .txt .target.unknow {
  opacity: 0;
  pointer-events: none;
}
.ticketBox .priceList li .detailBox .txt .target:last-child {
  margin-bottom: 0;
}
.ticketBox .exBox.accord {
  margin: 0 auto 60px;
}
.ticketBox .exBox .up {
  margin: 0 0 20px;
  padding: 20px;
  border: 1px solid;
}
.ticketBox .exBox .up:last-child {
  margin-bottom: 0;
}
.ticketBox .exBox .up .tit {
  margin: 0 0 10px;
  font-weight: 600;
  font-size: 140%;
  line-height: 1.5em;
}
.ticketBox .exBox .up .txt {
  margin: 0 0 10px;
}
.ticketBox .exBox .up .txt:last-child {
  margin-bottom: 0;
}
.ticketBox .exBox .up .note {
  margin-bottom: 20px;
  padding: 0 0 0 1em;
  font-size: 14px;
  text-indent: -1em;
}
.ticketBox .exBox .up .upDetail {
  margin: 0 0 20px;
  margin: 0 0 20px;
  padding: 0 0 20px;
  border-bottom: 1px dashed var(--color-white-50);
}
.ticketBox .exBox .up .upDetail:first-of-type {
  padding: 20px 0;
  border-top: 1px dashed var(--color-white-50);
}
.ticketBox .exBox .up .upDetail:last-child {
  margin: 0;
  padding: 0;
  border: none;
}
.ticketBox .exBox .up .upDetail .detailTit {
  margin: 0 0 10px;
  padding: 0 0 0 10px;
  border-left: 3px solid;
  font-weight: bold;
}
.ticketBox .exBox .up .upDetail .detailTxt li {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin: 0 0 10px;
}
.ticketBox .exBox .up .upDetail .detailTxt li:last-child {
  margin-bottom: 0;
}
.ticketBox .exBox .up .upDetail .detailTxt li span.seat {
  display: inline-block;
  width: 75px;
  margin: 0 10px 0 0;
  padding: 5px 0;
  border-radius: 100px;
  background: var(--color-accent-primary);
  color: var(--color-white);
  font-weight: bold;
  font-size: 14px;
  line-height: 1;
  text-align: center;
}
.ticketBox .exBox .up .upDetail .detailTxt li span.underline {
  text-decoration: underline;
}
.ticketBox .exBox .up .upDetail .detailTxt li p {
  width: calc(100% - 85px);
}
.ticketBox .exBox .up .upDetail .detailTxt li p.items span {
  display: block;
  margin: 0 0 5px;
  padding: 0 0 0 1em;
  text-indent: -1em;
}
.ticketBox .exBox .up .upDetail .detailTxt li p.items span:last-child {
  margin: 0;
}
.ticketBox .exBox .up .upDetail .detailTxt ul li:last-child {
  margin-bottom: 0;
}
.ticketBox .exBox .op_accord .accordionList .accordionTit {
  width: 460px;
  margin: 0 auto;
  padding: 20px 25px 20px;
  border: 1px solid var(--color-white);
  background: var(--color-accent-primary);
  color: var(--color-white);
  font-size: 120%;
  transition: 0.5s ease;
}
.ticketBox .exBox .op_accord .accordionList .accordionTit.open {
  width: 100%;
  border-radius: 10px 10px 0 0;
}
.ticketBox .exBox .op_accord .accordionList .accordionDetail {
  padding: 40px;
  border-radius: 0 0 10px 10px;
  background: var(--color-white);
  color: var(--color-black);
}
.ticketBox .exBox .otherBox {
  margin: 0 0 20px;
  padding: 0 0 20px;
  border-bottom: 1px dashed var(--color-black);
}
.ticketBox .exBox .accordionDetail .otherBox:last-child {
  margin: 0;
  padding: 0;
  border-bottom: none;
}
.ticketList:has(+ .op_accord.anivAc) {
  grid-template-columns: repeat(1, 1fr);
}
.ticketBox .exBox .otherBox .tit {
  margin: 0 0 15px;
  padding: 0 0 0 10px;
  border-left: 3px solid;
  font-size: 18px;
}
.ticketBox .exBox .otherBox .seatList li:last-child {
  margin: 0;
}
.ticketBox .exBox .otherBox .seatList li span.seat {
  display: inline-block;
  width: 75px;
  margin: 0 10px 0 0;
  padding: 5px 0;
  border-radius: 100px;
  background: var(--color-accent-primary);
  color: var(--color-white);
  font-weight: bold;
  font-size: 14px;
  line-height: 1;
  text-align: center;
}
.ticketBox .exBox .otherBox .seatList li span.sml {
  padding: 0 0 0 5px;
  font-size: 12px;
}
.ticketBox .exBox .otherBox .seatList li .emphasize {
  color: var(--color-pure-red);
}
.ticketBox .exBox .otherBox .seatList li .txtBox p {
  width: 100%;
  margin-bottom: 5px;
}
.ticketBox .exBox .otherBox .seatList li .txtBox p:last-child {
  margin-bottom: 0;
}
.ticketBox .exBox .otherBox .seatList li .txtBox .indent {
  padding: 0 0 0 1em;
  text-indent: -1em;
}
.ticketBox .exBox .otherBox .txt {
  margin-bottom: 10px;
}
.ticketBox .exBox .otherBox .txt:last-child {
  margin-bottom: 0;
}
.ticketBox .exBox .otherBox .attList {
  list-style: none;
  margin-bottom: 20px;
}
.ticketBox .exBox .otherBox .attList:last-child {
  margin-bottom: 0;
}
.ticketBox .exBox .otherBox .attList li {
  margin-bottom: 5px;
  padding: 0 0 0 1em;
  font-size: 90%;
  text-indent: -1em;
}
.ticketBox .exBox .otherBox .attList li:last-child {
  margin-bottom: 0;
}
.ticketBox .exBox .otherBox .howBox {
  margin: 0 0 20px;
}
.ticketBox .exBox .otherBox .howBox:last-child {
  margin: 0;
}
.ticketBox .exBox .otherBox .howBox .boxTIt {
  margin: 0 0 5px;
  padding: 0 0 0 2em;
  text-indent: -2em;
}
.ticketBox .exBox .otherBox .howBox .boxTIt span {
  display: inline-block;
  width: 23px;
  height: 23px;
  margin: 0 10px 0 0;
  border-radius: 100px;
  background: var(--color-accent-primary);
  color: var(--color-white);
  font-weight: bold;
  font-size: 90%;
  text-align: center;
  text-indent: 0;
}
.ticketBox .exBox .otherBox .howBox .boxTIt a {
  text-decoration: underline;
}
.ticketBox .exBox .otherBox .howBox .note {
  padding: 0 0 0 1em;
  font-size: 90%;
  text-indent: -1em;
}

/* li-cardの数に応じてカラム数を変更 */
.ticketBox .ticketList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
  margin: 32px auto;
}

.ticketBox .ticketList:has(li:only-child) {
  grid-template-columns: 1fr;
  max-width: 460px;
}

@media screen and (max-width: 670px) {
  .ticketBox .ticketList:has(li:only-child) {
    max-width: unset;
  }
}

.ticketBox .ticketList:has(li:nth-child(even):last-child) {
  grid-template-columns: repeat(2, 1fr);
  max-width: 924px;
}

.ticketBox .ticketList:has(li:nth-child(3n):last-child) {
  grid-template-columns: repeat(3, 1fr);
  max-width: unset;
}

@media (max-width: 960px) {
  .ticketListBox .ticketBox .ticketList:has(li:nth-child(n):last-child) {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .ticketBox .ticketList {
    grid-template-columns: repeat(2, 1fr);
  }

  /* .ticketBox :is(.priceList, .ticketList),
  .ticketBox .ticketList:has(li:nth-child(even)) {
    grid-template-columns: repeat(1, 1fr);
    max-width: 460px;
    margin-bottom: 40px;
    margin-inline: auto;
  } */

  .ticketListBox .ticketBox .ticketList:has(li:nth-child(n):last-child) {
    grid-template-columns: 1fr;
    max-width: 460px;
  }
}

@media screen and (max-width: 670px) {
  .ticketBox .ticketList {
    grid-template-columns: 1fr;
  }
}

.ticketBox .ticketList li.noEntry {
  font-size: 20px;
  text-align: center;
}
.ticketBox .ticketList li a {
  display: block;
  width: 100%;
}
.op_accord .ticketList li.end a {
  position: relative;
}
.op_accord .ticketList li.end a .ticketInner:before {
  display: block;
  opacity: 0.5;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%) rotate(-15deg) skew(-10deg, 0);
  pointer-events: none;
  width: 30%;
  padding: 15px 40px;
  background: var(--color-pure-red);
  color: var(--color-white);
  font-size: 20px;
  text-align: center;
  content: "受付終了";
}
.ticketBox .ticketList li a .ticketInner {
  position: relative;
  padding: 0;
  overflow: hidden;
  border-radius: 10px;
  background: #eee;
  color: var(--color-black);
  transition: 0.5s ease;
}
.ticketBox .ticketList li .ticketHead {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 20px;
  border-bottom: 1px solid;
}
.ticketBox .ticketList li .ticketName {
  display: block;
  margin: 0 0 15px;
  font-size: 120%;
  line-height: 1.2em;
  text-align: center;
}
.ticketBox .ticketList li .ticketName span {
  display: inline-block;
  margin: 5px 0 0;
  padding: 2px 20px 1px;
  border-radius: 100px;
  background: var(--color-black);
  color: var(--color-white);
  font-size: 50%;
  vertical-align: 3px;
}
.ticketBox .ticketList li .ticketName:last-child {
  margin: 0;
}
.ticketBox .ticketList li .seat {
  margin: 0;
  padding: 20px 40px;
  border-bottom: 1px dashed;
  line-height: 1.5em;
  text-align: center;
}
.ticketBox .ticketList li .date {
  padding: 20px 12px;
  line-height: 1.5em;
  text-align: center;
}
.ticketBox .ticketList li .date span {
  display: block;
  font-weight: 500;
  font-size: clamp(0.75rem, calc(0.635rem + 0.32vw), 0.88rem);
}
.ticketBox .ticketList li .cloneBtn,
.ticketBox .ticketList .end .cloneBtn {
  padding: 20px 40px;
  background: var(--color-accent-primary);
  color: var(--color-white);
  font-size: 120%;
  text-align: center;
  transition: 0.5s ease;
}
.ticketBox .ticketList li.blank {
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 40px;
  overflow: hidden;
  border-radius: 10px;
  background: #6c6c6c;
}
.ticketBox .ticketList li.blank:before {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 100px;
  background: var(--color-black);
  content: "";
}
.ticketBox .ticketList li.blank:after {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 100px;
  background: var(--color-black);
  content: "";
}
.ticketBox .ticketList li:nth-child(2).blank:after,
.ticketBox .ticketList li:nth-child(3).blank:before {
  background: #222222;
}
.ticketBox .ticketList li:nth-child(3).blank:after {
  background: #181818;
}
.ticketBox .ticketList li.blank .ticketsoon {
  color: #484848;
  font-weight: 600;
  font-size: 120%;
  font-family: "Poppins", sans-serif;
  text-align: center;
}
.ticketBox .op_accord {
  margin: 0 0 60px;
}
.ticketPop .ticketName {
  display: block;
  margin: 0 0 15px;
  padding: 0 0 30px;
  border-bottom: 1px solid;
  font-size: 160%;
  line-height: 1.6em;
}
.ticketPop .ticketName span {
  margin: 0 0 0 10px;
  padding: 5px 20px;
  border-radius: 100px;
  background: var(--color-black);
  color: var(--color-white);
  font-size: 70%;
  vertical-align: 3px;
}
.ticketPop .cautionList li a {
  text-decoration: underline;
}
.ticketBox .btnBuy a {
  width: 460px;
  margin: 0 auto;
  padding: 25px;
  border-radius: 10px;
  background: var(--color-accent-primary);
  color: var(--color-white);
  font-weight: 600;
  font-size: 140%;
}
.ticketBox .btnGuide a {
  width: 300px;
  margin: 0 auto;
  padding: 15px;
  border: 1px solid;
  border-radius: 100px;
  background: transparent;
  color: var(--color-white);
  font-weight: 600;
  font-size: 120%;
}
.ticketBox .op_accord .accordionTit {
  width: 460px;
  margin-inline: auto;
  border-radius: 10px;
  color: var(--color-black);
  font-size: 120%;
  text-align: center;
}
.ticketBox .op_accord .accordionList .accordionDetail {
  padding: 0;
  background: transparent;
}
.guidePop .guidePopTit {
  margin: 0 0 60px;
  font-weight: 500;
  font-size: 200%;
  text-align: center;
}
.guidePop .leadList {
  margin: 0 0 40px;
  padding: 0 60px;
}
.guidePop .leadList li {
  position: relative;
  margin: 0 0 10px;
  padding: 0 0 0 20px;
}
.guidePop .leadList li:before {
  position: absolute;
  left: 0;
  content: "・";
}
.guidePop .leadList li:last-child {
  margin: 0;
}
.guidePop .leadList li span {
  display: block;
  margin: 5px 0 0;
  font-size: 90%;
}
.guidePop .guideAdd {
  width: calc(100% - 120px);
  margin: 0 auto 40px;
  padding: 60px;
  background: #ffeaea;
}
.guidePop .guideAdd .addInennr {
  position: relative;
  margin: 0 0 15px;
  padding: 0 0 0 20px;
}
.guidePop .guideAdd .addInennr:before {
  position: absolute;
  top: 5px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 100px;
  background: var(--color-black);
  content: "";
}
.guidePop .guideAdd .addInennr .addTxt {
  margin: 0 0 10px;
}
.guidePop .guideAdd .addInennr .addTxt:last-child {
  margin: 0;
}
.guidePop .guideAdd .addInennr .red {
  color: var(--color-accent-red);
}
.guidePop .guideAdd .addInennr:last-child {
  margin: 0;
}
.guidePop .popInBox {
  padding: 60px 0;
}
.guidePop .appDL {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(100% - 120px);
  margin: 0 auto 60px;
  padding: 40px;
  background: var(--color-white);
}
.guidePop .appDL .icoApp {
  width: 100%;
  max-width: 224px;
  padding-inline: 1em;
}
.guidePop .appLink {
  display: flex;
  justify-content: center;
}
.guidePop .appLink li {
  padding: 0 20px;
}
.guidePop .appLink li p {
  margin: 0 0 5px;
  font-weight: 600;
  font-size: 90%;
  text-align: center;
}
.guidePop .covidTit {
  margin: 0 0 20px;
  font-size: 120%;
  text-align: center;
}
.guidePop .guideLine a {
  display: block;
  width: 540px;
  margin: 0 auto 60px;
  padding: 25px;
  background: var(--color-black);
  color: var(--color-white);
  font-size: 120%;
  text-align: center;
}
.guidePop .tikeboBox {
  margin-bottom: 60px;
  padding: 60px;
}
@media screen and (max-width: 960px) {
  .guidePop .tikeboBox {
    margin-bottom: 20px;
    padding: 20px;
  }
}
.guidePop .tikeboBox .tikeboLogo {
  width: 360px;
  margin: 0 auto 40px;
}
.guidePop .tikeboBox .btnList {
  display: flex;
  justify-content: center;
  margin: 0 0 40px;
}
.guidePop .tikeboBox .btnList li {
  padding: 0 20px;
}
.guidePop .tikeboBox .btnList li a {
  display: block;
  width: 300px;
  padding: 20px;
  border: 1px solid;
  border-radius: 100px;
  background: var(--color-white);
  text-align: center;
}
.guidePop .tikeboBox .box01 {
  margin: 0 0 40px;
  padding: 40px;
  background: var(--color-black);
  color: var(--color-white);
}
.guidePop .tikeboBox .box01 .lead {
  margin: 0 0 40px;
  font-weight: 500;
  font-size: 140%;
  line-height: 1.3em;
  text-align: center;
}
.guidePop .tikeboBox .box01 .admission__list .admission__item {
  width: 100%;
  padding-block: 1em;
  border-top: 1px solid var(--color-white);
  text-align: center;
}
.guidePop .tikeboBox .box01 .admission__list .admission__item:last-child {
  border-bottom: 1px solid var(--color-white);
}
.guidePop .tikeboBox .box01 ul li h4 {
  margin: 0 0 20px;
  font-size: 140%;
}
.guidePop .tikeboBox .box01 ul li .flBox .txt {
  font-weight: 600;
  font-size: 120%;
}
.guidePop .tikeboBox .box01 ul li .flBox:has(.ticket__list) {
  display: block;
  height: auto;
  min-height: 200px;
}
.guidePop .tikeboBox .box01 ul .ticket__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, auto);
  gap: 0 20px;
  width: 100%;
  max-width: 480px;
  margin-inline: auto;
}
.ticket__list .ticket__item:nth-child(2) {
  position: relative;
}
.ticket__list .ticket__item:nth-child(2)::before {
  position: absolute;
  top: 50%;
  left: -4em;
  translate: 0 -50%;
  width: 2em;
  height: 2em;
  background: url(../img/icon-plus.svg) no-repeat center center / contain;
  content: "";
}
.guidePop .tikeboBox .box01 ul .ticket__list .ticket__item {
  display: grid;
  align-items: center;
  grid-row: span 3;
  grid-template-rows: subgrid;
  text-align: center;
  justify-items: center;
}
.guidePop .tikeboBox .box01 ul .ticket__list .ticket__item h5 {
  width: 100%;
  margin: 0 0 10px;
  font-weight: 600;
  font-size: 18px;
}
.guidePop .tikeboBox .box01 ul .ticket__list .ticket__item img {
  object-fit: contain;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 140px;
  margin: 0 0 10px;
}
.guidePop .tikeboBox .box01 ul .ticket__list .ticket__item p {
  margin: 0;
  font-weight: 600;
  font-size: 120%;
  line-height: 1.4;
}
.guidePop .tikeboBox .box01 .warning {
  max-width: 480px;
  margin-inline: auto;
  margin-block: 1em;
  padding: 0.5em 1em;
  background: var(--color-accent-pink);
  color: var(--color-accent-primary);
  font-weight: 500;
  font-size: 18px;
  text-align: center;
}
.guidePop .tikeboBox .idCard {
  padding: 40px;
  background: var(--color-black);
  color: var(--color-white);
}
.guidePop .tikeboBox .idCard h3 {
  margin: 0 0 40px;
  font-weight: 500;
  font-size: 140%;
  text-align: center;
}
.guidePop .tikeboBox .idCard .idCardList {
  display: flex;
  justify-content: space-between;
}
.guidePop .tikeboBox .idCard .idCardList .inner {
  width: calc(50% - 20px);
}
.guidePop .tikeboBox .idCard .idCardList .inner > * {
  margin: 0 0 20px;
}
.guidePop .tikeboBox .idCard .idCardList .inner > *last-child {
  margin: 0;
}
.guidePop .tikeboBox .idCard .idCardList .inner h5 {
  margin: 0 0 20px;
  padding: 0 0 20px;
  border-bottom: 1px solid;
  font-weight: 500;
  font-size: 100%;
}
.guidePop .tikeboBox .idCard .idCardList .inner .lead {
  padding: 0 0 0 10px;
  border-left: 5px solid;
  font-weight: 500;
}
.guidePop .tikeboBox .idCard .idCardList .inner .miniList li {
  position: relative;
  margin: 0 0 5px;
  padding: 0 0 0 25px;
  font-size: 90%;
}
.guidePop .tikeboBox .idCard .idCardList .inner .miniList li span {
  display: block;
  position: absolute;
  left: 0;
  width: 20px;
  color: var(--color-accent-gold);
  text-align: center;
}
.guidePop .tikeboBox .idCard .idCardList .inner .cautionList li {
  margin: 0 0 5px;
}
.guidePop .tikeboBox .idCard .idCardList .inner .txt {
  margin: 0 0 10px;
  font-size: 90%;
}
.guidePop .contactList {
  display: flex;
  justify-content: space-between;
  padding: 0 60px;
}
.guidePop .contactList li {
  width: calc(50% - 20px);
  text-align: center;
}
.guidePop .contactList li .tit {
  margin: 0 0 20px;
  font-weight: 600;
  font-size: 110%;
}
.guidePop .contactList li .btn a {
  display: block;
  max-width: 360px;
  margin: 0 auto 10px;
  padding: 20px;
  background: var(--color-black);
  color: var(--color-white);
  text-align: center;
}
.guidePop .contactList li .note {
  font-size: 70%;
}
@media screen and (min-width: 770px) {
  .ticketList li a:hover {
    opacity: 1;
  }
  .ticketList li a:hover .cloneBtn {
    color: var(--color-white);
  }
  .ticketList li a:hover .ticketInner {
    transform: translateY(-10px);
    background: var(--color-white);
  }
  .ticketBox .ticketList li .seat {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90px;
  }
  .op_detail .ticketBtn a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 960px) {
  .ticketBox .priceList li {
    width: 100%;
  }
}
@media screen and (min-width: 770px) and (max-width: 960px) {
  .ticketList li {
    width: 100%;
  }
  .ticketList li.blank {
    display: none;
  }
}
@media screen and (max-width: 960px) {
  .ticketBox {
    opacity: 1 !important;
  }
  .ticketBox:before {
    width: calc(100% - 20px);
  }
  .ticketBox .priceList li:last-child {
    margin-bottom: 0;
  }
  .ticketBox .priceList li:nth-child(1) .price,
  .ticketBox .priceList li .price1 {
    padding: 0 0 40px;
  }
  .ticketBox .priceList li .detailBox .tit {
    font-size: 14px;
  }
  .ticketBox .priceList li .detailBox .txt .target {
    padding: 8px 10px;
  }
  .ticketBox .priceList li .detailBox .txt .target.unknow {
    display: none;
  }
  .ticketBox .exBox.accord {
    margin: 0 auto 30px;
  }
  .ticketBox .exBox .up .tit {
    font-size: 14px;
  }
  .ticketBox .exBox .up .note {
    margin-bottom: 15px;
    font-size: 12px;
  }
  .ticketBox .exBox .up .upDetail .detailTit {
    font-size: 14px;
  }
  .ticketBox .exBox .up .upDetail .detailTxt {
    font-size: 80%;
  }
  .ticketBox .exBox .up .upDetail .detailTxt li {
    flex-direction: column;
  }
  .ticketBox .exBox .up .upDetail .detailTxt li span.seat {
    margin: 0 0 5px;
  }
  .ticketBox .exBox .up .upDetail .detailTxt li p {
    width: 100%;
  }
  .ticketBox .exBox .op_accord .accordionList .accordionTit {
    width: 100%;
    max-width: 460px;
    padding: 15px 40px 15px 15px;
  }
  .ticketBox .exBox .op_accord .accordionList .accordionTit.open {
    max-width: 100%;
  }
  .ticketBox .exBox .op_accord .accordionList .accordionDetail {
    padding: 20px;
  }
  .ticketBox .exBox .otherBox {
    padding: 0 0 15px;
    font-size: 14px;
  }
  .ticketBox .exBox .otherBox .tit {
    font-size: 14px;
  }
  .ticketBox .exBox .otherBox .seatList li {
    flex-direction: column;
  }
  .ticketBox .exBox .otherBox .seatList li .txtBox {
    width: 100%;
  }
  .ticketBox .exBox .otherBox .seatList li span.seat {
    margin: 0 1em 0.5em 0;
  }
  .ticketBox .exBox .otherBox .txt {
    font-size: inherit;
  }
  .ticketBox .exBox .otherBox .attList {
    margin-bottom: 10px;
  }
  .ticketBox .exBox .otherBox .howBox .boxTIt a {
    word-break: break-word;
  }
  .ticketBox .btnBuy a {
    width: 100%;
    max-width: 460px;
    padding: 20px;
    font-size: 120%;
  }
  .ticketBox .btnGuide a {
    width: 80%;
    max-width: 300px;
    padding: 10px;
    border-radius: 100px;
    font-size: 110%;
  }
  .ticketBox .btnBuy a {
    width: 100%;
    padding: 20px;
  }
  .ticketBox .btnGuide a {
    width: 80%;
    padding: 10px;
    border-radius: 100px;
    font-size: 110%;
  }
  .ticketBox .ticketList li {
    width: 100%;
  }
  .ticketBox .ticketList li.blank {
    display: none;
  }
  .ticketBox .ticketList li a .ticketInner:before {
    top: 70%;
    left: 0;
    transform: translate(-50%, -50%);
  }
  .ticketBox .ticketList li a .ticketInner:after {
    top: 70%;
    right: 0;
    bottom: auto;
    left: auto;
    transform: translate(50%, -50%);
    width: 20px;
    height: 20px;
  }
  .ticketPop .ticketName {
    padding: 0 0 20px;
    font-size: 120%;
    line-height: 1.3em;
  }
  .ticketPop .ticketName span {
    display: inline-block;
    margin: 10px 0 0;
    padding: 5px 20px;
    vertical-align: 0;
  }
  .ticketBox .op_accord .accordionTit {
    width: 100%;
    margin: 0 auto 20px;
  }
  .guidePop .guideAdd {
    width: calc(100% - 40px);
    margin: 0 auto 20px;
    padding: 20px;
  }
  .guidePop .guideAdd .addInennr .addTxt {
    margin: 0 0 5px;
    font-size: 90%;
  }
  .guidePop .popInBox {
    padding: 20px 0;
  }
  .guidePop .guidePopTit {
    margin: 0 0 20px;
    font-size: 130%;
  }
  .guidePop .leadList {
    margin: 0 0 20px;
    padding: 0 20px;
  }
  .guidePop .leadList li {
    font-size: 90%;
    line-height: 1.5em;
  }
  .guidePop .appDL {
    display: block;
    width: calc(100% - 40px);
    margin: 0 auto 20px;
    padding: 20px;
    background: var(--color-white);
  }
  .guidePop .appDL .icoApp {
    width: 80%;
    margin: 0 auto 20px;
  }
  .guidePop .appLink {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    max-width: 480px;
    margin-inline: auto;
    padding-inline: 1em;
  }
  .guidePop .appLink li {
    margin: 0 0 10px;
  }
  .guidePop .appLink li:last-child {
    margin: 0;
  }
  .guidePop .appLink li p {
    font-size: 14px;
  }
  .guidePop .appLink li .btn {
    width: 100%;
    max-width: 224px;
    margin-inline: auto;
  }
  .guidePop .covidTit {
    margin: 0 0 20px;
    font-size: 100%;
  }
  .guidePop .guideLine {
    padding: 0 20px;
  }
  .guidePop .guideLine a {
    width: 100%;
    margin: 0 auto 40px;
    padding: 15px;
    font-size: 110%;
  }
  .guidePop .tikeboBox .tikeboLogo {
    width: 100%;
    max-width: 248px;
    margin: 0 auto 25px;
  }
  .guidePop .tikeboBox .btnList {
    display: block;
    justify-content: center;
    margin: 0 0 20px;
  }
  .guidePop .tikeboBox .btnList li {
    margin: 0 0 10px;
    padding: 0;
  }
  .guidePop .tikeboBox .btnList li:last-child {
    margin: 0;
  }
  .guidePop .tikeboBox .btnList li a {
    max-width: 360px;
    margin-inline: auto;
    padding: 10px;
  }
  .guidePop .tikeboBox .box01 {
    margin: 0 0 20px;
    padding: 20px;
  }
  .guidePop .tikeboBox .box01 .lead {
    margin: 0 0 20px;
    font-size: 90%;
    line-height: 1.3em;
    text-align: left;
  }
  .guidePop .tikeboBox .box01 ul li h4 {
    font-size: 120%;
  }
  .guidePop .tikeboBox .box01 ul li .flBox {
    display: block;
    height: auto;
  }
  .guidePop .tikeboBox .box01 ul li .flBox .txt {
    font-size: 100%;
  }
  .guidePop .tikeboBox .box01 ul li .flBox:has(.ticket__list) {
    min-height: auto;
  }
  .guidePop .tikeboBox .box01 ul .ticket__list .ticket__item {
    grid-row: auto;
    grid-template-rows: none;
    gap: 10px;
  }
  .guidePop .tikeboBox .box01 ul .ticket__list .ticket__item img {
    max-height: 120px;
  }
  .guidePop .tikeboBox .box01 ul .ticket__list .ticket__item p {
    font-size: 100%;
  }
  .guidePop .tikeboBox .box01 .warning {
    font-size: 14px;
  }
  .guidePop .tikeboBox .idCard {
    padding: 20px;
  }
  .guidePop .tikeboBox .idCard h3 {
    margin: 0 0 20px;
    font-weight: 500;
    font-size: 100%;
    line-height: 1.3em;
    text-align: left;
  }
  .guidePop .tikeboBox .idCard .idCardList {
    display: block;
  }
  .guidePop .tikeboBox .idCard .idCardList .inner {
    width: 100%;
    margin: 0 0 20px;
    padding: 0 0 20px;
    border-bottom: 1px solid;
  }
  .guidePop .tikeboBox .idCard .idCardList .inner:last-child {
    width: 100%;
    margin: 0;
    padding: 0;
    border-bottom: none;
  }
  .guidePop .tikeboBox .idCard .idCardList .inner > *:last-child {
    margin: 0;
  }
  .guidePop .tikeboBox .idCard .idCardList .inner h5 {
    margin: 0 0 10px;
    padding: 0 0 10px;
    border-bottom: 1px dashed var(--color-gray-600);
    font-size: 100%;
  }
  .guidePop .contactList {
    display: block;
    padding: 0 20px;
  }
  .guidePop .contactList li {
    width: 100%;
    margin: 0 0 20px;
    padding: 0 0 20px;
    border-bottom: 1px dashed;
    text-align: center;
  }
  .guidePop .contactList li:last-child {
    margin: 0;
    padding: 0;
    border-bottom: none;
  }
  .guidePop .contactList li .tit {
    margin: 0 0 10px;
    font-weight: 600;
    font-size: 75%;
    text-align: left;
  }
  .guidePop .contactList li .btn a {
    padding: 15px;
    font-size: 90%;
  }
  .guidePop .contactList li .note {
    font-size: 70%;
    line-height: 1.3em;
    text-align: left;
  }
}
@media screen and (max-width: 768px) {
  .guidePop .appLink {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 575px) {
  .guidePop .tikeboBox .box01 ul .ticket__list {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 3em;
    margin-bottom: -3em;
  }
  .ticket__list .ticket__item:nth-child(2)::before {
    top: -2.25em;
    left: 50%;
    translate: -50% 0;
    width: 1.5em;
    height: 1.5em;
  }
}
.op_accord.anivAc:not(:has(.accordionDetail .ticketList li.end)) {
  display: none;
}

.scheduleBox {
  position: relative;
}
.tourDateBox a .scheduleBox .inBox .tourDateBox .tourDateList.listHead {
  padding: 0 0 10px;
}
.scheduleBox .inBox .tourDateBox .tourDateList.listHead li {
  justify-content: center;
  font-weight: 600;
  font-size: 70%;
}
.scheduleBox .inBox .tourDateBox .tourDateList.listHead li:after {
  display: none;
}
.scheduleBox .inBox .tourDateBox .listHead .scheduleInfo {
  justify-content: center !important;
  font-size: 100%;
}
.scheduleBox .inBox .tourDateBox .tourDateList {
  display: flex;
  align-items: stretch;
  position: relative;
  margin: 0 0 20px;
  padding: 0 0 20px;
  border-bottom: 1px solid var(--color-white);
}
.scheduleBox .inBox .tourDateBox .tourDateList:last-child {
  margin: 0;
}
.scheduleBox .inBox .tourDateBox .tourDateList li {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0 15px;
  box-sizing: border-box;
  font-size: 90%;
  line-height: 1.5em;
}
.scheduleBox .inBox .tourDateBox .tourDateList li:after {
  position: absolute;
  top: 5%;
  right: 0;
  width: 1px;
  height: 90%;
  background: var(--color-white);
  content: "";
}
.scheduleBox .inBox .tourDateBox .tourDateList .scheduleDate {
  position: relative;
  width: 15%;
}
.scheduleBox .inBox .tourDateBox .tourDateList .scheduleDate .day {
  padding: 0 5px 0 0;
  font-weight: bold;
  font-size: 150%;
}
.scheduleBox .inBox .tourDateBox .tourDateList .scheduleDate .week {
  display: inline-block;
  width: 33px;
}
.scheduleBox .inBox .tourDateBox .tourDateList .scheduleDate .week.sat {
  color: #438bea;
}
.scheduleBox .inBox .tourDateBox .tourDateList .scheduleDate .week:is(.sun, .holiday) {
  color: #d64040;
}
.scheduleBox .inBox .tourDateBox .tourDateList .scheduleVenue {
  width: 38%;
  text-align: center;
}
.scheduleBox .inBox .tourDateBox .tourDateList .scheduleTime {
  width: 17%;
}
.scheduleBox .inBox .tourDateBox .tourDateList .scheduleInfo {
  justify-content: left;
  width: 30%;
  padding: 0 0 0 20px;
  font-size: 70%;
}
.scheduleBox .inBox .tourDateBox .tourDateList .scheduleInfo:after {
  display: none;
}
.scheduleBox .inBox .tourDateBox .tourDateList .scheduleInfo .scheduleInner i {
  display: inline-block;
  padding: 0 3px 0 0;
}
.scheduleBox .inBox .tourDateBox .tourDateList .scheduleInfo .scheduleInner .txt span {
  display: block;
  padding: 2px 0 0;
}

.scheduleBox .inBox .tourDateBox .tourDateList .scheduleInfo .scheduleInner .txt .web {
  display: inline-block;
  margin: 0 5px 0 0;
  text-decoration: underline;
  word-break: break-all;
}

.scheduleBox .inBox .tourDateBox .tourDateList .scheduleInfo .scheduleInner .txt .phone {
  display: inline-block;
  margin: 0 5px 0 0;
  word-break: break-all;
}

.scheduleBox .inBox .tourDateBox .tourDateList .scheduleInfo .scheduleInner .txt span .webInquiry {
  border-bottom: 1px solid;
}
.scheduleBox .btnBase a {
  width: 500px;
  margin: 0 auto;
  background: var(--color-gold-dark);
  color: var(--color-black);
  font-weight: 500;
}
.scheduleBox .attentionBlock {
  position: relative;
  padding: 60px 40px;
}
.scheduleBox .attentionBlock .mainTit {
  margin: 0 0 40px;
  font-size: 180%;
  text-align: center;
}
.scheduleBox .attentionBlock .mainLead {
  margin: 0 0 20px;
}
.scheduleBox .attentionBlock .attentionLead {
  margin: 40px 0 0;
  padding: 40px;
  background: var(--color-white);
  color: var(--color-black);
}
.scheduleBox .attentionBlock .attentionLead dt {
  margin: 0 0 20px;
  padding-bottom: 1em;
  border-bottom: 1px solid;
  font-weight: 600;
  font-size: clamp(1.13rem, calc(1.015rem + 0.49vw), 1.25rem);
  text-align: center;
  line-height: 1.4em;
}
.scheduleBox .attentionBlock .attentionLead dd .txt {
  line-height: 1.5em;
}
.scheduleBox .attentionBlock .attentionLead dd .txt .red {
  color: var(--color-accent-red);
  font-weight: 600;
  font-size: 120%;
  line-height: 1.5em;
}
.scheduleBox .accordionList {
  max-width: 1200px;
  margin: 60px auto 0;
}
.scheduleBox .op_accord:last-child .accordionList {
  margin: 30px auto 0;
}
.scheduleBox .accordionList .accordionTit {
  width: 60%;
  margin: 0 auto;
  padding: 25px 25px 20px;
  border: 1px solid var(--color-white);
  border-radius: 10px;
  background: var(--color-transparent);
  color: var(--color-white);
  transition: 0.5s ease;
}
.scheduleBox .accordionList .accordionTit.open {
  width: 100%;
}
.scheduleBox .accordionList .accordionTit .txt {
  font-size: 140%;
}
.scheduleBox .accordionList .accordionDetail {
  background: var(--color-white);
  color: var(--color-black);
}
.scheduleBox .accordionList .accordionDetail > * {
  margin: 0 0 20px;
}
.scheduleBox .accordionList .accordionDetail .tit {
  text-align: center;
}
.scheduleBox .accordionList .accordionDetail .txt {
  font-size: 90%;
  line-height: 1.5em;
}
.scheduleBox .accordionList .accordionDetail .leadList dt {
  margin: 0 0 10px;
  padding: 0 0 0 10px;
  border-left: 5px solid;
  font-weight: 600;
  font-size: 120%;
  line-height: 1.5em;
}
.scheduleBox .accordionList .accordionDetail .leadList dd {
  margin: 0 0 10px;
}
.scheduleBox .accordionList .accordionDetail .attentionList dd.irregular {
  padding-left: 0;
}
.scheduleBox .accordionList .accordionDetail .attentionList dd.irregular::before {
  content: none;
}
.scheduleBox .accordionList .accordionDetail .attentionList dt {
  display: inline-block;
  margin: 0 0 10px;
  padding: 5px 10px;
  background: var(--color-black);
  color: var(--color-white);
}
.scheduleBox .accordionList .accordionDetail .attentionList dd {
  position: relative;
  margin: 0 0 10px;
  padding: 0 0 0 20px;
}
.scheduleBox .accordionList .accordionDetail .attentionList dd:before {
  display: block;
  position: absolute;
  top: 5px;
  left: 0;
  width: 10px;
  height: 10px;
  border: 3px solid;
  border-radius: 100px;
  box-sizing: border-box;
  background: transparent;
  content: "";
}
.scheduleBox .accordionList .accordionDetail .attentionList dd.nomark {
  padding: 0;
  content: none;
}
.scheduleBox .accordionList .accordionDetail .attentionList dd.nomark:before {
  content: none;
}
.scheduleBox .accordionList .accordionDetail .attentionList dd:last-child {
  margin: 0;
}
.scheduleBox .accordionList .accordionDetail .attentionList dd > * {
  margin: 0 0 10px;
}
.scheduleBox .accordionList .accordionDetail .attentionList dd > *:last-child {
  margin: 0;
}
.scheduleBox .accordionList .accordionDetail .attentionList dd .txt {
  font-size: 90%;
  line-height: 1.5em;
}
.scheduleBox .accordionList .accordionDetail .attentionList dd .txt .red {
  color: var(--color-accent-red);
  font-weight: 600;
  font-size: 120%;
  line-height: 1.8em;
}
.scheduleBox .accordionList .accordionDetail .attentionList dd .miniList li {
  position: relative;
  margin: 0 0 5px;
  padding: 0 0 0 20px;
  font-size: 85%;
}
.scheduleBox .accordionList .accordionDetail .attentionList dd .miniList li:last-child {
  margin: 0;
}
.scheduleBox .accordionList .accordionDetail .attentionList dd .miniList li:before {
  position: absolute;
  left: 0;
  content: "・";
}
.scheduleBox .accordionList .accordionDetail .attentionList dd .innerList {
  margin: 0 0 15px;
  padding: 0 0 15px;
  border-bottom: dashed 1px;
}
.scheduleBox .accordionList .accordionDetail .attentionList dd .innerList > * {
  margin: 0 0 10px;
}
.scheduleBox .accordionList .accordionDetail .attentionList dd .innerList .innerTit {
  padding: 0 0 0 10px;
  border-left: 5px solid;
  font-weight: 600;
}
.scheduleBox .accordionList .accordionDetail .attentionList dd .innerList .innerTxt {
  font-size: 90%;
}
.scheduleBox .accordionList .accordionDetail .attentionList dd .innerList .innerTxt span {
  display: block;
  margin: 10px 0 0;
}
.scheduleBox .accordionList .accordionDetail .strong {
  color: var(--color-accent-red);
}
@media screen and (min-width: 770px) {
  .scheduleBox .inBox .tourDateBox .tourDateList .scheduleInfo .scheduleInner .txt .phone a:hover,
  .scheduleBox .accordionList .accordionTit:hover {
    width: 100%;
    background: none;
  }
}
@media screen and (min-width: 770px) and (max-width: 960px) {
  .scheduleBox .accordionList .accordionTit {
    width: 100%;
  }
}
@media screen and (max-width: 960px) {
  .scheduleBox:before {
    width: calc(100% - 20px);
  }
  .scheduleBox .inBox .tourDateBox .tourDateList.listHead {
    padding: 0;
  }
  .scheduleBox .inBox .tourDateBox .tourDateList.listHead li {
    display: none;
  }
  .scheduleBox .inBox .tourDateBox .tourDateList {
    display: block;
    margin: 0 0 20px;
    padding: 0;
  }
  .scheduleBox .inBox .tourDateBox .tourDateList li {
    display: block;
    padding: 0;
    font-size: 100%;
  }
  .scheduleBox .inBox .tourDateBox .tourDateList li:after {
    display: none;
  }
  .scheduleBox .inBox .tourDateBox .tourDateList .scheduleDate {
    width: 100%;
  }
  .scheduleBox .inBox .tourDateBox .tourDateList .scheduleDate br.sp {
    margin: 0;
  }
  .scheduleBox .inBox .tourDateBox .tourDateList .scheduleDate .day {
    font-weight: bold;
  }
  .scheduleBox .inBox .tourDateBox .tourDateList .scheduleDate .week {
    width: initial;
  }
  .scheduleBox .inBox .tourDateBox .tourDateList .scheduleVenue {
    width: 100%;
    margin: 0 0 10px;
    font-size: 18px;
    text-align: left;
  }
  .scheduleBox .inBox .tourDateBox .tourDateList .scheduleTime {
    width: 100%;
    margin: 0 0 10px;
  }
  .scheduleBox .inBox .tourDateBox .tourDateList .scheduleTime .subTxt {
    width: 100%;
    font-size: 70%;
    line-height: 1;
  }
  .scheduleBox .inBox .tourDateBox .tourDateList .scheduleInfo {
    width: 100%;
    margin: 0 0 20px;
    padding: 0;
  }
  .scheduleBox .attentionBlock {
    padding: 25px 20px 20px;
  }
  .scheduleBox .attentionBlock:after {
    border-right: 5px solid var(--color-gray-800);
    border-bottom: 5px solid var(--color-gray-800);
  }
  .scheduleBox .attentionBlock .mainTit {
    margin: 0 0 20px;
    font-size: 140%;
  }
  .scheduleBox .attentionBlock .attentionLead {
    margin: 20px 0 0;
    padding: 1em 0 0;
  }
  .scheduleBox .attentionBlock .attentionLead dt {
    text-align: left;
    padding-inline: 1em;
  }
  .scheduleBox .attentionBlock .attentionLead dd .txt {
    padding-inline: 1em;
    font-weight: 500;
  }
  .scheduleBox .accordionList {
    margin: 20px auto 0;
  }
  .scheduleBox .op_accord:last-child .accordionList {
    margin: 20px auto 0;
  }
  .scheduleBox .accordionList .accordionTit {
    width: 100%;
    padding: 20px 15px;
  }
  .scheduleBox .accordionList .accordionTit .txt {
    font-size: 100%;
  }
  .scheduleBox .accordionList .accordionDetail {
    padding: 20px;
  }
  .scheduleBox .accordionList .accordionDetail .txt {
    font-size: 80%;
    line-height: 1.5em;
  }
  .scheduleBox .accordionList .accordionDetail .leadList dt {
    padding: 10px;
    font-size: 90%;
    line-height: 1.3em;
  }
  .scheduleBox .accordionList .accordionDetail > *:last-child {
    margin: 0;
  }
  .scheduleBox .accordionList .accordionDetail .attentionList dt {
    font-size: 90%;
  }
}
.goodsBox {
  position: relative;
  margin-bottom: 200px;
}
.goodsBox .red {
  color: var(--color-accent-red);
}
.goodsBox .coming {
  margin: 0;
  font-size: 120%;
  font-family: "Libre Baskerville", serif;
  text-align: center;
}
.goodsBox .mainTit {
  margin-left: -0.5em;
  text-align: center;
  text-indent: 0.5em;
}
.goodsBox .innerTit {
  position: absolute;
  top: 0;
  left: 0;
  padding: 20px;
  background: var(--color-accent-primary);
  font-weight: 500;
  font-size: 20px;
}
.goodsBox .leadList li:first-child {
  margin: 0 0 10px;
  font-size: 20px;
  text-indent: -10px;
}
.goodsBox .attentionList {
  margin: 0 0 40px;
}
.goodsBox .attentionList dt {
  display: inline-block;
  margin: 0 0 20px;
  padding: 10px;
  background: var(--color-black);
  color: var(--color-white);
  font-weight: 600;
  font-size: 20px;
}
.goodsBox .attentionList dd {
  position: relative;
  margin: 0 0 10px;
  padding: 0 0 0 20px;
}
.goodsBox .attentionList dd:before {
  display: block;
  position: absolute;
  top: 5px;
  left: 0;
  width: 10px;
  height: 10px;
  border: 3px solid;
  border-radius: 100px;
  box-sizing: border-box;
  background: transparent;
  content: "";
}
.goodsBox .attentionList dd > * {
  margin: 0 0 10px;
}
.goodsBox .attentionList dd > *:last-child {
  margin: 0;
}

@media screen and (max-width: 960px) {
  .goodsBox {
    margin-bottom: 80px;
  }
  .goodsBox h4:after {
    left: calc(100% + 25px);
    width: 15vw;
  }
  .goodsBox .mainTit {
    margin-left: 0;
    font-size: 16px;
    text-align: left;
    text-indent: 0;
  }
  .goodsBox .innerTit {
    display: inline-block;
    position: relative;
    padding: 10px 15px;
    font-size: 16px;
  }
  .goodsBox .leadList li {
    font-size: 12px;
  }
  .goodsBox .leadList li:first-child {
    font-size: 16px;
  }
  .goodsBox .attentionList dt {
    font-size: 16px;
  }
}
.local-dev-banner {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  padding: 10px 14px;
  border-bottom: 1px solid var(--color-banner-border);
  background: var(--color-banner-bg);
  backdrop-filter: blur(8px);
  color: var(--color-banner-text);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-align: center;
}
.contentsWrap {
  padding-top: 150px;
}
.heroView {
  min-height: 100svh;
}
.inBox {
  box-shadow: var(--shadow-section);
  background: linear-gradient(180deg, var(--color-inbox-gradient-start) 0%, var(--color-inbox-gradient-end) 100%);
}
.scheduleBox .tourDateList .scheduleVenue .txt {
  line-height: 1.65;
}
.scheduleBox .tourDateList .scheduleInfo .txt {
  line-height: 1.8;
}
.is-disabled {
  opacity: 0.4;
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  .local-dev-banner {
    padding: 8px 10px;
    font-size: 10px;
  }
  .contentsWrap {
    padding-top: 80px;
  }
}
@media screen and (min-width: 1201px) {
  .navigation .headerNav li a {
    position: relative;
    padding-left: 0;
    transition:
      color 0.35s ease,
      padding-left 0.35s ease,
      opacity 0.35s ease;
  }
  .navigation .headerNav li a::before {
    opacity: 0;
    position: absolute;
    top: 50%;
    left: -18px;
    transform: translateY(-50%) translateX(6px);
    color: var(--star-color-pc);
    font-size: var(--star-size-pc);
    line-height: 1;
    content: "★";
    transition:
      opacity 0.35s ease,
      transform 0.35s ease;
  }
  .navigation .headerNav li a:hover {
    padding-left: 10px;
  }
  .navigation .headerNav li a:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}
.goodsComing {
  opacity: 0.8;
  padding: 120px 0;
  color: var(--color-white);
  font-size: 72px;
  font-family: "Libre Baskerville", serif;
  letter-spacing: 0.2em;
  text-align: center;
  user-select: none;
}
@media screen and (max-width: 960px) {
  .goodsComing {
    padding: 80px 0;
    font-size: 27px;
    letter-spacing: 0.15em;
  }
}
.tourOverviewBox {
  position: relative;
  margin-bottom: 150px;
}
.tourOverview {
  max-width: 980px;
  margin: 0 auto;
}
.tourOverview__lead {
  margin: 0 0 34px;
  color: var(--color-white);
  font-size: 34px;
  line-height: 1.5;
  font-family: "Libre Baskerville", serif;
  letter-spacing: 0.12em;
}
.tourOverview__body {
  position: relative;
  padding: 38px 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(20, 20, 20, 0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.tourOverview__body::before {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 120px;
  height: 1px;
  background: var(--color-accent-primary);
  content: "";
}
.tourOverview__body::after {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 1px;
  height: 120px;
  background: var(--color-accent-primary);
  content: "";
}
.tourOverview__body p {
  margin: 0 0 1.35em;
  color: var(--color-white);
  font-size: 16px;
  line-height: 2.1;
  letter-spacing: 0.08em;
}
.tourOverview__body p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 960px) {
  .tourOverviewBox {
    margin-bottom: 80px;
  }
  .tourOverview__lead {
    margin-bottom: 20px;
    font-size: 24px;
    line-height: 1.7;
    letter-spacing: 0.08em;
  }
  .tourOverview__body {
    padding: 22px 20px;
  }
  .tourOverview__body::before {
    width: 72px;
  }
  .tourOverview__body::after {
    height: 72px;
  }
  .tourOverview__body p {
    font-size: 13px;
    line-height: 2;
    letter-spacing: 0.06em;
  }
}
.tourOverviewBox {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.tourOverviewBox.delighter,
.tourOverviewBox.started,
.tourOverviewBox.ended {
  opacity: 1 !important;
}
@media screen and (max-width: 1200px) {
  .navigation.active {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
  .navigation.active .headerNav,
  .navigation.active .navLogo {
    visibility: visible !important;
    opacity: 1 !important;
  }
  body.navOpen {
    overflow: hidden;
  }
}
.op_accord .accordionList .accordionDetail {
  color: var(--color-gray-900);
}
.op_accord .accordionList .accordionDetail :is(.txt, li, dt, dd, a) {
  color: var(--color-gray-900);
}
body.headerFix .heroView .act3 {
  opacity: 1 !important;
  transition-delay: 0s;
}
body.headerFix .heroView .act4 {
  opacity: 0;
  transition-delay: 0s;
}
body.headerFix .heroView .kvBg,
body.headerFix .heroView .kvFilter {
  opacity: 0 !important;
}
.ticketBox .price,
.ticketBox .tit {
  white-space: nowrap;
}
.titBlock .up {
  margin: 25px 0px 0px;
  padding: 20px;
  border: 1px solid var(--color-white);
  background-color: var(--color-gray-alpha-20);
  font-weight: 600;
}
.scheduleBox .inBox .tourDateBox .tourDateList .scheduleInfo .scheduleInner .txt .phone a {
  text-decoration: underline;
  cursor: pointer;
}
.scheduleBox .inBox .tourDateBox .tourDateList .scheduleVenue .txt .soldout {
  display: inline-block;
  margin: 0 10px 2px;
  padding: 4px 8px 4px;
  border-radius: 5px;
  background: var(--color-accent-red-bright);
  color: var(--color-white);
  font-size: 90%;
  line-height: 1em;
  vertical-align: 1px;
}
@media screen and (max-width: 768px) {
  .c-heading__lv3 {
    margin-bottom: 32px;
    font-weight: 600;
    /* 768-300 */
    font-size: clamp(1.25rem, calc(1.029rem + 0.98vw), 1.5rem);
    line-height: 1.5;
  }
}
@media screen and (max-width: 768px) {
  .c-heading__lv3 {
    text-align: center;
  }
}
.c-wrapper--white {
  padding: 20px;
  border: 1px solid;
}
.faqBox {
  position: relative;
}
.faqItem {
  margin-bottom: 0.5em;
}
.link-arrow {
  display: inline-block;
  position: relative;
  padding-left: 1.2em;
  color: inherit;
  text-decoration: underline;
}
.link-arrow::before {
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  position: absolute;
  top: 0.7em;
  left: 0;
  transform: translateY(-50%);
  width: 0.55em;
  height: 0.55em;
  background-color: currentColor;
  content: "";
}
.txt .link-arrow {
  padding-left: 1.4em;
}
.txt .link-arrow::before {
  top: 50%;
  left: 0.2em;
  width: 0.75em;
  height: 0.75em;
}
.faqParagraph {
  margin: 0 0 1em;
  font-weight: 600;
  font-size: 140%;
  line-height: 1.5em;
}
@media screen and (max-width: 960px) {
  .faqParagraph {
    font-size: 100%;
  }
}
.u-mb-20 {
  margin-bottom: 20px;
}
.u-my-1em {
  margin-block: 1em;
}
.u-my-fs-quarter {
  margin-block: 0.25em;
}
.u-l-height-1 {
  line-height: 1;
}
.u-d-inline-block {
  display: inline-block;
}
.u-d-emphasize,
.scheduleBox .accordionList .accordionDetail .attentionList dd .txt.u-d-emphasize {
  color: var(--color-pure-red);
  font-weight: 600;
  font-size: 100%;
}

.u-fw-bold {
  font-weight: 700;
}

.u-text-nowrap {
  white-space: nowrap;
}

.u-note-text {
  margin-top: 0.5em;
  font-weight: 500;
}
