@charset "UTF-8";

:root{
	--color-primary: #e60012;
	--color-primary-rgb: 230,0,18;
	--color-primary-contrast: #fff;
	--color-primary-contrast-rgb: 255,255,255;
	--color-accent: #fff100;
	--color-accent-rgb: 255,241,0;
	--color-txt: #000;
	--color-txt-rgb: 0,0,0;
	--transition-default: all 0.4s ease; 
}


/* !foundation */
/* --------------------------- */
html,body {
	-webkit-font-feature-settings: 'palt' 1;
	font-feature-settings: 'palt' 1;
	-webkit-font-variant-ligatures:none;
	font-variant-ligatures:none;
}
body {
	background: #000;
	color: var(--color-primary-contrast);
	overflow-x: hidden;
	position: relative;
	text-align: center;
	width: 100vw;
}
body::before {
	content: "";
	display: block;
	width: 100vw;
	height: 100lvh;
	position: fixed;
	top: 0;
	left: 0;
	background: url("../imgs/body_bg.jpg") 0 0 no-repeat;
	background-size: cover;
	z-index: -100;
	pointer-events: none;
}
* {
	box-sizing: border-box;
}
a,
a img {
	color: var(--color-primary-contrast);
	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-contrast-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-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.wf-vina, .headerInfoTxt, .candCatch, .contTitle, .cs, .new, .iconSoldout {
  font-family: "Vina Sans", sans-serif;
  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 */
/* --------------------------- */

/* !header */
/* --------------------------- */
.gHeader {
	width: 100%;
	min-height: 100lvh;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}
.gHeader::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: none;
	background-color: var(--color-txt);
	z-index: -10;
}

.siteTitle {
	margin: 0 auto;
	opacity: 0;
	scale: 2;
}
.loaded .siteTitle {
	opacity: 1;
	scale: 1;
	transition: all 0.2s ease 0.4s;
}
.siteTitle img {
	width: auto;
	height: 63lvh;
}
.headerCatch {
	margin: -0.5em auto 1em;
	opacity: 0;
	filter: blur(16px);
	font-size: 4.5lvh;
	line-height: 1.25;
	white-space: nowrap;
	font-weight: 900;
	color: var(--color-primary-contrast);
	text-shadow: 0 0 0 var(--color-primary);
}
.loaded .headerCatch {
	opacity: 1;
	filter: blur(0);
	transition: all 0.8s ease 1.0s, text-shadow 0.4s ease-out 1.6s;
	text-shadow: 0.0625em 0.0625em 0 var(--color-primary);
}
.headerCatch .capsL {
	font-size: 1.2em;
	display: inline-block;
	margin-bottom: 0.125em;
}
.headerInfo {
	width: 100%;
	margin: auto 0 0;
	background: var(--color-primary);
	padding: 0.5vh 0 1.5vh;
}
.headerInfoTxt {
	font-size: 8.5vh;
	line-height: .875;
	margin: 0;
	opacity: 0;
	scale: 2;
}
.loaded .headerInfoTxt {
	opacity: 1;
	scale: 1;
	transition: all 0.1s ease 3.0s;
}
.headerInfoTxt .capsS {
	font-size: 0.5em;
}
.headerInfoTxt:last-of-type {
	color: var(--color-txt);
}
.loaded .headerInfoTxt:last-of-type {
	transition-delay: 3.2s;
}
.headerInfoTime {
	font-size: 0.375em;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 0.25em;
	gap: 0.125em;
	letter-spacing: 0.025em;
	text-indent: 0.025em;
}
.headerInfoTime .capsS {
	font-weight: 700;
	font-size: 0.4em;
}

/* !content */
/* --------------------------- */
main {
	position: relative;
}
.content {
	margin: 0 auto;
	padding: 4rem 0 4.5rem;
	position: relative;
}
.contTitle {
	margin: 0 auto 4rem;
	font-size: 3.75em;
	line-height: 1;
	position: relative;
	color: var(--color-primary);
}
.contTitle::before {
	content: "";
	display: block;
	width: 100vw;
	height: 6px;
	background: linear-gradient(90deg, rgba(100, 0, 0, 1) 0.2%, rgba(230, 0, 18, 1) 40%, rgba(0, 0, 0, 1) 50%, rgba(230, 0, 18, 1) 60%, rgba(100, 0, 0, 1) 100%);
	margin: 0 auto 1.5rem;
}
.contTitle::after {
	content: "";
	display: block;
	width: 60px;
	height: 60px;
	background: url("../imgs/icon_star.png") center center no-repeat;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 50%;
	translate: -50% -50%;
}
.attention .contTitle {
	margin-bottom: 0.25em;
}
.contBody {
	width: 990px;
	max-width: 90vw;
	margin-inline: auto;
}

ul.candList {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 4rem 3rem;
	font-size: 1.375em;
	line-height: 1;
	font-weight: 700;
}
ul.candList img {
	display: block;
	pointer-events: none;
	margin-bottom: 1em;
}
ul.candList li.invisible img {
	box-shadow: 0 0 0 var(--color-primary), 0 0 0 var(--color-primary-contrast);
}
ul.candList li.visible img {
	box-shadow: 0.625rem 0.625rem 0 var(--color-primary), -0.625rem -0.625rem 0 var(--color-primary-contrast);
	transition: box-shadow 0.3s ease 0.4s;
}
ul.candList li.invisible {
	opacity: 0;
	translate: 0 1rem;
}
ul.candList li.visible {
	opacity: 1;
	transition: all 0.4s ease;
	translate: 0 0;
}
.candCatch {
	font-size: 6em;
	line-height: 1;
	margin: 1em auto 1em;
	text-shadow: 0.05em 0.05em 0 var(--color-primary);
	transform: skewY(-15deg);
}
.candTxt {
	font-size: 1.75em;
	line-height: 1.375;
	font-weight: 900;
	margin: 2em auto 0;
}

.commentBox {
	margin: 2rem auto 0;
	width: 43rem;
	max-width: 90%;
}
.commentTxt {
	font-size: 1.125em;
	line-height: 1.75;
	text-align: left;
	margin: 0 auto 0.75em;
}

.artistWrap {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8rem;
}
.artistBox {
	margin: 0 auto;
	position: relative;
	pointer-events: none;
}
.artistBox + .artistBox {
	margin-top: 5rem;
}
.artistWrap .artistBox + .artistBox {
	margin-top: 0;
}
.artistBox.invisible {
	opacity: 0;
	translate: 0 2rem;
}
.artistBox.visible {
	translate: 0 0;
	opacity: 1;
	transition: all 0.4s ease;
}
.artistBox>img {
	display: block;
	pointer-events: none;
	margin: 0 auto 2rem;
}
.artistBox.invisible>img {
	box-shadow: 0 0 0 var(--color-primary), 0 0 0 var(--color-primary-contrast);
}
.artistBox.visible>img {
	box-shadow: 1.25rem 1.25rem 0 var(--color-primary), -1.25rem -1.25rem 0 var(--color-primary-contrast);
	transition: box-shadow 0.3s ease 0.4s;
}
.artistBox.hb.invisible>img,
.artistBox.hb.visible>img {
	box-shadow: none;
}
.artistBox figcaption {
	font-size: 2.5em;
	line-height: 1.25;
	font-weight: 800;
	margin: 0 auto;
	position: relative;
}
.artistBox .capsS {
	display: block;
	margin-top: 0.25em;
}
.artistBox figcaption small {
	font-size: 0.625rem;
	line-height: 1;
	position: absolute;
	top: 0;
	left: 50%;
	translate: 9.75em -2.75em;
}
.commentBtn {
	display: block;
	width: fit-content;
	margin: 0.5em auto 0;
	padding: 0.25em 0.75em 0.375em;
	font-size: 0.75em;
	line-height: 1;
	background: var(--color-primary);
	color: var(--color-txt);
	border-radius: 100vmax;
	cursor: pointer;
	pointer-events: auto;
	transition: all 0.4s ease;
}
.commentBtn:hover {
	color: var(--color-primary-contrast);
}
.mcName {
	font-size: 2.5em;
	line-height: 1.125;
	font-weight: 800;
	margin: 1.5em auto 1em;
	padding-top: 1.5em;
	border-top: solid 4px var(--color-primary);
}
.mcName.invisible {
	opacity: 0;
	translate: 0 2rem;
}
.mcName.visible {
	translate: 0 0;
	opacity: 1;
	transition: all 0.4s ease;
}
.mcName .capsS {
	font-size: 0.666em;
}

.andmore {
	font-size: 1.5em;
	line-height: 1;
	margin: 0 auto 5rem;
	letter-spacing: 0.05em;
	text-indent: 0.05em;
	color: var(--color-secondary);
}
.cs {
	font-size: 3.125em;
	margin: 5rem auto 5rem;
}
.new {
	display: inline-block;
	font-size: 0.75em;
	line-height: 1;
	background-color: var(--color-accent);
	color: var(--color-txt);
	padding: 0.05em 0.25em 0.175em;
	margin-left: .5em;
}

.ticketPrice {
	font-size: 2em;
	line-height: 1.2;
	font-weight: 700;
	margin: 1em auto 1.4em;
}
.ticketPrice .capsL {
	font-size: 3.75em;
	vertical-align: -0.0625em;
	margin: 0 2px 0 4px;
}
.ticketPrice .capsL .capsS {
	vertical-align: 0;
	font-size: 0.5em;
	margin-right: 0.125em;
}
.ticketPrice .capsS {
	font-size: 0.666em;
	vertical-align: -0.275em;
}
.ticketPgTitle {
	font-size: 2em;
	line-height: 1;
	margin: 0 auto 0.5em;
	color: var(--color-primary);
}
.ticketPgTitle.wf-vina {
	font-size: 3.75em;
}
.ticketSchedule {
	font-size: 1.875em;
	line-height: 1.5;
	font-weight: 700;
	margin: 0 auto 1em;
}
.ticketSchedule.architect {
	font-size: 3.75em;
	line-height: 1.125;
	font-weight: 800;
	letter-spacing: 0.03em;
}
.ticketCaution {
	width: 640px;
	max-width: 90%;
	margin: 3rem auto 3rem;
	font-size: 1em;
	line-height: 1.75;
	letter-spacing: 0.05em;
	text-align: justify;
	border: solid 3px var(--color-accent);
	border-radius: 1em;
	padding: 1em 1.5em;
}
.soldout {
	position: relative;
	width: fit-content;
}
.iconSoldout {
	background: var(--color-primary);
	color: var(--color-primary-contrast);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 2.5rem;
	line-height: 1;
	white-space: nowrap;
	width: fit-content;
	position: absolute;
	padding: 0.125em 0.5em 0.3125em;
	top: 50%;
	left: 50%;
	rotate: -5deg;
	translate: -50% 0;
}
.bnrWrap {
	width: 640px;
	max-width: 90%;
	margin: 0 auto 5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.bnrBtn {
	display: block;
	position: relative;
	overflow: hidden;
	margin: 0 auto;
	max-width: 45%;
}
.bnrBtn:hover {
	scale: 1.1;
}
.bnrBtn:hover img {
	opacity: 1;
}

.goodsCatch {
	margin: 0 auto 1em;
	font-size: 2.5em;
	line-height: 1.375;
	white-space: nowrap;
	font-weight: 900;
	color: var(--color-primary-contrast);
	text-shadow: 0.0625em 0.0625em 0 var(--color-primary);
}
.goodsLineupWrap {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 3rem;
	max-width: 90vw;
	margin: 0 auto 3rem;
}
.goodsItem {
	margin: 0;
	background: var(--color-primary-contrast);
}
.goodsName {
	background: var(--color-primary);
	font-size: 1.75cqw;
	line-height: 1;
	font-weight: 900;
	margin: 0 auto;
	padding: 0.375em 0 0.575em;
}
.goodsPrice {
	margin: 0;
	padding: 0 0.5em 0.5em;
	font-size: 1.75em;
	line-height: 1;
	font-weight: bold;
	text-align: right;
	color: var(--color-txt);
	position: relative;
	&.random::before {
		content: "";
		width: 8cqw;
		height: 3.5cqw;
		background: url('../imgs/goods_random.svg') center center no-repeat;
		background-size: 100% auto;
		position: absolute;
		bottom: -0.5cqw;
		left: -0.5cqw;
	}
}
.goodsPrice .capsS {
	font-size: 0.5em;
}
.goodsAreaNotes {
	font-size: 1.25em;
	line-height: 1;
	font-weight: 900;
	margin: 1em auto 1.5em;
	width: fit-content;
	padding: 0.375em 1em 0.5em;
	background: var(--color-accent);
	color: var(--color-txt);
	border-radius: 100vmax;
	position: relative;
	&::before {
		content: "";
		display: block;
		width: 2em;
		aspect-ratio: 2/cos(30deg);
		clip-path: polygon(50% 0,100% 100%,0 100%);
		background: var(--color-accent);
		position: absolute;
		top: 0;
		left: 50%;
		translate: -50% -98%;
	}
}
ol.goodsPayment {
	margin: 0 auto 1.5em;
	font-size: 0.875em;
	line-height: 1.75;
	text-align: left;
	width: 44em;
	max-width: 90vw;
	counter-reset: payNum;
	li {
		counter-increment: payNum;
		padding-left: 1.5em;
		text-indent: -1.5em;
		&::before {
			content: counter(payNum)"）";
			display: inline-block;
			text-indent: 0;
			width: 1.5em;
		}
	}
}

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

.contact .contTitle {
	font-family: "Noto Sans JP", sans-serif;
	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.75em;
	border: solid 2px var(--color-primary-contrast);
	border-radius: 100vmax;
	width: 640px;
	max-width: 90vw;
}
* + .contactTitle {
	margin-top: 1.666em;
}
.contactBody {
	font-size: 2.125em;
	line-height: 1.475;
	font-weight: 700;
	margin: 0 auto 0.25em;
}
.contactBody .capsS {
	font-size: 0.53em;
}
.contactTxt {
	font-size: 1em;
	line-height: 1.75;
	margin: 0 auto 1em;
}

/* !footer */
/* --------------------------- */
.gFooter {
	background: #262626;
	color: var(--color-primary-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;
}
.copyright .capsL {
	font-size: 1.5625em;
}

.checkEl {
	display: none;
}
.modalBg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100lvh;
	background: rgba(0,0,0,.875);
	z-index: -1;
}
.modalWrap {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100lvh;
	justify-content: center;
	align-items: center;
	z-index: 1100;
	display: none;
	opacity: 0;
}
.checkEl:checked ~ .modalWrap {
	display: flex;
	opacity: 1;
	transition: opacity 0.4s ease;
	@starting-style {
		opacity: 0;
	}
}
.modalBox {
	background: var(--color-primary-contrast);
	border: solid 4px var(--color-primary);
	width: 640px;
	max-width: 90vw;
	position: relative;
}
.modalClose {
	display: block;
	position: absolute;
	top: 0.625rem;
	right: 0.625rem;
	width: 3rem;
	height: 3rem;
	border: solid 1px var(--color-txt);
	border-radius: 50%;
	opacity: 0.5;
	cursor: pointer;
	transition: opacity 0.4s ease;
}
.modalClose:hover {
	opacity: 1;
}
.modalClose::before,
.modalClose::after {
	content: "";
	display: block;
	width: 66%;
	height: 1px;
	position: absolute;
	top: 50%;
	left: 50%;
	background: var(--color-txt);
	translate: -50% -50%;
	rotate: 45deg;
}
.modalClose::after {
	rotate: -45deg;
}
.modalTitle {
	font-size: 3em;
	line-height: 1;
	margin: 0 auto;
	padding: 0.125em 0 0.3125em;
	border-bottom: solid 2px var(--color-primary);
	color: var(--color-primary);
}
.modalBody {
	width: 100%;
	max-height: 75lvh;
	overflow: auto;
	padding: 1rem 1.5rem;
	color: var(--color-txt);
}
.modalName {
	font-size: 1.25em;
	line-height: 1.25;
	text-align: left;
	font-weight: 700;
	margin: 0 0 1em;
}
.modalTxt {
	font-size: 0.875em;
	line-height: 1.75;
	text-align: justify;
	margin: 0 0 1em;
}

canvas { 
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100lvh;
	z-index: -50;
}

/* !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: 90lvh;
	}
	.siteTitle {
		width: 100%;
		height: 50lvh;
		position: relative;
		overflow: hidden;
	}
	.siteTitle img {
		max-width: none;
		height: 100%;
		position: absolute;
		top: 50%;
		left: 50%;
		translate: -50% -50%;
	}
	.headerInfoTxt {
		font-size: 6.5lvh;
	}
	.headerCatch {
		top: 50lvh;
		white-space: nowrap;
		font-size: 1.75em;
	}
	.headerCatch .capsL {
		font-size: 1.125em;
	}
	.content {
		padding: 5rem 0 3rem;
	}
	.contTitle {
		margin-bottom: 3rem;
		font-size: 3em;
	}
	ul.candList {
		grid-template-columns: repeat(2, 1fr);
		font-size: 1.375em;
		gap: 3rem 2rem;
	}
	ul.candList li.visible img {
		box-shadow: 0.375rem 0.375rem 0 var(--color-primary), -0.375rem -0.375rem 0 var(--color-primary-contrast);
		margin-bottom: 0.75em;
	}
	.artistWrap {
		grid-template-columns: 1fr;
		gap: 4rem;
	}
	.artistBox {
		max-width: 66vw;
	}
	.artistBox>img {
		margin-bottom: 1rem;
	}
	.artistBox.visible>img {
		box-shadow: 0.75rem 0.75rem 0 var(--color-primary), -0.75rem -0.75rem 0 var(--color-primary-contrast);
	}
	.artistBox figcaption {
		font-size: 1.625em;
	}
	.artistBox figcaption img {
		max-width: 40%;
	}
	.commentTxt {
		font-size: 0.9375em;
	}
	.artistBox figcaption small {
		translate: 7em -1.25em;
	}
	
	.ticketPrice {
		font-size: 1.5em;
	}
	.ticketPgTitle {
		font-size: 1.5em;
		padding-right: 0;
		padding-left: 0;
	}
	.ticketSchedule {
		font-size: 1.5em;
	}
	.ticketSchedule.architect {
		font-size: 2em;
		line-height: 1.375;
	}
	.streamScheduleWrap .ticketSchedule + .ticketSchedule {
		margin-top: 1.5rem;
	}
	.ticket .new::after {
		translate: 80% 0%;
	}
	.ticketUgTitle {
		font-size: 2.5em;
	}
	.bnrBtn {
		margin: 0 auto 1.5rem;
	}
	.bnrBtn img {
		width: 100%;
	}
	.ticketCaution {
		font-size: 0.875em;
	}
	.ticketUpgrade {
		width: 60vw;
		height: 60vw;
		margin-bottom: -30vw;
	}
	.ticketUpgrade .cs {
		font-size: 1.375em;
		margin: 0.75em auto 3em;
	}
	.ugTitle img {
		width: 70%;
	}
	.goodsCatch {
		font-size: 1.625em;
		.capsS {
			display: inline-block;
		}
	}
	.goodsLineupWrap {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
	.goodsItem {
		width: 90%;
		margin-inline: auto;
	}
	.goodsItem figcaption {
		font-size: 1.5em;
	}
	.goodsItem figcaption .capsS {
		font-size: 0.666em;
		line-height: 1.375;
		display: inline-block;
	}
	.goodsPrice.random::before {
		width: 24cqw;
		height: 13cqw;
		bottom: -0.5rem;
		left: -0.5rem;
	}
	.goodsAreaNotes {
		font-size: 1em;
	}
	.infoBody {
		max-width: 81vw;
	}
	ul.notesList {
		max-width: 100%;
		font-size: 0.875em;
		line-height: 1.666;
	}
	ul.notesList.kome {
		max-width: 80%;
	}
	.notesGoods {
		padding: 1rem 1rem 0;
		max-width: 100%;
	}
	.notesGoodsTxt {
		font-size: 0.875em;
	}
	.notesTxt {
		font-size: 0.875em;
		line-height: 1.666;
		text-align: left;
	}
	.contactTitle {
		font-size: 1.25em;
	}
	.contactBody {
		font-size: 1.75em;
	}
	.contactBody .capsS {
		display: block;
		margin-top: 0;
	}
	.contactTxt {
		font-size: 0.875em;
	}
	.gFooter {
		flex-direction: column;
	}
	.copyright {
		margin: 0 auto 1rem;
		font-size: 0.75em;
	}
}
