@charset "UTF-8";

:root{
	--color-primary: #ffea3a;
	--color-primary-rgb: 255,234,58;
	--color-primary-contrast: #fff;
	--color-primary-contrast-rgb: 255,255,255;
	--color-secondary: #ffb501;
	--color-secondary-rgb: 255,181,1;
	--color-tertiary: #2b97e3;
	--color-tertiary-rgb: 43, 151, 227;
	--color-txt: #222;
	--color-txt-rgb: 34,34,34;
	--color-accent: #e70f7a;
	--color-accent-rgb: 231, 15, 122;
	--transition-default: all 0.4s ease; 
}


/* !foundation */
/* --------------------------- */
html,body {
	font-family:'Avenir','Helvetica Neue','Helvetica','Arial','Hiragino Sans','ヒラギノ角ゴシック',YuGothic,'Yu Gothic','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic',sans-serif;
	-webkit-font-feature-settings: 'palt' 1;
	font-feature-settings: 'palt' 1;
	-webkit-font-variant-ligatures:none;
	font-variant-ligatures:none;
}
body {
	color: var(--color-txt);
	background-color: var(--color-primary);
	overflow-x: hidden;
	position: relative;
	text-align: center;
	width: 100vw;
}
* {
	box-sizing: border-box;
}
a,
a img {
	color: var(--color-accent);
	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-accent-rgb), .875);
}
a:hover {
	color: var(--color-accent);
	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-weight: 500;}
.wf-noto-m, b {font-family: 'Noto Sans JP', sans-serif; font-weight: 600;}
.wf-noto-b, strong {font-family: 'Noto Sans JP', sans-serif; font-weight: 700;}
.wf-noto-bk, strong, h1, h2, h3, h4, h5, h6 {font-family: 'Noto Sans JP', sans-serif; font-weight: 900;}
.wf-robot-slab-b {font-family: 'Roboto Slab', sans-serif; font-weight: 700;}
.wf-robot-slab-bk {font-family: 'Roboto Slab', sans-serif; font-weight: 900;}

.txtSdw {
	text-shadow: 0 0 40px rgba(var(--color-primary-rgb),.9),0 0 30px rgba(var(--color-primary-rgb),.9),0 0 20px rgba(var(--color-primary-rgb),.9),0 0 10px rgba(var(--color-primary-rgb),.9);
}
.txtSdwMin {
	text-shadow: 0 0 20px rgba(var(--color-primary-rgb),.9),0 0 15px rgba(var(--color-primary-rgb),.9),0 0 10px rgba(var(--color-primary-rgb),.9),0 0 5px rgba(var(--color-primary-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 */
/* --------------------------- */
.opening {
	width: 100vw;
	height: 100lvh;
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1000;
	background: var(--color-primary);
	transition: opacity 0.6s ease 3.6s;
	pointer-events: none;
}
.loaded .opening {
	opacity: 0;
}
.opening .openingLogo {
	margin: auto;
	color: var(--color-primary);
	transition: opacity 0.4s ease 0.2s, filter 0.6s ease 0.2s;
	opacity: 0;
	filter: blur(16px);
	width: auto;
	height: calc( 55vh * 0.5 );
}
.loaded .opening .openingLogo {
	opacity: 1;
	filter: blur(0);
}

/* !header */
/* --------------------------- */
.gHeader {
	width: 100vw;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	overflow: hidden;
}
.siteTitle {
	margin: auto;
	height: 55vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.siteTitle img {
	width: auto;
	height: 90%;
	transition: all 0.3s cubic-bezier(.21,1.82,.16,.67) 4.0s;
	transform: translateY(15vh);
	opacity: 0;
}
.loaded .siteTitle img {
	opacity: 1;
	transform: translateY(0);
}
.headerCatch {
	font-size: 2.5vw;
	line-height: 1.375;
	font-weight: 900;
	margin: auto auto 3vh;
}
.gHeader .headerCatch {
	opacity: 0;
	transition: all 0.8s ease 6.0s;
}
.loaded .gHeader .headerCatch {
	opacity: 1;
	transform: translateY(0);
}
.iconNew {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 3.2rem;
	height: 3.2rem;
	background : var(--color-accent);
	border-radius: 50%;
	margin-right: -3.2rem;
	margin-left: 0.5rem;
	transform: translate(-50%, -50%) rotate(10deg);
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1000;
}
.headerInfo {
	margin: auto 0 1.5vh;
	width: 100%;
	padding: 1.5vh 0;
	opacity: 0;
	transition: all 0.2s ease-in 4.6s;
	background: var(--color-primary-contrast);
}
.loaded .headerInfo {
	opacity: 1;
}
.headerSchedule,
.headerHall,
.headerTime {
	opacity: 0;
	transition: all 0.3s cubic-bezier(.21,1.82,.16,.67) 5.0s;
	transform: translateX(5rem);
}
.loaded .headerSchedule,
.loaded .headerHall,
.loaded .headerTime {
	opacity: 1;
	transform: translateX(0);
}
.headerSchedule {
	margin: 0 auto 0.375em;
	font-size: 5vh;
}
.headerHall {
	margin: 0 auto 0.5em;
	font-size: 4.5vh;
	line-height: 1;
	font-weight: 900;
	transition-delay: 5.2s;
}
.headerTime {
	font-size: 2.5vh;
	line-height: 1;
	font-weight: 700;
	letter-spacing: 0.005em;
	text-indent: 0.005em;
	margin: 0 auto;
	transition-delay: 5.4s;
}
.headerTime .capsS {
	font-size: 0.5em;
	vertical-align: 0.375em;
}

/* !content */
/* --------------------------- */
main {
	padding: 2rem 0;
}
.content {
	width: 1280px;
	max-width: 94%;
	margin: 0 auto 5rem;
	padding: 5rem 3.75rem 3rem;
	position: relative;
	box-shadow: 0.5rem 0.5rem 3rem rgba(var(--color-secondary-rgb), .25);
}
.content::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: var(--color-primary-contrast);
	z-index: -1;
	border-radius: 1rem;
}
.content::after {
	content: "";
	display: block;
	width: 12rem;
	height: 12rem;
	clip-path: polygon(100% 0, 0 0, 0 100%);
	background: var(--color-tertiary);
	position: absolute;
	top: 0;
	left: 0;
	border-radius: 1rem 0 0 0;
}
.contTitle {
	margin: 0 auto 1.25em;
	font-size: 5em;
	line-height: 1;
}
.contTitle::after {
	content: "";
	display: block;
	width: 2em;
	height: 6px;
	border-radius: 100vmax;
	background: var(--color-secondary);
	margin: 0.75em auto 0;
}
.contCatch {
	font-size: 2.5em;
	line-height: 1.25;
	color: var(--color-accent);
	margin: -1em auto 1em;
}
.contBody {
}
.artistDay {
	font-size: 3em;
	line-height: 1;
	margin: 0 auto 0.5em;
}
.artistDay .capsS {
	font-size: 0.625em;
	letter-spacing: 0.1em;
	text-indent: 0.1em;
	display: inline-block;
	background: var(--color-primary);
	padding: 0.25em 0.5em;
	border-radius: 100vmax;
}
.artistWrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	margin: 0 auto;
	gap: 2rem 2.5%;
}
.artistBox {
	max-width: 47.5%;
	margin: 0 0 3rem;
	position: relative;
	pointer-events: none;
	&.day1 {
		width: 100%;
		height: 470px;
		container-type: size;
		&>img {
			width: 100%;
			height: 70cqi;
			object-fit: contain;
		}
	}
	&.day2 {
		width: 100%;
		height: 520px;
		container-type: size;
		&>img {
			width: 100%;
			height: 80cqi;
			object-fit: contain;
		}
	}
	&.niziu figcaption img {
		display: inline-block;
		translate: 0 -33%;
	}
	&.therampage figcaption {
		display: inline-block;
		translate: 0 -33%;
		line-height: 0.5;
	}
}
.artistBox small {
	font-size: 0.75rem;
	text-align: right;
	display: block;
	margin: 0.5em 0 1em;
	position: absolute;
	width: 100%;
}
.artistBox figcaption {
	margin: 0.75em 0 0;
	position: relative;
	font-size: 2em;
	line-height: 1;
	font-weight: 900;
}
.artistBox figcaption .capsS {
	font-size: 0.5em;
	line-height: 1.25;
	font-weight: 700;
	display: inline-block;
}
.mc .artistWrap {
	max-width: 80%;
	justify-content: center;
}
.mc .artistWrap .artistBox {
	margin-right: 1.5rem;
	margin-left: 1.5rem;
}
.mc .artistBox img {
	border-radius: 50%;
}
.mc .artistBox figcaption,
.artistOpening +  .artistBox figcaption {
	font-size: 1.5em;
	line-height: 1;
	font-weight: 700;
}
.mc .artistBox figcaption .capsS {
	font-size: 0.6em;
}
.andmore {
	width: 100%;
	font-size: 1.5em;
	line-height: 1;
	margin: 0 auto 5rem;
	letter-spacing: 0.05em;
	text-indent: 0.05em;
	color: var(--color-tertiary);
}
.cs {
	font-size: 2em;
	font-weight: 500;
	margin: 0 auto 7.5rem;
	color: var(--color-secondary);
	letter-spacing: 0.05em;
	text-indent: 0.05em;
}
.new {
	position: relative;
}
.new::after {
	content: "NEW";
	background: var(--color-accent);
	color: var(--color-primary-contrast);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.25rem;
	line-height: 1;
	font-family: 'Roboto Slab', sans-serif;
	font-weight: 900;
	width: 3.2em;
	height: 3.2em;
	border-radius: 50%;
	position: absolute;
	top: 0;
	right: 0;
	rotate: 15deg;
	translate: 50% -50%;
}
.artist .new::after {
	translate: 50% -30%;
}

.ticketPrice {
	font-size: 1.875em;
	line-height: 1.2;
	font-weight: 400;
	margin: 0 auto 1.4em;
}
.ticketPrice .capsL {
	font-size: 2em;
	font-weight: 900;
	vertical-align: -0.1em;
}
.ticketPrice .capsS {
	font-size: 0.666em;
	vertical-align: -0.275em;
}
.ticketPgTitle {
	font-size: 1.875em;
	line-height: 1;
	font-weight: 700;
	margin: 0 auto 1em;
	background: var(--color-primary);
	padding: 0.5em 1em 0.625em;
	width: 800px;
	max-width: 90%;
	border-radius: 100vmax;
}
.ticketSchedule {
	font-size: 1.875em;
	line-height: 1.5;
	font-weight: 700;
	margin: 0 auto;
}
.soldout {
	position: relative;
	width: fit-content;
}
.iconSoldout {
	background: var(--color-accent);
	color: var(--color-primary-contrast);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.25rem;
	line-height: 1;
	font-family: 'Roboto Slab', sans-serif;
	font-weight: 900;
	width: fit-content;
	border-radius: 100vmax;
	position: absolute;
	padding: 0.25em 0.5em 0.3125em;
	top: 0;
	left: 0;
	rotate: -5deg;
	translate: -50% -15%;
}
.bnrWrap {
	margin: 1rem auto 2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 1rem;
}
.bnrBtn {
	display: inline-block;
	position: relative;
	padding: 0.75rem;
	border-radius: 1.75rem;
	overflow: hidden;
	&.sp {
		display: none;
	}
}
.bnrBtn:hover img {
	opacity: 1;
}
.bnrBtn::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: var(--color-secondary);
	transition: var(--transition-default);
	transform-origin: left;
}
.bnrBtn:hover::before {
	opacity: 0.5;
}
.bnrBtn img {
	border-radius: 1rem;
	overflow: hidden;
}
.ticketFc {
	font-weight: 600;
	margin-bottom: 0.5em;
}
.ticketFc + .ticketSchedule {
	margin-bottom: 1.5em;
}

.streamScheduleWrap {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
	margin: 0 auto 3rem;
}
.streamScheduleWrap .ticketSchedule {
	width: 20rem;
	margin-right: 1rem;
	margin-left: 1rem;
}
.streamScheduleWrap img {
	display: block;
	margin: 0 auto 0.5rem;
	width: auto;
	height: 4rem;
}
.streamNotes {
	display: inline-block;
	font-size: 0.875em;
	line-height: 1.75;
	text-align: left;
	margin: -3rem auto 3rem;
}

.notesCatch {
	font-size: 1.375em;
	line-height: 1.25;
	margin: 0 auto 1em;
}
.notesTxt {
	font-size: 1.125em;
	line-height: 1.5;
	margin: 0 auto 1em;
}
ul.notesList {
	width: 880px;
	max-width: 90%;
	margin: 0 auto 1.5em;
	font-size: 1em;
	line-height: 1.75;
	text-align: justify;
}
ul.notesList li {
	margin: 0 0 0.5em;
	padding-left: 1em;
	text-indent: -1em;
}
ul.notesList li::before {
	content: "※";
}

.notesGoods {
	border: solid 2px var(--color-primary);
	border-radius: 1rem;
	margin: 0 auto 3rem;
	width: 880px;
	max-width: 90%;
	padding: 1rem 2.5rem 0;
}
.notesGoodsTitle {
	font-size: 1.375em;
	line-height: 1.375;
	margin: 0 auto 1em;
	padding-bottom: 0.625em;
	border-bottom: solid 1px var(--color-primary);
}
.notesGoodsCatch {
	font-size: 1.25em;
	font-weight: 700;
	margin: 0 auto 0.5em;
}
.notesGoodsTxt {
	font-size: 1em;
	line-height: 1.75;
	text-align: justify;
	margin: 0 0 1em;
}
ul.notesList.notesGoodsList {
	display: inline-block;
	width: auto;
}
ul.notesList.notesGoodsList li::before {
	content: "●";
}

.contactTitle {
	font-size: 1.875em;
	line-height: 1;
	font-weight: 700;
	margin: 0 auto 1em;
	width: 17.3em;
	max-width: 90%;
	padding: 0.25em 0 0.375em;
	border-radius: 100vmax;
	background: var(--color-primary);
}
* + .contactTitle {
	margin-top: 1.666em;
}
.contactBody {
	font-size: 2.125em;
	line-height: 1.475;
	font-weight: 700;
	margin: 0 auto 0.5em;
}
.contactBody .capsS {
	font-size: 0.53em;
}
.contactTxt {
	font-size: 1em;
	line-height: 1.75;
	margin: 0 auto 1em;
}

.goodsWrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.goodsItem {
	width: 32%;
	margin: 0 auto 3rem;
	background : var(--color-primary);
	border-radius: 1rem;
	padding: 0.75rem 1rem 1rem;
}
.goodsName {
	font-size: 1.5em;
	margin: 0 auto 0.5em;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.goodsImg img {
	width: 100%;
	border-radius: 0.75rem;
}
.goodsTxt {
	font-size: 0.875em;
	line-height: 1.5;
	text-align: left;
	margin: 0.5em auto 0;
}
.goodsPrice {
	font-size: 2em;
	line-height: 1;
	text-align: right;
	margin: 0;
}
.goodsPrice .capsS {
	font-size: 0.5em;
}
.goodsNotice {
	width: 100%;
	font-size: 0.875em;
	line-height: 1.375;
	margin: 0 auto;
}

/* !footer */
/* --------------------------- */
.gFooter {
	background: var(--color-txt);
	color: var(--color-primary-contrast);
	padding: 1.5em;
	display: flex;
	justify-content: center;
	align-items: center;
}
.copyright {
	font-size: 1.125em;
	margin: 0 0.75em;
	display: flex;
	justify-content: center;
	align-items: center;
}
.copyright .capsL {
	font-size: 1.388em;
}

/* !animation */
/* --------------------------- */
.invisible {
	opacity: 0;
	translate: 0 3rem;
}
.visible {
	transition: opacity 0.2s ease, translate 0.4s cubic-bezier(.21,1.82,.16,.67);
	opacity: 1;
	translate: 0 0;
}


/* !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 */
	/* --------------------------- */
	.gHeader {
		min-height: 80lvh;
	}
	.siteTitle {
		width: 100vw;
		height: 55lvh;
	}
	.siteTitle img,
	.opening .openingLogo {
		width: 94%;
		height: auto;
	}
	.headerCatch {
		font-size: 1.125em;
		max-width: 96vw;
		margin-bottom: 2rem;
	}
	.headerInfo {
		padding: 1.5rem 0 1rem;
	}
	.headerSchedule {
		margin-bottom: 1rem;
	}
	.headerHall {
		font-size: 2rem;
	}
	.headerTime {
		width: fit-content;
		text-align: left;
		line-height: 1.375;
	}
	.headerBnrWrap {
		flex-direction: column;
	}
	.headerBnrWrap .headerBnr {
		max-width: 85vw;
		margin: 0 auto 1.5rem;
		font-size: 1.375em;
	}
	.headerBnrWrap .headerBnr>img {
		width: auto;
		height: 10vw;
	}
	main {
		width: 100vw;
		overflow: hidden;
	}
	.content {
		padding: 2rem 1.5rem 1.5rem;
	}
	.content::before {
		border-radius: 1.5rem;
	}
	.content::after {
		width: 5rem;
		height: 5rem;
	}
	.contTitle {
		font-size: 3em;
	}
	.contCatch {
		font-size: 2em;
	}
	.artistWrap {
		display: block;
	}
	.artistBox {
		max-width: 90%;
		margin-inline: auto;
		&.day2, &.day1 {
			width: 100%;
			height: auto;
			container-type: normal;
			&>img {
				width: 100%;
				height: auto;
				object-fit: initial;
			}
		}
		&.niziu figcaption img {
			translate: 0 0;
		}
	}
	.artistBox figcaption {
		margin-top: 0.375em;
	}
	.mc .contBody > .artistBox {
		max-width: 90%;
	}
	.mc .artistWrap {
		max-width: 70%;
	}
	.ticketPrice {
		font-size: 1.5em;
	}
	.ticketPgTitle {
		font-size: 1.3125em;
	}
	.ticketSchedule {
		font-size: 1.5em;
	}
	.streamScheduleWrap .ticketSchedule + .ticketSchedule {
		margin-top: 1.5rem;
	}
	.ticket .new::after {
		translate: 80% 0%;
	}
	.iconSoldout {
		translate: -55% 10%;
	}
	.streamNotes {
		font-size: 0.75em;
		margin-top: -1.5rem;
	}
	.bnrBtn + .bnrBtn {
		margin-top: 2rem;
	}
	.bnrBtn.sp {
		display: inline-block;
	}
	.bnrBtn.nosp {
		display: none;
	}
	ul.notesList {
		max-width: 100%;
		font-size: 0.875em;
		line-height: 1.666;
	}
	.notesGoods {
		padding: 1rem 1rem 0;
		max-width: 100%;
	}
	.notesGoodsTxt {
		font-size: 0.875em;
	}
	.contactTitle {
		font-size: 1.25em;
	}
	.contactBody {
		font-size: 1.75em;
	}
	.contactBody .capsS {
		display: block;
		margin-top: 0;
	}
	.contactTxt {
		font-size: 0.875em;
	}
	.goodsItem {
		width: 100%;
	}
	.goodsName {
		font-size: 1.375em;
		white-space: nowrap;
	}
	.gFooter {
		flex-direction: column;
	}
	.copyright {
		margin: 0 auto 1rem;
	}
}
