@charset "UTF-8";

:root{
	--color-primary: #006f92;
	--color-primary-rgb: 0,111,146;
	--color-contrast: #fff;
	--color-contrast-rgb: 255,255,255;
	--color-secondary: #deb85b;
	--color-secondary-rgb: 222,184,91;
	--color-accent: #f7b52c;
	--color-accent-rgb: 247,181,44;
	--color-bg: #000;
	--color-bg-rgb: 0,0,0;
	--transition-default: all 0.4s ease; 
}


/* !foundation */
/* --------------------------- */
html,body {
	-webkit-font-feature-settings: "kern" 1, "palt" 1;
	font-feature-settings: "kern" 1, "palt" 1;
	-webkit-font-variant-ligatures:none;
	font-variant-ligatures:none;
}
body {
	color: var(--color-contrast);
	background: var(--color-bg);
	overflow-x: hidden;
	position: relative;
	text-align: center;
}
* {
	box-sizing: border-box;
}
a,
a img {
	color: var(--color-primary);
	transition: var(--transition-default);
}
a img {
	opacity: 1;
	transform: translate3d(0, 0, 0);
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
a:visited {
	color: rgba(var(--color-primary-rgb), .875);
}
a:hover {
	color: var(--color-secondary);
	text-decoration: none;	
}
a:hover img {
	opacity: 0.6;
}
a.noborder {
	text-decoration: none;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
hr {
	border: 0;
	height: 1px;
	background-image: linear-gradient(90deg, rgba(var(--color-primary-contrast-rgb),0) 0%, rgba(var(--color-primary-contrast-rgb),.5) 50%, rgba(var(--color-primary-contrast-rgb),0) 100%);
	margin: 5rem auto;
	clear: both;
}
.btn,
.btn:visited {
	width: fit-content;
	display: block;
	text-align: center;
	text-decoration: none;
	border: solid 1px var(--color-primary-contrast);
	padding: 0.5em 1.5em;
	color: var(--color-primary-contrast);
	background: var(--color-primary);
}
.btn:hover {
	background: var(--color-primary);
	border-color:  var(--color-primary);
	color: var(--color-primary-contrast);
}
label.btn {
	transition: var(--transition-default);
	cursor: pointer;
}

/* material
--------------------------- */
.clearFloat {
	clear: both;
}
.alignleft {
	float: left;
	margin: 0.375em 1.75em 1.75em 0;
}
.alignright {
	float: right;
	margin: 0.375em 0 1.75em 1.75em;
}
.aligncenter {
	clear: both;
	display: block;
	margin: 0.375em auto;
	text-align: center!important;
}
.sp {
	display: none;
}
.flexCont {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
ul[class],ol[class] {
	list-style: none;
	margin: 0 auto;
	padding: 0;
}
.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}
.clearfix:after {
	clear: both;
}
.tate {
	-webkit-font-feature-settings: 'palt' 0;
	font-feature-settings: 'palt' 0;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}
/* !font */
/* --------------------------- */
.wf-noto-r, body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.wf-noto-serif-r, .contTitle {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.txtSdw {
	text-shadow: 0 0 40px rgba(var(--color-accent-rgb),.9),0 0 30px rgba(var(--color-accent-rgb),.9),0 0 20px rgba(var(--color-accent-rgb),.9),0 0 10px rgba(var(--color-accent-rgb),.9);
}
.txtSdwMin {
	text-shadow: 0 0 20px rgba(var(--color-accent-rgb),.9),0 0 15px rgba(var(--color-accent-rgb),.9),0 0 10px rgba(var(--color-accent-rgb),.9),0 0 5px rgba(var(--color-accent-rgb),.9);
}
.capsS {
	font-size: 0.8em;
}
.capsL {
	font-size: 1.5em;
}
.shadow {
	filter: drop-shadow(0 0 20px rgba(var(--color-primary-rgb), .875));
}
/* !layout */
/* --------------------------- */
.bgCont {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	overflow: hidden;
	z-index: -10;
}
.bgImage {
	width: 100%;
	height: auto;
	min-height: 200vh; /* ページより縦に長く */
	object-fit: cover;
	will-change: transform;
}

/* !hero */
/* --------------------------- */
.heroImg {
	width: 100%;
	min-height: 100lvh;
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	margin: 0 auto 3.5rem;
	
	& > * {
		position: relative;
		z-index: 100;
	}
	
	&::before,
	&::after {
		content: "";
		display: block;
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 1;
	}
	&::before {
		background-color: rgba(var(--color-bg-rgb), .5);
		background-size: auto 100%;
		backdrop-filter: blur(16px);
		z-index: -1;
		opacity: 0;
	}
	.loaded &::before {
		opacity: 1;
		transition: opacity 4.0s ease;
	}
	&::after {
		background: url('../imgs/hero_bg.jpg') center top -2vh no-repeat;
		background-size: auto 110%;
		opacity: 0;
	}
	.loaded &::after {
		opacity: 1;
		transition: opacity 1.6s ease 1.0s;
	}
}
.siteTitle {
	margin: auto auto 1.5lvh;
	line-height: 1;
	
	img {
		width: auto;
		height: 47.5lvh;
	}
	opacity: 0;
	filter: blur(16px);
	
	.loaded & {
		filter: blur(0);
		opacity: 1;
		transition: opacity 2.0s ease 4.0s, filter 2.0s ease 4.0s;
	}
}
.heroCatch {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	pointer-events: none;
	
	img {
		width: auto;
		height: 2.5lvh;
		filter: drop-shadow(2px 2px 4px rgba(var(--color-bg-rgb), .666));
		position: absolute;
		left: 50%;
		
		&:first-of-type {
			height: 3.25lvh;
		}
		opacity: 0;
	}
	.heroCatch1 {
		top: 3lvh;
		translate: -50% 0;
		transform: translateX(3rem);
		
		.loaded & {
			opacity: 1;
			transform: translateX(0);
			transition: opacity 0.6s ease 2.0s, transform 0.6s ease 2.0s;
		}
	}
	.heroCatch2 {
		top: 40%;
		rotate: 90deg;
		translate: 40% 0;
		transform: translateX(3rem);
		
		.loaded & {
			opacity: 1;
			transform: translateX(0);
			transition: opacity 0.6s ease 2.6s, transform 0.6s ease 2.6s;
		}
	}
	.heroCatch3 {
		bottom: 40lvh;
		rotate: -90deg;
		translate: -117% 0;
		transform: translateX(3rem);
		
		.loaded & {
			opacity: 1;
			transform: translateX(0);
			transition: opacity 0.6s ease 3.2s, transform 0.6s ease 3.2s;
		}
	}
}
.heroInfo {
	position: absolute;
	margin: 0;
	bottom: 1.5lvh;
	left: 50%;
	translate: -255% 0;
	
	img {
		width: auto;
		height: 9lvh;
		filter: drop-shadow(2px 2px 4px rgba(var(--color-bg-rgb), .666));
	}
	
	transform: translateY(3rem);
	opacity: 0;
	
	.loaded & {
		opacity: 1;
		transform: translateY(0);
		transition: opacity 0.6s ease 5.6s, transform 0.6s ease 5.6s;
	}
}
.heroStaff {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.3em;
	margin: 0 auto 1em;
	font-size: 2.25lvh;
	font-weight: 700;
	color: var(--color-primary);
	
	dt {
		font-size: 0.5em;
		margin: 0;
	}
	dd {
		margin: 0;
		font-weight: 900;
	}
	
	opacity: 0;
	
	.loaded & {
		opacity: 1;
		transition: opacity 0.6s ease 6.6s;
	}
}

/* !content */
/* --------------------------- */
main {
	position: relative;
}
.content {
	margin: 0 auto;
	padding: 6rem 0;
	position: relative;
}
.contTitle {
	width: fit-content;
	margin: 0 auto 0.75em;
	padding: 0.025em 0.125em 0.1em;
	font-size: 3.75em;
	font-weight: 200;
	line-height: 1;
	position: relative;
	color: rgba(var(--color-primary-rgb), 0);
	width: fit-content;
	
	&.visible {
		transition: color 0.4s ease 0.2s;
		color: rgba(var(--color-primary-rgb), 1);
	}
	
	&::after {
		content: "";
		display: block;
		width: 100%;
		height: 100%;
		position: absolute;
		top: 50%;
		left: 50%;
		translate: -50% -50%;
		background: var(--color-contrast);
		z-index: -1;
		scale: 0 1;
		transform-origin: left top;
	}
	&.visible::after {
		transition: scale 0.4s ease;
		scale: 1 1;
	}
}
.contBody {
	width: 990px;
	max-width: 90vw;
	margin-inline: auto;
}

.topicsList {
	width: 34em;
	max-width: 90%;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 7.5em 1fr;
	font-size: 1.125em;
	line-height: 1.5;
	text-align: left;
	text-shadow: 1px 1px 4px rgba(var(--color-primary-rgb), .75);
}
.topicsList dt {
	margin: 0;
	padding: 0.5em 1em;
	border-bottom: solid 1px rgba(var(--color-contrast-rgb), .5);
	letter-spacing: 0.1em;
}
.topicsList dd {
	margin: 0;
	padding: 0.5em 1em;
	border-bottom: solid 1px rgba(var(--color-contrast-rgb), .5);
	
	a, a:visited {
		color: var(--color-accent);
	}
}

.introLogo {
	margin: 0 auto 2rem;
	opacity: 0;
	translate: 0 1em;
	
	&.visible {
		opacity: 1;
		translate: 0 0;
		transition: opacity 0.4s ease-in-out, translate 0.4s ease-in-out;
	}
}
.introTxt {
	font-size: 1.25em;
	line-height: 2.125;
	white-space: nowrap;
	font-weight: 600;
	margin: 0 auto 0.875em;
	letter-spacing: 0.1em;
	text-indent: 0.1em;
	text-shadow: 1px 1px 4px rgba(var(--color-primary-rgb), .75);
}
.introTxt.invisible {
	opacity: 0;
	translate: 0 1em;
}
.introTxt.visible {
	opacity: 1;
	translate: 0 0;
	transition: opacity 0.4s ease-in-out, translate 0.4s ease-in-out;
}

.castItem {
	margin: 0 auto 5rem;
	position: relative;
	z-index: 10;
	figcaption {
		margin: -0.75em 0 0;
		font-size: 2.5em;
		font-weight: 800;
		letter-spacing: 0.25em;
		text-indent: 0.25em;
		text-shadow: 1px 4px 8px rgba(var(--color-primary-rgb), .75);
		
		.capsS {
			margin-top: 0.25em;
			font-size: 0.625em;
			display: block;
			letter-spacing: 0.15em;
			text-indent: 0.15em;
		}
	}
	&.invisible {
		opacity: 0;
		translate: 0 1.5rem;
	}
	&.visible {
		opacity: 1;
		translate: 0 0;
		transition: opacity 0.3s ease-in-out, translate 0.3s ease-in-out;
	}
}
.castWrap {
	position: relative;
	max-width: 90vw;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	margin-inline: auto;
	.castItem {
		margin-inline: 0;
	}
}
.castOther {
	position: absolute;
	right: 0;
	bottom: 6rem;
	font-size: 1.375em;
	font-weight: 600;
	text-shadow: 1px 4px 8px rgba(var(--color-primary-rgb), .75);
	&.invisible {
		opacity: 0;
		translate: 0 1.5rem;
	}
	&.visible {
		opacity: 1;
		translate: 0 0;
		transition: opacity 0.3s ease-in-out, translate 0.3s ease-in-out;
	}
}
.staffList {
	font-size: 1.125em;
	line-height: 1;
	text-shadow: 1px 4px 8px rgba(var(--color-primary-rgb), .75);
	margin: 0 auto;
	
	dt {
		margin: 0 auto 0.5em;
		opacity: 0.8;
	}
	dd {
		font-weight: 700;
		font-size: 1.5em;
		margin: 0 auto 1.75em;
	}
}
.staffListWrap {
	max-width: 36em;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}

.ticketBody {
	margin: 0 auto;
	padding: 3rem 1.5rem;
	width: min(800px, 90vw);
	background: rgba(var(--color-bg-rgb), .333);
	position: relative;
	
	&::after {
		content: "";
		display: block;
		width: calc(100% - 12px);
		height: calc(100% - 12px);
		position: absolute;
		top: -6px;
		left: -6px;
		pointer-events: none;
		border: 12px solid var(--color-contrast);
		filter: drop-shadow(2px 2px 8px rgba(0,0,0,.85));
	}
}
.eventHall {
	font-size: 3em;
	line-height: 1;
	font-weight: 900;
	margin: 0 auto 0.5em;
	a, a:visited {
		color: var(--color-contrast);
		text-decoration: none;
	}
	a:hover {
		color: var(--color-accent);
	}
}
.eventDay {
	font-size: 2.25em;
	line-height: 1.375;
	font-weight: 700;
	margin: 0 auto 0.5em;
}
.eventDay .capsLarge {
	font-size: 1.75em;
	font-weight: 900;
}
.eventTxt {
	font-size: 0.8125em;
	margin: 0 auto 2em;
}
.eventContact {
	margin: 0 auto;
	font-weight: 700;
}
.eventContact dt {
	font-size: 1.25em;
	width: fit-content;
	background: var(--color-primary);
	color: var(--color-contrast);
	border: solid 1px var(--color-contrast);
	padding: 0.25em 1.5em 0.375em;
	margin: 0 auto 0.5em;
	min-width: 9rem;
}
.eventContact dd {
	margin: 0 auto;
	font-size: 1.75em;
	line-height: 1.375;
	letter-spacing: 0.1em;
	text-indent: 0.1em;
	
	a, a:visited {
		color: var(--color-primary-contrast);
	}
	a:hover {
		color: var(--color-accent);
	}
}
.eventContact dd .capsS {
	font-size: 0.666em;
	display: block;
	letter-spacing: 0;
	text-indent: 0;
}
.eventDetail {
	margin: 3rem auto 1.5rem;
	font-weight: 700;
	dt {
		font-size: 1.25em;
		line-height: 1;
		width: fit-content;
		background : var(--color-primary);
		padding: 0.375em 1em 0.5em;
		margin: 0 auto 0.75em;
		min-width: 9rem;
		color: var(--color-contrast);
		border: solid 1px var(--color-contrast);
	}
	dd {
		margin: 0 auto 1.5em;
		font-size: 2.5em;
		line-height: 1.375;
		.capsS {
			font-size: 0.5em;
		}
	}
}

ul.noticeList {
	max-width: 43em;
	width: fit-content;
	font-size: 0.875em;
	line-height: 1.5;
	text-align: left;
	margin: 1em auto 2em;
	li {
		margin-bottom: 0.25em;
		padding-left: 1em;
		text-indent: -1em;
		&:before {
			content: "※";
		}
	}
}

.tableWrap {
	max-width: 440px;
	margin: 0 auto;
}
.eventSchedule {
	margin: 0 auto 1em 0;
	border-collapse: collapse;
	border-spacing: 0;
	white-space: nowrap;
}
.eventSchedule th {
	line-height: 1.375em;
	border: solid 1px rgba(var(--color-contrast-rgb), .5);
}
.eventSchedule th .capsSmall {
	font-size: 0.666em;
	vertical-align: top;
	line-height: 1.75em;
}
.eventSchedule th .week {
	width: 1.625em;
	height: 1.625em;
	font-size: 0.5em;
	line-height: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--color-contrast);
	margin: 0 auto;
	color: var(--color-bg);
	box-shadow: 0 0 0 1px var(--color-txt);
}
.eventSchedule th .sat {
	color: #005ac6;
}
.eventSchedule th .holi {
	color: #c80000;
}
.eventSchedule thead th {
	font-size: 1.75em;
	padding-bottom: 0.5rem;
	border-top: none;
	
	&:first-of-type {
		border-left: none;
	}
	&:last-of-type {
		border-right: none;
	}
}
.eventSchedule tbody th {
	padding-right: 0.5rem;
	line-height: 1;
	border-left: none;
}
.eventSchedule td {
	border: solid 1px rgba(var(--color-contrast-rgb), .5);
	position: relative;
	width: 3rem;
	font-size: 1.375em;
	line-height: 1;
	padding: 0.375em 0 0.5em;
	text-shadow: 0 0 4px rgba(0,0,0,.5);
	
	&:last-of-type {
		border-right: none;
	}
}
.eventSchedule td span {
	position: relative;
	z-index: 100;
	&.kashikiri {
		color: var(--color-contrast);
		background: #999;
		display: inline-block;
		font-size: 0.625em;
		padding: 0.25em 0.25em 0.375em;
		white-space: nowrap;
	}
}

ul.ticketPlayguideList {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 2rem;
	margin: 0 auto 2rem;
	max-width: 600px;
}

.contact .contTitle {
	font-size: 2.25em;
	font-weight: 900;
	line-height: 1.5;
}
.contactTitle {
	font-size: 1.625em;
	line-height: 1;
	font-weight: 700;
	margin: 0 auto 0.75em;
	padding: 0.5em 0 0.625em;
	border: solid 2px var(--color-primary);
	border-radius: 100vmax;
	width: 320px;
	max-width: 90vw;
}
* + .contactTitle {
	margin-top: 1.666em;
}
.contactTxt {
	font-size: 2.125em;
	line-height: 1.25;
	font-weight: 700;
	margin: 0 auto 1em;
}
.contactTxt .capsS {
	font-size: 0.666em;
}



/* !footer */
/* --------------------------- */
.gFooter {
	color: var(--color-contrast);
	padding: 1.5em;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 100;
}
.copyright {
	font-size: 1em;
	margin: 0 0.75em;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
	text-shadow: 1px 4px 8px rgba(var(--color-primary-rgb), .75);
}
.copyright .capsL {
	font-size: 1.5625em;
}

/* !sp */
/* --------------------------- */
@media screen and (max-width:767px) {
	/* !sp common */
	/* --------------------------- */
	.floatLeft,
	.floatRight,
	.alignleft,
	.alignright {
		display: block;
		text-align: center;
		float: none;
		margin: 16px auto;
	}
	.nosp {
		display: none;
	}
	.sp {
		display: block;
	}
	.flexCont {
		display: block;
	}
	/* !sp layout */
	/* --------------------------- */
	html {
		font-size: 4vw;
	}
	/* !sp header */
	/* --------------------------- */
	.heroImg {
		min-height: 150vw;
		
		&::after {
			background-size: 110% auto;
		}
	}
	.siteTitle img {
		width: 70%;
		height: auto;
	}
	.heroCatch {
		
		img {
			height: 4vw;
			
			&:first-of-type {
				height: 5vw;
			}
		}
		.heroCatch2 {
			top: 30%;
			translate: 30% 0;
		}
		.heroCatch3 {
			bottom: 66vw;
			translate: -110% 0;
		}
	}
	.heroInfo {
		left: 0.5rem;
		bottom: 0.5rem;
		translate: 0 0;
		img {
			width: 20vw;
			height: auto;
		}
	}
	.heroStaff {
		font-size: 0.875rem;
	}
	/* !sp main */
	/* --------------------------- */
	.contTitle {
		font-size: 2.5em;
	}
	.topicsList {
		font-size: 0.875em;
		grid-template-columns: 7em 1fr;
	}
	.topicsList dt {
		letter-spacing: 0;
	}
	.topicsList dd {
		padding: 0.5em 0.75em;
	}
	.introTxt {
		font-size: 1em;
		white-space: normal;
	}
	.castWrap {
		grid-template-columns: 1fr;
		padding: 0 0.75rem;
		gap: 0 0;
		.castItem {
			margin-inline: auto;
		}
	}
	.castOther {
		right: 50%;
		bottom: -2rem;
		transform: translateX(50%);
	}
	.staffList {
		font-size: 0.875em;
	}
	.eventDay {
		font-size: 1.25em;
	}
	.eventHall {
		font-size: 2em;
		line-height: 1.25;
	}
	.eventSchedule {
		font-size: 0.625em;
		max-width: 100%;
	}
	.eventSchedule th {
		line-height: 1.25em;
	}
	.eventSchedule tbody th {
		white-space: nowrap;
	}
	.eventDetail dd {
		font-size: 2.25em;
	}
	.eventContact dd {
		margin: 0 auto;
		font-size: 1.25em;
	}
	ul.ticketPlayguideList {
		gap: 1rem;
	}
	ul.noticeList {
		font-size: 0.75em;
	}
	/* !sp footer */
	/* --------------------------- */
	.gFooter {
		flex-direction: column;
	}
	.copyright {
		margin: 0 auto 1rem;
		font-size: 1em;
	}
}
