@charset "utf-8";
/* CSS Document */

:root {
	--color-black: #000;
	--color-white: #FFFFFF;
	--color-coolGray: #F4F3F2;
	--color-blue: #94B6D2;
	--color-lightBlue: #C0D3E6;
	--color-paleBlue: #E0EDFA;
	--color-gray: #444;
	--color-translucentWhite: rgb(255 255 255 / 50%);
	--color-alert: #D25454;
	--color-alertBlue: #3A678B;
	--color-black-50: rgba(0, 0, 0, 0.50);
	--color-official: #7697CC;
	
	--font-family-JP: "Noto Sans JP", sans-serif; /* Noto Sans JP */
	--font-family-EN: "arial-narrow", sans-serif; /* Arial Narrow */
}
html {
	overflow-x: hidden;
}
ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}
a {
	text-decoration: none;
}
.link {
	text-decoration: underline;
}
a,
button,
details,
.header__toggle {
	-webkit-tap-highlight-color: transparent;
}
em {
	font-style: normal;
}
.bold {
	 font-weight: 700;
}
.red {
	color: var(--color-alert);
}
.blue {
	color: var(--color-alertBlue);
}
.black {
	color: var(--color-black);
}
.gray {
	color: var(--color-gray);
}
#secNews:target,
#secSchedule:target,
#secTicket:target,
#secAttention:target,
#JPFC:target,
#JPMB:target,
#secTicketCaution:target,
#JPFC2nd:target,
#JPMB2nd:target,
#LWpre:target {
	scroll-margin-top: 64px;	
}
body {
	width: 100%;
	min-width: 320px;
	font-family: var(--font-family-JP);
	background: var(--color-coolGray);
}

/* =====================
header
======================== */
.header {
	background: var(--color-blue);
	color: var(--color-black);
	display: flex;
	padding: 0 20px;
    position: fixed;
    width: 100%;
	height: 64px;
	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__logo {
    z-index: 999;
    position: relative;
    height: 64px;
	padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header__logo img {
	width: 125.618px;
	height: 30px;
	flex-shrink: 0;
	aspect-ratio: 125.62/30.00;
}
.header__nav-list {
	color: var(--color-white);
	display: flex;
	margin: 0;
	z-index: 999;
	position: relative;
}
.header__nav-list li {
	width: 164px;
	padding: 0 4px;
}
.header__nav-list a {
	font-size: 24px;
	font-family: var(--font-family-EN);
	font-weight: 700;
	line-height: 162.5%;
	text-align: center;
	color: var(--color-black);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
	transition: all 0.1s ease-out;
}
.header__nav-list a:hover {
	color: var(--color-gray);
}
.drawer__nav {
    position: fixed;
    width: 100%;
	left: 0;
	top: 0;
}
#menu__inner {
    list-style:none;
    background: var(--color-lightBlue);
    margin: 0px;
    height: 100vh;
    padding: 144px 100px;
}
.link__membership:hover,
#header-menu a:hover {
	color: var(--color-gray);
}
.link__membership:hover .header-link-icon svg {
	color: var(--color-gray);
}
.menu__inner_logo {
	padding-bottom: 40px;
}
.logo__menu {
	display: block;
	margin: 0 auto;
	width: 500px;
    height: 167px;
}
#header-menu {
    margin: 0;
    padding: 40px 0;
    border-top: solid 1px var(--color-gray);
	border-bottom: solid 1px var(--color-gray);
}
#header-menu li {
	text-align: center;	
}
#header-menu li:not(:last-child) {
	margin-bottom: 24px;	
}
#header-menu li a {
	font-size: 30px;
	font-family: var(--font-family-EN);
	font-weight: 700;
	line-height: 137.5%; 
	text-decoration: none;
	color: var(--color-black);
    height: 33px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    margin: 0 auto;
	transition: all 0.1s ease-out;
}
.link__box {
	margin: 40px auto 0;
	display: grid;
	gap: 12px;
}
.link__membership {
    font-size: 30px;
    font-weight: 700;
	line-height: 137.5%;
    font-family: var(--font-family-EN);
    color: var(--color-black);
    display: flex;
    justify-content: center;
    gap: 16px;
    align-items: center;
    width: fit-content;
    margin: 0 auto;
	transition: all 0.1s ease-out;
}
.link__membership p {
	height: 41px;
}
.link__membership p span {
	display: inline-block;
}
.header-link-icon {
	width: 27px;
	height: 27px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
}
.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;
}

/* =====================
hero
======================== */
main {
	display: table;
	width: 100%;
	padding-top: 64px;
}
.left-side {
	width: 40%;
	display: table-cell;
	position: relative;
}
.hero {
	width: 40%;
	position: fixed;
	height: 100vh;
	overflow-y: auto;
	padding-bottom: 4rem;
	top: 64px;
	left: 0;
}
.hero::-webkit-scrollbar {
	display: none;
}
h1 {
	width: 100%;
	aspect-ratio: 1536 / 2172;
	background-image: url('../images/main_poster.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}
/* =====================
contents common
======================== */
.contents {
	width: 60%;
	display: table-cell;
	color: var(--color-black);
}
.contents a {
	color: var(--color-black);
}
section .inner {
    width: 100%;
    margin: 0 auto;
    display: block;
    padding: 80px 58px;
    max-width: 1152px;
}
.section-title {
    font-family: var(--font-family-EN);
    line-height: 137.5%;
    font-weight: 700;
    font-size: 60px;
	height: 83px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    margin: 0 auto 48px;
}
.button {
	font-size: 18px;
	color: var(--color-black);
	background: var(--color-blue);
	font-weight: 700;
	line-height: 137.5%;
	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;
}
.button:hover {
	background: linear-gradient(0deg, rgba(255, 255, 255, 0.30) 0%, rgba(255, 255, 255, 0.30) 100%), var(--color-blue);
	color: var(--color-gray);
}

/* =====================
news
======================== */
.news__only-pc {
	display: none;
}
.news__list-wrapper {
    width: 100%;
	padding: 20px 12px 20px 20px;
	border-radius: 8px;
}
.news__list {
	height: 384px;
    overflow: auto;
	padding: 0;
	margin: 0;
}
.news__list::-webkit-scrollbar {
 	width: 8px;
}
.news__list::-webkit-scrollbar-thumb {
	background-color: rgb(68 68 68 / 25%);
	border-radius: 8px;
	width: 8px;
}
.news__list li {
	border-bottom: 1px solid rgb(68 68 68 / 25%);
	margin-right: 12px;
}
.news__list a {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding: 24px 0;
}
.news__item-date {
	margin-bottom: 4px;
	font-size: 14px;
	font-weight: 700;
	font-style: normal;
	line-height: 162.5%;
	letter-spacing: 0.175px;
	display: flex;
    align-items: center;
}
.news__item-title {
	font-size: 16px;
	font-weight: 700;
	line-height: 162.5%;
	letter-spacing: 0.2px;
}
.new::after {
	content: "NEW";
    font-size: 14px;
    color: var(--color-alert);
    margin-left: 8px;
    font-family: var(--font-family-EN);
    font-style: normal;
    font-weight: 700;
    line-height: 162.5%;
	letter-spacing: 0.7px;
	padding: 0 4px;
    width: fit-content;
    height: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
	border-radius: 2px;
}
.news__item a:hover .news__item-title {
	text-decoration: underline;
}
.news-arrow {
	flex-shrink: 0;
}

/* =====================
schedule
======================== */
section.schedule {
	background: linear-gradient(0deg, rgba(255, 255, 255, 0.25) 21.15%, rgba(255, 255, 255, 0.50) 73.08%);
}
.schedule__list {
	padding: 0;
}
.schedule__item {
	display: flex;
	gap: 20px;
	padding: 32px 0;
	justify-content: space-between;
}
.schedule__item:first-child {
	padding: 0 0 32px;
}
.schedule__item:last-child {
	padding: 32px 0 0;
}
.schedule__item:not(:last-child) {
	border-bottom: 1px solid rgb(68 68 68 / 25%);
}
.schedule__item-location {
    font-family: var(--font-family-EN);
    font-weight: 700;
	font-size: 32px;
	line-height: 137.5%;
	width: 44%;
}
.schedule__item-location span {
	font-family: var(--font-family-JP);
	font-size: 16px;
	font-weight: 700;
	display: block;
	letter-spacing: 0.2px;
	line-height: 162.5%;
}
.schedule__item-date {
	width: calc(56% - 20px);
}
.schedule__date {
	display: grid;
	gap: 16px;
}
.schedule__item-date dl dt {
    font-size: 24px;
    font-family: var(--font-family-EN);
    font-weight: 700;
    line-height: 162.5%;
    align-items: center;
	flex-wrap: wrap;
    display: flex;
	column-gap: 12px;
}
.schedule__item-date dl dt span {
	font-size: 16px;
    background: var(--color-black);
	color: var(--color-white);
    font-weight: 700;
    padding: 0 8px;
    height: 22px;
    line-height: 162.5%;
    letter-spacing: 0.8px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.schedule__item-date dl dd {
	font-size: 20px;
    font-family: var(--font-family-EN);
	font-weight: 700;
	line-height: 162.5%;
	letter-spacing: 1px;
}
.schedule__item-date dl:last-child {
	margin-bottom: 20px;
}
.schedule__item-description {
    font-size: 14px;
    padding: 16px;
	border: solid 1px var(--color-gray);
	line-height: 162.5%;
	letter-spacing: 0.175px;
	font-weight: 400;
}
.schedule__inner a {
	word-break: break-all;
	display: inline-block;
}

/* =====================
ticket
======================== */
section.ticket {
	background: var(--color-blue);
}
.ticket__item {
	overflow: hidden;
}
.item__group:nth-child(2) {
	margin-bottom: 24px;
}
.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(90deg, var(--color-paleBlue) 25%, var(--color-white) 100%);
}
.arena-seat {
	background: var(--color-white);
}
.ticket__logo {
	width: 164px;
	height: 53px;
	padding: 0 2.815px 0.228px 2.815px;
	flex-shrink: 0;
	position: absolute;
	right: 16px;
	top: 16px;
}
.ticket__icon {
	letter-spacing: 0.6px;
    position: relative;
    width: fit-content;
	margin: 2.5px 0;
}
.ticket__icon p {
    font-family: var(--font-family-EN);
    color: var(--color-white);
    font-weight: 700;
    line-height: 137.5%;
    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: 700;
    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: 700;
	line-height: 162.5%;
	display: flex;
    align-items: center;
    gap: 6px;
	letter-spacing: 0.175px;
}
.ticket__seat-name span {
	background: var(--color-gray);
	color: var(--color-white);
    padding: 0 4px;
    height: 20px;
    font-size: 12px;
    line-height: 162.5%;
    letter-spacing: 0.15px;
    font-weight: 400;
    display: flex;
	width: fit-content;
}
.ticket__price {
	font-size: 32px;
	font-family: var(--font-family-EN);
	font-weight: 700;
	line-height: 137.5%;
}
.ticket__price span {
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	line-height: 162.5%;
	letter-spacing: 0.175px;
	margin-left: 4px;
	font-family: var(--font-family-JP);
}
.ticket__note {
	color: var(--color-white);
	text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 162.5%;
    letter-spacing: 0.175px;
	margin-bottom: 48px;
}
.ticket__description {
	margin: 48px auto;
	display: grid;
	gap: 20px;
}
.ticket__description_inner {
	border: 1px solid var(--color-black);
	padding: 24px;
    width: 100%;
}
.ticket__description_inner .box {
	display: grid;
	gap: 8px;
}
.ticket__desc_ttl {
    font-weight: 700;
	font-size: 14px;
	line-height: 162.5%;
	margin-bottom: 8px;
	letter-spacing: 0.175px;
}
.ticket__desc_list {
	font-size: 14px;
	font-weight: 400;
	line-height: 162.5%;
	letter-spacing: 0.175px;
}

/* list-style*/
ul.ticket__desc_list,
.attention__item_others,
.modal__list_text,
.accordion__list_text {
	padding-inline-start: 10px;
}
ul.ticket__desc_list li,
.attention__item_others li,
.modal__list_text li,
.accordion__list_text li {
	list-style-type: none;
	position: relative;
}
ul.ticket__desc_list li::before,
.attention__item_others li::before,
.modal__list_text li::before,
.accordion__list_text li::before {
	content: url(../images/heading-icon.svg);        
	position: absolute;
	left: -10px;
	top: -3px; 
}
.modal__list_text li.red::before,
.accordion__list_text li::before {
	content: url(../images/heading-icon-red.svg);        
}
.accordion__list_text li {
	margin-bottom: 0 !important;
	color: var(--color-alert);
}
.ticket__info {
	overflow: hidden;
}
.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;
}
.accordion:not(:last-child) {
	margin-bottom: 20px;
}
.accordion {
    max-width: 100%;
    background-color: var(--color-white);
}
.accordion__title {
	display: flex;
	justify-content: space-between;
	gap: 20px;
	align-items: center;
}
.accordion__title_text {
	font-size: 16px;
	font-weight: 700;
	line-height: 162.5%;
	color: var(--color-black);
	letter-spacing: 0.2px;
}
.accordion__attention .accordion__title_text {
	color: var(--color-white);
}
.accordion summary {
	position: relative;
	padding: 24px;
	cursor: pointer;
	list-style: none;
}
.accordion__ticket summary {
	background-color: var(--color-coolGray);
}
.accordion__attention summary {
    background-color: var(--color-alert);
}
.accordion__title p::before {
	display: none;
}
.accordion__ticket_open summary .accordion__title p::before,
.accordion__ticket_close summary .accordion__title p::before {
    margin-bottom: 6px;
    height: 19px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.accordion__ticket_open summary .accordion__title p::before {
    content: "OPEN";
    font-size: 12px;
    line-height: 137.5%;
    font-weight: 700;
    color: var(--color-white);
    background: var(--color-alert);
    padding: 1px 12px;
	width: 66px;
	font-family: var(--font-family-EN);
}
.accordion__ticket_close summary .accordion__title p::before {
	content: "受付終了";
    font-size: 10px;
	line-height: 162.5%;
    font-weight: 400;
	letter-spacing: 0.125px;
	color: var(--color-white);
	background: var(--color-blue);
	font-family: var(--font-family-JP);
	width: 65px;
}
details summary {
	list-style-type: none;
}
.accordion summary::-webkit-details-marker {
    display: none;
}
.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__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__list {
	width: 100%;
    padding: 24px 0;
	margin: 0;
}
.ticket__detail .accordion__list li:not(:last-child) {
	margin-bottom: 32px;
}
.detail__title {
    padding-bottom: 4px;
    width: 100%;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
	letter-spacing: 0.2px;
    line-height: 162.5%;
	border-bottom: 1px solid var(--color-blue);
	color: var(--color-black);
}

.detail__box {
	padding: 0 4px;
	display: grid;
	gap: 16px;
}
.detail__box .box {
	display: grid;
	gap: 8px;
}
.accordion_emphasis {
	font-size: 14px;
	font-weight: 700;
	line-height: 162.5%;
	letter-spacing: 0.175px;
	color: var(--color-black);
}
.normal {
	font-weight: 400;
}
.accordion_emphasis div:not(:last-child) {
	margin-bottom: 8px;
}
.accordion_emphasis a {
	display: block;
	width: fit-content;
}
.accordion__text,
.ticket__detail .add__text,
.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: 700;
}
.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-coolGray);
}
.ticket__button {
	font-size: 18px;
	font-family: var(--font-family-EN);
	background: var(--color-blue);
    font-weight: 700;
    width: 100%;
    line-height: 137.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__button:hover {
	background: linear-gradient(0deg, rgba(255, 255, 255, 0.30) 0%, rgba(255, 255, 255, 0.30) 100%), var(--color-blue);
	color: var(--color-gray);
}
.button__global {
	background: linear-gradient(91deg, #07D8E2 0%, #35E99D 100%);
	color: var(--color-white);
}
.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_note .link {
    color: var(--color-alert);
}
.ticket__list_box_faq .accordion_emphasis a {
	display: block;
	text-decoration: underline;
}

/* =====================
attention
======================== */
section.attention .section-title {
	margin-bottom: 12px;
}
.attention__note {
	display: block;
    margin: 0 auto 48px;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    line-height: 162.5%;
	letter-spacing: 0.25px;
}
.attention__item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 32px;
	align-self: stretch;
	width: 100%;
    padding: 28px 0;
	margin: 0;
}
.attention__item .accordion_emphasis {
	margin-bottom: 8px;
}
.attention__item .box {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;
	align-self: stretch;
}
.attention__item a {
	text-decoration: underline;
	color: var(--color-alertBlue);
}
.attention__item li p span {
	display: block;
	margin: 16px auto;
	padding: 8px;
	color: var(--color-alertBlue);
	border: 1px solid;
	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);
}
.attention__item_others li:not(:last-child) {
	margin-bottom: 2px;
}
.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
======================== */
footer {
	padding: 48px 0;
	text-align: center;
	background: var(--color-lightBlue);
}
.footer__inner {
	display: grid;
	gap:24px;
}
.button__up {
	display: block;
    margin: 0 auto;
    border-radius: 9999px;
    border: solid 1px var(--color-black);
    padding: 4px;
    width: 32px;
    height: 32px;
}
footer .button {
	display: flex;
	justify-content: center;
	gap: 8px;
	align-items: center;
	color: var(--color-white);
	background: var(--color-official);
	margin: 0 auto;
	letter-spacing: 0.8px;
	font-size: 16px;
	padding: 4px 16px;
	line-height: 162.5%;
}
footer .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-arrow svg {
	justify-content: center;
	display: flex;
}
footer .button:hover .footer-arrow svg {
	color: var(--color-white);
}
.copyright {
	color: var(--color-black);
	font-size: 12px;
	font-weight: 700;
	line-height: 137.5%; 
	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;
}
.action-link-button {
	display: flex;
	height: 64px;
	width: 358px;
	align-items: center;
	justify-content: center;
	color: var(--color-black);
	font-family: var(--font-family-EN);
	font-weight: 700;
	background: var(--color-blue);
	font-size: 18px;
	line-height: 137.5%;
}
.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);
	color: var(--color-gray);
}
.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(20 35 54 / 30%);
	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-black);
}
.modal__body_inner .modal__note {
	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__list_text li:not(:last-child) {
	margin-bottom: 4px;
}
.modal__body_inner .modal__text a {
	color: var(--color-alertBlue);
	text-decoration: underline;
}
.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: var(--color-paleBlue);
    color: var(--color-black);
    font-weight: 700;
    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;
}

/* =====================
mobile nav menu
======================== */
.nav__mobile {
	display: none;
	z-index: 20;
	position: fixed;
	bottom: 0;
	background: rgb(148 182 210 / 95%);
	width: 100%;
	height: 62px;
}
.nav__mobile a:active svg {
	color: var(--color-gray);
}
.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__logo {
		height: 48px;
		padding: 14px 8px;
		width: auto;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.header__logo img {
		width: 83.745px;
		height: 20px;
		aspect-ratio: 83.75/20.00;
	}
	.menu__icon,
	.menu__icon.active {
		width: 42px;
		height: 42px;
	}
	#header-menu {
		margin: 0;
		border-top: none;
		padding: 0 0 40px;
	}
	#menu__inner {
		padding: 128px 16px;
	}
	#header-menu li a {
		font-size: 28px;
		line-height: 137.5%;
        height: 41px;
        padding-bottom: 2px;
	}
	#header-menu li:not(:last-child) {
		margin-bottom: 16px;	
	}
	.link__box {
		margin: 40px auto 0;
	}
	.link__membership p {
		font-size: 24px;
		height: initial;
		display: block;
		text-align: center;
	}
	.header-link-icon svg {
		width: 100%;
		height: auto;
	}
	main {
		display: block;
		padding-top: 48px;
	}
	.left-side, .contents {
		display: block;
		width: 100%;
	}
	.hero {
        position: inherit;
        width: 100%;
        height: fit-content;
        padding-bottom: 0;
        top: auto;
        left: auto;
	}
	.menu__inner_logo {
		display: none;
	}
	.header__nav-list {
		display: none;
	}
	section {
		padding: 64px 16px;
		width: 100%;
	}
	section .inner {
		width: 100%;
		padding: 0;
	}
	.section-title {
		height: 48px;
		margin-bottom: 36px;
		font-size: 48px;
	}
	.news__list-wrapper {
		padding: 12px 8px 12px 12px;
	}
	.news__list-wrapper ul.news__list li img.news-arrow {
		display: none;
	}
	.news__inner .button {
		width: 208px;
		height: 44px;
		margin: 36px auto 0;
	}
	.schedule__item-location {
		width: 100%;
		margin-bottom: 8px;
		font-size: 30px;
		line-height: 137.5%;
	}
	.schedule__item-location span {
		font-size: 16px;
	}
	.schedule__item-date {
		width: 100%;
	}
	.schedule__item {
		padding: 32px 0;
		display: block;
	}
	.schedule__item-date dl dt 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__date {
    	gap: 12px;
	}
	.schedule__item-date dl:last-child {
		margin-bottom: 16px;
	}
	.ticket__price {
		font-size: 30px;
	}
	.ticket__description {
		margin: 36px 0;
	}
	.ticket__description .ticket__description_inner {
		padding: 12px;
	}
	.accordion summary {
		padding: 20px 12px;
	}
	.accordion__title {
		gap: 20px;
	}
	.accordion__title::after {
		width: 24px;
		height: 24px;
	}
	.accordion .accordion__box {
		padding: 0 12px 0;	
	}
	.accordion__list {
		padding: 20px 0;
	}
	.detail__title {
		width: 100%;
	}
	.ticket__button {
		font-size: 18px;
	}
	.attention__item {
		padding: 20px 0;
	}
	.attention__note {
		margin: 0 auto 36px;
	}
	.action-link-button {
		height: 64px;
		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 .button {
	    width: 100%;
		height: 44px;
	}
	.copyright {
		margin-top: 0;
	}
}

/* 431px以上　960px以下（Tablet） */
@media screen and (min-width:431px) and ( max-width:960px) {
	.header{
		padding: 0px 8px;
		height: 48px;
	}
	.header__logo {
		height: 48px;
		padding: 14px 8px;
		width: auto;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.header__logo img {
		width: 83.745px;
		height: 20px;
		aspect-ratio: 83.75/20.00;
	}
	.menu__icon,
	.menu__icon.active {
		width: 42px;
		height: 42px;
	}
	#header-menu {
		margin: 0;
		border-top: none;
		padding: 0 0 40px;
	}
	#menu__inner {
		padding: 128px 32px;
	}
	#header-menu li a {
		font-size: 28px;
		line-height: 137.5%;
        height: 41px;
        padding-bottom: 2px;
	}
	#header-menu li:not(:last-child) {
		margin-bottom: 16px;	
	}
	.link__box {
		margin: 40px auto 0;
	}
	.link__membership p {
		font-size: 24px;
		height: initial;
		display: block;
		text-align: center;
	}
	.header-link-icon svg {
		width: 100%;
		height: auto;
	}
	main {
		display: block;
		padding-top: 48px;
	}
	.left-side, .contents {
		display: block;
		width: 100%;
	}
	.hero {
		position: inherit;
		width: 100%;
		height: fit-content;
		padding-bottom: 0;
		top: auto;
    	left: auto;
	}
	.menu__inner_logo {
		display: none;
	}
	.header__nav-list {
		display: none;
	}
	section {
		padding: 64px 32px;
		width: 100%;
	}
	section .inner {
		width: 100%;
		padding: 0;
	}
	.section-title {
		height: 66px;
		margin-bottom: 36px;
		font-size: 48px;
	}
	.news__list-wrapper {
		padding: 12px 8px 12px 12px;
	}
	.news__list-wrapper ul.news__list li img.news-arrow {
		display: none;
	}
	.news__inner .button {
		margin: 36px auto 0;
	}
	.schedule__date {
    	gap: 12px;
	}
	.schedule__item-location {
		width: 320px;
		font-size: 30px;
		line-height: 137.5%;
	}
	.schedule__item {
		padding: 32px 0;
	}
	.schedule__item-date dl:last-child {
		margin-bottom: 16px;
	}
	.schedule__item-description {
		min-width: 160px;
		padding: 12px;
	}
	.ticket__price {
		font-size: 30px;
	}
	.ticket__description {
		margin: 36px 0;
	}
	.ticket__description .ticket__description_inner {
		padding: 12px;
	}
	.attention__item {
		padding: 20px 0;
	}
	.attention__note {
		margin: 0 auto 36px;
	}
	.accordion summary {
		padding: 20px 12px;
	}
	.accordion__title {
		gap: 20px;
	}
	.accordion__title::after {
		width: 24px;
		height: 24px;
	}
	.accordion .accordion__box {
		padding: 0 12px 0;	
	}
	.accordion__list {
		padding: 20px 0;
	}
	.detail__title {
		width: 100%;
	}
	.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;
	}
	.action-link-button {
		width: 100%;
		height: 64px;
	}
	.nav__mobile {
		display: block;
	}
	footer {
		padding: 36px 32px 111px;
	}
	footer .button {
		width: 358px;
		height: 52px;
	}
	.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;
	}
}
@media screen and (min-width:1439px) and ( max-width:1770px) {
	.ticket__seat-name{
		display: block;
	}		
}
/* 1440px以上（PC） */
@media screen and (min-width: 1440px) {
	.ticket__seat {
		width: 50%;
		margin: 0 auto;
		display: block;
	}
	.item__group {
		display: flex;
    	gap: 20px;
		margin-bottom: 20px;
	}
	.item__group:first-child .ticket__seat {
		width: calc(50% - 10px);
	}
}
@media screen and (max-width: 550px) {
	.ticket__seat-name{
		display: block;
	}	
}


/* 1201px以上（PC） */
@media screen and (min-width: 1201px) {
	.schedule__item-location {
		width: 320px;
	}
	.schedule__item-date {
		width: calc(100% - 340px);
	}	
}

/* 560px以上　660px以下（Tablet） */
@media screen and (min-width:560px) and ( max-width:660px) {
	.schedule__item-location {
		width: 44%;
	}
	.schedule__item-date {
		width: calc(56% - 20px);
	}
}

/* 559px以下 */
@media screen and (max-width: 559px) {
	.schedule__item-location {
		width: 100%;
		margin-bottom: 8px;
	}
	.schedule__item-date {
		width: 100%;
	}
	.schedule__item {
		display: block;
	}
}
