@charset "UTF-8";
/*! destyle.css v4.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.min.css */
*,::before,::after{box-sizing:border-box;border-style:solid;border-width:0}html{line-height:1.15;-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}body{margin:0}main{display:block}p,table,blockquote,address,pre,iframe,form,figure,dl{margin:0}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit;margin:0}ul,ol{margin:0;padding:0;list-style:none}dt{font-weight:700}dd{margin-left:0}hr{box-sizing:content-box;height:0;overflow:visible;border-top-width:1px;margin:0;clear:both;color:inherit}pre{font-family:monospace,monospace;font-size:inherit}address{font-style:inherit}a{background-color:transparent;text-decoration:none;color:inherit}abbr[title]{text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:inherit}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}svg,img,embed,object,iframe{vertical-align:bottom}button,input,optgroup,select,textarea{-webkit-appearance:none;appearance:none;vertical-align:middle;color:inherit;font:inherit;background:transparent;padding:0;margin:0;border-radius:0;text-align:inherit;text-transform:inherit}button,[type="button"],[type="reset"],[type="submit"]{cursor:pointer}button:disabled,[type="button"]:disabled,[type="reset"]:disabled,[type="submit"]:disabled{cursor:default}:-moz-focusring{outline:auto}select:disabled{opacity:inherit}option{padding:0}fieldset{margin:0;padding:0;min-width:0}legend{padding:0}progress{vertical-align:baseline}textarea{overflow:auto}[type="number"]::-webkit-inner-spin-button,[type="number"]::-webkit-outer-spin-button{height:auto}[type="search"]{outline-offset:-2px}[type="search"]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}[type="number"]{-moz-appearance:textfield}label[for]{cursor:pointer}details{display:block}summary{display:list-item}[contenteditable]:focus{outline:auto}table{border-color:inherit;border-collapse:collapse}caption{text-align:left}td,th{vertical-align:top;padding:0}th{text-align:left;font-weight:700}




/*====================================
 * Base
=====================================*/
:root {
	--colorBg: #040420;
	--colorMain: #fff;
	--colorSub: #ffffff;
	--colorBgSub: #24243d;
	--colorText: #fff;
	--colorLink: #84b3ff;
	--colorCaution: #FFD54F;
}

html {
	overflow-y: scroll;
	/* Modale表示時のガタつき対策 */
}

body {
	font-family: 'Noto Sans JP', sans-serif, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	font-feature-settings: 'palt' 1;
	font-kerning: normal;
	-webkit-font-smoothing: antialiased;
	letter-spacing: 0.05em;
	font-size: 14px;
	color: var(--colorText);
	background-color: var(--colorBg);
}

main {
	position: relative;
	line-height: 1.5;
}

a:link,
a:visited,
a:active {
	text-decoration: none;
	color: var(--colorLink);
	font-weight: 500;
}

a:hover {
	opacity: 0.8;
}

b a,
strong a {
	font-weight: bold !important;
}

img {
	max-width: 100%;
	height: auto;
}

iframe {
	border: none;
}

hr {
	color: #ccc;
}

/*====================================
Button
=====================================*/
a.btn-normal {
	color: #212121;
	border: 1px solid #ccc;
	background: #ffffff;
	background: linear-gradient(to bottom, #fff 38%, #eee 100%);
	border-radius: 6px;
	margin: 8px 0;
	padding: 1em 0;
	display: block;
	text-align: center;
	font-weight: bold;
	line-height: 1.3;
}

a.btn-normal:hover {
	background: linear-gradient(to bottom, #fff 38%, #e0e0e0 100%);
	opacity: 1;
}

a.btn-pink,
p.btn-pink.nolink {
	display: block;
	border-radius: 100vw;
	overflow: hidden;
	padding: 1em;
	font-size: min(4.2vw, 16px);
	font-weight: bold;
	width: min(90%, 600px);
	margin: 0 auto;
	text-align: center;
	color: #fff;
}

a.btn-pink {
	background-color: #ea7b00;
	transition: all .2s ease;
}

a.btn-pink:not([href]) {
	cursor: default;
	pointer-events: none;
	/* background-color: #bfbfbf; */
}

a.btn-pink.end,
p.btn-pink.nolink {
	background-color: #bfbfbf;
}

a.btn-frame {
	display: block;
	border-radius: 100px;
	overflow: hidden;
	background-color: transparent;
	padding: 1em;
	font-size: min(6.4vw, 24px);
	font-weight: bold;
	width: min(90%, 600px);
	margin: 0 auto;
	border: solid 1px var(--colorText);
	color: var(--colorText);
	text-align: center;
	transition: all .2s ease;
}

a.btn-s {
	width: min(90%, 600px);
	margin: 0 auto;
	font-size: min(4.27vw, 16px);
}

p.btn-s.nolink {
	color: #212121;
	display: block;
	border-radius: 100px;
	overflow: hidden;
	background-color: #bfbfbf;
	padding: 1em;
	font-size: min(4.27vw, 16px);
	font-weight: bold;
	width: min(90%, 600px);
	margin: 0 auto;
	text-align: center;
	transition: all .2s ease;
}


/*====================================
HEADER Standard
=====================================*/
header.standard {
	z-index: 100;
	position: sticky;
	top: 0;
	left: 0;
	background-color: rgba(36, 36, 61, 0.8);
	backdrop-filter: blur(10px);
	width: 100%;
}

header.standard .titlebox {
	padding: 16px 16px 8px 16px;
	display: flex;
	justify-content: space-between;
}

header.standard .titlebox h1 {
	flex: 1;
	font-size: 12px;
	color: #fff;
	line-height: 1.3;
	word-break: auto-phrase;
	font-weight: 500;
}

header.standard .titlebox .headlogo {
	width: 50px;
}

header.standard .titlebox .headlogo a {
	display: block;
}

header.standard .titlebox .headlogo img {
	width: 100%;
}

@media screen and (min-width: 600px) {
	header.standard .titlebox {
		padding: 8px 16px 8px 16px;
	}

	header.standard .titlebox h1 {
		font-size: 14px;
	}
}

@media screen and (min-width: 960px) {
	header.standard .titlebox .headlogo {
		width: 50px;
	}

	header.standard .titlebox h1 {
		font-size: 18px;
	}
}

header nav.pagenav ul.nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 0 0 8px 0;
}

header nav.pagenav ul.nav li {
	margin: 4px 4px 4px;
}

@media screen and (min-width: 960px) {
	header nav.pagenav ul.nav {
		padding: 0 0 8px 0;
	}

	header nav.pagenav ul.nav li {
		margin: 0px 8px 8px 8px;
	}
}

header nav.pagenav ul.nav li a {
	font-family: "Titillium Web", sans-serif;
	display: block;
	font-size: 14px;
	line-height: 1;
	color: #fff;
	transition: 0.2s;
	padding: 2px 4px;
}

@media screen and (min-width: 480px) {
	header nav.pagenav ul.nav li a {
		font-size: 18px;
		padding: 2px 4px;
	}
}

@media screen and (min-width: 960px) {
	header nav.pagenav ul.nav li a {
		font-size: 22px;
	}

	header nav.pagenav ul.nav li a:hover {
		opacity: 0.8;
		transition: 0.2s;
	}
}

header nav.pagenav ul.nav li:last-child {
	margin-left: 8px;
}

@media screen and (min-width: 960px) {
	header nav.pagenav ul.nav li:last-child {
		margin-left: 16px;
	}
}

header nav.pagenav ul.nav li:last-child a {
	background: #ea7b00;
	padding: 2px 8px;
	border-radius: 3px;
	transition: 0.2s;
	border-radius: 100vw;
}

@media screen and (min-width: 960px) {
	header nav.pagenav ul.nav li:last-child a {
		padding: 2px 12px;
	}

	header nav.pagenav ul.nav li:last-child a:hover {
		transition: 0.2s;
	}
}


/*====================================
HEADER Drawer
=====================================*/
.drawer-navbar--fixed {
	position: sticky;
	border-bottom: none;
	height: auto;
	background-color: transparent;
	top: 0;
	z-index: 100;
}

.drawer-container {
	max-width: 100%;
	background-color: rgba(0, 0, 0, 0.7);
}

.drawer-close .drawer-container {
	background-color: rgba(0, 0, 0, 0.7);
	color: #FFF;
}

.drawer-navbar .drawer-navbar-header {
	background-color: transparent;
	float: none;
	border-bottom: none;
	padding: 0 0;
	height: auto;
	backdrop-filter: blur(10px);
}

.drawer-navbar .titlebox {
	padding: 16px 50px 16px 16px;
	display: grid;
	grid-template-columns: 1fr 60px;
	min-height: 60px;
}

.drawer-navbar .titlebox h1 {
	flex: none;
	font-size: 12px;
	color: #fff;
	line-height: 1.3;
	padding: 0 10px 0 0;
	text-align: left;
}

.drawer-navbar .titlebox .headlogo {
	width: 50px;
}

.drawer-navbar .titlebox .headlogo a {
	display: block;
}

.drawer-navbar .titlebox .headlogo img {
	width: 100%;
}

.drawer-hamburger-icon,
.drawer-hamburger-icon:after,
.drawer-hamburger-icon:before {
	background-color: #FFF;
}

.drawer-nav {
	background-color: transparent;
}

.drawer-navbar .drawer-nav {
	height: auto;
}

@media screen and (max-width: 767px) {
	.drawer-open {
		overflow: clip !important;
	}
}

.drawer-open .drawer-navbar .drawer-nav {
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(10px);
	color: #FFF;
}

.drawer-navbar .drawer-menu {
	display: flex;
	justify-content: center;
}

.drawer-open .drawer-navbar .drawer-menu {
	flex-direction: column;
	align-items: center;
	padding-bottom: 0;
}

.drawer-navbar .drawer-menu li {
	float: none;
}

.drawer-navbar .drawer-menu li .drawer-menu-item {
	color: #FFF;
}

.drawer-navbar .drawer-menu li .drawer-menu-item:hover {
	text-decoration: none;
}

.drawer-open .drawer-navbar .drawer-menu li {
	margin-bottom: 1em;
}

.drawer-open .drawer-navbar .drawer-menu li a {
	font-size: 20px;
}

@media screen and (min-width: 600px) {
	.drawer-navbar .titlebox h1 {
		font-size: 14px;
	}

	.drawer-navbar .titlebox h1 br {
		display: none;
	}
}

@media screen and (min-width: 768px) {
	/*.drawer-container {
		backdrop-filter: blur(10px);
	}*/

	.drawer-navbar .titlebox {
		min-height: auto;
		padding: 8px 16px;
		grid-template-columns: 1fr 50px;
	}

	.drawer-navbar .titlebox .headlogo {
		margin-right: 0;
	}

	.drawer-toggle {
		display: none;
	}
}

@media screen and (min-width: 960px) {
	.drawer-navbar .titlebox h1 {
		font-size: 18px;
	}
}


/*====================================
Contents
=====================================*/
.contents-boby {
	padding: 16px 0 64px 0;
	max-width: 1100px;
	margin: 0 auto;
	word-break: break-all;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

.contents-boby #information {
	container-type: inline-size;
	container-name: col-l;
}

.contents-wrap {
	margin: 0 0 64px 0;
}

#information section:last-child .contents-wrap {
	margin: 0 0 32px 0;
}

.contents-wrap-title {
	margin-bottom: 32px;
	display: block;
	padding: 8px 16px;
	border-left: solid 10px var(--colorMain);
	border-bottom: solid 2px var(--colorMain);
	color: var(--colorMain);
	font-weight: 600;
	font-size: 18px;
}

.contents-inner {
	padding: 0 16px;
}

#assist .assist-title {
	font-weight: bold;
	border-bottom: 2px solid #ea7b00;
	margin-bottom: 16px;
	padding-bottom: 8px;
}

@media screen and (min-width: 960px) {
	.contents-boby {
		display: flex;
	}

	.contents-boby #information {
		flex: 1;
		padding: 0 0 0 16px;
	}

	.contents-boby #assist {
		width: 35%;
		padding: 0 16px 0 24px;
	}

	.contents-inner {
		padding: 0 0;
	}
}


/*====================================
Footer
=====================================*/
footer {
	margin-top: 0px;
}

footer .breadcrumb {
	padding: 16px;
}

footer .breadcrumb ul {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

footer .breadcrumb ul li {
	margin-right: 4px;
	line-height: 1.5em;
}

footer .breadcrumb ul li a:link,
footer .breadcrumb ul li a:visited,
footer .breadcrumb ul li a:active {
	text-decoration: underline;
	color: var(--colorLink);
}

footer .breadcrumb ul li a:hover {
	opacity: 0.8;
}

footer .breadcrumb ul li:after {
	content: ">";
	padding-left: 4px;
}

footer .breadcrumb ul li:last-child:after {
	content: "";
}

footer .ancertop {
	display: block;
	background-color: #666;
	color: #fff;
	text-align: center;
	padding: 16px;
}

footer div.copyright {
	background-color: #000;
	color: #fff;
	padding: 16px;
}

footer div.copyright a {
	width: 100px;
	display: block;
	margin: 16px auto 32px auto;
}

footer div.copyright p {
	font-size: 12px;
	line-height: 1.5;
}

@media screen and (min-width: 960px) {
	footer {
		margin-top: 32px;
	}

	footer div.copyright p {
		text-align: center;
	}
}

footer div.copyright p.copyright {
	text-align: center;
	font-size: 11px;
}


/*====================================
KV
=====================================*/
/* キービジュアル */
.kv-wrap {
	margin-bottom: 24px;
	width: 100%;
	text-align: center;
}

/* キービジュアル スライダー */
.kv-slide-wrap {
	position: relative;
}

.kv-slide .swiper-slide {
	overflow: hidden;
}

.kv-slide .swiper-slide img {
	height: auto;
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: contain;
}

.kv-slide-wrap .swiper-pagination {
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	justify-content: center;
	width: min(100%, 600px);
}

.kv-slide-wrap .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	flex: 1;
	height: 4px;
	border-radius: 0;
	display: block;
	background: #FFF;
	max-width: 120px;
}

.kv-wrap .kv-slide-wrap~.event-summary dt {
	padding-top: 8px;
	word-break: auto-phrase;
}

.kv-wrap .event-summary {
	padding: clamp(16px, 6.4vw, 40px) 16px;
	background-color: var(--colorBgSub);
}

.kv-wrap .event-summary dt {
	font-size: clamp(16px, 7.4vw, 40px);
	margin-bottom: 4px;
	font-weight: bold;
	/*line-height: 1.0;*/
}

.kv-wrap .event-summary dt .sub-title {
	font-size: clamp(12px, 4.2vw, 20px);
	line-height: 1.5;
}

.kv-wrap .event-summary dd.date {
	font-size: clamp(14px, 5.3vw, 24px);
	font-weight: 500;
	margin-bottom: 8px;
}

.kv-wrap .event-summary dd.place {
	font-size: clamp(12px, 3.7vw, 16px);
}

@media screen and (min-width: 600px) {
	.kv-slide .swiper-slide img {
		aspect-ratio: 1920 / 800;
	}
}

@media screen and (min-width: 600px) {
	.kv-wrap img {
		width: 75%;
		height: auto;
	}
}

/*====================================
SNSボタン
=====================================*/
.sns {
	display: flex;
	justify-content: center;
}

.sns>div {
	margin: 16px 4px;
}


/*====================================
Topics
=====================================*/
.contents-wrap .news-list ul {
	margin-top: 16px;
}

.contents-wrap .news-list ul li {
	margin-bottom: 8px;
}

.contents-wrap .news-list ul span.date {
	display: block;
	margin-bottom: 4px;
	font-weight: bold;
}

.contents-wrap .news-list ul span.date::before {
	content: "・";
}

.contents-wrap .news-list ul span.text {
	display: block;
}

.contents-wrap .news-list ul span a {
	border-bottom: 1px solid #84b3ff;
}

.contents-wrap .news-list .note {
	margin-top: 8px;
}

.contents-wrap .news-list .more.acd-trigger {
	color: var(--colorLink);
	cursor: pointer;
	padding-left: 0.5em;
}

.contents-wrap .news-list .more.acd-trigger:hover {
	opacity: 0.8;
}

.contents-wrap .news-list .more.acd-trigger.active {
	display: none;
}

.contents-wrap .news-list .acd-target {
	display: none;
	margin-top: 0;
}

@media screen and (min-width: 600px) {
	.contents-wrap .news-list ul span.date {
		float: left;
		width: 6em;
		margin-bottom: 0;
	}

	.contents-wrap .news-list ul span.text {
		margin-left: 6em;
	}
}


/*====================================
Topics Modal
=====================================*/
.contents-wrap .news-list.add-modal li {
	border-bottom: solid 1px var(--colorBgSub);
	padding: 0 0 16px 0;
	margin: 0 0 16px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.contents-wrap .news-list.add-modal li:last-child {
	margin: 0 0 0 0;
}

@media screen and (min-width: 600px) {
	.contents-wrap .news-list.add-modal ul span.date {
		float: none;
		width: auto;
		margin-bottom: 8px;
	}

	.contents-wrap .news-list.add-modal ul span.text {
		margin-left: 0;
	}
}

.contents-wrap .news-list.add-modal .modal-btn {
	margin: 0 16px 0 16px;
}

.modal-open-icon {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 32px;
	aspect-ratio: 1 / 1;
	border: solid 3px #FFF;
	border-radius: 100vw;
	position: relative;
	transition: all 0.2s ease-in-out;
}

.modal-open-icon:after,
.modal-open-icon:before {
	display: block;
	content: " ";
	position: absolute;
	top: auto;
	left: auto;
	width: 3px;
	height: 14px;
	border-radius: 4px;
	background: #fff;
}

.modal-open-icon:after {
	transform: rotate(90deg);
}

.contents-wrap .news-list.add-modal .modal-open:hover {
	opacity: 1.0;
}

.modal-open:hover .modal-open-icon {
	transform: rotate(90deg);
	transition: all 0.2s ease-in-out;
}

.modal-window {
	display: none;
}

.modaal-content-container {
	padding: 16px;
	max-height: 70vh;
	overflow-y: auto;
	line-height: 1.5;
}

.modaal-wrapper .modaal-close {
	border: solid 3px #FFF;
	position: absolute;
	right: 0px;
	top: -60px;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 44px;
	height: 44px;
}

.modaal-wrapper .modaal-close:hover {
	background: 0;
	transform: rotate(90deg);
}

.modaal-close:after,
.modaal-close:before {
	top: auto;
	left: auto;
	width: 3px;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
	background: #FFF;
}

.modaal-overlay {
	backdrop-filter: blur(5px);
}

@media screen and (min-width: 600px) {
	.modal-open-icon {
		width: 36px;
	}

	.modal-open-icon:after,
	.modal-open-icon:before {
		height: 18px;
	}

}

@media screen and (min-width: 600px) {
	.modaal-content-container {
		padding: 32px;
	}
}


/*====================================
Contents
=====================================*/
.contents-inner-title {
	font-weight: bold;
	font-size: 16px;
	margin-bottom: 24px;
	padding-bottom: 8px;
	line-height: 1.2;
	border-bottom: solid 2px rgba(255, 255, 255, 0.26);
}

.contents-inner-subtitle {
	font-weight: bold;
	margin-bottom: 8px;
}

.contents-wrap .notes li {
	margin-bottom: 0.25em;
}

.contents-wrap .notes li:last-child {
	margin-bottom: 0;
}

.contents-wrap em {
	font-size: 1.2em;
	font-weight: bold;
	font-style: normal;
}

.contents-wrap .announce-wrap {
	background-color: var(--colorBgSub02);
	padding: 16px;
}

/*====================================
Event Info
=====================================*/
dl.event-info {
	margin-bottom: 32px;
}

dl.event-info dt {
	margin-bottom: 4px;
	font-size: 1.2em;
	font-weight: bold;
	font-style: normal;
}

dl.event-info dd {
	margin-bottom: 16px;
}

.info-btn-wrap {
	background-color: var(--colorBgSub);
	padding: 16px;
	border-radius: 4px;
	border: 1px solid rgba(255, 255, 255, 0.06);
}

.info-btn-wrap .acd-trigger {
	margin-bottom: 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	cursor: pointer;
}

.info-btn-wrap .acd-trigger::after {
	content: "";
	display: inline-block;
	transition: all 0.3s;
	height: calc(tan(60deg)* 16px / 2);
    width: 16px;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	background: var(--colorText);
}

.info-btn-wrap .acd-trigger.active::after {
	transform: rotate(180deg);
	transition: all 0.3s;
}

.info-btn-wrap .acd-target {
	margin-top: 24px;
}

.info-btn-wrap .acd-trigger+.acd-target {
	display: none;
}

.info-btn-wrap .link a {
	background-color: rgba(255, 255, 255, 0.87);
}

@media screen and (min-width: 600px) {
	.info-btn-wrap {
		padding: 24px;
	}
}


/*====================================
Tickets
=====================================*/
.tickets .tickets-title {
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	margin: 32px 0 16px 0;
	background-color: var(--colorMain);
	color: #040420;
	padding: 8px;
}

.tickets .ticket-wrap {
	display: flex;
	flex-direction: column;
	/* background-color: var(--colorBgSub); */
	border: 1px solid #fff;
	border-radius: 4px;
	padding: 16px 32px 16px 32px;
	border-right: solid 60px #fff;
	font-size: 18px;
	font-weight: bold;
	position: relative;
	cursor: pointer;
	transition: all 0.3s;
	margin-bottom: 16px;
}

.tickets .ticket-wrap-none {
	display: flex;
	justify-content: space-between;
	flex-direction: column;
	border-radius: 4px;
	/* background-color: var(--colorBgSub); */
	border: 1px solid #fff;
	color: #FFF;
	padding: 16px 92px 16px 32px;
	font-size: 18px;
	font-weight: bold;
	position: relative;
	transition: all 0.3s;
	margin-bottom: 16px;
}

.tickets .ticket-wrap-none .tax {
	color: #FFF;
	font-size: 12px;
	font-weight: normal;
}


.tickets .ticket-wrap.acd-trigger:hover {
	background-color: rgba(255, 255, 255, 0.26);
}

.tickets .ticket-wrap.active {
	margin-bottom: 5px;
}

.tickets .ticket-wrap:not(.acd-trigger) {
	border-right: none;
	cursor: default;
}

.tickets .ticket-wrap:not(.acd-trigger) .detail-btn {
	display: none;
}

.tickets .ticket-wrap .detail-btn {
	position: absolute;
	color: #fff;
	display: block;
	width: 60px;
	height: auto;
	top: 50%;
	transform: translateY(-50%) translateX(-50%);
	right: -92px;
	text-align: center;
	line-height: 1.2;
}

.tickets .ticket-wrap .detail-btn::before {
	display: inline-block;
	content: "";
	height: calc(tan(60deg)* 16px / 2);
    width: 16px;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	background: #040420;
	transition: all 0.3s;
}

.tickets .ticket-wrap.active .detail-btn::before {
	transform: rotate(180deg);
	transition: all 0.3s;
}

.tickets .ticket-wrap .seat span.note,
.tickets .ticket-wrap-none .seat span.note {
	display: block;
	font-size: 14px;
}

.tickets .ticket-wrap .price {
	color: var(--colorSub);
}

.tickets .ticket-wrap-none .price {
	line-height: 1.3;
}

.tickets .ticket-wrap .tax {
	color: #fff;
	font-size: 12px;
	font-weight: normal;
}

.tickets .acd-target {
	display: none;
	padding: 16px;
	margin-bottom: 16px;
	background-color: var(--colorBgSub);
	border-radius: 4px;
}

.tickets .btn-wrap {
	max-width: 90%;
	margin: 32px auto 0 auto;
}

.soldout {
	text-decoration: line-through !important;
}

@media screen and (min-width: 600px) {
	.tickets .ticket-wrap,
	.tickets .ticket-wrap-none {
		flex-direction: row;
		justify-content: space-between;
	}

	.tickets .ticket-wrap:not(.acd-trigger) {
		border-right: solid 60px transparent;
		cursor: default;
	}

	.tickets .ticket-wrap .seat {
		width: 65%;
	}

	.tickets .ticket-wrap .seat span.note,
	.tickets .ticket-wrap-none .seat span.note {
		display: inline;
	}

	.tickets .ticket-wrap .price {
		width: 35%;
		text-align: right;
	}

	.tickets .acd-target {
		padding: 32px;
	}
}


/*====================================
Price List
=====================================*/
.table-wrap {
	width: 100%;
}

.price-list {
	width: 100%;
	border: solid 1px #e0e0e0;
}

.price-list th,
.price-list td {
	padding: 8px 4px;
	font-size: min(3.7vw, 14px);
	border: solid 1px #ccc;
	text-align: center;
	vertical-align: middle;
}

.price-list th {
	background-color: rgba(255, 255, 255, 0.06);
	color: #FFF;
	font-weight: 500;
}

.price-list th .tax {
	font-size: 10px;
}

.price-list .heading th {
	background-color: var(--colorBgSub);
	font-weight: bold;
	/*white-space: nowrap;*/
}

.price-list .vertical {
	display: flex;
	justify-content: center;
}
.price-list .vertical span {
	white-space: pre;
	writing-mode: vertical-lr;
	text-orientation: upright;
	letter-spacing: 0.5em;
}

@container col-l (max-width: 600px) {
	.table-wrap {
		overflow-x: scroll;
		width: calc(100% + 16px);
	}

	.table-wrap .price-list {
		width: 100%;
		border: solid 1px #e0e0e0;
		/*white-space: nowrap;*/
		margin-right: 16px;
	}
}

@media screen and (min-width: 600px) {

	.price-list th,
	.price-list td {
		padding: 8px 8px;
		font-size: 14px;
	}

	.price-list th {
		width: 13%;
	}

	.price-list th .tax {
		font-size: 11px;
	}

	.price-list .heading td {
		width: 29%;
	}
}

/*
@media screen and (max-width: 599px) {

	.price-list th,
	.price-list td {
		font-size: 11px;
	}
}
*/

/* Scroll Hint */
.scroll-hint-icon {
	top: 50%;
	transform: translateY(-50%);
	;
}


/*====================================
Cautions
=====================================*/
.cautions-box {
	border: solid 2px var(--colorMain);
	margin-bottom: 32px;
}

.cautions-box:last-child {
	margin-bottom: 0;
}

.cautions-box-title {
	color: var(--colorMain);
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 16px;
}

.cautions-box .open-area,
.cautions-box .close-area {
	margin-bottom: 16px;
}

.cautions-box .open-area {
	padding: 16px 16px 0;
}

.cautions-box .close-area {
	display: none;
	padding: 0 16px 0;
}

.cautions-box .open-area p,
.cautions-box .close-area p {
	margin-bottom: 16px;
}

.cautions-box .open-area p:last-child,
.cautions-box .close-area p:last-child {
	margin-bottom: 0;
}

.cautions-box .more-btn {
	background: var(--colorMain);
	padding: 4px 16px;
	color: #121212;
	text-align: center;
	font-weight: bold;
	font-size: 16px;
	cursor: pointer;
}

.cautions-box .more-btn::before {
	display: inline-block;
	content: "";
	height: calc(tan(60deg)* 16px / 2);
    width: 16px;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	background: var(--colorBg);
	transition: all 0.3s;
}

.cautions-box .more-btn.active::before {
	transform: rotate(180deg);
	transition: all 0.3s;
}

.cautions-box-inner {
	margin-bottom: 24px;
}

.scroll-box {
	background-color: var(--colorBgSub);
	padding: 1em 1em;
	margin-bottom: 32px;
}

.scroll-box-title {
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 1em;
}

.scroll-box-inner {
	background-color: var(--colorBgSub);
	height: auto;
	max-height: 70vh;
	overflow: auto;
	padding: 1em 1em;
}

/* List Style */
.list li {
	margin: 0 0 0.5em;
}

.list li:last-child {
	margin: 0 0 0;
}

.list.indent li {
	text-indent: -1em;
	padding-left: 1em;
}

.list.disc li {
	list-style-type: disc;
	margin-left: 1.5em;
}

.list.aster li {
	list-style-type: none;
	text-indent: -1em;
	padding-left: 1em;
}

.list.aster li::before {
	content: "※";
}

.list.numb li {
	list-style-type: none;
	counter-increment: cnt;
}

.list.numb li::before {
	content: "(" counter(cnt) ") ";
}


/*====================================
Stage Map
=====================================*/
.stagemap .stagemap-title {
	text-align: center;
	font-size: 18px;
	font-weight: bold;
	margin: 0 0 16px 0;
}

.stagemap .stagemap-inner {
	margin-bottom: 16px;
	text-align: center;
}

.stagemap .stagemap-inner:last-child {
	margin-bottom: 0px;
}


/*====================================
Special
=====================================*/
.special-wrap {
	display: block;
}

.special-wrap .special-title {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 0.5em;
}

.special-wrap .image {
	width: 100%;
	margin-bottom: 10px;
}

.special-wrap .image .img-wrap img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: contain;
	background-color: var(--colorBgSub);
}

.special-wrap .text {
	width: 100%;
}

@media screen and (min-width: 600px) {
	.special-wrap {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 0 16px;
	}

	.special-wrap .special-title {
		font-size: 16px;
	}
}


/*====================================
Release
=====================================*/
.release-info-wrap {
	margin-bottom: 32px;
}

.release-info-wrap .product {
	display: grid;
	grid-template-columns: 100px 1fr;
	gap: 0 16px;
}

.release-info-wrap .product .photo {
	text-align: center;
}

.release-info-wrap .product .photo img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: contain;
	background: var(--colorBgSub);
}

.release-info-wrap .release-title {
	color: var(--colorSub);
	margin-bottom: 8px;
	font-weight: bold;
}

.release-info .contents-inner .link {
	margin: -16px 0 40px;
}

.release-info .contents-inner .link:last-child {
	margin-bottom: 0;
}

@media screen and (min-width: 600px) {
	.release-info-wrap .product {
		grid-template-columns: 190px 1fr;
	}
}


/*====================================
MOVIE
=====================================*/
iframe[src^="https://www.youtube.com/"] {
	width: 100%;
	aspect-ratio: 16 / 9;
}

/* ---------- Slider ---------- */
.movie .slide-image-wrap {
	position: relative;
	max-width: 700px;
	margin: 0 auto;
}

.movie .slide-image-wrap .slideImage {
	width: calc(100% - 60px);
	max-width: 640px;
	background-color: var(--colorBgSub);
	border: solid 1px var(--colorBgSub);
}

.movie .slide-image-wrap .slideImage .movie-title {
	text-align: left;
	padding: 16px;
	color: #fff;
}

.movie .slide-image-wrap .swiper-button-next,
.movie .swiper-button-prev {
	color: #FFF;
}

.movie .slide-image-wrap .swiper-button-prev {
	left: -4px;
}

.movie .slide-image-wrap .swiper-button-next {
	right: -4px;
}

.movie .slide-image-wrap .swiper-button-next:after,
.movie .swiper-button-prev:after {
	font-size: 30px;
}

.movie .swiper-slide img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: contain;
}


/*====================================
Artist
=====================================*/
.artist-section {
	font-size: 18px;
	font-weight: bold;
	margin: 0 0 16px 0;
}

.artist-section span.date {
	margin: 0 0 0 1em;
	font-size: 12px;
}

.artist-list {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px clamp(8px, 4.2%, 16px);
}

.artist-list .img-wrap {
	background-color: var(--colorBgSub);
}

.artist-list img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: contain;
}

.artist-list .artist-name {
	text-align: center;
	color: #FFF;
	margin: 4px 0 0 0;
}

@media screen and (min-width: 600px) {
	.artist-list {
		grid-template-columns: 1fr 1fr 1fr 1fr;
	}
}

.artist-list-line li {
	display: inline-block;
}

.artist-list-line li::after {
	content: " / ";
}

.artist-list-line li:last-child::after {
	content: "";
}

/*====================================
TAB
=====================================*/
.tab-wrap .tab-menu {
	margin: 0 auto 24px auto;
}

.tab-wrap .tab-menu ul.swiper-wrapper li.swiper-slide {
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	position: relative;
	z-index: 1;
	padding: 12px 0;
	background: var(--colorBgSub);
	border-right: solid 1px var(--colorBgSub);
	height: auto;
	text-align: center;
}

.tab-wrap .tab-menu .swiper-slide.swiper-slide-thumb-active {
	color: var(--colorSub);
}

/* col-2 */
.tab-wrap .tab-menu.col-2 ul.swiper-wrapper li.swiper-slide:nth-child(2) {
	border-right: none;
}

.tab-wrap .tab-menu.col-2 .swiper-slide:first-child.swiper-slide-thumb-active~.tabs-presentation-slider {
	transform: translateX(0) scaleX(calc(1 / 2));
}

.tab-wrap .tab-menu.col-2 .swiper-slide:nth-child(2).swiper-slide-thumb-active~.tabs-presentation-slider {
	transform: translateX(calc(100% / 2)) scaleX(calc(1 / 2));
}

/* col-3 */
.tab-wrap .tab-menu.col-3 ul.swiper-wrapper li.swiper-slide:nth-child(3) {
	border-right: none;
}

.tab-wrap .tab-menu.col-3 .swiper-slide:first-child.swiper-slide-thumb-active~.tabs-presentation-slider {
	transform: translateX(0) scaleX(calc(1 / 3));
}

.tab-wrap .tab-menu.col-3 .swiper-slide:nth-child(2).swiper-slide-thumb-active~.tabs-presentation-slider {
	transform: translateX(calc(100% / 3)) scaleX(calc(1 / 3));
}

.tab-wrap .tab-menu.col-3 .swiper-slide:nth-child(3).swiper-slide-thumb-active~.tabs-presentation-slider {
	transform: translateX(calc(100% / 3 * 2)) scaleX(calc(1 / 3));
}

.tab-wrap .tab-menu .tabs-presentation-slider {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	transform-origin: 0 0;
	transition: transform 0.25s;
	background: var(--colorSub);
	z-index: 10;
}

.tab-wrap .tab-menu .tabs-presentation-slider::after {
	position: absolute;
	content: "";
	height: calc(tan(60deg)* 12px / 2);
    width: 36px;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	background: var(--colorSub);
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}

.tab-wrap .tab-content {
	opacity: 1;
	overflow: hidden;
}

@media screen and (min-width: 960px) {
	.tab-wrap .tab-content {
		max-width: 699px;
	}
}


/*====================================
Schedule
=====================================*/
table.schedule-table {
	width: 100%;
	border-bottom: solid 1px var(--colorBgSub);
}

table.schedule-table td {
	border-top: solid 1px var(--colorBgSub);
	vertical-align: middle;
	text-align: center;
}

table.schedule-table td:nth-child(1) {
	padding: 12px 0;
	width: 22%;
}

table.schedule-table td:nth-child(2) {
	padding: 12px 0;
	width: 22%;
}

table.schedule-table td:nth-child(3) {
	text-align: left;
	padding: 12px 8px 12px;
}

table.schedule-table td .day {
	display: block;
	font-size: 11px;
}

table.schedule-table td .time {
	font-size: 12px;
	margin-top: 4px;
}

@media screen and (min-width: 600px) {
	table.schedule-table td:nth-child(1) {
		width: 20%;
	}

	table.schedule-table td:nth-child(2) {
		width: 12%;
	}

	table.schedule-table td {
		text-align: left;
	}

	table.schedule-table td .day {
		display: inline;
		font-size: 12px;
	}

	table.schedule-table td .day::before {
		display: inline;
		content: " ";
	}
}


/*====================================
SNS Link
=====================================*/
.sns-link {
	display: flex;
	justify-content: center;
}

.sns-link a {
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #000;
	width: 48px;
	aspect-ratio: 1 / 1;
	border-radius: 100px;
	margin: 0 8px;
	/*box-shadow: 0 1px 4px 1px var(--colorBgSub);*/
}

.sns-link a img {
	width: 32px;
}

@media screen and (min-width: 960px) {
	.sns-link {
		justify-content: flex-start;
		margin: 0 16px 0 0;
	}
}


/*====================================
Link Box
=====================================*/
.link {
	margin-top: 16px;
}

.link li {
	margin-bottom: 16px;
}

.link li:last-child {
	margin-bottom: 0px;
}

.link li a {
	background: var(--colorBgSub);
	display: block;
	padding: 12px;
}


/*====================================
Access Map
=====================================*/
.access-map .text {
	margin-bottom: 16px;
}

.access-map .gmap iframe {
	width: 100%;
	height: 300px;
	border: 0;
}

/* @media screen and (min-width: 600px) {
	.access-map {
		display: flex;
		justify-content: space-between;
	}

	.access-map>div {
		width: calc((100% - 16px) / 2);
	}

	.access-map .text {
		margin-bottom: 0;
	}

	.access-map .gmap iframe {
		width: 100%;
		aspect-ratio: 4 / 3;
		height: auto;
	}
} */


/*====================================
Assist
=====================================*/
#assist .assist-inner {
	margin: 0 0 32px 0;
	padding: 16px;
	background-color: var(--colorBgSub);
	color: #fff;
}
#assist .assist-inner.bg-none {
	background-color: transparent;
	padding: 0;
}

#assist .assist-inner .button-n-t {
	margin-bottom: 16px;
}

@media screen and (min-width: 960px) {
	#assist .assist-inner .button-n-t {
		width: 100%;
	}
}

@media screen and (max-width: 959px) {
	#assist .assist-inner {
		margin: 32px 16px;
	}
}


/*====================================
Twitter Timeline
=====================================*/
.tw-timeline {
	margin: 16px;
}

@media screen and (min-width: 600px) {
	.tw-timeline {
		width: 600px;
		max-width: calc(100% - 32px);
		margin: 0 auto 32px auto;
	}
}

@media screen and (min-width: 960px) {
	.tw-timeline {
		width: 100%;
		max-width: 100%;
		height: 600px;
	}
}


/*====================================
Fixed Button
=====================================*/
.fixed-btn-wrap {
	position: sticky;
	bottom: 16px;
	background-color: transparent;
	/*max-width: 1100px;*/
	margin: 0 auto;
	z-index: 1;
}

.fixed-btn {
	position: absolute;
	bottom: 0;
	right: 16px;
	opacity: 0;
	transform: scale(0.9);
	transition: all 0.5s;
	z-index: 10;
}

.fixed-btn-wrap.fadein .fixed-btn {
	opacity: 1.0;
	transform: scale(1.0);
	transition: all 0.5s;
}

.fixed-btn a {
	display: block;
	text-align: center;
	color: #FFF !important;
	font-size: 16px;
	font-weight: bold;
	line-height: 1.4em;
	text-decoration: none;
	background-color: #ea7b00;
	border-radius: 100vw;
	padding: 8px 24px;
	box-shadow: 0px 3px 5px -1px rgba(0, 0, 0, 0.2), 0px 6px 10px 0px rgba(0, 0, 0, 0.14), 0px 1px 18px 0px rgba(0, 0, 0, 0.12);
}

@media screen and (min-width: 600px) {
	.fixed-btn {
		right: auto;
		left: 16px;
	}
}

/*====================================
Adjust
=====================================*/
.tL {text-align: left !important;}
.tR {text-align: right !important;}
.tC {text-align: center !important;}
.fL {float: left !important;}
.fR {float: right !important;}

.sp-tL,
.pc-tC {text-align: left !important;}

.mbSS {margin-bottom: 4px !important;}
.mbS {margin-bottom: 8px !important;}
.mbM {margin-bottom: 16px !important;}
.mbL {margin-bottom: 24px !important;}
.mbLL {margin-bottom: 32px !important;}

.mb00 {margin-bottom: 0 !important;}
.mb05 {margin-bottom: 5px !important;}
.mb10 {margin-bottom: 10px !important;}
.mb15 {margin-bottom: 15px !important;}
.mb20 {margin-bottom: 20px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb40 {margin-bottom: 40px !important;}
.mb50 {margin-bottom: 50px !important;}
.mb60 {margin-bottom: 60px !important;}
.mb70 {margin-bottom: 70px !important;}
.mb80 {margin-bottom: 80px !important;}

.mt00 {margin-top: 0 !important;}
.mt05 {margin-top: 5px !important;}
.mt10 {margin-top: 10px !important;}
.mt15 {margin-top: 15px !important;}
.mt20 {margin-top: 20px !important;}
.mt30 {margin-top: 30px !important;}
.mt40 {margin-top: 40px !important;}
.mt50 {margin-top: 50px !important;}
.mt60 {margin-top: 60px !important;}
.mt70 {margin-top: 70px !important;}
.mt80 {margin-top: 80px !important;}

.fz10 {font-size: 10px !important;}
.fz11 {font-size: 11px !important;}
.fz12 {font-size: 12px !important;}
.fz13 {font-size: 13px !important;}
.fz14 {font-size: 14px !important;}
.fz15 {font-size: 15px !important;}
.fz16 {font-size: 16px !important;}
.fz18 {font-size: 18px !important;}
.fz20 {font-size: 20px !important;}
.fz22 {font-size: 22px !important;}
.fz24 {font-size: 24px !important;}
.fz28 {font-size: 28px !important;}
.fz32 {font-size: 32px !important;}
.fz36 {font-size: 36px !important;}
.fz40 {font-size: 40px !important;}

.fw500 {font-weight: 500 !important;}

.caution {
	color: var(--colorCaution) !important;
}

.underline {
	text-decoration: underline !important;
	text-underline-offset: 0.25em;
}

.inlblock {
	display: inline-block !important;
}

.sp,
.pc-none {
	display: inline;
}

.pc,
.sp-none {
	display: none;
}

@media screen and (min-width: 600px) {
	.sp-tL,
	.pc-tC {text-align: center !important;}

	.sp,
	.pc-none {
		display: none;
	}

	.pc,
	.sp-none {
		display: inline;
	}
}

@media screen and (min-width: 480px) {
	.sp480 {
		display: none;
	}
}

@media screen and (min-width: 600px) {
	.sp600 {
		display: none;
	}
}

@media screen and (min-width: 728px) {
	.sp728 {
		display: none;
	}
}