@charset "utf-8";
/* CSS Document */

:root {
	--color-black: #000;
	--color-white: #FFFFFF;
	--color-red: #C80019;
	--color-light-gray: rgba(245, 245, 245, 0.70);
	--color-gray: #606060;
	--color-blue: #4689E8;
	--font-family-JP: "hiragino-kaku-gothic-pron", sans-serif; /* Hiragino Kaku Gothic ProN */
	--font-family-EN: "Neue Haas Grotesk Display Pro", sans-serif; /* Neue Haas Grotesk Display Pro */
}
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-red);
}
.blue{
	color: var(--color-blue);
}
.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;
	color: var(--color-white);
	font-family: var(--font-family-JP);
	background: var(--color-black);
}
.header {
	background: var(--color-black);
	color: var(--color-white);
	display: flex;
	padding: 2px 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: 60px;
    width: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header__inner .header__logo img{
	height: 36px;
}
.header__nav .header__nav-list {
	color: var(--color-white);
	display: flex;
	margin: 0;
	z-index: 999;
	position: relative;
}
.header__nav .header__nav-list li {
	font-size: 20px;
	font-family: var(--font-family-EN);
	font-weight: 700;
	line-height: 27.50px;
	word-wrap: break-word;
	text-align: center;
	width: 198px;
	padding: 0 8px;
}
.header__nav .header__nav-list a {
	color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
}
.header__nav .header__nav-list a:hover{
	color: var(--color-red);
}
.header__toggle nav {
    position: fixed;
    width: 100%;
	left: 0;
	top: 0;
}
.header__toggle nav #menu__inner {
    list-style:none;
    background: var(--color-black);
    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-red);
}
.header__toggle #menu__inner a.link__membership:hover .header-link-icon svg{
	color: var(--color-red);
}

.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: 240.076px;
	height: 144px;
	padding: 21.153px 0px 20.964px 0px;
}
.header__toggle nav #menu__inner ul#header-menu {
    margin: 0;
    padding: 40px 0;
    border-top: solid 1px rgb(255 255 255 / 30%);
	border-bottom: solid 1px rgb(255 255 255 / 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: 16px;	
}
.header__toggle nav #menu__inner ul#header-menu li a {
	font-size: 24px;
	font-family: var(--font-family-EN);
	font-weight: 700;
	font-style: normal;
	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;
}
.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: 20px;
    font-weight: 700;
	font-style: normal;
	line-height: 137.5%;
    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;
}
.header__toggle nav #menu__inner a.link__membership p{
	height: 28px;
}
.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: 24px;
    height: 18px;
    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.1s ;
}

@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: 19.799px;
	height: 19.799px;
}
.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-white);
}
.contents a {
	color: var(--color-white);
}
.contents section .inner{
    width: 100%;
    margin: 0 auto;
    display: block;
    padding: 80px 58px;
    max-width: 1152px;
}
section h2.section-title {
	color: var(--color-red);
	font-family: var(--font-family-EN);
	font-style: normal;
	line-height: 100%; 
	font-size: 48px;
	text-align: center;
	margin-bottom: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
	font-weight: 700;
}
.live-viewing, .live-streaming {
	overflow: hidden;
}
.live-viewing a img{
	background: linear-gradient(139deg, #0F2834 -15.31%, #000 81%, rgba(200, 0, 25, 0.6) 117.43%117.43%);
}
.live-streaming a img{

}
.live-viewing a.pc__only, .live-streaming a.pc__only {
	display: none;
	max-width: 508px;
	margin: 0 auto;
}
.live-viewing a.pc__only {
	margin: 0 auto 32px;
}
.live-viewing a.pc__only img, .live-streaming a.pc__only img {
	width: 100%;
}
.live-viewing a.mb__only, .live-streaming a.mb__only {
	width: 100%;
	display: block;
	margin: 0 auto;
}
.live-viewing a.mb__only {
	margin: 0 auto 32px;	
}
.live-viewing a.mb__only img, .live-streaming a.mb__only img {
	width: 100%;
}
section h2.news__title {
	margin-top: 48px;
}
section.news{
	background: linear-gradient(180deg, #032838 0%, #000 100%);
}
.news__only-pc{
	display: none;
}
.news__wrap {
    width: 100%;
	padding: 0;
}
.news__list {
	height: 384px;
    overflow: auto;
	padding: 0;
	margin: 0;
}
.news__list::-webkit-scrollbar {
 	width: 12px;
}
.news__list::-webkit-scrollbar-thumb {
	background-color: rgba(245, 245, 245, 0.21);
	border-radius: 8px;
	width: 8px;
}
.news__list li {
	border-bottom: solid 1px rgba(103, 145, 165, 0.40);
	margin-right: 12px;
}
.news__list a{
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding: 16px 4px;
}
.news__list span {
    display: block;
}
.news__item .news__item-date{
	margin-bottom: 8px;
	font-size: 14px;
	font-weight: 600;
	font-style: normal;
	line-height: 162.5%;
	letter-spacing: 0.7px;
	color: var(--color-light-gray);
	display: flex;
    align-items: center;
}
.news__list .news__item-title {
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 162.5%;
}
.new::after {
	content: "NEW";
    font-size: 12px;
    color: var(--color-white);
    margin-left: 8px;
    font-family: var(--font-family-EN);
    font-style: normal;
    font-weight: 600;
    line-height: 137.5%;
    text-align: center;
    background: var(--color-red);
    width: 45px;
    height: 17px;
    display: block;
}
.news__list .news__item a:hover .news__item-title{
	text-decoration: underline;
}
.news-arrow {
	flex-shrink: 0;
}
a.button {
	color: var(--color-red);
	font-style: normal;
	font-weight: 700;
	line-height: 137.5%;
	font-family: var(--font-family-EN);
	max-width: 358px;
	height: 52px;
    margin: 48px auto 0;
    padding: 15px 0;
	border: 1px solid var(--color-red);
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
}
a.button:hover {
	color: var(--color-black);
	background: var(--color-red);
}
.schedule__list {
	padding: 0;
}
.schedule__list .schedule__item {
	display: flex;
	gap: 20px;
}
.schedule__list .schedule__item:first-child {
    padding-top: 0;
}
.schedule__item-location {
    font-family: var(--font-family-EN);
    font-weight: 700;
	font-size: 30px;
	font-style: normal;
	line-height: 137.5%;
	letter-spacing: 0.3px;
}
.schedule__item-location span {
	font-size: 18px;
	font-style: normal;
	font-weight: 700;
	line-height: 162.5%;
	display: block;
	font-family: var(--font-family-JP);
}
.schedule__item-location span em{
	display: inline-block;
}
.schedule__item-location a.map__button{
    width: fit-content;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 137.5%;
    padding: 4px 12px 4px 20px;
    margin-top: 20px;
    background: var(--color-red);
    color: var(--color-black);
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}
.schedule__item-date div.schedule__date{
	display: grid;
	gap: 12px;
}
.schedule__item-date dl dd {
    font-size: 30px;
    font-family: var(--font-family-EN);
    font-weight: 700;
    line-height: 137.5%;
    align-items: center;
	flex-wrap: wrap;
    display: flex;
	letter-spacing: 0.3px;
	column-gap: 12px;
}
.schedule__item-date dl dd span {
	font-size: 16px;
    font-weight: 700;
    line-height: 162.5%;
    border: solid 1px;
    width: 64px;
    height: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.schedule__item-date dl dt {
	font-size: 24px;
    font-family: var(--font-family-EN);
	font-weight: 600;
	margin-top: 2px;
	font-style: normal;
	line-height: 137.5%;
}
.schedule__item-date dl:last-child {
	margin-bottom: 24px;
}
.schedule__item-description {
    font-size: 14px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.15);
	line-height: 162.5%;
    letter-spacing: 0.7px;
}
.schedule__inner a{
	word-break: break-all;
	display: inline-block;
}
.ticket__item ul{
	overflow: hidden;
}
.ticket__item .ticket__seat {
    padding: 20px 16px;
	width: 100%;
	min-width: 300px;
    margin-bottom: 16px;
	letter-spacing: 0.60px;
	height: 160px;
	position: relative;
}
.ticket__item .arena-seat {
	background: linear-gradient(95deg, #E80029 -15.3%, #7A000F 100%);
}
.ticket__item .stand-seat, .ticket__item .annotated-seat{
	background: linear-gradient(95deg, #436B7E -15.3%, #142934 100%);
}
.ticket__item .annotated-seat{
	margin-bottom: 28px;
}
.ticket__seat .ticket__logo {
	height: 20px;
	position: absolute;
	right: 16px;
	top: 20px;
}
.ticket__seat .ticket__icon {
	letter-spacing: 0.6px;
    position: relative;
    width: fit-content;
	margin: 2.5px 6px 2.5px 0;
}
.ticket__seat .ticket__icon p {
	font-family: var(--font-family-EN);
    font-weight: 700;
	line-height: 137.5%;
	font-size: 12px;
    position: absolute;
    top: 6px;
    right: 16px;
    bottom: 4px;
    left: 18px;
    margin: auto;
    font-style: normal;
    height: 17px;
    width: 42px;
	letter-spacing: initial;
}
.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-red);
    width: 39px;
    height: 16px;
	padding: 0 6px;
    display: block;
}
.arena-seat .ticket__icon{
	color: var(--color-red);
}
.stand-seat .ticket__icon, .annotated-seat .ticket__icon{
	color: #6791A5;
}
.ticket__seat-name {
	margin-top: 16px;
	font-size: 16px;
	font-style: normal;
	font-weight: 600;
	line-height: 162.5%;
	display: flex;
    align-items: center;
    gap: 6px;
	letter-spacing: initial;
}
.ticket__seat-name span{
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
    line-height: 137.5%;
    border: solid 1px;
    padding: 2px 4px;
    height: 21px;
    font-family: var(--font-family-EN);
    display: flex;
    justify-content: center;
    align-items: center;
	flex-shrink: 0;
	letter-spacing: initial;
}
.ticket__price {
	font-size: 30px;
	font-family: var(--font-family-EN);
	font-weight: 700;
	line-height: 137.5%;
	letter-spacing: 0.3px;
}
.ticket__price span {
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 162.5%;
	margin-left: 2px;
}
.ticket__note {
	text-align: center;
    color: var(--color-light-gray);
    font-size: 14px;
    font-weight: 400;
    line-height: 162.5%;
    letter-spacing: 0.7px;
}
.ticket__description {
	border-top: dashed 1px rgba(103, 145, 165, 0.40);
	border-bottom: dashed 1px rgba(103, 145, 165, 0.40);
	margin: 48px auto;
}
.ticket__description .ticket__description_inner{
	padding: 16px 0;
	display: flex;
	gap: 20px;
    width: 100%;
}
.ticket__description .ticket__description_inner:last-child {
	border-top: dashed 1px rgba(103, 145, 165, 0.40);	
}
.ticket__description .ticket__guide_left{
	width: 280px;
}
.ticket__description .ticket__guide_right{
	width: calc(100% - 300px);
	display: grid;
	gap:16px;
}
.ticket__description .ticket__guide_left .ticket__desc_ttl {
    font-weight: 600;
	font-size: 16px;
	line-height: 162.5%;
}
.ticket__description .ticket__guide_left .ticket__desc_ttl span{
	display: inline-block;
}
.ticket__description .ticket__desc_list{
	font-size: 14px;
	font-weight: 400;
	line-height: 162.5%;
	letter-spacing: 0.7px;
}
.ticket__description ul.ticket__desc_list li:not(:last-child){
	margin-bottom: 1px;
}
/* list-style*/
.ticket__description ul.ticket__desc_list, .accordion__box ul.attention__item_others{
	padding-inline-start: 9px;
}
.ticket__description ul.ticket__desc_list li, .accordion__box ul.attention__item_others 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: -8px;
  top: -3px; 
}
.accordion__box ul.attention__item_others li::before{
  content: url(../images/heading-icon-gray.svg);        
  position: absolute;
  left: -8px;
  top: -3px; 
}
.ticket__description .ticket__desc_note{
	color: var(--color-light-gray);
	font-size: 14px;
	font-weight: 400;
	line-height: 162.5%;
	letter-spacing: 0.7px;
}
.ticket__info {
	overflow: hidden;
}
.ticket__info .ticket__info_title{
    margin: 48px auto 24px;
    font-size: 20px;
	font-weight: 700;
	line-height: 162.5%;
    display: block;
	text-align: center;
	color: var(--color-red);
}
.ticket__info .accordion:not(:last-child) {
	margin-bottom: 24px;
}
.accordion {
    max-width: 100%;
}
 .accordion__ticket{
	border: solid 1px 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-style: normal;
	font-weight: 600;
	line-height: 162.5%;
	color: var(--color-white);
}
.accordion summary {
	position: relative;
	padding: 24px 20px;
	cursor: pointer;
	list-style: none;
}
.accordion__attention summary {
    background-color: var(--color-red);
}
.accordion summary .accordion__title p::before{
	display: none;
}
.accordion__ticket_open summary .accordion__title p::before, .accordion__ticket_close summary .accordion__title p::before{
	font-family: var(--font-family-EN);
    font-style: normal;
    line-height: 137.5%;
    color: var(--color-white);
    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;
    font-weight: 600;
    background: var(--color-red);
    width: 57px;
    padding: 1px 12px;
}
.accordion__ticket_close summary .accordion__title p::before{
	content: "受付終了";
    font-size: 9px;
    font-weight: 700;
    background: var(--color-gray);
	width: 58px;
    padding: 1px 10px;
}
details summary {
	list-style-type: none;
}
.accordion summary::-webkit-details-marker {
    display: none;
}
.accordion summary .accordion__title::after {
    content: url(../images/arrow-forward-white.svg);
    display: inline-block;
    width: 32px;
    height: 32px;
	flex-shrink: 0;
}

/* accordion 受付終了 */
.accordion__ticket_close .opacity-50{
	opacity: 0.5;
}

.accordion[open] summary .accordion__title::after {
    transform: rotate(180deg);
}
.accordion .accordion__box {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: 0 20px 0;
    transition: transform .3s, opacity .3s;
}
.accordion .attention__list {
    padding: 0 20px 0;
}
.accordion[open] .accordion__box {
    transform: none;
    opacity: 1;
}
.accordion__box ul.accordion__list {
	width: 100%;
    padding: 28px 0;
	margin: 0;
}
.accordion__box ul.ticket__detail_list {
    border-top: solid 1px var(--color-light-gray);
	border-bottom: dashed 1px rgba(103, 145, 165, 0.40);
	font-weight: 600;
	line-height: 162.5%;
	letter-spacing: 0.2px;
}
.ticket__detail ul.accordion__list li:not(:last-child) {
	margin-bottom: 40px;
}
.ticket__detail_ttl {
    padding: 8px 16px;
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    font-style: normal;
    line-height: 162.5%;
    background: rgba(255, 255, 255, 0.15);
}
.ticket__list_box {
	padding: 0 4px;	
}
ul.ticket__detail_list li .box{
	display: grid;
	gap: 16px;
}
.accordion_emphasis {
	font-weight: 600;
	font-size: 14px;
	font-style: normal;
	line-height: 162.5%;
	letter-spacing: 0.7px;
}
.accordion_emphasis:nth-of-type(2) {
	margin-top: 8px;
}
.ticket__detail_text, .ticket__text, .ticket__apply .ticket__apply_note {
	font-size: 14px;
	font-style: normal;
	font-weight: 300;
	line-height: 162.5%;
	letter-spacing: 0.7px;
	color: var(--color-light-gray);
}
.ticket__detail_text{
	margin-top: 8px;
}

.ticket__detail_text .bold, .ticket__text .bold, .modal__body_inner .modal__text .bold{
	font-weight: 600;
}
.ticket__detail_text .line, .ticket__text .line, .accordion_emphasis .line, .modal__body_inner .modal__text .line{
	text-decoration: underline;
}
.ticket__apply{
	padding: 28px 24px;
	background: rgba(45, 58, 65, 0.40);
}
.ticket__apply a.ticket__button {
	font-size: 18px;
    color: var(--color-red);
    font-weight: 600;
    width: 100%;
    line-height: 162.5%;
    border: solid 2px var(--color-red);
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
	margin: 0 auto 16px;
}
.ticket__apply a.ticket__button:hover {
	color: var(--color-black);
	background: var(--color-red);
	border: solid 2px var(--color-red);
}
.ticket__apply a.button__global {
    background-image: linear-gradient(91deg, #07d8e2, #35e99d);
}
.ticket__apply .ticket__apply_note a.link {
    color: var(--color-white);
}
.ticket__list_box_faq .accordion_emphasis a{
	display: block;
	text-decoration: underline;
}
section.attention{
	background: linear-gradient(180deg, var(--Site-color-Brand-Color-Black, #000) 0%, #01141B 100%);
}
section.attention h2.section-title{
	margin-bottom: 4px;
}
.accordion__attention{
	border: solid 1px var(--color-red);	
}
.attention__note {
	display: block;
    margin: 0 auto 48px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-red);
    line-height: 162.5%;
}
.attention__list ul.attention__item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 32px;
	align-self: stretch;
}
.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.7px;
    margin-top: 4px;
}
.attention__list p.note {
    margin-top: 16px;
}
.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.7px;
}
footer {
	padding: 48px 0;
	text-align: center;
}
footer .footer__inner{
	display: grid;
	gap:24px;
}
footer a.button__up {
	display: block;
    margin: 0 auto;
    border-radius: 9999px;
    border: solid #ffffff 1px;
    padding: 4px;
    width: 32px;
    height: 32px;
}
footer a.button {
	border: 1px solid var(--color-white);
	display: flex;
	justify-content: center;
	gap: 8px;
	align-items: center;
	color: var(--color-white);
	margin: 0 auto;
	width: 100%;
}
footer a.button:hover{
	background: var(--color-white);
	border: none;
	color: var(--color-black);
}
footer a.button .footer-arrow svg{
	justify-content: center;
	display: flex;
}
footer a.button:hover .footer-arrow svg{
	color: var(--color-black);
}
footer .copyright {
	color: var(--color-white);
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	line-height: 162.5%; 
	letter-spacing: 0.6px;
	margin-top: 20px;
}

/*modal*/
.custom-modal {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 9999;
	height: 100%;
	width: 100%;
	background-color: rgb(25 25 25 / 70%);
	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: 1rem;
	overflow: hidden;
	background-color: var(--color-white);
	width: 100%;
	max-height: 100%;
	padding-bottom: 20px;
}
.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: 100%;
	align-items: center;
	justify-content: center;
	color: var(--color-red);
	font-weight: 700;
	background-color: var(--color-white);
	border: solid 2px var(--color-red);
	font-size: 18px;
	line-height: 162.5%;
}
.action-link-button:hover{
	background-color: var(--color-red);
	border: solid 2px var(--color-red);
}
.action-link-button:hover {
	color: var(--color-black);
}
.modal-contents-inner {
	overflow: auto;
	flex-grow: 1;
	min-height: 0;
	overflow-y: scroll;
	padding: 12px;
}
.modal-contents-inner::-webkit-scrollbar {
	width: 8px;
}
.modal-contents-inner::-webkit-scrollbar-thumb {
	background-color: rgba(0, 0, 0, 0.3);
	border-radius: 8px;
	background-clip: padding-box;
}
.modal-contents-inner::-webkit-scrollbar-track{
	background: var(--color-light-gray);
}
.modal-action-area {
	display: flex;
	flex-shrink: 0;
	justify-content: center;
}
.modal__body_inner .modal__text {
	padding: 0 4px;
	font-size: 14px;
	line-height: 162.5%;
	letter-spacing: 0.7px;
	color: var(--color-black);
}
.modal__body_inner .modal__text a{
	color: var(--color-black);
}
.modal__body_inner .modal__text p span.modal__note{
	font-style: normal;
	font-weight: 300;
	line-height: 162.5%;
	letter-spacing: 0.7px;
	color: var(--color-gray);
	margin-top: 6px;
}
.modal__body_inner .modal__text:not(:last-child){
	margin-bottom: 28px;
}
.modal__body_inner .box {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	align-self: stretch;
}
.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-black);
    color: var(--color-white);
    font-weight: 600;
    line-height: 162.5%;
    margin-bottom: 16px;
    text-align: center;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 42px;
}
/************************************************/

.nav__mobile{
	display: none;
	z-index: 20;
	position: fixed;
	bottom: 0;
	background: linear-gradient(rgba(1, 20, 27, 0.90) 0%, rgba(0, 0, 0, 0.90));
	width: 100%;
	height: 70px;
}
.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;
		width: auto;
		aspect-ratio: 54.30 / 28.00;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.header__inner .header__logo img{
		height: 28px;
		margin: 10px 0;
	}
	.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: 18px;
		line-height: 162.5%;
		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{
		height: auto;
	}
	.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.news {
        padding: 36px 16px;
    }
	.contents section .inner{
		width: 100%;
		padding: 0;
	}
	section h2.section-title{
		height: 44px;
		margin-bottom: 36px;
		font-size: 32px;
		line-height: 137.5%;
	}
	section h2.news__title {
		margin-top: 36px;
	}
	.news__wrap {
		padding: 0px;
	}
	.news__wrap ul.news__list li img.news-arrow {
		display: none;
	}
	.news__inner a.button {
		width: 208px;
		height: 44px;
		margin: 36px auto 0;
		border: 1.5px solid var(--color-red)
	}
	a.button{
		font-size: 14px;
		letter-spacing: 0.7px;
	}
	.schedule__item-location {
		width: 100%;
		margin-bottom: 16px;
		display: flex;
		justify-content: space-between;
		align-items: center;	
	}
	.schedule__item-location span{
		font-size: 16px;
		font-weight: 600;
		letter-spacing: initial;
	}
	.schedule__item-location a.map__button{
		margin-top: 0;
	}
	.schedule__item-date {
		width: 100%;
	}
	.schedule__list .schedule__item{
		gap: 16px;
		display: block;
	}
	.schedule__item-date dl dd{
		font-size: 24px;
		letter-spacing: initial;
	}
	.schedule__item-date dl dd span{
		font-size: 14px;
		width: 56px;
    	height: 23px;
		letter-spacing: initial;
	}
	.schedule__item-description {
		padding: 16px 12px;
		word-break: break-all;
	}
	.schedule__item-description a{
		display: block;
	}
	.schedule__item-date dl dt {
		font-size: 20px;
		font-style: normal;
		margin-top: 0;
		font-weight: 600;
		line-height: 137.5%;
		letter-spacing: initial;
	}
	.schedule__item-date dl:last-child {
		margin-bottom: 16px;
	}
	.schedule__inner .schedule__note{
		margin-top: 20px;
	}
	.ticket__seat .ticket__icon p{
		font-weight: 600;
	}
	.ticket__note{
		font-size: 12px;
		letter-spacing: 0.6px;
	}
	.ticket__description{
		margin: 36px 0;
	}
	.ticket__description .ticket__guide_left{
		width: 96px;
	}
	.ticket__description .ticket__guide_right{
		width: calc(100% - 116px);
	}
	.ticket__description ul.ticket__desc_list li:not(:last-child){
		margin-bottom: 0;
	}
	.ticket__info .accordion:not(:last-child) {
		margin-bottom: 16px;
	}
	.ticket__info .ticket__info_title{
		margin: 36px auto 20px;
		font-size: 18px;
	}
	.accordion summary{
		padding: 20px 12px;
	}
	.accordion summary .accordion__title {
		gap: 8px;
	}
	.accordion summary .accordion__title::after {
		width: 24px;
		height: 24px;
	}
	.accordion .accordion__box{
		padding: 0 12px 0;	
	}
	.accordion__box ul.accordion__list{
		padding: 20px 0;
	}
	.ticket__detail_ttl{
		width: 100%;
	}
	.ticket__apply{
		padding: 28px 12px;
	}
	.ticket__apply a.ticket__button{
		font-size: 16px;
	}
	section.attention h2.section-title{
		margin-bottom: 0;
	}
	.attention__note{
		margin: 0 auto 36px;
		font-size: 16px;
	}
	a.action-link-button{
		font-size: 16px;
		line-height: 137.5%;
	}
	.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-main-panel{
		padding-bottom: 16px;
		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{
	    max-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 16px;
		height: 48px;
	}
	.header__inner .header__logo {
		height: 28px;
		width: auto;
		aspect-ratio: 54.30 / 28.00;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.header__inner .header__logo img{
		height: 28px;
		margin: 10px 0;
	}
	.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: 18px;
		line-height: 162.5%;
		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 .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.news {
        padding: 36px 32px;
    }
	.contents section .inner{
		width: 100%;
		padding: 0;
	}
	section h2.section-title{
		height: 44px;
		margin-bottom: 36px;
		font-size: 32px;
		line-height: 137.5%;
	}
	section h2.news__title {
		margin-top: 36px;
	}
	.news__wrap {
		padding: 0px;
	}
	.news__wrap ul.news__list li img.news-arrow {
		display: none;
	}
	.news__inner a.button {
		margin: 36px auto 0;
		border: 1.5px solid var(--color-red);
		height: 44px;
	}
	a.button{
		font-size: 14px;
		letter-spacing: 0.7px;
	}
	.schedule__item-location{
		width: 280px;
	}
	.schedule__item-location span{
		font-size: 16px;
		font-weight: 600;
	}
	.schedule__list .schedule__item{
		gap: 16px;
	}
	.schedule__item-date {
		width: calc(100% - 296px);
	}
	.schedule__item-date dl dd{
		font-size: 24px;
		letter-spacing: initial;
	}
	.schedule__item-date dl dd span{
		font-size: 14px;
		width: 56px;
    	height: 23px;
		letter-spacing: initial;
	}
	.schedule__item-date dl:last-child {
		margin-bottom: 16px;
	}
	.schedule__item-description {
		padding: 16px 12px;
		min-width: 160px;
	}
	.schedule__item-description a{
		display: block;
	}
	.schedule__item-date dl dt {
		font-size: 20px;
		font-style: normal;
		margin-top: 0;
		font-weight: 600;
		line-height: 137.5%;
		letter-spacing: initial;
	}
	.ticket__seat .ticket__icon p{
		font-weight: 600;
	}
	.ticket__note{
		font-size: 12px;
		letter-spacing: 0.6px;
	}
	.ticket__description{
		margin: 36px 0;
	}
	.ticket__description .ticket__guide_left{
		width: 96px;
	}
	.ticket__description .ticket__guide_right{
		width: calc(100% - 116px);
	}
	.ticket__info .ticket__info_title{
		margin: 36px auto 20px;
		font-size: 18px;
	}
	.ticket__info .accordion:not(:last-child) {
		margin-bottom: 20px;
	}
	.attention__note{
		margin: 0 auto 36px;
		font-size: 16px;
	}
	.accordion summary{
		padding: 20px 12px;
	}
	.accordion summary .accordion__title {
		gap: 8px;
	}
	.accordion summary .accordion__title::after {
		width: 24px;
		height: 24px;
	}
	.accordion .accordion__box{
		padding: 0 12px 0;	
	}
	.accordion__box ul.accordion__list{
		padding: 20px 0;
	}
	.ticket__detail_ttl{
		width: 100%;
	}
	.ticket__apply{
		padding: 28px 12px;
	}
	.ticket__apply a.ticket__button{
		font-size: 16px;
	}
	section.attention h2.section-title{
		margin-bottom: 0;
	}
	.modal-content-wrapper {
		gap: 0.75rem;
	}
	.modal-contents-inner{
		padding: 12px;
	}
	.modal-close-icon{
		margin: 14px;
	}
	a.action-link-button{
		font-size: 16px;
		line-height: 137.5%;
	}
	.nav__mobile{
		display: block;
	}
	footer{
		padding: 36px 32px 111px;
	}
	footer a.button{
		height: 44px;
		letter-spacing: initial;
	}
	footer .copyright{
		margin-top: 0;
	}
}
/* 431px以上 */
@media screen and (min-width:431px){
	.live-viewing a.mb__only, .live-streaming a.mb__only{
		display: none;
	}
	.live-viewing a.pc__only, .live-streaming a.pc__only{
		display: block;
	}
}

/* 961px以上（PC） */
@media screen and (min-width: 961px) {
	.news__only-mb{
		display: none;
	}
	.news__only-pc{
		display: block;
	}
	.mb__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) {
	.ticket__item .ticket__seat{
		width: 49%;
		margin: 0 auto;
		display: block;
	}
	.ticket__item .premium-arena{
		margin-bottom: 20px;
		display: block;
	}
	.ticket__group{
		display: flex;
    	gap: 20px;
		margin-bottom: 20px;
	}
	.ticket__group_bottom{
		display: flex;
    	gap: 20px;
		margin-bottom: 28px;
	}
}
@media screen and (min-width: 1110px) {
	.schedule__item-location {
		width: 280px;
	}
	.schedule__item-date {
		width: calc(100% - 300px);
		margin-right: -28px;
	}	
}
