@charset "utf-8";
/* CSS Document */

:root {
	--color-black: #000;
	--color-gray: #2D2D37;
	--color-white: #FFFFFF;
	--color-blue: #0A00FF;
	--color-lightBlue: #697DFA;
	--color-paleGray: #E6EEF2;
	--color-lightGray: #A0A5AF;
	--color-alert: #E9221F;
	--color-official: #EB321A;
	--font-family-JP: "IBM Plex Sans JP", sans-serif; /* IBM Plex Sans JP */
	--font-family-EN: "Roboto Condensed", sans-serif; /* Roboto Condensed */
}
html {
	overflow-x: hidden;
}
ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}
a {
	text-decoration: none;
}
a.link {
	text-decoration: underline;
}
a, button, details, div.header__toggle {
	-webkit-tap-highlight-color: transparent;
}
em {
	font-style: normal;
}
.red {
	color: var(--color-alert);
}
.black {
	color: var(--color-black);
}
.gray {
	color: var(--color-gray);
}
#secNews:target, #secSchedule:target, #secTicket:target, #secAttention:target, #JP:target, #GL:target, #secTicketCaution:target {
	scroll-margin-top: 64px;	
}
body {
	width: 100%;
	min-width: 320px;
	font-family: var(--font-family-JP);
	background: #1F1F2B;
}
.header {
	background: var(--color-gray);
	color: var(--color-white);
	display: flex;
	padding: 0 20px;
    position: fixed;
    width: 100%;
	z-index: 999;
}
.header__nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}
.header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
    width: 100%;
}
.header__inner .header__logo {
    z-index: 999;
    position: relative;
    height: 64px;
    width: 108px;
	padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header__inner .header__logo img {
	height: 29px;
	width: 90px;
}
.header__nav .header__nav-list {
	color: var(--color-white);
	display: flex;
	margin: 0;
	z-index: 999;
	position: relative;
}
.header__nav .header__nav-list li {
	width: 166px;
	padding: 0 4px;
}
.header__nav .header__nav-list a {
	font-size: 24px;
	font-family: var(--font-family-EN);
	font-weight: 500;
	line-height: 137.5%;
	letter-spacing: 1.2px;
	text-align: center;
	color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
	transition: all 0.1s ease-out;
}
.header__nav .header__nav-list a:hover {
	color: var(--color-lightBlue);
}
.header__toggle nav {
    position: fixed;
    width: 100%;
	left: 0;
	top: 0;
}
.header__toggle nav #menu__inner {
    list-style:none;
    background: var(--color-gray);
    margin: 0px;
    height: 100vh;
    margin-top: 64px;
    padding: 80px 100px;
}
.header__toggle #menu__inner a.link__membership:hover,
.header__toggle #menu__inner #header-menu a:hover {
	color: var(--color-lightBlue);
}
.header__toggle #menu__inner a.link__membership:hover .header-link-icon svg {
	color: var(--color-lightBlue);
}
.header__toggle nav #menu__inner .menu__inner_logo {
	padding-bottom: 40px;
}
.header__toggle nav #menu__inner img.logo__menu {
	display: block;
	margin: 0 auto;
	width: 500px;
    height: 192px;
}
.header__toggle nav #menu__inner ul#header-menu {
    margin: 0;
    padding: 40px 0;
    border-top: solid 1px rgb(153 210 239 / 30%);
	border-bottom: solid 1px rgb(153 210 239 / 30%);
}
.header__toggle nav #menu__inner ul#header-menu li {
	text-align: center;	
}
.header__toggle nav #menu__inner ul#header-menu li:not(:last-child) {
	margin-bottom: 24px;	
}
.header__toggle nav #menu__inner ul#header-menu li a {
	font-size: 30px;
	font-family: var(--font-family-EN);
	font-weight: 700;
	letter-spacing: 1.5px;
	line-height: 137.5%; 
	text-decoration: none;
	color: var(--color-white);
    height: 33px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    margin: 0 auto;
	transition: all 0.1s ease-out;
}
.header__toggle nav #menu__inner .link__box {
	margin: 40px auto 0;
	display: grid;
	gap: 16px;
}
.header__toggle nav #menu__inner a.link__membership {
    font-size: 30px;
    font-weight: 700;
	line-height: 137.5%;
	letter-spacing: 1.5px;
    font-family: var(--font-family-EN);
    color: var(--color-white);
    display: flex;
    justify-content: center;
    gap: 16px;
    align-items: center;
    width: fit-content;
    margin: 0 auto;
	transition: all 0.1s ease-out;
}
.header__toggle nav #menu__inner a.link__membership p {
	height: 41px;
}
.header__toggle nav #menu__inner a.link__membership .header-link-icon {
	width: 28px;
	height: 28px;
	flex-shrink: 0;
}
.menu__icon .header__toggle-line {
	background-image: url("../images/menu-open.svg");
	background-repeat: no-repeat;
	background-size: 100%;
    cursor: pointer;
    width: 20px;
    height: 16px;
    z-index: 999;
    position: relative;
}
.header__nav-list.active {
	opacity: 0;
	pointer-events: none;
}
.header__nav-list {
	opacity: 1;
}
.drawer__nav.active {
	animation: slideinTop 0.3s;
}

@keyframes slideinTop {
  0% {
    transform: translateY(-50px);
  }
  100% {
    transform: translateY(0);
  }
}
.menu__icon, .menu__icon.active {
	width: 48px;
	height: 48px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}
.menu__icon.active .header__toggle-line {
	background-image: url("../images/menu-close.svg");
    width: 18px;
    height: 18px;
}
.menu__icon.active {
    cursor: pointer;
    z-index: 999;
    position: relative;
}
.drawer__nav {
	display: none;
}
.drawer__nav.active {
	display: block;
	visibility: visible;
}
main {
	display: table;
	width: 100%;
	padding-top: 64px;
}
h1.hero {
	width: 40%;
	display: table-cell;
	position: relative;
}
h1.hero .hero__inner {
	width: 40%;
	position: fixed;
	height: 100vh;
	overflow-y: auto;
	padding-bottom: 4rem;
	top: 64px;
	left: 0;
}
h1.hero .hero__inner::-webkit-scrollbar {
	display: none;
}
h1.hero img {
	width: 100%;
}
.contents {
	width: 60%;
	display: table-cell;
	color: var(--color-gray);
	background-image: url(../images/bg.jpg);
	background-repeat: repeat-y;
	background-size: 100%;
	background-color: rgb(31 31 43 / 60%);
	background-blend-mode: darken;
}
.contents a {
	color: var(--color-gray);
}
.contents section .inner {
    width: 100%;
    margin: 0 auto;
    display: block;
    padding: 80px 58px;
    max-width: 1152px;
}
section h2.section-title {
    color: var(--color-white);
    font-family: var(--font-family-EN);
	letter-spacing: 3px;
    line-height: 100%;
    font-size: 60px;
    text-align: center;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    width: fit-content;
    margin: 0 auto 48px;
}
.news__only-pc {
	display: none;
}
.news__wrap {
    width: 100%;
	padding: 20px 12px 20px 20px;
	background: var(--color-white);
}
.news__list {
	height: 384px;
    overflow: auto;
	padding: 0;
	margin: 0;
}
.news__list::-webkit-scrollbar {
 	width: 8px;
}
.news__list::-webkit-scrollbar-thumb {
	background-color: rgb(160 165 175 / 50%);
	border-radius: 8px;
	width: 8px;
}
.news__list li {
	border-bottom: 1px solid rgb(45 45 55 / 25%);
	margin-right: 12px;
}
.news__list a {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding: 24px 0;
}
.news__list span {
    display: block;
}
.news__item .news__item-date {
	margin-bottom: 4px;
	font-size: 14px;
	font-weight: 600;
	font-style: normal;
	line-height: 162.5%;
	display: flex;
    align-items: center;
}
.news__list .news__item-title {
	font-size: 16px;
	font-weight: 600;
	line-height: 162.5%;
	letter-spacing: 0.2px;
}
.new::after {
	content: "NEW";
    font-size: 12px;
    color: var(--color-blue);
    margin-left: 8px;
	padding-left: 8px;
    font-family: var(--font-family-EN);
    font-style: normal;
    font-weight: 500;
    line-height: 137.5%;
	letter-spacing: 0.6px;
	border-left: solid #1F1F2B 1px;
    width: fit-content;
    height: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.news__list .news__item a:hover .news__item-title {
	text-decoration: underline;
}
.news-arrow {
	flex-shrink: 0;
}
a.button {
	font-size: 18px;
	color: var(--color-white);
	background: var(--color-blue);
	font-weight: 700;
	line-height: 137.5%;
	letter-spacing: 0.9px;
	font-family: var(--font-family-EN);
	width: 358px;
	height: 52px;
    margin: 48px auto 0;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
}
a.button:hover {
	background: linear-gradient(0deg, rgba(255, 255, 255, 0.30) 0%, rgba(255, 255, 255, 0.30) 100%), var(--color-blue);
}
.schedule__list {
	padding: 0;
	color: var(--color-white);
}
.schedule__list .schedule__item {
	display: flex;
	gap: 20px;
	border-bottom: 1px solid var(--color-white);
	padding: 24px 0;
}
.schedule__list .schedule__item:first-child {
	border-top: 1px solid var(--color-white);
}
.schedule__item-location {
    font-family: var(--font-family-EN);
    font-weight: 700;
	font-size: 32px;
	line-height: 100%;
	letter-spacing: 1.6px;
	width: 200px;
}
.schedule__item-location span {
	font-family: var(--font-family-JP);
	font-size: 16px;
	font-weight: 600;
	display: block;
	letter-spacing: 0.2px;
	line-height: 162.5%;
}
.schedule__item-date {
	width: calc(100% - 220px);
}
.schedule__item-date div.schedule__date {
	display: grid;
	gap: 16px;
}
.schedule__item-date dl dd {
    font-size: 24px;
    font-family: var(--font-family-EN);
    font-weight: 700;
    line-height: 137.5%;
	letter-spacing: 1.2px;
    align-items: center;
	flex-wrap: wrap;
    display: flex;
	column-gap: 12px;
}
.schedule__item-date dl dd span {
	width: 1px;
	height: 20px;
	background: var(--color-white);
}
.schedule__item-date dl dd p {
    width: 42px;
    height: 33px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.schedule__item-date dl dt {
	font-size: 20px;
    font-family: var(--font-family-EN);
	color: var(--color-lightBlue);
	font-weight: 700;
	line-height: 137.5%;
	letter-spacing: 1px;
}
.schedule__item-date dl:last-child {
	margin-bottom: 20px;
}
.schedule__item-description {
    font-size: 14px;
    padding: 20px;
    background: rgba(105, 125, 250, 0.25);
	color: var(--color-white);
	line-height: 162.5%;
	letter-spacing: 0.175px;
	font-weight: 400;
}
.schedule__inner a {
	word-break: break-all;
	display: inline-block;
	color: var(--color-white);
}
.ticket__item ul {
	overflow: hidden;
}
.item__group .ticket__seat {
	padding: 16px 16px 24px;
	width: 100%;
	min-width: 300px;
    margin-bottom: 16px;
	letter-spacing: 0.60px;
	height: 164px;
	position: relative;
	background: linear-gradient(94deg, #FFF 0%, var(--color-lightGray) 101.13%);
}
.item__group {
    margin-bottom: 24px;
}
.ticket__item .premium-seat {
	background: linear-gradient(96deg, var(--color-white) -39.94%, var(--color-lightBlue) 100%);
}
.premium-seat .membership {
	color: var(--color-blue);
	font-size: 12px;
	font-weight: 600;
	line-height: 162.5%;
	letter-spacing: 0.15px;
	border: solid 1px;
	width: fit-content;
	padding: 0 4px;
	margin-bottom: 2px;
	height: 20px;
}
.ticket__seat .ticket__logo {
	width: 143.746px;
	height: 22.348px;
	flex-shrink: 0;
	aspect-ratio: 143.75/22.35;
	position: absolute;
	right: 16px;
	top: 16px;
	margin: 0px 10.118px 20.652px 10.136px;
}
.ticket__seat .ticket__icon {
	letter-spacing: 0.6px;
    position: relative;
    width: fit-content;
	overflow: hidden;
	margin-bottom: 16px;
}
.ticket__seat .ticket__icon img{
	margin: 2.5px 0;
}
.ticket__seat .ticket__icon p {
    font-family: var(--font-family-EN);
    color: var(--color-white);
    font-weight: 500;
    line-height: 137.5%;
	letter-spacing: 0.6px;
    font-size: 12px;
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 16px;
    margin: auto;
    height: 15px;
    width: 39px;
}
.ticket__seat small {
	font-size: 10px;
	font-weight: 400;
	line-height: 162.5%;
	letter-spacing: 0.125px;
	color: var(--color-blue);
}
.ticket_new::after {
	content: "NEW";
    font-size: 12px;
    color: var(--color-white);
    font-family: var(--font-family-EN);
    font-style: normal;
    font-weight: 600;
    line-height: 137.5%;
    text-align: center;
    background: var(--color-alert);
    width: 39px;
    height: 16px;
	padding: 0 6px;
    display: block;
}
.ticket__seat-name {
	margin-top: 16px;
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 162.5%;
	display: flex;
    align-items: center;
    gap: 6px;
	letter-spacing: initial;
}
.premium-seat .ticket__seat-name {
	margin-top: 0;
}
.ticket__price {
	font-size: 30px;
	font-family: var(--font-family-EN);
	font-weight: 700;
	line-height: 137.5%;
	letter-spacing: 1.5px;
}
.ticket__price span {
	font-size: 14px;
	font-style: normal;
	font-weight: 600;
	line-height: 162.5%;
	margin-left: 4px;
	font-family: var(--font-family-JP);
}
.ticket__note {
	text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 162.5%;
    letter-spacing: 0.175px;
	color: var(--color-white);
}
.ticket__description {
	margin: 48px auto;
	display: grid;
	gap: 20px;
	color: var(--color-white);
}
.ticket__description .ticket__description_inner {
	background: rgba(105, 125, 250, 0.25);
	padding: 28px 24px;
    width: 100%;
}
.ticket__description .ticket__description_inner .box {
	display: grid;
	gap: 16px;
}
.ticket__description  .ticket__desc_ttl {
    font-weight: 600;
	font-size: 14px;
	line-height: 162.5%;
	margin-bottom: 4px;
}
.ticket__description .ticket__desc_list {
	font-size: 14px;
	font-weight: 400;
	line-height: 162.5%;
	letter-spacing: 0.175px;
}
.ticket__description ul.ticket__desc_list li:not(:last-child) {
	margin-bottom: 2px;
}
/* list-style*/
.ticket__description ul.ticket__desc_list, .accordion__box ul.attention__item_others, .modal__body_inner ul.modal__list_text {
	padding-inline-start: 10px;
}
.ticket__description ul.ticket__desc_list li, .accordion__box ul.attention__item_others li, .modal__body_inner ul.modal__list_text li {
	list-style-type: none;
	position: relative;
}
.ticket__description ul.ticket__desc_list li::before {
	content: url(../images/heading-icon-white.svg);        
	position: absolute;
	left: -10px;
	top: -3px; 
}
.accordion__box ul.attention__item_others li::before, .modal__body_inner ul.modal__list_text li::before {
	content: url(../images/heading-icon-black.svg);        
	position: absolute;
	left: -10px;
	top: -3px; 
}
.ticket__info {
	overflow: hidden;
}
.ticket__info_box {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 20px;
	align-self: stretch;	
}
.ticket__info .ticket__info_title {
    margin: 48px auto 20px;
    font-size: 20px;
	font-weight: 700;
	line-height: 162.5%;
	letter-spacing: 0.25px;
    display: block;
	text-align: center;
	color: var(--color-white);
}
.accordion {
	width: 100%;
    background-color: var(--color-white);
}
.accordion__ticket summary{
	background: var(--color-white);
}
.accordion summary .accordion__title {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	align-items: center;
}
.accordion summary .accordion__title_text {
	font-size: 16px;
	font-weight: 600;
	line-height: 162.5%;
	color: var(--color-black);
	letter-spacing: 0.2px;
}
.accordion__attention summary .accordion__title_text {
	color: var(--color-white);
}
.accordion summary {
	background: var(--color-white);
	position: relative;
	padding: 24px;
	cursor: pointer;
	list-style: none;
}
.accordion__attention summary {
    background-color: var(--color-alert);
}
.accordion summary .accordion__title p::before {
	display: none;
}
.accordion__ticket_open summary .accordion__title p::before, .accordion__ticket_close summary .accordion__title p::before {
    line-height: 137.5%;
    margin-bottom: 6px;
    height: 19px;
    width: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.accordion__ticket_open summary .accordion__title p::before {
    content: "OPEN";
    font-size: 12px;
    font-weight: 500;
    color: var(--color-white);
    background: var(--color-blue);
    padding: 1px 12px;
	letter-spacing: 0.6px;
	font-family: var(--font-family-EN);
}
.accordion__ticket_close summary .accordion__title p::before {
	content: "受付終了";
    font-size: 9px;
    font-weight: 500;
	letter-spacing: 0.5px;
	color: var(--color-black);
	background: var(--color-lightGray);
	font-family: var(--font-family-JP);
}
details summary {
	list-style-type: none;
}
.accordion summary::-webkit-details-marker {
    display: none;
}
.accordion summary .accordion__title::after {
    display: inline-block;
    width: 32px;
    height: 32px;
	flex-shrink: 0;
}
.accordion__ticket summary .accordion__title::after {
    content: url(../images/arrow-forward-black.svg);
}
.accordion__attention summary .accordion__title::after {
    content: url(../images/arrow-forward-white.svg);
}
/* accordion 受付終了 */
.accordion__ticket_close .opacity-50{
	opacity: 0.5;
}
.accordion[open] summary .accordion__title::after {
    transform: rotate(180deg);
	transition: all .3s ease-in-out;
}
.accordion .accordion__contents {
    transition: transform .3s, opacity .2s;
}
.accordion .accordion__box {
	background: var(--color-white);
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: 0 24px 0;
}
.accordion[open] .accordion__box {
    transform: none;
    opacity: 1;
}
.accordion__box ul.accordion__list {
	width: 100%;
    padding: 28px 0;
	margin: 0;
}
.accordion__box ul.accordion__list {
    border-top: solid 1px var(--color-black);
	font-weight: 600;
	line-height: 162.5%;
	letter-spacing: 0.2px;
}
.ticket__detail ul.accordion__list li:not(:last-child) {
	margin-bottom: 32px;
}
.detail__title {
    padding: 4px 16px;
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
	letter-spacing: 0.2px;
    line-height: 162.5%;
    background: rgba(105, 125, 250, 0.25);
	color: var(--color-black);
}
.detail__box {
	padding: 0 4px;	
}
ul.accordion__list li .detail__box {
	display: grid;
	gap: 16px;
}
ul.accordion__list li .detail__box .box {
	display: grid;
	gap: 8px;
}
.accordion_emphasis {
	font-size: 14px;
	font-weight: 600;
	line-height: 162.5%;
	color: var(--color-black);
}
.accordion_emphasis div:not(:last-child) {
	margin-bottom: 8px;
}
.accordion_emphasis a {
	display: block;
	width: fit-content;
}
.accordion_emphasis p.contact__link a {
	display: inline;
	text-decoration: underline;
}
.accordion__text, .ticket__detail .add__text, .ticket__apply .ticket__apply_note {
	font-size: 14px;
	font-weight: 400;
	line-height: 162.5%;
	letter-spacing: 0.175px;
	color: var(--color-gray);
}
.ticket__apply_note {
	margin-top: 16px;
}
.accordion__text .bold, .modal__body_inner .modal__text .bold {
	font-weight: 600;
}
.detail__box .note {
	font-size: 14px;
	font-weight: 600;
	line-height: 162.5%;
	padding: 8px;
	border: solid 1px var(--color-lightBlue);
	color: var(--color-blue);
}
.accordion__text .line, .ticket__text .line, .accordion_emphasis .line, .modal__body_inner .modal__text .line, .attention__list .line {
	text-decoration: underline;
}
.ticket__apply {
	padding: 28px 24px;
	background: var(--color-paleGray);
}
.ticket__apply a.ticket__button {
	font-size: 18px;
    color: var(--color-white);
	background: var(--color-blue);
    font-weight: 600;
    width: 100%;
    line-height: 162.5%;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
	margin: 0 auto;
	letter-spacing: 0.225px;
	transition: all 0.2s ease-out;
}
.ticket__apply a.ticket__button:hover {
	background: linear-gradient(0deg, rgba(255, 255, 255, 0.30) 0%, rgba(255, 255, 255, 0.30) 100%), var(--color-blue);
}
.ticket__apply a.button__global {
	background: linear-gradient(91deg, #07D8E2 0%, #35E99D 100%);
	color: var(--color-white);
}
.ticket__apply a.button__global:hover {
	background: linear-gradient(0deg, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.35) 100%), linear-gradient(91deg, #07D8E2 0%, #35E99D 100%);
	color: var(--color-white);
}
.ticket__apply .ticket__apply_note a.link {
    color: var(--color-alert);
}
.ticket__list_box_faq .accordion_emphasis a {
	display: block;
	text-decoration: underline;
}

section.attention h2.section-title {
	margin-bottom: 12px;
}
.attention__note {
	display: block;
    margin: 0 auto 48px;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--color-white);
    line-height: 162.5%;
	letter-spacing: 0.25px;
}
.attention__list ul.attention__item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 32px;
	align-self: stretch;
	width: 100%;
    padding: 28px 0;
	margin: 0;
}
.attention__list ul.attention__item li p span {
	display: block;
	margin: 16px auto;
	padding: 10px;
	background: rgba(255, 255, 255, 0.10);
}
.attention__list p {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 162.5%;
	letter-spacing: 0.175px;
	color: var(--color-black);
}
.accordion__box ul.attention__item_others li:not(:last-child) {
	margin-bottom: 2px;
}
.accordion__box ul.attention__item_others {
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 162.5%;
	letter-spacing: 0.175px;
	color: var(--color-black);
}
footer {
	padding: 48px 0;
	text-align: center;
	background: var(--color-gray);
}
footer .footer__inner {
	display: grid;
	gap:24px;
}
footer a.button__up {
	display: block;
    margin: 0 auto;
    border-radius: 9999px;
    border: solid 1px var(--color-white);
    padding: 4px;
    width: 32px;
    height: 32px;
}
footer a.button {
	display: flex;
	justify-content: center;
	gap: 8px;
	align-items: center;
	color: var(--color-white);
	background: var(--color-official);
	margin: 0 auto;
	width: 393px;
	letter-spacing: 0.8px;
	font-size: 16px;
	padding: 4px 16px;
}
footer a.button:hover {
	background: linear-gradient(0deg, rgba(255, 255, 255, 0.30) 0%, rgba(255, 255, 255, 0.30) 100%), var(--color-official);
	border: none;
	color: var(--color-white);
}
footer a.button .footer-arrow svg {
	justify-content: center;
	display: flex;
}
footer a.button:hover .footer-arrow svg {
	color: var(--color-white);
}
footer .copyright {
	color: var(--color-white);
	font-size: 12px;
	font-weight: 500;
	line-height: 137.5%; 
	letter-spacing: 0.6px;
	font-family: var(--font-family-EN);
}

/*modal*/
.custom-modal {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 9999;
	height: 100%;
	width: 100%;
	background-color: rgb(25 25 25 / 80%);
	display: none;
}
.modal-outer-container {
	float: right;
	display: flex;
	height: 100%;
	width: 100%;
}
.modal-centering-container {
	margin: auto;
	display: flex;
	height: 90%;
	width: 90%;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.modal-content-wrapper {
	position: relative;
	display: flex;
	width: 100%;
	height: 100%;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.modal-desktop-close-area {
	position: relative;
	display: none;
	width: 100%;
}
.modal-close-button {
	width: fit-content;
	background: inherit;
	border: inherit;
}
.modal-close-button-desktop {
	position: absolute;
	right: -48px;
}
.modal-close-button-desktop, .modal-close-button-mobile {
	top: -48px;
	width: 48px;
	height: 48px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}
.modal-close-icon {
	height: 18px;
	width: 18px;
	cursor: pointer;
}
.modal-main-panel {
	display: flex;
	flex-direction: column;
	gap: 24px;
	overflow: hidden;
	background-color: var(--color-white);
	width: 100%;
	max-height: 100%;
	padding-bottom: 32px;
}
.modal-scrollable-area-wrapper {
	display: flex;
	height: 100%;
	width: 100%;
	overflow: hidden;
	padding-left: 16px;
	padding-right: 16px;
	padding-top: 16px;
}
.modal-action-area {
	display: flex;
	flex-shrink: 0;
	justify-content: center;
	padding: 0 16px 0;
}
a.action-link-button {
	display: flex;
	height: 64px;
	width: 358px;
	align-items: center;
	justify-content: center;
	color: var(--color-white);
	font-weight: 700;
	background: var(--color-blue);
	font-size: 18px;
	line-height: 162.5%;
}
a.action-link-button:hover {
	background: linear-gradient(0deg, rgba(255, 255, 255, 0.30) 0%, rgba(255, 255, 255, 0.30) 100%), var(--color-blue);
}
.modal-contents-inner {
	overflow: auto;
	flex-grow: 1;
	min-height: 0;
	overflow-y: scroll;
	padding: 20px;
}
.modal-contents-inner::-webkit-scrollbar {
	width: 8px;
}
.modal-contents-inner::-webkit-scrollbar-thumb {
	background-color: rgb(160 165 175 / 50%);
	border-radius: 8px;
	background-clip: padding-box;
}
.modal-action-area {
	display: flex;
	flex-shrink: 0;
	justify-content: center;
}
.modal__body_inner .modal__text {
	font-size: 14px;
	line-height: 162.5%;
	letter-spacing: 0.175px;
	font-weight: 400;
	color: var(--color-gray);
}
.modal__body_inner .modal__list_text {
	font-size: 14px;
	line-height: 162.5%;
	letter-spacing: 0.175px;
	font-weight: 400;
	color: var(--color-black);
}
.modal__body_inner ul.modal__list_text li:not(:last-child) {
	margin-bottom: 4px;
}
.modal__body_inner .bold {
	font-weight: 600;
}
.modal__body_inner .add__text {
	font-size: 14px;
	font-weight: 400;
	line-height: 162.5%;
	letter-spacing: 0.175px;
}
.modal__body_inner .modal__text a {
	color: var(--color-black);
}
.modal__emphasis {
	font-size: 14px;
	font-weight: 400;
	line-height: 162.5%;
}
.modal__body_inner .box {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	align-self: stretch;
	padding: 0 4px;
}
.modal__body_inner .box .text__box {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 4px;
	align-self: stretch;
}
.modal__body_inner .box:not(:last-child) {
	margin-bottom: 28px;
}
.modal__body_inner p span {
	display: block;
}
.modal__body_inner ul.modal__text li:not(:last-child) {
	margin-bottom: 4px;
}
.modal__body_inner p a {
	display: block;
	text-decoration: underline;
	width: fit-content;
}
.modal__title {
	padding: 8px 24px;
    width: 100%;
    background: rgba(105, 125, 250, 0.25);
    color: var(--color-black);
    font-weight: 600;
    line-height: 162.5%;
    text-align: center;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 42px;
	letter-spacing: 0.2px;
	margin-bottom: 16px;
}
/************************************************/

.nav__mobile {
	display: none;
	z-index: 20;
	position: fixed;
	bottom: 0;
	background: rgb(45 45 55 / 90%);
	width: 100%;
	height: 62px;
}
.nav__mobile a:active svg {
	color: var(--color-lightBlue);
}
.nav__mobile ul {
  display: flex;
  justify-content: space-between;
}
.mobile__nav-item {
	text-align: center;
	flex: 1;
}
.nav__mobile ul a {
	width: 100%;
	display: block;
	height: 54px;
	padding: 15px 0;
}

/* 319px以下（スマホ） */
@media screen and (max-width: 319px) {
	html{
		overflow-x: scroll;
	}
}
/* 430px以下（スマホ） */
@media screen and (max-width: 430px) {
	.header{
		padding: 0px 8px;
		height: 48px;
	}
	.header__inner .header__logo {
		height: 28px;
		margin-left: 0;
		padding: 0;
		width: auto;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.header__inner .header__logo img {
		width: 73px;
		height: 24px;
	}
	.menu__icon, .menu__icon.active {
		width: 42px;
		height: 42px;
	}
	.header__toggle nav #menu__inner ul#header-menu {
		margin: 0;
		padding: 0 0 32px;
		border-top: none;
		border-bottom: solid 1px rgb(255 255 255 / 30%);
	}
	.header__toggle nav #menu__inner {
		padding: 64px 16px;
		margin-top: 48px;
	}
	.header__toggle nav #menu__inner ul#header-menu li a {
		font-size: 24px;
		line-height: 137.5%;
		letter-spacing: 1.2px;
		height: 28px;
	}
	.header__toggle nav #menu__inner ul#header-menu li:not(:last-child) {
		margin-bottom: 16px;	
	}
	.header__toggle nav #menu__inner .link__box {
		margin: 32px auto 0;
	}
	.header__toggle nav #menu__inner a.link__membership {
		font-size: 16px;
		line-height: 162.5%;
		gap:8px;
	}
	.header__toggle nav #menu__inner a.link__membership p {
		font-size: 24px;
		height: 33px;
		display: flex;
		align-items: center;
	}
	.header__toggle nav #menu__inner a.link__membership .header-link-icon {
		width: 20px;
		height: 20px;
	}
	.header__toggle nav #menu__inner a.link__membership .header-link-icon svg {
		width: 100%;
		height: auto;
	}
	main {
		display: block;
		padding-top: 48px;
	}
	h1.hero, .contents {
		display: block;
		width: 100%;
	}
	h1.hero img {
		width: 100%;
	}
	h1.hero .hero__inner {
        position: inherit;
        width: 100%;
        height: fit-content;
        padding-bottom: 0;
        top: auto;
        left: auto;
	}
	.menu__inner_logo {
		display: none;
	}
	.header__nav .header__nav-list {
		display: none;
	}
	.contents section {
		padding: 64px 16px;
		width: 100%;
	}
	.contents section .inner {
		width: 100%;
		padding: 0;
	}
	section h2.section-title {
		height: 48px;
		margin-bottom: 36px;
		font-size: 48px;
		letter-spacing: 2.4px;
	}
	.news__wrap {
		padding: 12px 8px 12px 12px;
	}
	.news__wrap ul.news__list li img.news-arrow {
		display: none;
	}
	.news__inner a.button {
		width: 208px;
		height: 44px;
		margin: 36px auto 0;
	}
	.schedule__item-location {
		width: 100%;
		margin-bottom: 8px;
		font-size: 30px;
		line-height: 137.5%;
		letter-spacing: 1.5px;
	}
	.schedule__item-location span {
		font-size: 16px;
		font-weight: 600;
	}
	.schedule__item-date {
		width: 100%;
	}
	.schedule__list .schedule__item {
		padding: 20px 0;
		display: block;
	}
	.schedule__item-date dl dd p {
		width: 42px;
		height: 33px;
		display: flex;
		justify-content: center;
		align-items: center;
		flex-shrink: 0;
	}
	.schedule__item-description {
		padding: 12px;
		word-break: break-all;
	}
	.schedule__item-date div.schedule__date {
    	gap: 8px;
	}
	.schedule__item-description a {
		display: block;
	}
	.schedule__item-date dl:last-child {
		margin-bottom: 16px;
	}
	.schedule__inner .schedule__note {
		margin-top: 20px;
	}
	.ticket__description {
		margin: 36px 0;
	}
	.ticket__description .ticket__description_inner{
		padding: 20px 12px;
	}
	.ticket__description .ticket__description_inner .box{
		gap: 12px;
	}
	.ticket__info .ticket__info_title {
		margin: 36px auto 16px;
		font-size: 18px;
		letter-spacing: 0.225px;
	}
	.accordion summary {
		padding: 20px 12px;
	}
	.accordion summary .accordion__title {
		gap: 20px;
	}
	.accordion summary .accordion__title::after {
		width: 24px;
		height: 24px;
	}
	.accordion .accordion__box {
		padding: 0 12px 0;	
	}
	.accordion__box ul.accordion__list {
		padding: 20px 0;
	}
	.detail__title {
		width: 100%;
	}
	.ticket__apply {
		padding: 20px 12px 24px;
	}
	.ticket__apply a.ticket__button {
		font-size: 18px;
	}
	.ticket__apply_note {
		margin-top: 20px;
	}
	.attention__note {
		margin: 0 auto 36px;
		font-size: 18px;
		font-weight: var(--font-weight-font-semibold, 600);
	}
	a.action-link-button {
		height: 56px;
		width: 100%;
	}
	.modal-content-wrapper {
		gap: 0.75rem;
		min-width: 200px;
		overflow: hidden;
	}
	.modal-scrollable-area-wrapper {
		padding: 8px 8px 0;
	}
	.modal-contents-inner{
		padding: 8px 8px 0;
	}
	.modal-action-area {
		padding: 0;
	}
	.modal-main-panel {
		padding-bottom: 0;
		gap: 12px;
	}
	.modal__title {
		height: unset;
	}
	.modal-close-icon {
		margin: 7px;
	}
	.modal-close-button-mobile {
		width: 32px;
		height: 32px;
	}
	.nav__mobile {
        display: block;
	}
	footer {
		padding: 36px 16px 111px;
	}
	footer a.button {
	    width: 100%;
		height: 44px;
		letter-spacing: initial;
	}
	footer .copyright {
		margin-top: 0;
	}
}

/* 431px以上　960px以下（Tablet） */
@media screen and (min-width:431px) and ( max-width:960px) {
	.header{
		padding: 0px 8px;
		height: 48px;
	}
	.header__inner .header__logo {
		height: 48px;
		width: auto;
		padding: 0;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.header__inner .header__logo img {
		width: 73px;
		height: 24px;
	}
	.menu__icon, .menu__icon.active {
		width: 42px;
		height: 42px;
	}
	.header__toggle nav #menu__inner ul#header-menu {
		margin: 0;
		padding: 0 0 32px;
		border-top: none;
		border-bottom: solid 1px rgb(255 255 255 / 30%);
	}
	.header__toggle nav #menu__inner {
		padding: 64px 16px;
		margin-top: 48px;
	}
	.header__toggle nav #menu__inner ul#header-menu li a {
		font-size: 24px;
		line-height: 137.5%;
		letter-spacing: 1.2px;
		height: 28px;
	}
	.header__toggle nav #menu__inner ul#header-menu li:not(:last-child) {
		margin-bottom: 16px;	
	}
	.header__toggle nav #menu__inner .link__box {
		margin: 32px auto 0;
	}
	.header__toggle nav #menu__inner a.link__membership {
		font-size: 16px;
		line-height: 162.5%;
		gap:8px;
	}
	.header__toggle nav #menu__inner a.link__membership p {
		font-size: 24px;
		height: 33px;
		display: flex;
		align-items: center;
	}
	.header__toggle nav #menu__inner a.link__membership .header-link-icon {
		width: 20px;
		height: 20px;
	}
	.header__toggle nav #menu__inner a.link__membership .header-link-icon svg {
		width: 100%;
		height: auto;
	}
	main {
		display: block;
		padding-top: 48px;
	}
	h1.hero, .contents {
		display: block;
		width: 100%;
	}
	h1.hero img {
		width: 100%;
	}
	h1.hero .hero__inner {
		position: inherit;
		width: 100%;
		height: fit-content;
		padding-bottom: 0;
		top: auto;
    	left: auto;
	}
	.menu__inner_logo {
		display: none;
	}
	.header__nav .header__nav-list {
		display: none;
	}
	.contents section {
		padding: 64px 32px;
		width: 100%;
	}
	.contents section .inner {
		width: 100%;
		padding: 0;
	}
	section h2.section-title {
		height: 48px;
		margin-bottom: 36px;
		font-size: 48px;
		letter-spacing: 2.4px;
	}
	.news__wrap {
		padding: 12px 8px 12px 12px;
	}
	.news__wrap ul.news__list li img.news-arrow {
		display: none;
	}
	.news__inner a.button {
		margin: 36px auto 0;
		height: 44px;
	}
	.schedule__item-location {
		width: 320px;
		font-size: 30px;
		line-height: 137.5%;
		letter-spacing: 1.5px;
	}
	.schedule__list .schedule__item {
		gap: 16px;
		padding: 20px 0;
	}
	.schedule__item-date {
		width: calc(100% - 336px);
	}
	.schedule__item-date dl:last-child {
		margin-bottom: 16px;
	}
	.schedule__item-description {
		padding: 12px;
		min-width: 160px;
	}
	.schedule__item-date div.schedule__date {
    	gap: 12px;
	}
	.schedule__item-description a {
		display: block;
	}
	.ticket__description {
		margin: 36px 0;
	}
	.ticket__description .ticket__description_inner{
		padding: 20px 12px;
	}
	.ticket__description .ticket__description_inner .box{
		gap: 12px;
	}
	.ticket__info .ticket__info_title {
		margin: 36px auto 20px;
		font-size: 18px;
		letter-spacing: 0.225px;
	}
	.attention__note {
		margin: 0 auto 36px;
		font-size: 18px;
		font-weight: 600;
	}
	.accordion summary {
		padding: 20px 12px;
	}
	.accordion summary .accordion__title {
		gap: 20px;
	}
	.accordion summary .accordion__title::after {
		width: 24px;
		height: 24px;
	}
	.accordion .accordion__box {
		padding: 0 12px 0;	
	}
	.accordion__box ul.accordion__list {
		padding: 20px 0;
	}
	.detail__title {
		width: 100%;
	}
	.ticket__apply {
		padding: 20px 12px 24px;
	}
	.ticket__apply_note {
		margin-top: 20px;
	}
	.modal-content-wrapper {
		gap: 0.75rem;
	}
	.modal-contents-inner {
		padding: 12px;
	}
	.modal-close-icon {
		margin: 14px;
	}
	.modal-main-panel {
		padding-bottom: 0;
	}
	.modal-action-area {
		padding: 0;
	}
	a.action-link-button {
		height: 56px;
		width: 100%;
	}
	.nav__mobile {
		display: block;
	}
	footer {
		padding: 36px 32px 111px;
	}
	footer a.button {
		width: 358px;
		height: 52px;
		letter-spacing: 0.7px;
		font-size: 14px;
	}
	footer .copyright {
		margin-top: 0;
	}
}
/* 961px以上（PC） */
@media screen and (min-width: 961px) {
	.news__only-mb {
		display: none;
	}
	.news__only-pc {
		display: block;
	}
	.sp__only {
		display: none;
	}
	.modal-outer-container {
	  width: 60%;
	}
	.modal-centering-container {
	  height: 80%;
	  width: 80%;
	}
	.modal-desktop-close-area {
	  display: flex;
	}
	.modal-scrollable-area-wrapper {
	  padding-top: 1rem;
	}
	.modal-close-button-mobile {
	  display: none;
	}
}
/* 1440px以上（PC） */
@media screen and (min-width: 1440px) {
	.item__group .ticket__seat {
		width: 50%;
		margin: 0 auto;
		display: block;
	}
	.item__group {
		display: flex;
    	gap: 20px;
		margin-bottom: 24px;
	}
}
@media screen and (min-width: 1110px) {
	.schedule__item-location {
		width: 320px;
	}
	.schedule__item-date {
		width: calc(100% - 340px);
	}	
}