@charset "UTF-8";

:root{
	--color-primary: #ffc25b;
	--color-primary-rgb: 255,94,91;
	--color-primary-contrast: #fff;
	--color-primary-contrast-rgb: 255,255,255;
	--color-secondary: #08287f;
	--color-secondary-rgb: 8,40,127;
	--color-txt: #000;
	--color-txt-rgb: 0,0,0;
	--color-gray: #21221;
	--color-gray-rgb: 33,33,33;
	--transition-default: all 0.4s ease; 
}

/* !foundation */
/* --------------------------- */
html,body {
	font-family:'ヒラギノ角ゴ ProN','Hiragino Kaku Gothic ProN','メイリオ',Meiryo,'ＭＳ Ｐゴシック',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);
	overflow-x: hidden;
	position: relative;
	text-align: center;
	&::before {
		content: "";
		display: block;
		width: 100%;
		height: 100%;
		position: fixed;
		top: 0;
		left: 0;
		z-index: -100;
		background: url('../imgs/body_bg.svg') center top repeat-y var(--color-primary);
		background-size: 100% auto;
	}
}
.sparkle {
	display: block;
	width: 10vw;
	height: 10vw;
	background: url('../imgs/bg_shine.png') center top no-repeat;
	background-size: cover;
	position: fixed;
	top: 0;
	left: 0;
	mix-blend-mode: screen;
	z-index: -10;
	&.sparkle1 {
		animation: sparkleMove1 7.0s ease-in-out infinite;
		translate: -100% 5vw;
	}
	&.sparkle2 {
		animation: sparkleMove2 7.0s linear infinite 1.0s;
		translate: 100vw 48vw;
	}
	&.sparkle3 {
		animation: sparkleMove3 7.0s ease-in-out infinite 1.6s;
		translate: 19vw -100%;
	}
	&.sparkle4 {
		animation: sparkleMove4 7.0s linear infinite 0.6s ;
		translate: 24vw 100lvh;
	}
	&.sparkle5 {
		animation: sparkleMove1 7.0s ease-in-out infinite 3.5s;
		translate: -100% 5vw;
	}
	&.sparkle6 {
		animation: sparkleMove2 7.0s linear infinite 4.5s;
		translate: 100vw 48vw;
	}
	&.sparkle7 {
		animation: sparkleMove3 7.0s ease-in-out infinite 5.1s;
		translate: 19vw -100%;
	}
	&.sparkle8 {
		animation: sparkleMove4 7.0s linear infinite 4.1s ;
		translate: 24vw 100lvh;
	}
}

@keyframes sparkleMove1 {
	0% {translate: -100% 5vw;}
	10% {translate: 1.25vw 5vw;}
	20% {translate: 1.25vw 11.5vw;}
	35% {translate: 31vw 11.5vw;}
	45% {translate: 31vw 54vw;}
	55% {translate: 69vw 54vw;}
	65% {translate: 69vw 100vw;}
	100% {translate: 69vw 100vw;}
}
@keyframes sparkleMove2 {
	0% {translate: 100vw 48vw;}
	10% {translate: 79vw 48vw;}
	20% {translate: 79vw 56.66vw;}
	30% {translate: 55vw 56.66vw;}
	40% {translate: 55vw 20.5vw;}
	50% {translate: 31vw 20.5vw;}
	60% {translate: 31vw 7.5vw;}
	75% {translate: -100% 7.5vw;}
	100% {translate: -100% 7.5vw;}
}
@keyframes sparkleMove3 {
	0% {translate: 19vw -100%;}
	10% {translate: 19vw 15.75vw;}
	25% {translate: 55vw 15.75vw;}
	35% {translate: 55vw 47vw;}
	45% {translate: 37vw 47vw;}
	55% {translate: 37vw 100lvh;}
	100% {translate: 37vw 100lvh;}
}
@keyframes sparkleMove4 {
	0% {translate: 24vw 100lvh;}
	15% {translate: 24vw 32.5vw;}
	25% {translate: 49vw 32.5vw;}
	27% {translate: 49vw 29vw;}
	37% {translate: 73.5vw 29vw;}
	47% {translate: 73.5vw 11.5vw;}
	57% {translate: 50.5vw 11.5vw;}
	67% {translate: 50.5vw -100%;}
	100% {translate: 50.5vw -100%;}
}

* {
	box-sizing: border-box;
}
a,
a img {
	color: var(--color-secondary);
	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-secondary-rgb), .875);
}
a:hover {
	color: var(--color-primary);
	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 {
	display: block;
	text-align: center;
	text-decoration: none;
	border: solid 1px var(--color-primary);
	padding: 0.5em 1em;
	color: var(--color-primary);
	background: var(--color-primary-contrast);
}
.btn:hover {
	background: var(--color-secondary);
	border-color:  var(--color-secondary);
	color: var(--color-primary-contrast);
}
label.btn {
	transition: var(--transition-default);
	cursor: pointer;
}
.checkEl {
	display: none;
}

/* 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;}

.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;
}
.shadow {
	filter: drop-shadow(0 0 20px rgba(var(--color-primary-rgb), .875));
}
/* !layout */
/* --------------------------- */


/* !header */
/* --------------------------- */
.gHeader {
	position: sticky;
	width: 100%;
	background: var(--color-txt);
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0;
	padding: 0.5rem 2rem 0.625rem;
	top: 0;
	z-index: 10000;
}
.siteTitle {
	font-size: 1rem;
	line-height: 1;
	margin: auto 0;
	flex-shrink: 0;
}
.gNav {
	width: 100%;
	margin: auto auto auto 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
ul.gNavList {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.5vw;
	line-height: 1;
	font-weight: 900;
	margin: 0 auto 0 0;
}
ul.gNavList li + li {
	border-left: solid 1px var(--color-primary-contrast);
}
ul.gNavList li a,
ul.gNavList li a:visited {
	display: block;
	padding: 0 1.5em 0.125em;
	text-decoration: none;
	color: var(--color-primary-contrast);
}
ul.gNavList li a:hover {
	color: var(--color-primary);
}
.toggle {
	display: none;
}
.marquee {
	font-size: 1.875vw;
	line-height: 1;
	font-weight: 900;
	width: 100%;
	height: 1.6em;
	background: var(--color-primary-contrast);
	--gap: 1.5rem;
	display: flex;
	align-items: center;
	overflow: hidden;
	user-select: none;
	gap: var(--gap);
	padding-bottom: 0.125em;
	opacity: 0;
	transition: all 0.4s ease 3.0s;
	transform: scaleY(0);
	transform-origin: top;
	opacity: 1;
	transform: scaleY(1);
}
.loaded .marquee {
	opacity: 1;
	transform: scaleY(1);
}
.marqueeTxt {
	color: var(--color-primary);
	flex-shrink: 0;
	display: flex;
	justify-content: space-around;
	width: fit-content;
	gap: var(--gap);
	animation-name: MarqueeScroll;
	animation-timing-function: linear;
	animation-duration: 20s;
	animation-iteration-count: infinite;
}
@keyframes MarqueeScroll {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(calc(-100% - var(--gap)));
	}
}

/* !content */
/* --------------------------- */
.topHeroBox {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	min-height: 75lvh;
	margin: 0 auto 5lvh;
}
.heroTitle {
	opacity: 0;
	transition: all 0.4s cubic-bezier(.21,1.82,.16,.67) 0.4s;
	transform: scale(0.8);
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 60px;
	margin: 0 auto 3rem;
}
.heroSchedule {
	opacity: 0;
	transform: scale(0.8);
	transition: all 0.4s cubic-bezier(.21,1.82,.16,.67) 0.8s;
	margin: 0 auto 1.5rem;
}
.heroHall {
	opacity: 0;
	transform: scale(0.8);
	transition: all 0.4s cubic-bezier(.21,1.82,.16,.67) 1.4s;
	margin: 0;
}
.loaded .heroTitle,
.loaded .heroSchedule,
.loaded .heroHall {
	opacity: 1;
	transform: scale(1);
}
.cdWrap {
	width: 100%;
}
#cd:checked ~ .cdWrap {
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	z-index: 20000;
}
.countdown {
	font-size: 2rem;
	line-height: 1.25;
	font-weight: 900;
	opacity: 0;
	translate: 0 1em;
	transition: none;
	width: 100%;
	padding: 0.5em 0;
	position: relative;
	z-index: 500;
	margin: auto auto 0;
	background: var(--color-theme-primary);
}
#cd:checked ~ .cdWrap .countdown {
	margin: 0 auto;
	transition: all 0.3s cubic-bezier(.21,1.82,.16,.67) 0.6s;
}
.cdTxt span,
.cdHide {
	display: none;
}
.cdTxt::before {
	content: "開演";
	display: inline;
}
#cd:checked ~ .cdWrap .cdTxt span,
#cd:checked ~ .cdWrap .cdHide {
	display: inline;
}
#cd:checked ~ .cdWrap .cdTxt::before {
	display: none;
}
.loaded .countdown {
	opacity: 1;
	translate: 0 0;
}
.countdown .num {
	font-size: 2em;
	color: #ffd200;
}
.cdClose {
	position: absolute;
	bottom: 0;
	left: 50%;
	translate: -50% 150%;
	background: var(--color-theme-primary);
	display: flex;
	justify-content: center;
	align-items: center;
	width: 1.3em;
	height: 1.3em;
	border-radius: 50%;
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
}
#cd:checked ~ .cdWrap .cdClose {
	opacity: 1;
	pointer-events: auto;
}
.cdBg {
	display: block;
	width: 100vw;
	height: 100lvh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 300;
	background: rgba(var(--color-primary-rgb), .875);
	opacity: 0;
	pointer-events: none;
}
#cd:checked ~ .cdWrap .cdBg {
	opacity: 1;
	pointer-events: auto;
}

.content {
	width: 1200px;
	max-width: 90vw;
	margin: 0 auto 4.25rem;
	padding: 3.25rem 1.5rem;
	background-color: var(--color-primary-contrast);
	border-radius: 3rem;
	position: relative;
	&::after {
		content: "";
		display: block;
		width: calc( 100% - 6px );
		height: calc( 100% - 6px );
		pointer-events: none;
		position: absolute;
		top: -1.5px;
		left: -1.5px;
		border: solid 6px var(--color-secondary);
		border-radius: 3rem;
		filter: drop-shadow(3px 3px 4px rgba(var(--color-txt-rgb), .6));
	}
	&.msgCont {
		background: url('../imgs/msg_bg.jpg') center center no-repeat;
		background-size: cover;
	}
}
.msgTxt {
	font-size: 1.125em;
	line-height: 1.875;
	font-weight: 500;
	color: var(--color-primary-contrast);
	margin: 0 auto 1.5em;
	text-shadow: 2px 2px 4px rgba(var(--color-txt-rgb), .6);
	&:last-of-type {
		margin-bottom: 0;
	}
}

.announceCont {
	width: fit-content;
	min-height: 25vh;
	margin-top: 5rem;
	background: rgba(var(--color-primary-contrast-rgb), 1);
	color: var(--color-primary);
	padding: 3rem;
	border: solid 4px var(--color-theme-primary);
}
.announceTitle {
	width: fit-content;
	font-size: 1.5em;
	line-height: 1.375;
	margin: 0 auto 1em;
	padding: 0.75em 1.5em 0.875em;
	border-top: solid 2px var(--color-primary);
	border-bottom: solid 2px var(--color-primary);
}
.announceTxt {
	font-size: 1.125em;
	line-height: 1.75;
	margin: 0 auto;
}
.contTitle {
	font-size: 1em;
	line-height: 1;
	color: var(--color-primary-contrast);
	margin: 0 auto 2.625em;
	position: relative;
}
.contTitle.visible {
	animation: shaking 0.3s 3;
}
.newsTitle.visible,
.artistDay.visible {
	animation: shaking2 0.3s 3;
}
.artistDay.day2.visible {
	animation: shaking4 1.0s 1;
}
.artistDay.day3.visible {
	animation: shaking5 2.0s 1;
}
#cast .contTitle.visible,
#about .contTitle.visible {
	animation: shaking3 0.3s 3;
}
@keyframes shaking {
	0%, 100% { transform: translate(0, 0); }
	10% { transform: translate(-8px, -2px); }
	20% { transform: translate(8px, 2px); }
	30% { transform: translate(-6px, 4px); }
	40% { transform: translate(6px, -4px); }
	50% { transform: translate(-4px, 2px); }
	60% { transform: translate(4px, -2px); }
	70% { transform: translate(-2px, 4px); }
	80% { transform: translate(2px, -4px); }
	90% { transform: translate(-1px, 1px); }
}
@keyframes shaking2 {
	0% { transform: translate(0, 0) rotate(0deg); }
	8% { transform: translate(-12px, -5px) rotate(-2deg); }
	16% { transform: translate(12px, 5px) rotate(2deg); }
	24% { transform: translate(-10px, 8px) rotate(-1deg); }
	32% { transform: translate(10px, -8px) rotate(1deg); }
	40% { transform: translate(-8px, 3px) rotate(-3deg); }
	48% { transform: translate(8px, -3px) rotate(3deg); }
	56% { transform: translate(-6px, 6px) rotate(-1deg); }
	64% { transform: translate(6px, -6px) rotate(1deg); }
	72% { transform: translate(-4px, 2px) rotate(-2deg); }
	80% { transform: translate(4px, -2px) rotate(2deg); }
	88% { transform: translate(-2px, 4px) rotate(-1deg); }
	96% { transform: translate(2px, -4px) rotate(1deg); }
	100% { transform: translate(0, 0) rotate(0deg); }
}
@keyframes shaking3 {
	0%, 100% { transform: translateX(0) translateY(0); }
	3% { transform: translateX(-10px) translateY(-2px); }
	6% { transform: translateX(12px) translateY(3px); }
	9% { transform: translateX(-8px) translateY(-5px); }
	12% { transform: translateX(14px) translateY(2px); }
	15% { transform: translateX(-6px) translateY(4px); }
	18% { transform: translateX(10px) translateY(-3px); }
	21% { transform: translateX(-12px) translateY(5px); }
	24% { transform: translateX(8px) translateY(-2px); }
	27% { transform: translateX(-14px) translateY(1px); }
	30% { transform: translateX(6px) translateY(-4px); }
	33% { transform: translateX(-10px) translateY(3px); }
	36% { transform: translateX(12px) translateY(-1px); }
	39% { transform: translateX(-8px) translateY(2px); }
	42% { transform: translateX(14px) translateY(-3px); }
	45% { transform: translateX(-6px) translateY(4px); }
	48% { transform: translateX(10px) translateY(-2px); }
	51% { transform: translateX(-12px) translateY(1px); }
	54% { transform: translateX(8px) translateY(3px); }
	57% { transform: translateX(-14px) translateY(-4px); }
	60% { transform: translateX(6px) translateY(2px); }
	63% { transform: translateX(-10px) translateY(-1px); }
	66% { transform: translateX(12px) translateY(4px); }
	69% { transform: translateX(-8px) translateY(-3px); }
	72% { transform: translateX(14px) translateY(1px); }
	75% { transform: translateX(-6px) translateY(2px); }
	78% { transform: translateX(10px) translateY(-4px); }
	81% { transform: translateX(-12px) translateY(3px); }
	84% { transform: translateX(8px) translateY(-1px); }
	87% { transform: translateX(-14px) translateY(2px); }
	90% { transform: translateX(6px) translateY(-3px); }
	93% { transform: translateX(-4px) translateY(1px); }
	96% { transform: translateX(2px) translateY(-2px); }
}
@keyframes shaking4 {
	0%, 100% { transform: translateX(0) }
	3% { transform: translateX(-10px) }
	6% { transform: translateX(12px) }
	9% { transform: translateX(-8px) }
	12% { transform: translateX(14px) }
	15% { transform: translateX(-6px)}
	18% { transform: translateX(10px) }
	21% { transform: translateX(-12px)}
	24% { transform: translateX(8px)}
	27% { transform: translateX(-14px)}
	30% { transform: translateX(6px) }
	33% { transform: translateX(-10px)}
	36% { transform: translateX(12px)}
	39% { transform: translateX(-8px) }
	42% { transform: translateX(14px)}
	45% { transform: translateX(-6px)}
	48% { transform: translateX(10px)}
	51% { transform: translateX(-12px)}
	54% { transform: translateX(8px)}
	57% { transform: translateX(-14px)}
	60% { transform: translateX(6px) }
	63% { transform: translateX(-10px)}
	66% { transform: translateX(12px) }
	69% { transform: translateX(-8px)}
	72% { transform: translateX(14px)}
	75% { transform: translateX(-6px)}
	78% { transform: translateX(10px) }
	81% { transform: translateX(-12px)}
	84% { transform: translateX(8px) }
	87% { transform: translateX(-14px)}
	90% { transform: translateX(6px) }
	93% { transform: translateX(-4px) }
	96% { transform: translateX(2px) }
}
@keyframes shaking5 {
	0%, 100% { transform: translateY(0); }
	3% { transform: translateY(-4px); }
	6% { transform: translateY(6px); }
	9% { transform: translateY(-10px); }
	12% { transform: translateY(4px); }
	15% { transform: translateY(8px); }
	18% { transform: translateY(-6px); }
	21% { transform: translateY(10px); }
	24% { transform: translateY(-4px); }
	27% { transform: translateY(2px); }
	30% { transform: translateY(-6px); }
	33% { transform: translateY(6px); }
	36% { transform: translateY(-2px); }
	39% { transform: translateY(4px); }
	42% { transform: translateY(8px); }
	48% { transform: translateY(-4px); }
	51% { transform: translateY(2px); }
	54% { transform: translateY(6px); }
	57% { transform: translateY(-8px); }
	60% { transform: translateY(4px); }
	63% { transform: translateY(-2px); }
	66% { transform: translateY(8px); }
	69% { transform: translateY(-6px); }
	72% { transform: translateY(2px); }
	75% { transform: translateY(4px); }
	78% { transform: translateY(-8px); }
	81% { transform: translateY(6px); }
	84% { transform: translateY(-2px); }
	87% { transform: translateY(4px); }
	90% { transform: translateY(-6px); }
	93% { transform: translateY(2px); }
	96% { transform: translateY(-4px); }
}

.streamWrap {
	display: flex;
	justify-content: center;
	gap: 3rem;
}
.streamItem {
	background: var(--color-theme-primary);
	padding: 1rem;
	font-size: 1.375em;
	line-height: 1.375;
	font-weight: 700;
}
.streamItem img {
	margin-bottom: 0.25em;
}

.newsCont {
	background-color: var(--color-txt);
	color: var(--color-primary);
	border-radius: 3rem;
	width: 1200px;
	max-width: 90vw;
	margin: 0 auto 4.25rem;
	padding: 1.25rem 2.5rem;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 3.5rem;
}
.newsTitle {
	margin: 0;
}
.newsList {
	display: grid;
	grid-template-columns: 8em 1fr;
	font-size: 1em;
	line-height: 1.5;
	margin: 0;
}
.newsList dt {
	margin: 0;
	padding: 0.375em 0 0.5em 1em;
	letter-spacing: 0.1em;
	position: relative;
	text-align: left;
}
.newsList dt.new::before {
	content: "NEW";
	display: block;
	position: absolute;
	top: 50%;
	left: 0;
	background: var(--color-primary-contrast);
	color: var(--color-secondary);
	font-size: 0.75em;
	line-height: 1;
	font-weight: 900;
	padding: 0.2em 0.5em 0.4125em;
	letter-spacing: 0;
	transform: translate(-75%, -50%);
}
.newsList dd {
	text-align: left;
	margin: 0;
	padding: 0.375em 1em 0.5em 0;
}

/* !content */
/* --------------------------- */
.cs {
	font-size: 2.25em;
	line-height: 1;
	font-weight: 900;
	margin: 1.5em auto;
}
.artistDayWrap {
	margin: 0 auto 6.625rem;
}
.artistDay {
	font-size: 1;
	line-height: 1;
	margin: 0 auto 3.5rem;
	position: relative;
}
.artistWrap {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	flex-wrap: wrap;
	gap: 5rem 2rem;
}
.artistBox {
	width: 31%;
	margin: 0;
	container-type: inline-size;
	&.castBox {
		width: 300px;
		figcaption {
			font-size: 1.625em;
			font-weight: 700;
		}
	}
	.square {
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
		height: 100cqi;
		small {
			top: 87%;
		}
	}
	.fourtothree {
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
		height: 75cqi;
		small {
			top: 100%;
		}
	}
	.landscape {
		position: relative;
		display: flex;
		justify-content: center;
		align-items: center;
		height: 66.666cqi;
	}
	&.artistCs {
		position: relative;
		&::before {
			content: "";
			display: block;
			width: 122px;
			height: 150px;
			background: url('../imgs/icon_headphone.svg') center center no-repeat;
			background-size: 100% auto;
			mix-blend-mode: multiply;
			position: absolute;
			top: 0;
			left: 50%;
			translate: -50% 25%;
			z-index: 100;
		}
	}
}
.artistBox.new {
	position: relative;
}
.artistBox.new::before {
	content: "NEW";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	background: var(--color-primary);
	color: var(--color-primary-contrast);
	font-size: 1.25em;
	line-height: 1;
	font-weight: 900;
	padding: 0.2em 0.5em 0.375em;
	letter-spacing: 0;
	transform: translate(-80%, 75%);
	z-index: 100;;
}
.newIcon {
	content: "NEW";
	display: block;
	position: absolute;
	top: 0;
	right: 1em;
	background: var(--color-secondary);
	color: var(--color-primary-contrast);
	font-size: 0.75em;
	line-height: 1;
	font-weight: 900;
	padding: 0.2em 0.5em 0.375em;
	letter-spacing: 0;
	z-index: 100;
	rotate: 10deg;
}
.artistBox img {
	width: 100%;
	pointer-events: none;
}
.artistBox figcaption {
	font-size: 1.625em;
	line-height: 1;
	font-weight: 900;
	margin: 0.5em 0 0;
	position: relative;
}
.artistBox figcaption .capsS {
	display: inline-block;
	margin-bottom: 0.375em;
	font-size: 0.625em;
}
.artistBox small {
	position: absolute;
	top: 0;
	right: 0;
	font-size: 0.625rem;
	font-weight: 500;
	transform: translateY(-100%);
}
.artistOpening {
	margin: 2em auto 0.5em;
	font-size: 2.25em;
	line-height: 1;
	font-weight: 900;
	color: var(--color-secondary);
}
.artistNotes {
	font-size: 1em;
	line-height: 1;
	text-align: right;
	padding: 0 1.5em;
	margin: -2em 0 0;
}

ul.artistLink {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0.75rem auto 0;
	font-size: 1em;
	line-height: 1;
}
ul.artistLink li {
	margin: 0 0.25em;
}
ul.artistLink li a,
ul.artistLink li a:visited {
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
	padding: 0 0.75em 0 0;
	background: var(--color-primary);
}
ul.artistLink li a.nolink {
	opacity: 0.25;
	pointer-events: none;
}
ul.artistLink li a:hover {
	background: var(--color-theme-primary);
}
ul.artistLink li a i {
	margin-right: 0.5em;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 1.8em;
	height: 1.8em;
	background: var(--color-theme-primary);
	border-right: solid 1px var(--color-primary);
}
.mcComment {
	width: 640px;
	max-width: 90%;
	margin: 1.5rem auto;
}
.mcComment summary {
	display: block;
	cursor: pointer;
	background: var(--color-primary);
	color: var(--color-primary-contrast);
	position: relative;
	display: inline-block;
	font-size: 1.375em;
	line-height: 1;
	font-weight: 900;
	padding: 0.375em 2em 0.4375em;
	border-radius: 3em;
	transition: var(--transition-default);
	list-style: none;
}
.mcComment summary::-webkit-details-marker {
	display: none;
}
.mcComment summary:hover {
	background: var(--color-theme-primary);
}
.mcComment summary span {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	background : linear-gradient(50.3deg, rgba(250, 102, 102, 1) 0%, rgba(232, 5, 141, 1) 100%);
	padding: 0.25em 0.5em 0.375em;
	font-size: 0.625em;
	transform: rotate(15deg) translate(35%, -35%);
	pointer-events: none;
}
.mcComment p {
	font-size: 1em;
	line-height: 1.875;
	margin: 1em 0 0;
}
.mcComment p + p {
	margin-top: 0.25em;
}
.mcComment[open] p {
	animation: fadein 0.5s ease;
}
@keyframes fadein {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.andmore {
	margin: 0 auto;
	font-size: 1.25em;
	line-height: 1;
	font-weight: 900;
	letter-spacing: 0.15em;
	text-indent: 0.15em;
	background: var(--color-theme-primary);
	color: var(--color-primary-contrast);
	display: inline-block;
	padding: 0.5em 1em 0.625em;
}
h3.andmore {
	background: var(--color-theme-primary);
	margin-bottom: 2em;
	font-size: 2em;
	transform: rotate(-30deg);
}
h3.andmore.visible {
	transform: rotate(-5deg);
}
.ticketPrice {
	margin: 0 auto 2rem;
}
.ticketPrice dt {
	background: var(--color-txt);
	color: var(--color-primary-contrast);
	margin: 0 auto 1rem;
	font-size: 1.5em;
	line-height: 1;
	font-weight: 700;
	max-width: 12em;
	padding: 0.375em 0 0.5em;
}
.ticketPrice dd {
	margin: 0 auto 2rem;
	font-size: 2.25em;
	line-height: 1.375;
	font-weight: 700;
	&.colored {
		color: var(--color-secondary);
	}
}
.ticketPrice dd .capsL {
	font-size: 1.5em;
}
.ticketPg {
	margin: 0 auto 4.5rem;
	font-weight: 700;
	dt {
		font-size: 2em;
		line-height: 1;
		margin: 0 auto 0.5em;
		color: var(--color-secondary);
	}
	dd {
		margin: 0 auto 2rem;
		font-size: 1.75em;
		line-height: 1.375;
		font-weight: 700;
	}
}
.ticketBnr {
	margin: 2.5rem auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 7.5%;
}
.ticketBnr a {
	display: block;
	margin: 0;
}
.ticketBnr .btn,
.ticketBnr .btn:visited {
	font-size: 1.25em;
	border-width: 2px;
	border-radius: 3em;
	padding-bottom: 0.625em;
}
.ticketBnr .btn:hover {
	background: var(--color-theme-primary);
}
.aboutBody {
	width: 960px;
	max-width: 90vw;
	margin: 0 auto;
}
.aboutIntro {
	font-size: 1.5em;
	line-height: 1.75;
	font-weight: 700;
	margin: 0 auto 1em;
	color: var(--color-secondary);
}
.aboutInfo {
	display: grid;
	grid-template-columns: 8em 1fr;
	margin: 0 auto 1.5em;
	padding: 1em 0;
	border-top: solid 3px var(--color-primary);
	border-bottom: solid 3px var(--color-primary);
	font-size: 1em;
	line-height: 1.875;
	text-align: left;
}
.aboutInfo dt,
.aboutInfo dd {
	margin: 0 0 0.5em;
}
.aboutOrg {
	font-size: 1em;
	line-height: 1.875;
	text-align: left;
	margin: 0 0 1em;
}
.aboutContact {
	margin: 0 auto 2em;
	font-weight: 700;
}
.aboutContact dt {
	width: 340px;
	max-width: 90%;
	background: var(--color-txt);
	color: var(--color-primary-contrast);
	padding: 0.375em 1.5em 0.5em;
	margin: 0 auto 1em;
	font-size: 1.25em;
}
.aboutContact dd {
	font-size: 2.375em;
	line-height: 1.5;
	margin: 0;
}
.aboutTitle {
	margin: 3em 0 0.75em;
	padding-bottom: 0.75em;
	border-bottom: solid 3px var(--color-primary);
	font-size: 1.5em;
	line-height: 1;
	text-align: left
}
ul.notesList {
	font-size: 1em;
	line-height: 1.875;
	text-align: justify;
	font-weight: 500;
	margin: 0 auto 3em;
}
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;
	transform: scale(0.5);
}
ul.notesList.kome {
	width: fit-content;
	max-width: 640px;
	font-size: 0.875em;
	line-height: 1.75;
	font-weight: 500;
}
ul.notesList.kome li {
	margin-bottom: 0.25em;
}
ul.notesList.kome li::before {
	content: "※";
	transform: scale(1);
}
ul.notesList.star li::before {
	content: "●";
	transform: scale(1);
}
.upgradeTxt {
	font-size: 0.5em;
	line-height: 1.666;
	font-weight: 500;
	margin: 0 auto 1em;
}
.xBody {
	width: 40rem;
	max-width: 90vw;
	max-height: 50svh;
	overflow: auto;
	margin: 0 auto;
}
.xBody iframe {
	max-width: 100%;
}

.goodsWrap {
	padding: 0 1.5rem;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 3rem;
	margin-bottom: 3rem;
}
.goodsItem {
	margin: 0;
}
.goodsItem figcaption {
	margin: 0;
	font-weight: 700;
}
.goodsName {
	width: fit-content;
	font-size: 1.375em;
	line-height: 1.25;
	margin: 0 auto 0.5em;
	padding: 0.75em 0.75em 0.75em;
	border-bottom: solid 2px var(--color-theme-primary);
}
.goodsTxt {
	font-size: 0.875em;
	line-height: 1.5;
	margin: 0 auto 0.75em;
}
.goodsPrice {
	font-size: 2em;
	line-height: 1;
	margin: 0;
}
.goodsPrice .capsS {
	font-size: 0.625em;
}
.sticky {
	position: fixed;
	right: 1vw;
	bottom: 1vw;
	margin: 0;
	z-index: 500;
	font-size: 1.5vw;
	line-height: 1.375;
	font-weight: 900;
	transition: opacity 0.4s ease;
}
.sticky.active {
	opacity: 0;
}
.sticky .txtLink,
.sticky .txtLink:visited {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 7.6em;
	height: 7.6em;
	border-radius: 50%;
	white-space: nowrap;
	background: var(--color-theme-primary);
	color: var(--color-primary-contrast);
	text-decoration: none;
	position: relative;
}
.sticky .txtLink:hover {
	opacity: 0.6;
}

.sticky .txtLink::after {
	content: "";
	display: block;
	width: 92%;
	height: 90%;
	border: solid 2px rgba(var(--color-primary-contrast-rgb), .5);
	position: absolute;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
	pointer-events: none;
	border-radius: 50%;
}
.sticky .txtLink .new {
	display: block;
	font-size: 0.875em;
	line-height: 1;
	background : linear-gradient(50.3deg, rgba(250, 102, 102, 1) 0%, rgba(232, 5, 141, 1) 100%);
	padding: 0.125em 0.5em 0.25em;
	margin: -1em auto 0.25em;
}
.sticky .txtLink span {
	pointer-events: none;
}

.specialBox {
	max-width: 800px;
	margin: 0 auto 3rem;
}
.specialTitle {
	margin: 0 auto 1.5rem;
}
.specialTitle img {
	border-radius: 2rem;
}
.specialTxt {
	font-size: 1.375em;
	line-height: 1.666;
	margin: 0 0 0.5em;
	letter-spacing: 0.1em;
	letter-spacing: 0.1em;
}
.specialTxt .capsL {
	font-size: 1.125em;
	background: var(--color-theme-primary);
	font-weight: 900;
	display: inline-block;
	padding: 0 0.5em;
}
.specialImg {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 1.5rem auto;
}
.specialImg img {
	max-width: 48.5%;
	border-radius: 1rem;
}

.bnrBacknumber {
	width: fit-content;
	display: block;
	margin: 0 auto 4.5rem;
	img {
		border-radius: 50%;
	}
	&:hover img {
		opacity: 1;
		scale: 1.05;
	}
}
ul.backnumberList {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 2rem;
	width: 800px;
	max-width: 90%;
	margin: 0 auto 5rem;
	li {
		width: 100%;
		height: 0;
		padding-bottom: 100%;
		position: relative;
		a {
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			display: flex;
			justify-content: center;
			align-items: center;
			border-radius: 50%;
			background: var(--color-primary-contrast);
			border: solid 3px #e8058d;
			img {
				width: 75%;
			}
			&:hover img {
				opacity: 1;
				scale: 1.1;
			}
			.bn2023 & {
				border-color: #7f39b6;
			}
			.bn2022 & {
				border-color: #ff7119;
			}
			.bn2021 & {
				border-color: #00b672;
			}
			.bn2020 & {
				border-color: #ff7069;
			}
			.bn2019 & {
				border-color: #ff0000;
			}
			.bn2018 & {
				border-color: #ff6d00;
			}
			.bn2017 & {
				border-color: #fa1973;
			}
			.bn2016 & {
				border-color: #b7ea07;
			}
			.bn2015 & {
				border-color: #d80d19;
			}
		}
	}
}

/* !footer */
/* --------------------------- */
.gFooter {
	background: rgba(var(--color-gray-rgb), 1);
	padding: 1rem 0;
	color: var(--color-primary-contrast);
}
.footerInner {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}
.copyright {
	font-size: 1.125em;
	line-height: 1;
	margin: 0 1em;
}
.copyright b {
	font-size: 1.25em;
}

/* !animation */
/* --------------------------- */
.invisible {
	opacity: 0;
	transform: scale(0.8);
}
.visible {
	transition: all 0.8s cubic-bezier(.21,1.82,.16,.67);
	opacity: 1;
	transform: scale(1);
}

.areamapWrap {
	margin: 8rem auto;
}
.areamapWrap .btn {
	font-size: 1.75em;
	font-weight: 700;
	width: fit-content;
	margin-inline: auto;
	padding: 0.5em 1.75em 0.75em;
	border-radius: 100vmax;
	background: var(--color-theme-primary);
	border-width: 4px;
}
.areamapWrap .btn:hover {
	border-color: var(--color-theme-primary);
}
.modalWrap {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 10000;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.6s ease;
}
.checkEl:checked ~ .modalWrap {
	opacity: 1;
	pointer-events: auto;
}
.modalBg {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100vw;
	height: 100vh;
	z-index: 100;
	background: rgba(var(--color-primary-rgb), .875);
}
.modalBody {
	position: relative;
	z-index: 600;
	max-width: 90vw;
	max-height: 90vh;
	width: fit-content;
	height: fit-content;
}
.areamapImg {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.modalBody .cdClose {
	top: 0;
	right: 0;
	bottom: auto;
	left: auto;
	translate: 75% -75%;
	z-index: 1000;
	opacity: 1;
	pointer-events: auto;
	font-size: 32px;
}


/* !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;
	}
	body::before {
		background-size: 200% auto;
	}
	.sparkle {
		width: 17.5vw;
		height: 17.5vw;
		position: fixed;
		&.sparkle1,
		&.sparkle5 {
			translate: -100% 17vw;
		}
		&.sparkle2,
		&.sparkle6 {
			translate: 100vw 48vw;
		}
		&.sparkle3,
		&.sparkle7 {
			translate: 19vw -100%;
		}
		&.sparkle4,
		&.sparkle8 {
			translate: 24vw 100lvh;
		}
	}
	
	@keyframes sparkleMove1 {
		0% {translate: -100% 17vw;}
		10% {translate: 14vw 17vw;}
		20% {translate: 14vw 67vw;}
		35% {translate: 50vw 67vw;}
		45% {translate: 50vw 60vw;}
		55% {translate: 100vw 60vw;}
		100% {translate: 100vw 60vw;}
	}
	@keyframes sparkleMove2 {
		0% {translate: 100vw 84vw;}
		10% {translate: 40vw 84vw;}
		20% {translate: 40vw 142vw;}
		30% {translate: 7vw 142vw;}
		40% {translate: 7vw 182vw;}
		50% {translate: 31vw 182vw;}
		60% {translate: 31vw 201vw;}
		70% {translate: 100vw 201vw;}
		100% {translate: 100vw 201vw;}
	}
	@keyframes sparkleMove3 {
		0% {translate: 41vw -100%;}
		10% {translate: 41vw 51vw;}
		25% {translate: 14vw 51vw;}
		35% {translate: 14vw 110vw;}
		45% {translate: 62vw 110vw;}
		55% {translate: 62vw 152vw;}
		65% {translate: 100vw 152vw;}
		100% {translate: 100vw 152vw;}
	}
	@keyframes sparkleMove4 {
		0% {translate: 63vw 100lvh;}
		10% {translate: 63vw 115vw;}
		15% {translate: 25vw 115vw;}
		20% {translate: 25vw 97vw;}
		37% {translate: 78vw 97vw;}
		47% {translate: 78vw 43vw;}
		57% {translate: -100% 43vw;}
		100% {translate: -100% 43vw;}
	}
	/* !sp header */
	/* --------------------------- */
	.gHeader {
		padding: 0 0 0 0.75rem;
		top: 0;
	}
	.siteTitle {
		width: 5vw;
	}
	ul.gNavList {
		font-size: 1.5em;
		flex-direction: column;
		justify-content: flex-start;
		padding: 0.25rem 0;
		position: fixed;
		top: 3rem;
		right: 0;
		width: 60vw;
		height: 100lvh;
		background: var(--color-secondary);
		pointer-events: none;
		transform: translateX(100%);
		transition: var(--transition-default);
	}
	#menu:checked ~ .gHeader ul.gNavList {
		transform: translateX(0);
		pointer-events: auto;
	}
	ul.gNavList li {
		width: 100%;
		margin: 0 auto;
	}
	ul.gNavList li + li {
		border-top: solid 1px rgba(var(--color-primary-contrast-rgb), .5);
		border-left: none;
	}
	ul.gNavList li a {
		padding: 0.75em 0;
	}
	.toggle {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-direction: column;
		width: 3rem;
		height: 3rem;
		margin: 0 0 0 auto;
		cursor: pointer;
		flex-shrink: 0;
		z-index: 1000;
	}
	.bar {
		width: 70%;
		height: 0.333rem;
		background: var(--color-primary-contrast);
		margin: 0.2rem auto;
		transition: var(--transition-default);
	}
	#menu:checked ~ .gHeader .bar:nth-of-type(1) {
		transform: translateY(0.75rem) rotate(45deg);
	}
	#menu:checked ~ .gHeader .bar:nth-of-type(2) {
		transform: scaleX(0);
	}
	#menu:checked ~ .gHeader .bar:nth-of-type(3) {
		transform:  translateY(-0.75rem) rotate(-45deg);
	}
	.marquee {
		font-size: 1em;
	}
	.marqueeTxt {
		white-space: nowrap;
	}
	.topHeroBox {
		min-height: 80lvh;
	}
	.heroTitle {
		max-width: 90%;
		flex-direction: column;
		gap: 1.5rem;
		img:first-of-type {
			max-width: 60%;
		}
	}
	.heroSchedule {
		max-width: 75%;
	}
	.heroHall {
		max-width: 90%;
	}
	.countdown {
		font-size: 1.25em;
		white-space: nowrap;
	}
	.streamWrap {
		display: block;
	}
	.streamItem {
		width: 75%;
		margin: 0 auto 3rem;
		font-size: 1.25em;
		padding: 0.5rem;
	}
	.content {
		padding-top: 3rem;
	}
	.contTitle {
		margin-bottom: 1.5rem;
		img {
			width: auto;
			height: 12.5vw;
		}
	}
	.msgTxt {
		font-size: 1.25em;
		line-height: 1.666;
	}
	.newsCont {
		display: block;
		padding: 1.25rem 1rem 2rem 2.5rem;
	}
	.newsTitle {
		max-width: 50%;
		margin: 0 auto 1rem;
	}
	.newsList {
		display: block;
		font-size: 1em;
	}
	.newsList dt {
		text-align: left;
		margin-bottom: 0;
		padding-bottom: 0;
		padding-left: 1rem;
		border-bottom: none;
	}
	.newsList dd {
		text-align: left;
		padding-top: 0.25em;
		padding-right: 0;
		padding-left: 1rem;
		border-bottom: dashed 1px rgba(var(--color-primary-contrast-rgb), .3);
	}
	#artist.content,
	#cast.content {
		padding-right: 0.75rem;
		padding-left: 0.75rem;
	}
	.artistDay {
		margin-bottom: 2rem;
	}
	.artistDay img {
		max-width: 30vw;
	}
	.artistDay .new {
		font-size: 0.875em;
	}
	.artistWrap {
		gap: 3rem;
	}
	.artistBox {
		width: 90%;
		margin: 0 auto;
		&.castBox {
			width: 66%;
		}
		.square,
		.landscape,
		.fourtothree {
			height: auto;
			small {
				top: 107%;
			}
		}
	}
	.artistBox figcaption {
		font-size: 1.5em;
	}
	.artistBox small {
		font-size: 0.5rem;
		transform: translateY(-100%);
	}
	.artistBox.vaundy small {
		transform: translate(-2.5em, -0.875em);
	}
	ul.artistLink {
		font-size: 0.9375em;
	}
	.andmore {
		font-size: 1em;
	}
	h3.andmore {
		font-size: 1.375em;
	}
	.artistDay + .andmore {
		margin-top: 1.5rem;
	}
	.artistBox.new::before {
		font-size: 1em;
		padding: 0.2em 0.5em 0.375em;
	}
	#cast .artistBox figcaption {
		font-size: 1.75em;
	}
	.artistBox.artistCs::before {
		scale: 0.8;
		translate: -50% 15%;
	}
	.mcComment p {
		font-size: 0.875em;
	}
	.ticketPrice dt {
		font-size: 1.375em;
	}
	.ticketPrice dd {
		font-size: 1.75em;
	}
	.ticketPrice dd .ticketBnr:first-of-type a {
		margin-bottom: 0;
	}
	.ticketBnr a,
	.ticketBnr img {
		display: block;
		margin: 0 auto 1.5rem;
		max-width: 90%;
	}
	.ticketBnr a img {
		margin: 0 auto;
		display: inline;
	}
	.ticketPg {
		margin-bottom: 3rem;
		dt {
			font-size: 1.5em;
		}
	}
	.ugTitle {
		max-width: 85%;
		margin: 0 auto;
	}
	.aboutTitle {
		line-height: 1.5;
	}
	.aboutBody {
		max-width: 100%;
	}
	.aboutIntro {
		font-size: 1.25em;
	}
	.aboutOrg {
		font-size: 1em;
		line-height: 1.5;
	}
	.aboutInfo {
		display: block;
	}
	.aboutInfo dt {
		margin-bottom: 0;
	}
	.aboutInfo dd {
		padding-left: 1em;
	}
	.aboutContact dd {
		line-height: 1.25;
		.capsS {
			font-size: 0.5em;
			line-height: 1.5;
			display: inline-block;
			margin-top: 0.25em;
		}
	}
	ul.notesList {
		font-size: 0.8125em;
		line-height: 1.666;
	}
	.gFooter {
		padding-top: 2rem;
	}
	.copyright {
		margin: 0 auto 1em;
	}
	.xBody {
		width: 100%;
		max-width: 100%;
	}
	.goodsWrap {
		grid-template-columns: repeat(1, 1fr);
	}
	.goodsName {
		font-size: 1.3125em;
	}
	.goodsPrice {
		font-size: 1.5em;
	}
	.sticky {
		right: 3vw;
		bottom: 3vw;
		font-size: 3.5vw;
	}
	.specialTitle img {
		border-radius: 1rem;
	}
	.specialTxt {
		font-size: 1.125em;
		letter-spacing: 0;
		letter-spacing: 0;
	}
	.specialImg img {
		border-radius: 0.5rem;
	}
	.announceCont {
		padding: 3rem 1.5rem;
	}
	.announceTitle {
		width: 100%;
		padding: 0.75em 0 0.875em;
	}
	.announceTxt {
		font-size: 1.125em;
		line-height: 1.666;
		text-align: justify;
	}
	ul.backnumberList {
		grid-template-columns: repeat(3, 1fr);
		gap: 1rem;
	}
}
