@charset "UTF-8";

:root{
	--color-primary: #097b57;
	--color-primary-rgb: 9,123,87;
	--color-contrast: #fff;
	--color-contrast-rgb: 255,255,255;
	--color-secondary: #ff7900;
	--color-secondary-rgb: 255,121,0;
	--color-tertiary: #e6c868;
	--color-tertiary-rgb: 230,200,104;
	--color-accent: #ffff1e;
	--color-accent-rgb: 255,255,30;
	--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-tertiary-rgb),0) 0%, rgba(var(--color-tertiary-rgb),1) 50%, rgba(var(--color-tertiary-rgb),0) 100%);
	margin: 5rem auto;
	clear: both;
	mix-blend-mode: multiply;
}
.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-zen-antique-soft-regular, .siteTitle, ul.gNavList, .contTitle, .andmore {
  font-family: "Zen Antique Soft", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  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 */
/* --------------------------- */

/* !hero */
/* --------------------------- */
.heroImg {
	width: 100%;
	height: calc(100lvh - 5rem);
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	margin: 0 auto;
	
	&::before {
		content: "";
		display: block;
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		z-index: -1;
		background: url('../imgs/hero_bg.jpg') center bottom no-repeat var(--color-contrast);
		background-size: 100% auto;
		opacity: 0;
		mix-blend-mode: multiply;
	}
	.loaded &::before {
		opacity: 1;
		transition: opacity 1.6s ease 1.0s;
	}
}
.siteTitle {
	margin: auto;
	font-size: 2em;
	line-height: 1;
	text-shadow: 0 0 8px rgba(var(--color-bg-rgb), .875);
	
	img {
		width: min(640px, 90vw);
	}
	opacity: 0;
	filter: blur(16px);
	
	.loaded & {
		filter: blur(0);
		opacity: 1;
		transition: opacity 2.0s ease 2.0s, filter 2.0s ease 2.0s;
	}
	
	span {
		opacity: 0;
		display: inline-block;
		translate: 0 0.75em;
		letter-spacing: 0.15em;
		
		.loaded & {
			opacity: 1;
			translate: 0 0;
			transition: opacity 0.6s ease 3.2s, translate 0.6s ease 3.2s, letter-spacing 0.6s ease 3.2s;
			letter-spacing: 0;
		}
	}
}
.heroInfo {
	width: 100%;
	margin: auto 0 0;
	padding: 0.75em 0 1.25em;
	background: rgba(var(--color-secondary-rgb), .75);
	opacity: 0;
	scale: 1 0;
	transform-origin: center bottom;
	
	.loaded & {
		scale: 1;
		opacity: 1;
		transition: opacity 0.5s ease 4.2s, scale 0.5s ease 4.2s;
	}
}
.heroSchedule {
	font-size: 1.75em;
	line-height: 1.25;
	font-weight: 900;
	margin: 0 auto 0.5em;
}
.heroHall {
	font-size: 2.75em;
	line-height: 1;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-indent: 0.1em;
	margin: 0 auto;
}
.gNav {
	width: 100%;
	position: sticky;
	top: 0;
	left: 0;
	background: url('../imgs/nav_bg.jpg') center center no-repeat;
	background-size: cover;
	min-height: 5rem;
	z-index: 1000;
}
ul.gNavList {
	height: 5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.75rem;
	font-size: 1.5em;
	line-height: 1;
	
	li {
		width: 5em;
		height: 80%;
		
		a, a:visited {
			width: 100%;
			height: 100%;
			text-decoration: none;
			display: flex;
			justify-content: center;
			align-items: center;
			background-color: rgba(var(--color-contrast-rgb), .25);
			border-radius: 0.125em;
			color: var(--color-contrast);
			
			&:hover {
				background-color: rgba(var(--color-tertiary-rgb), .75);
			}
		}
	}
}

/* !content */
/* --------------------------- */
main {
	position: relative;
}
.content {
	margin: 0 auto;
	padding: 6rem 0;
	position: relative;
	&::before,
	&::after {
		content: "";
		display: block;
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		z-index: -1;
	}
	&::before {
		background-color: var(--color-primary);
	}
	&::after {
		background: url('../imgs/content_bg_pattern_01.svg') 0 0;
		background-size: 20vw;
		opacity: 0.2;
	}
	
	&:nth-of-type(even) {
		
		&::before {
			background: url('../imgs/content_bg_img_01.jpg') center top no-repeat;
			background-size: cover;
			position: fixed;
			z-index: -10;
		}
		&::after {
			background: rgba(var(--color-contrast-rgb), .5);
			opacity: 1;
		}
	}
	&:last-of-type {
		background-color: rgba(var(--color-bg-rgb), .5);
		
		&::before,
		&::after {
			display: none;
		}
		
	}
}
.contTitle {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 0.25em;
	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: transparent;
	background: linear-gradient(0deg, var(--color-tertiary) 0%, var(--color-contrast) 100%);
	background-clip: text;
	width: fit-content;
	filter: drop-shadow(1px 1px 3px rgba(var(--color-bg-rgb), .5));
	
	&.invisible {
		opacity: 0;
	}
	
	&.visible {
		opacity: 1;
		transition: opacity 0.4s ease 0.2s;
	}
	
	&::before,
	&::after {
		content: "";
		display: block;
		width: 2em;
		height: 1px;
		background-color: var(--color-tertiary);
	}
	
	&.invisible::before,
	&.invisible::after {
		transform: scaleX(0);
	}
	
	&.visible::before,
	&.visible::after {
		transform: scaleX(1);
		transition: transform 0.4s ease 0.4s;
	}
	&.visible::before {
		transform-origin: top right;
	}
	&.visible::after {
		transform-origin: top left;
	}
}
.contBody {
	width: 800px;
	max-width: 90vw;
	margin-inline: auto;
}

.introWrap {
	position: relative;
	width: fit-content;
	max-width: 90vw;
	background-color: rgba(var(--color-secondary-rgb), .8);
	margin: 0 auto;
	padding: 1.75em 1.75em 0.75em;
	border: solid 8px  var(--color-tertiary);
	
	&.invisible {
		opacity: 0;
		translate: 0 1em;
	}
	&.visible {
		opacity: 1;
		translate: 0 0;
		transition: opacity 0.3s ease, translate 0.3s ease;
	}
	&::after {
		content: "";
		display: block;
		width: calc( 100% - 1rem );
		height: calc( 100% - 1rem );
		position: absolute;
		top: 50%;
		left: 50%;
		translate: -50% -50%;
		border: solid 3px var(--color-tertiary);
		pointer-events: none;
		background: url('../imgs/content_bg_pattern_01.svg') 0 0;
		background-size: 20vw;
		opacity: 0.2;
	}
}
.introTxt {
	font-size: 1.25em;
	line-height: 1.875;
	letter-spacing: 0.1em;
	text-indent: 0.1em;
	margin: 0 auto 1em;
	text-shadow: 1px 1px 2px rgba(var(--color-bg-rgb), .25);
	
	.colored {
		display: inline-block;
		background: url('../imgs/bg_gold.jpg') 0 0 no-repeat;
		background-size: cover;
		padding: 0 0.25em;
	}
	
	.colored2 {
		color: var(--color-tertiary);
		font-size: 1.5em;
		letter-spacing: 0;
	}
}

.topicsList {
	width: 34em;
	max-width: 90%;
	margin: 0 auto;
	display: grid;
	row-gap: 0.5rem;
	grid-template-columns: 7.5em 1fr;
	font-size: 1.125em;
	line-height: 1.5;
	text-align: left;
	color: var(--color-bg);
}
.topicsList dt {
	margin: 0;
	padding: 0.5em 1em;
	letter-spacing: 0.1em;
	background-color: rgba(var(--color-contrast-rgb), .7);
	border-radius: 0.75rem 0 0 0.125rem;
}
.topicsList dd {
	margin: 0;
	padding: 0.5em 1em;
	background-color: rgba(var(--color-contrast-rgb), .7);
	border-radius: 0 0.125rem 0.75rem 0;
	
	a, a:visited {
		color: var(--color-primary);
	}
}

.artistDay {
	font-size: 2em;
	line-height: 1;
	color: var(--color-contrast);
	background-color: rgba(var(--color-secondary-rgb), .75);
	width: fit-content;
	margin: 0 auto 1em;
	padding: 0.375em 1.25em 0.575em;
	position: relative;
	
	&::after {
		content: "";
		display: block;
		width: calc(100% - 1rem);
		height: calc(100% - 1rem);
		border: solid 2px var(--color-tertiary);
		position: absolute;
		top: 50%;
		left: 50%;
		translate: -50% -50%;
	}
}
.artistWrap {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	gap: 3%;
	width: min(1200px, 90vw);
	margin: 0 auto 3rem;
}
.artistItem {
	width: min(600px, 33%);
	margin: 0;
	
	& > img {
		width: 100%;
		aspect-ratio: 800 / 600;
		object-fit: contain;
	}
	figcaption {
		position: relative;
		color: var(--color-bg);
		font-size: 2.25em;
		font-weight: 900;
		margin: 1rem auto 0;
		
		small {
			position: absolute;
			top: 0;
			right: 0;
			font-size: 0.75rem;
			font-weight: 700;
			translate: 0 -2.5em;
		}
	}
	img {
		pointer-events: none;
	}
	
	&.invisible {
		opacity: 0;
		translate: 0 2rem;
	}
	&.visible {
		opacity: 1;
		transition: opacity 0.4s ease, translate 0.4s ease 0.4s;
		translate: 0 0;
	}
}
.andmore {
	color: var(--color-primary);
	font-size: 2em;
	margin: 0 auto;
	width: fit-content;
}
.artistNotice {
	font-size: 0.875em;
	line-height: 1;
	color: var(--color-bg);
	margin: 3rem auto 0;
}

.ticketPrice {
	font-size: 2.5em;
	line-height: 1;
	margin: 0 auto 1.5em;
	font-weight: 900;
	
	.capsS {
		font-size: 0.5em;
		font-weight: 700;
	}
}
.ticketPlayguide {
	margin: 0 auto 3rem;
	
	dt {
		margin: 0 auto 0.5em;
		font-size: 1.5em;
		line-height: 1;
		font-weight: 700;
		background-color: var(--color-secondary);
		width: fit-content;
		padding: 0.25em 1em 0.375em;
		border: solid 2px var(--color-tertiary);
	}
	dd {
		margin: 0 auto 1.5rem;
		font-size: 1.5em;
		line-height: 1.5;
		font-weight: 500;
	}
}
ul.bnrList {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1.5rem;
	margin: 1.5rem auto 0;
}
.ticketNotice {
	font-size: 0.875em;
	line-height: 1.5;
	text-align: left;
	width: fit-content;
	text-indent: -1em;
	padding-left: 1em;
	margin: 1em auto 0;
}

.aboutTitle {
	font-size: 1.5em;
	line-height: 1.25;
	margin: 0 auto 1em;
	background: var(--color-tertiary);
	color: var(--color-bg);
	padding: 0.25em 0 0.375em;
	width: 24rem;
	max-width: 90%;
}
ul.aboutList {
	font-size: 0.875em;
	line-height: 1.75;
	text-align: justify;
	font-weight: 500;
	letter-spacing: 0.1em;
	margin: 0 auto 1em;
}
ul.aboutList li {
	margin: 0 0 0.5em;
	padding-left: 1em;
	text-shadow: 0 0 4px var(--color-bg);
	position: relative;
	
	a, a:visited {
		color: var(--color-contrast);
	}
}
ul.aboutList li::before {
	content: "●";
	display: inline-block;
	transform: scale(0.5);
	position: absolute;
	top: 0;
	left: 0;
	text-indent: 0;
}
ul.aboutList.kome {
	max-width: 93%;
}
ul.aboutList.kome li::before {
	content: "※";
	transform: scale(1);
}
.aboutTxt {
	font-size: 1em;
	line-height: 1.75;
	margin: 0 auto 1em;
	text-shadow: 0 0 4px var(--color-bg);
}
.contactTitle {
	font-size: 2em;
	line-height: 1.25;
	font-weight: 500;
	margin: 0 auto;
	text-shadow: 0 0 4px var(--color-bg);
}



/* !footer */
/* --------------------------- */
.gFooter {
	color: var(--color-contrast);
	background-color: rgba(var(--color-bg-rgb), .75);
	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;
}
.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: 3.5vw;
	}
	/* !sp header */
	/* --------------------------- */
	.heroImg {
		height: calc(100lvh - 3rem);
		
		&::before {
			background-size: auto 100%;
		}
	}
	.siteTitle {
		font-size: 1.5em;
	}
	.heroSchedule {
		font-size: 1.125em;
	}
	.heroHall {
		font-size: 2em;
	}
	.gNav {
		min-height: 3rem;
	}
	ul.gNavList {
		height: 3rem;
		font-size: 1em;
		padding: 0 0.25rem;
		gap: 0.25rem;
		li {
			width: 16.6666%;
		}
	}
	/* !sp main */
	/* --------------------------- */
	.contTitle {
		font-size: 2.5em;
	}
	.introWrap {
		padding: 1.5em 1.5em 0.5em;
	}
	.introTxt {
		font-size: 1em;
		line-height: 1.666;
	}
	.topicsList {
		font-size: 0.875em;
		grid-template-columns: 7em 1fr;
	}
	.topicsList dt {
		letter-spacing: 0;
	}
	.topicsList dd {
		padding: 0.5em 0.75em;
	}
	.artistDay {
		font-size: 1.75em;
	}
	.artistWrap {
		flex-direction: column;
		gap: 4.5rem;
	}
	.artistItem {
		width: 80%;
		margin: 0 auto;
	}
	ul.ticketPlayguideList {
		gap: 1rem;
	}
	ul.noticeList {
		font-size: 0.75em;
	}
	/* !sp footer */
	/* --------------------------- */
	.gFooter {
		flex-direction: column;
	}
	.copyright {
		margin: 0 auto 1rem;
		font-size: 1em;
	}
}
