@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
	text-align: left;
	overflow-x: hidden;
	transform-origin: top center;
	position: relative;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

:root {
  --red: #FF1C00;
  --ink: #0F1219;
  --paper: #fff;
  --left-width: 50vw;
  --column-max: 720px;
  --wave-line: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='6' viewBox='0 0 11 6'%3E%3Cpath d='M0 3 C1.5 1.5 4 1.5 5.5 3 C7 4.5 9.5 4.5 11 3' fill='none' stroke='%23f22b18' stroke-width='1' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 11px 6px repeat-x;
}

* {
  box-sizing: border-box;
}
html {
	scroll-behavior: smooth;
	scrollbar-gutter: stable both-edges;
}
body {
	margin: 0;
	color: var(--ink);
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 16px;
	line-height: 1.7;
	background-color: var(--paper);
	background-image: url("../img/noise-tile.png");
	background-repeat: repeat;
	background-size: 128px 128px;
}
img {
	display: block;
	max-width: 100%;
}
a {
	color: inherit;
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}
button {
	font: inherit;
}
.sp-only {
	display: none;
}

/* PC：左を固定し、右だけを通常スクロールさせる */
.key-visual {
	position: fixed;
	inset: 0 auto 0 0;
	width: var(--left-width);
	height: 100svh;
	border: 4px solid var(--red);
	overflow: hidden;
	background-color: var(--paper);
	background-image: url("../img/noise-tile.png");
	background-repeat: repeat;
	background-size: 128px 128px;
}
.key-visual img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: calc(100% - clamp(24px, 6vw, 60px));
	height: calc(100svh - clamp(24px, 6vw, 60px));
	max-width: none;
	max-height: none;
	object-fit: contain;
	object-position: center;
	transform: translate(-50%, -50%);
}
.page-column {
	width: min(50vw, var(--column-max));
	min-height: 100vh;
	margin-left: var(--left-width);
	padding: 0 40px;
	/*background-color: var(--paper);
	background-image: url("../img/noise-tile.png");
	background-repeat: repeat;
	background-size: 128px 128px;*/
}
.page-inner {
	width: 100%;
}
/*.section-pad {
	padding-inline: 10px;
}*/

/**********************
Header / menu
**********************/
#top-head {
	position: fixed;
	z-index: 100;
	top: 0;
	left: var(--left-width);
	width: min(50vw, var(--column-max));
	height: 64px;
	pointer-events: none;
}
.header-inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 100%;
	height: 64px;
	padding: 12px 18px;
}
.nav-right {
	position: relative;
	z-index: 102;
	display: flex;
	align-items: center;
	gap: 10px;
	pointer-events: auto;
}
.sp-ticket {
	display: none;
}
#nav_toggle {
	position: relative;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: var(--red);
	cursor: pointer;
}
#nav_toggle span {
	position: absolute;
	left: 12px;
	width: 16px;
	height: 2px;
	border-radius: 2px;
	background: #fff;
	transition: transform .35s ease, opacity .25s ease, top .35s ease;
}
#nav_toggle span:nth-child(1) {
	top: 13px;
}
#nav_toggle span:nth-child(2) {
	top: 19px;
}
#nav_toggle span:nth-child(3) {
	top: 25px;
}
.open #nav_toggle span {
	width: 30px;
}
.open #nav_toggle span:nth-child(1) {
	top: 14px;
	transform: rotate(35deg);
}
.open #nav_toggle span:nth-child(2) {
	opacity: 0;
}
.open #nav_toggle span:nth-child(3) {
	top: 14px;
	transform: rotate(-35deg);
}
.header-nav {
	position: fixed;
	z-index: 101;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: clamp(70px, 10vw, 150px);
	width: 100%;
	padding: 64px;
	background-color: var(--paper);
	background-image: url("../img/nav-bg.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	color: var(--red);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .3s ease, visibility .3s ease;
}
.open .header-nav {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
.header-nav-list {
	width: min(25vw, 320px);
	margin: 0;
	padding: 0;
	list-style: none;
	text-align: left;
}
.header-nav-logo {
	display: block;
	width: min(36vw, 420px);
	height: auto;
}
.header-nav-list li + li {
	margin-top: 22px;
}
.header-nav-list li {
	border-bottom: 1px solid var(--red);
}
.header-nav-list a {
	position: relative;
	display: block;
	padding-bottom: 22px;
	text-decoration: none;
}
.header-nav-list img {
	width: auto;
	height: 20px;
	margin: 0;
	transition: opacity .2s ease;
}
.header-nav-list .nav-comingsoon img {
	height: 22px;
}
.header-nav-list .nav-image-hover {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}
.header-nav-list a:hover .nav-image-default,
.header-nav-list a:focus-visible .nav-image-default {
	opacity: 0;
}
.header-nav-list a:hover .nav-image-hover,
.header-nav-list a:focus-visible .nav-image-hover {
	opacity: 1;
}
.open .sp-ticket {
	display: none;
}
.open #nav_toggle {
	background: transparent;
}
.open #nav_toggle span {
	left: 5px;
	width: 30px;
	background: var(--red);
}
.open #nav_toggle span:nth-child(1) {
	top: 14px;
	transform: rotate(40deg);
}
.open #nav_toggle span:nth-child(3) {
	top: 14px;
	transform: rotate(-40deg);
}

/**********************
Content
**********************/

/*h2*/
#news h2,#ticket h2 {
	height: 32px;
	width: auto;
}
#sec-x h2 {
	height: 37px;
	width: auto;
}
#news h2 img,#ticket h2 img,#cast h2 img,#access h2 img,#sec-x h2 img{
	height: 100%;
	width: auto;
}
#cast h2 {
	height: 42px;
	width: auto;
}
#access h2 {
	height: 82px;
	width: auto;
}

/**********************
メインビジュアル
**********************/
.hero {
	display: grid;
	place-items: center;
	min-height: 56vh;
	padding-top: 190px;
	padding-bottom: 140px;
}
.hero-logo {
	width: min(90%);
}
.hero-picture {
	display: contents;
}
.section-title {
	margin: 0;
	line-height: 1;
	text-align: center;
}
.section-title img {
	width: auto;
	height: clamp(23px, 2.5vw, 34px);
	margin-inline: auto;
}
#ticket > .section-title {
	display: flex;
	align-items: center;
	gap: clamp(12px, 2vw, 24px);
}
#ticket > .section-title::before,
#ticket > .section-title::after {
	content: "";
	flex: 1;
	height: 6px;
	background: var(--wave-line);
}
.ticket-sticker {
	position: fixed;
	z-index: 90;
	bottom: 30px;
	right: 10px;
	display: block;
	width: 190px;
	height: 100px;
	/*width: clamp(90px, 10vw, 130px);
	aspect-ratio: 2.6 / 1;
	transform: translateY(-50%);*/
}
.ticket-sticker img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: contain;
	transition: opacity .25s ease;
}
.ticket-sticker-hover {
	opacity: 0;
}
.ticket-sticker:hover .ticket-sticker-default,
.ticket-sticker:focus-visible .ticket-sticker-default {
	opacity: 0;
}
.ticket-sticker:hover .ticket-sticker-hover,
.ticket-sticker:focus-visible .ticket-sticker-hover {
	opacity: 1;
}

/**********************
ニュース
**********************/
.news {
	padding-bottom: 70px;
}
.news-list {
	margin: 18px 0 0;
	font-size: 11px;
}
.news-list div {
	display: grid;
	grid-template-columns: 86px 1fr;
	gap: 12px;
	padding: 8px 0;
	border-bottom: 1px solid #959595;
	align-items: center;
}
.news-list dt, .news-list dd { 
	margin: 0; 
	font-size: 14px;
	line-height: 1.2rem;
}

.news-list dt {
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
}

.content-section {
	position: relative;
	padding-top: 30px;
	padding-bottom: 48px;
	text-align: center;
}
.content-section + .content-section::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 6px;
	background: var(--wave-line);
}
#ticket::before {
	display: none;
}

/**********************
キャスト
**********************/
.cast-photo {
	width: min(72%, 400px);
	margin: 28px auto 0;
}
.cast-photo img {
	width: 100%;
}
.cast-photo figcaption {
	margin: 4px 0 8px;
	font-weight: 700;
}

/**********************
チケット
**********************/
.ticket-summary {
	margin-top: 32px;
	font-weight: 700;
	line-height: 1.55;
}
.ticket-summary h3 {
	margin: 0px 0 12px;
}
.ticket-summary p {
	margin: 0px 0;
}
.ticket-summary h3 {
	font-size: 26px;
	font-weight: bold;
	line-height: 1.3;
}
.ticket-summary .date {
	font-family: "Montserrat", sans-serif;
	font-size: 24px;
	font-weight: 600;
}
.ticket-summary .date span {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 18px;
	font-weight: bold;
}
.ticket-summary .time {
	font-size: 18px;
}
.ticket-summary .time span  {
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	font-size: 20px;
}
.ticket-summary .price {
	margin-top: 22px;
	font-size: 18px;
}
.ticket-summary .price strong {
	font-family: "Montserrat", sans-serif;
	font-size:32px;
	font-weight: 600;
}
.ticket-summary .price span {
	font-size: 16px;
}
.ticket-summary .place a {
	color: var(--red);
	font-size: 16px;
}
.ticket-summary .place a::before {
	content: "";
	background: url("../img/map-pin.svg");
	width: 10px;
	height: 14px;
	display: inline-block;
	background-size: contain;
}
.ticket-summary .annotation {
		text-align: center;
		font-weight: 400;
	}
.text-block {
	margin-top: 38px;
	font-size: 12px;
	text-align: left;
	line-height: 1.85;
}
.text-block h3, .text-block h4 {
	text-align: center;
}
.text-block h3 {
	font-size: 22px;
	margin: 0;
	font-weight: bold;
}
.text-block h4 {
	font-size: 18px;
	font-weight: 500;
	margin: 40px auto 8px;
}
.text-block ul {
	font-size: 14px;
	text-align: left;
	margin: 0;
	list-style: disc;
	padding-left: 1em;
}
.text-block ul ul {
	list-style: none;
	padding-left: 0;
}
.rule-top {
	font-size: 16px;
	position: relative;
	padding-top: 34px;
	text-align: center;
}
.rule-top::before {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	height: 6px;
	background: var(--wave-line);
}
.rule-top p {
	margin: 0 0;
}
.rule-top .ticket-period {
	font-weight: bold;
	padding-top: 10px;
	line-height: 1.2rem;
}
.ticket-purchase-button {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
    width: 200px;
    height: 44px;
    margin-top: 16px;
    border-radius: 10px;
	background: #0256dc;
	color: #fff;
	font-size: 16px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none;
	transition: background-color .25s ease;
}
.ticket-purchase-button::before {
	content: "";
	position: absolute;
	inset: 6px;
	border: 1px solid #fff;
	border-radius: 9px;
	pointer-events: none;
}
.ticket-purchase-button img {
	width: 14px;
	height: auto;
}
.ticket-purchase-button:hover,
.ticket-purchase-button:focus-visible {
	background-color: var(--red);
}
.rule-top .contact-1 h5 {
    font-weight: 500;
}
.link-Identity-doc a::after {
	content: "";
	background: url("../img/arrow-1.svg");
	display: inline-block;
	width: 8px;
	height: 16px;
	background-size: contain;
}
.link-Identity-doc a span {
	border-bottom: 1px solid var(--red);
}
.identity-accordion {
	margin: 0px 0 12px;
}
.identity-accordion summary {
	list-style: none;
}

.identity-accordion summary::marker {
	content: "";
}

/* Safariなどへの対応 */
.identity-accordion summary::-webkit-details-marker {
	display: none;
}
.identity-accordion summary span {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--ink);
	font-weight: 500;
	text-decoration: underline;
	text-decoration-color: var(--red);
	text-underline-offset: 5px;
	cursor: pointer;
	border-bottom: none;
}

.identity-accordion summary::-webkit-details-marker {
	display: none;
}

.identity-accordion summary::after {
	content: "▼";
	display: inline-block;
	margin-left: 6px;
	color: var(--red);
	font-size: 0.75em;
	text-decoration: none;
}

.identity-accordion[open] summary::after {
	content: "▲";
	background: none;
	color: var(--red);
	font-size: 0.75em;
	text-decoration: none;
	border-bottom: none;
}

.identity-accordion-content {
	margin: 14px 0 0 8px;
	padding-left: 16px;
	border-left: 1px solid #aaa;
}

.identity-accordion-content p {
	margin: 8px 0;
}

.text-block .identity-accordion-content ul {
	margin: 0;
	padding-left: 1.5em;
	list-style: disc;
}
.text-block .identity-accordion-content .identitynote {
	padding-left: 0em;
    list-style: none;
	padding-bottom: 4px;
}

.identity-accordion-content li + li {
	margin-top: 4px;
}
.rule-top .contact-1 {
	text-align: center;
	line-height: 1.5em;
}
.rule-top .contact-1 h5 {
	text-align: center!important;
	font-weight: bold;
	margin: 30px auto 0;
}
.rule-top .contact-1 p {
	font-size: 14px;
}

/**********************
グッズ
**********************/
#sec-x {
	padding: 60px 0;
}

#sec-x .cms {
	font-family: "Montserrat", sans-serif;
	font-size: 24px;
	font-weight: 700;
	text-align: center;
	margin-top: 30px;
}

/**********************
アクセス
**********************/
#access.section-pad {
	padding-top: 110px;
} 
.access > h3 {
	margin: 14px 0 0;
	color: var(--red);
	font-size: 20px;
	font-weight: bold;
}
.access > h3 a::before {
    content: "";
    background: url(../img/map-pin.svg);
    width: 12px;
    height: 17px;
    display: inline-block;
    background-size: contain;
}
.access > p {
	margin: 4px 0 0;
}
.map {
	width: 77%;
	margin: 8px auto;
	aspect-ratio: 525 / 300;
	overflow: hidden;
}
.map iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}
.station {
	line-height: 1.6;
	font-weight: 500;
}
.station strong {
	font-weight: bold;
}
.exit {
	font-size: 14px;
	text-align: left;
}
.site-footer {
	padding: 24px 20px 45px;
	color: #666;
	text-align: center;
}
.text-block-bottom h4 {
	font-size: 20px;
	font-weight: bold;
	margin: 110px 0 16px;
}
.text-block-bottom ul {
	font-weight: 500;
	font-size: 14px;
	text-align: left;
	list-style: disc;
	padding-left: 1em;
}
.text-block-bottom .text-01 {
	font-size: 14px;
	margin-top: 1em;
	font-weight: 500;
}
.foot-info {
	text-align: center;
	font-size: 14px;
	margin: 40px auto;
}

/* 768px以下：左を消し、右カラムだけを全幅表示 */
@media (max-width: 768px) {
  body {
    background: var(--paper);
    font-size: 12px;
  }
	.sp-only {
		display: block;
	}
	.key-visual {
		display: none;
	}
	.page-column {
		width: 100%;
		max-width: none;
		margin-left: 0;
		padding: 0;
	}
	#top-head {
		left: 0;
		width: 100%;
	}
	.header-nav {
		inset: 0;
		align-items: flex-start;
		gap: 0;
		width: 100%;
		padding: clamp(110px, 11.5vh, 176px) 0 0;
	}
	.header-nav-logo {
		display: none;
	}
	.header-nav-list {
		width: 78%;
	}
	.open .nav-right {
		position: fixed;
		top: 14px;
		right: 14px;
	}
	.header-inner {
		padding: 12px 14px;
	}
	.sp-ticket {
		display: block;
		width: 79px;
		height: 43px;
		line-height: 0;
	}
	.sp-ticket img {
		width: 100%;
		height: 100%;
		object-fit: contain;
	}
	#nav_toggle {
		width: 40px;
		height: 40px;
	}
	#nav_toggle span {
		left: 12px;
		width: 16px;
		height: 2px;
		border-radius: 2px;
	}
	#nav_toggle span:nth-child(1) {
		top: 13px;
	}
	#nav_toggle span:nth-child(2) {
		top: 18.5px;
	}
	#nav_toggle span:nth-child(3) {
		top: 24px;
	}
	.open #nav_toggle span:nth-child(1),
	.open #nav_toggle span:nth-child(3) {
		top: 14px;
	}
	.ticket-sticker {
		display: none;
	}
	#access.section-pad {
		padding-top: 40px;
	}
	.map {
		width: 100%;
	}
	.station {
		font-size: 14px;
	}
	.exit {
		font-size: 12px;
	}
	.text-block-bottom h4 {
		font-size: 18px;
		font-weight: 500;
		margin: 64px 0 16px;
	}
	.text-block-bottom p {
		text-align: left;
	}
	.section-pad {
		padding-inline: 14px;
	}
	.hero {
		min-height: 42vh;
		padding-inline: 0px;
		padding: 56px 0px;
	}
	.hero-picture {
		display: block;
		width: 100%;
	}
	.hero-logo {
		width: 100%;
	}
	.news {
		padding-bottom: 28px;
	}
	.news-list {
	margin: 8px 0 0;
}
	.content-section {
		padding-top: 28px;
		padding-bottom: 58px;
	}
	.content-section + .content-section::before {
		right: clamp(20px, 8vw, 46px);
		left: clamp(20px, 8vw, 46px);
	}
	#news h2,
	#ticket h2 {
		height: 25px;
	}
	#sec-x h2 {
		height: 30px;
	}
	#cast h2 {
		height: 37px;
	}
	#access h2 {
		height: 71px;
	}
	#cast {
		padding-inline: 0;
	}
	.cast-photo {
		width: 100%;
		font-size: 18px;
		margin: 16px auto 0;
	}
	.cast-photo img {
		height: auto;
		aspect-ratio: auto;
		object-fit: contain;
	}
	#ticket {
		margin-inline: 10px;
		padding-top: 0;
		border: 1px solid var(--red);
		scroll-margin-top: 80px;
	}
	#ticket > .section-title {
		display: block;
		width: max-content;
		margin-inline: auto;
		padding-inline: 8px;
		background: var(--paper);
		transform: translateY(-50%);
	}
	#ticket > .section-title::before,
	#ticket > .section-title::after,
	#access::before {
		display: none;
	}
	.ticket-summary .price strong {
		font-size: 24px;
	}
	.text-block h3 {
		font-size: 20px;
	}
	.text-block {
		font-size: 14px;
	}
	.ticket-summary .price {
		margin-top: 24px;
	}
	.ticket-summary h3 {
		font-size: 26px;
	}
	.ticket-summary h3 span {
		font-size: 20px;
	}
	.rule-top .contact-1 h5 {
		font-weight: 500;
	}
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  #nav_toggle span, .header-nav {
    transition: none;
  }
}
