@charset "UTF-8";

:root{
	--color-primary: #000000;
	--color-primary-rgb: 0,0,0;
	--color-primary-contrast: #fff;
	--color-primary-contrast-rgb: 255,255,255;
	--color-accent: #bc272d;
	--color-accent-rgb: 188,39,45;
	--color-accent2: #0071b7;
	--color-accent2-rgb: 0,113,183;
	--transition-default: all 0.4s ease; 
}


/* !foundation */
/* --------------------------- */
html,body {
	font-family:'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-primary-contrast);
	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-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-dela-g {
	font-family: "Dela Gothic One", sans-serif;
	font-weight: 400!important;
	font-style: normal!important;
}

.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 */
/* --------------------------- */

/* !header */
/* --------------------------- */
.gHeader {
	width: 100vw;
	position: relative;
	overflow: hidden;
	padding-top: 42.5vw;
	background: var(--color-primary);
	z-index: 100;
}
.siteTitle {
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	z-index: 1;
}
.siteTitle img {
	width: 100vw;
	filter: blur(8px);
	transition: filter 3.0s ease 0.6s, opacity 2.0s ease 0s;
	opacity: 0;
}
.loaded .siteTitle img {
	filter: blur(0);
	opacity: 1;
}
.eventCatch {
	margin: 0 auto 7.5vw;
	font-size: 2.5em;
	line-height: 1.3;
	font-weight: 900;
	opacity: 0;
	transition: opacity 0.3s ease 4.0s, translate 0.3s cubic-bezier(.21,1.82,.16,.67) 4.0s;
	translate: 0 -50%;
	filter: drop-shadow(0 0 4px var(--color-primary)) drop-shadow(0 0 10px var(--color-primary));
	position: relative;
	z-index: 10;
}
.loaded .eventCatch {
	opacity: 1;
	translate: 0 0;
}
.eventCatch strong {
	font-size: 1.25em;
	display: block;
	margin: 1em auto 0;
	opacity: 0;
	transition: opacity 0.3s ease 4.6s, rotate 0.3s cubic-bezier(.21,1.82,.16,.67) 4.6s;
	rotate: 50deg;
}
.loaded .eventCatch strong {
	opacity: 1;
	rotate: -5deg;
}
.eventCatch img {
	width: 100%;
	filter: drop-shadow(0 0 4px var(--color-primary)) drop-shadow(0 0 10px var(--color-primary));
}
.eventInfoWrap {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto 3rem;
}
.eventInfo {
	margin: 0 3vw;
	font-size: 3.75em;
	line-height: 1;
	opacity: 0;
	transition: opacity 0.2s ease 5.4s, transform 0.2s ease 5.4s;
	transform: skewX(-30deg) translateX(30%);
}
.eventInfo:last-of-type {
	transition: opacity 0.2s ease 5.6s, transform 0.2s ease 5.6s;
}
.loaded .eventInfo {
	opacity: 1;
	transform: skewX(0) translateX(0%);
}
.eventScheduleWrap {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	background: var(--color-primary-contrast);
	color: var(--color-primary);
	margin: 0 auto;
	padding: 1.5rem 0;
	opacity: 0;
	transition: opacity 0.3s ease 6.1s, translate 0.3s ease-in 6.1s;
	translate: 0 50%;
}
.loaded .eventScheduleWrap {
	opacity: 1;
	translate: 0 0;
}
.eventSchedule {
	margin: 0 3vw;
	position: relative;
}
.eventSchedule:last-of-type::before {
	content: "/";
	font-size: 4em;
	line-height: 1;
	font-family: "Dela Gothic One";
	position: absolute;
	top: 0;
	left: 0;
	translate: -175% 0%;
}
.eventSchedule dt {
	margin: 0 auto 1rem;
	font-size: 4em;
	line-height: 1;
	color: #ffa632;
}
.eventSchedule:last-of-type dt {
	color: #453f84;
}
.eventSchedule dd {
	margin: 0 auto;
	font-size: 1.125em;
	font-weight: 700;
}
canvas {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1000;
	pointer-events: none;
}

/* !content */
/* --------------------------- */
main {
	position: relative;
}
.content {
	margin: 0 auto;
	padding: 0 0 8rem;
	position: relative;
}
.contTitle {
	width: 100%;
	margin: 0 auto 0.6em;
	font-size: 4.5em;
	line-height: 1;
	font-weight: normal;
	position: relative;
	z-index: 10;
	padding-top: 2em;
	overflow: hidden;
	white-space: nowrap;
}
.contTitle.invisible {
	letter-spacing: 0.5em;
}
.contTitle.visible {
	letter-spacing: 0;
	transition: opacity 0.6s ease, letter-spacing 0.4s ease;
}
.contTitle .capsS {
	font-size: 0.7em;
	font-weight: bold;
}
.content::before {
	content: "";
	display: block;
	width: 100%;
	height: 24.8vw;
	background: url('../imgs/content_bg.png') center top no-repeat;
	background-size: 100% auto;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.chairman .contTitle .capsS {
	font-size: 0.415em;
	display: block;
	line-height: 1;
}
.contCatch {
	font-size: 2.5em;
	line-height: 1.25;
	color: var(--color-accent);
	margin: -1em auto 1em;
}
.contBody {
	position: relative;
	z-index: 10;
	max-width: 960px;
	margin: 0 auto;
}
.chairmanCommentWrap::before,
.chairmanCommentWrap::after {
	content: "";
	display: block;
	position: fixed;
	z-index: -1;
	pointer-events: none;
}
.chairmanCommentWrap::before {
	width: 800px;
	height: 800px;
	background: url('../imgs/content_left.png') 0 0 no-repeat;
	background-size: 100% auto;
	top: 0;
	left: 0;
	translate: -55% -5%;
}
.chairmanCommentWrap::after {
	width: 900px;
	height: 900px;
	background: url('../imgs/content_right.png') 0 0 no-repeat;
	background-size: 100% auto;
	bottom: 0;
	right: 0;
	translate: 55% 5%;
}

.chairmanCommentWrap {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	width: fit-content;
}
.chairmanImg {
	flex-shrink: 0;
	margin-right: 2.5rem;
	margin: 0 2.5rem 0 0;
	pointer-events: none;
}
.chairmanImg figcaption {
	margin: 1rem auto 0;
}
.chairmanComment {
	width: fit-content;
	font-size: 1.125em;
	line-height: 1.875;
	text-align: justify;
	letter-spacing: 0.03em;
	font-weight: bold;
	margin: -1em 0 0;
}
.chairmanComment .wf-dela-g {
	font-size: 2em;
	display: inline-block;
	margin-bottom: 0.5em;
	position: relative;
}
.chairmanComment .wf-dela-g::after {
	content: "";
	display: block;
	width: 200%;
	height: 1px;
	background: var(--color-primary-contrast);
	position: absolute;
	right: -1em;
	bottom: 0;
	z-index: -1;
}

.artistBox {
	margin: 0 auto 4.5rem;
	position: relative;
	pointer-events: none;
}
.artistBox figcaption {
	margin: 1.25rem 0 0;
	position: relative;
	line-height: 1;
}
.artistBox figcaption span {
	display: inline-block;
	font-size: 1.2em;
	line-height: 1;
	font-weight: bold;
	margin-top: 0.625em;
}
.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: 2em;
	font-weight: 700;
	margin: 0 auto 3rem;
	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%;
}

.teamCont {
	--color-rp: #bc272d;
	--color-bs: #0071b7;
	--color-ya: #c0b641;
	--color-ga: #2aa63d;
}
.checkEl {
	display: none;
}
.teamSelectorWrap {
	display: flex;
	justify-content: center;
	margin: 0 auto;
}
.teamSelector {
	font-size: 1.25em;
	line-height: 1.25;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 11em;
	padding: 0.375em 0 0.5em;
	opacity: 0.75;
	transition: opacity 0.4s ease;
	background: var(--color-primary);
}
.teamSelector:hover {
	opacity: 1;
	cursor: pointer;
}
.teamSelector.rp,
.teamDetail.rp {
	background: var(--color-rp);
}
.teamSelector.bs,
.teamDetail.bs {
	background: var(--color-bs);
}
.teamSelector.ya,
.teamDetail.ya {
	background: var(--color-ya);
}
.teamSelector.ga,
.teamDetail.ga {
	background: var(--color-ga);
}
#teamRed:checked ~ .teamSelectorWrap .teamSelector.rp,
#teamBlue:checked ~ .teamSelectorWrap .teamSelector.bs,
#teamYellow:checked ~ .teamSelectorWrap .teamSelector.ya,
#teamGreen:checked ~ .teamSelectorWrap .teamSelector.ga {
	opacity: 1;
}
.teamDetail {
	transition: grid-template-rows 0.4s ease;
	display: grid; 
	grid-template-rows: 0fr;
}
.teamDetail > div {
	overflow: hidden;
}
#teamRed:checked ~ .teamDetail.rp,
#teamBlue:checked ~ .teamDetail.bs,
#teamYellow:checked ~ .teamDetail.ya,
#teamGreen:checked ~ .teamDetail.ga {
	grid-template-rows: 1fr;
}
.teamDetailName {
	font-size: 4em;
	line-height: 1;
	margin: 0 auto 0.25em;
	padding: 1em 0 0;
	min-width: 6em;
	width: fit-content;
	color: rgba(var(--color-primary-contrast-rgb), .8);
}
.teamDetailName .capsS {
	font-size: 0.5em;
	display: flex;
	letter-spacing: 0.1em;
	text-indent: 0.1em;
	justify-content: center;
	align-items: center;
	white-space: nowrap;
	gap: 0.5em;
	margin-top: 0.25em;
	opacity: 0.6;
}
.teamDetailName .capsS::before,
.teamDetailName .capsS::after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background: var(--color-primary-contrast);
}
.teamMember {
	margin: 0 auto 2rem;
	pointer-events: none;
}
.teamMember figcaption {
	font-size: 1.5em;
	line-height: 1.25;
	font-weight: 700;
	margin: 0.25em auto 0;
}
.teamMember figcaption .capsS {
	display: block;
	font-size: 0.625em;
}
.teamMemberWrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: flex-start;
	max-width: 90vw;
	width: 640px;
	margin: 0 auto;
	position: relative;
	z-index: 1000;
}
.ga .teamMemberWrap,
.ya .teamMemberWrap {
	width: 880px;
}
.teamMemberWrap .teamMember {
	margin: 0 1.5rem 3rem;
}
.teamMemberWrap .teamMember img {
	width: 160px;
	height: 220px;
	object-fit: contain;
}
.teamMembers {
	font-size: 1.5em;
	line-height: 2;
	font-weight: 700;
	margin: 0 auto 2em;
}
.teamMembers .capsS {
	font-size: 0.625em;
}
.teamMembers.leader {
	font-size: 2em;
	line-height: 1.25;
	margin-bottom: 0.5em;
}
.teamDetail .cs {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 6em;
	opacity: 0.5;
}

.gameWrap {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
	margin: 0 auto 3rem;
	position: relative;
	z-index: 100;
	max-width: 90vw;
	gap: 3rem 3%;
	margin-top: 3rem;
}
.gameDetail {
	max-width: 31%;
	margin: 0;
}
.gameDetail figcaption {
	font-size: 1.875vw;
	margin: 0.5em auto 0;
}
.gameCat {
	display: inline-block;
	margin: 0 auto 1em;
	font-size: 0.625em;
	line-height: 1;
	color: var(--color-primary-contrast);
	background: #ffa632;
	width: fit-content;
	padding: 0.125em 0.75em 0.25em;
	transform: skewX(-15deg);
}
.gameCat.night {
	background: #453f84;
}
.game .cs {
	font-size: 1.375em;
	width: fit-content;
	padding: 0.25em 1em 0.375em;
	border: solid 2px #ffa632;
}

.pgBtn {
	display: block;
	cursor: pointer;
	font-size: 2em;
	line-height: 1;
	width: fit-content;
	margin: 0 auto 3rem;
	background: var(--color-accent);
	padding: 0.25em 1em 0.375em;
	border-radius: 100vmax;
	border: solid 3px var(--color-primary-contrast);
	box-shadow: 0.15em 0.2em 0 rgba(var(--color-primary-contrast-rgb), .25);
	transition: box-shadow 0.4s ease, translate 0.4s ease;
}
.pgBtn:hover {
	translate: 0.1em 0.1em;
	box-shadow: 0.075em 0.1em 0 rgba(var(--color-primary-contrast-rgb), .125);
}
.modalWrap {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100lvh;
	z-index: 10000;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.4s ease;
}
.checkEl:checked ~ .modalWrap {
	opacity: 1;
	pointer-events: auto;
}
.modalBg {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	background: rgba(var(--color-primary-rgb), .8);
}
.modalImg {
	width: 100%;
	height: 100%;
	object-fit: contain;
	pointer-events: none;
}
.modalClose {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 1rem;
	right: 1rem;
	font-size: 2.5em;
	line-height: 1;
	width: 1.375em;
	height: 1.375em;
	border-radius: 50%;
	background: var(--color-accent);
	color: var(--color-primary);
	cursor: pointer;
	transition: scale 0.4s ease;
}
.modalClose:hover {
	scale: 0.9;
}

.ticketPrice {
	font-size: 1.875em;
	line-height: 1.2;
	font-weight: 700;
	margin: 2em auto 1.4em;
}
.ticketPrice .capsL {
	font-size: 2em;
	font-weight: normal;
	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-accent);
	padding: 0.75em 1em;
	width: 640px;
	max-width: 90%;
}
.ticketPgTitle:nth-of-type(even) {
	background: var(--color-accent2);
}
.ticketSchedule {
	font-size: 1.875em;
	line-height: 1.5;
	font-weight: 700;
	margin: 0 auto;
}
.ticketSchedule.architect {
	font-size: 3.75em;
	line-height: 1.125;
	font-weight: 800;
	letter-spacing: 0.03em;
}
.soldout {
	position: relative;
	width: fit-content;
}
.iconSoldout {
	background: var(--color-accent2);
	color: var(--color-primary-contrast);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.375rem;
	line-height: 1;
	width: fit-content;
	position: absolute;
	padding: 0.25em 0.5em 0.375em;
	top: 50%;
	right: 0;
	rotate: 10deg;
	translate: 15% -50%;
}
.bnrWrap {
	margin: 2rem auto 5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
.bnrBtn {
	display: inline-block;
	position: relative;
	overflow: hidden;
	margin: 0 1rem;
}
.bnrBtn:hover {
	scale: 1.1;
}
.bnrBtn:hover img {
	opacity: 1;
}
.ticketFc {
	font-weight: 600;
	margin-bottom: 0.5em;
}
.ticketFc + .ticketSchedule {
	margin-bottom: 1.5em;
}
.ticketUgTitle {
	font-size: 3.125em;
	line-height: 1;
	width: 640px;
	max-width: 90%;
	margin: 3em auto 0.8em;
	padding: 0.6em 0;
	position: relative;
	background : linear-gradient(105deg, rgba(217, 5, 34, 1) 0%, rgba(150, 3, 23, 1) 8.29%, rgba(70, 2, 11, 1) 18.82%, rgba(19, 0, 3, 1) 26.32%, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 1) 70%, rgba(217, 5, 34, 1) 100%);
}
.ticketUgTitle::before {
	content: "";
	display: block;
	width: calc(100% + 12px);
	height: calc(100% + 12px);
	position: absolute;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
	z-index: -1;
	background : linear-gradient(135deg, rgba(85, 2, 16, 1) 0%, rgba(178, 0, 20, 1) 14.05%, rgba(123, 9, 34, 1) 30.56%, rgba(98, 0, 16, 1) 34.52%, rgba(137, 0, 23, 1) 45.29%, rgba(109, 0, 18, 1) 64.18%, rgba(217, 5, 34, 1) 86.45%, rgba(225, 4, 27, 1) 88.96%, rgba(255, 0, 0, 1) 100%);
}

.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;
}

.goodsWrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 3rem;
	margin-bottom: 3rem;
}
.goodsItem {
	max-width: 480px;
	width: 27.5%;
	margin: 0;
	background : linear-gradient(105deg, rgba(217, 5, 34, 1) 0%, rgba(150, 3, 23, 1) 8.29%, rgba(70, 2, 11, 1) 18.82%, rgba(19, 0, 3, 1) 26.32%, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 1) 70%, rgba(217, 5, 34, 1) 100%);
	padding: 1.5rem;
	position: relative;
}
.goodsItem::before {
	content: "";
	display: block;
	width: calc(100% + 12px);
	height: calc(100% + 12px);
	position: absolute;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
	z-index: -1;
	background : linear-gradient(135deg, rgba(85, 2, 16, 1) 0%, rgba(178, 0, 20, 1) 14.05%, rgba(123, 9, 34, 1) 30.56%, rgba(98, 0, 16, 1) 34.52%, rgba(137, 0, 23, 1) 45.29%, rgba(109, 0, 18, 1) 64.18%, rgba(217, 5, 34, 1) 86.45%, rgba(225, 4, 27, 1) 88.96%, rgba(255, 0, 0, 1) 100%);
	box-shadow: 3px 3px 12px rgba(0,0,0,1);
}
.goodsItem img {
	width: 100%;
	display: block;
	box-shadow: 6px 6px 12px rgba(0,0,0,1);
	position: relative;
	z-index: 1000;
}
.goodsItem figcaption {
	margin: 0.5em 0 0;
	position: relative;
	z-index: 1000;
}
.goodsRandom {
	position: absolute;
	top: 0;
	right: 0;
}
.goodsName {
	display: block;
	font-size: 2em;
	line-height: 1.25;
	font-weight: 900;
	margin: 0 auto 0.25em;
	height: 2.5em;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-shadow: 4px 4px 8px rgba(0,0,0,1);
}
.goodsPrice {
	display: block;
	font-size: 1.5em;
	font-weight: 700;
	line-height: 1;
	margin: 0 auto 0.375em;
}
.goodsPrice .capsS {
	font-size: 0.5em;
}
.goodsTxt {
	display: block;
	font-size: 0.875em;
	line-height: 1.5;
}

.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 {
	font-family: YuGothic;
	content: "■";
}
ul.notesList.kome li::before {
	font-family: YuGothic;
	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 0.75em;
	width: 17.3em;
	max-width: 90%;
	padding: 0.625em 0;
	border-radius: 100vmax;
	border: solid 3px var(--color-primary-contrast);
	background: rgba(var(--color-primary-rgb), .5);
}
* + .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;
}

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

.stickyBnr,
.stickyBnr:visited {
	position: fixed;
	right: 1.5vw;
	top: 1.5vw;
	z-index: 1000;
	font-size: 1.75rem;
	line-height: 1.375;
	font-weight: 700;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 6em;
	height: 6em;
	border-radius: 50%;
	white-space: nowrap;
	background : linear-gradient(135deg, rgba(85, 2, 16, 1) 0%, rgba(178, 0, 20, 1) 14.05%, rgba(123, 9, 34, 1) 30.56%, rgba(98, 0, 16, 1) 34.52%, rgba(137, 0, 23, 1) 45.29%, rgba(109, 0, 18, 1) 64.18%, rgba(217, 5, 34, 1) 86.45%, rgba(225, 4, 27, 1) 88.96%, rgba(255, 0, 0, 1) 100%);
	color: var(--color-primary-contrast);
	text-decoration: none;
	box-shadow: 4px 4px 8px 4px rgba(0,0,0,.75);
	border: solid 4px var(--color-accent);
}
.stickyBnr:hover {
	scale: 1.05;
	color: var(--color-primary-contrast);
}
.stickyBnr .capsS {
	pointer-events: none;
}

/* !animation */
/* --------------------------- */
.invisible {
	opacity: 0;
}
.visible {
	transition: opacity 0.8s ease;
	opacity: 1;
}


@media screen and (max-width:1024px) {
	.eventInfo {
		font-size: 4vw;
	}
	.eventSchedule dt {
		font-size: 5vw;
	}
	.chairmanCommentWrap::before {
		width: 30vw;
		height: 30vw;
		translate: -55% -5%;
	}
	.chairmanCommentWrap::after {
		width: 30vw;
		height: 30vw;
		translate: 55% 5%;
	}
	.goodsName {
		font-size: 1.375em;
	}
	.copyright {
		font-size: 1.25vw;
	}
}
/* !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;
		padding-top: 80vw;
	}
	.siteTitle {
		top: 15vw;
		left: 50%;
		translate: -50% 0;
	}
	.siteTitle img {
		width: 135vw;
		max-width: 135vw;
	}
	.eventCatch {
		font-size: 1.625em;
	}
	.eventCatch strong {
		font-size: 1.375em;
		margin-top: 0.5em;
	}
	.eventInfoWrap {
		flex-direction: column;
	}
	.eventInfo {
		font-size: 2.5em;
		margin: 0 auto;
	}
	.eventInfo:last-of-type {
		margin-top: 0.5em;
	}
	.eventScheduleWrap {
		flex-direction: column;
		align-items: center;
	}
	.eventSchedule {
		margin: 0 auto;
	}
	.eventSchedule:last-of-type {
		margin-top: 1.5rem;
	}
	.eventSchedule:last-of-type::before {
		display: none;
	}
	.eventSchedule dt {
		font-size: 2.375em;
	}
	main {
		width: 100vw;
		overflow: hidden;
	}
	.content {
		padding: 2rem 1.5rem 1.5rem;
	}
	.chairmanCommentWrap::before {
		width: 65vw;
		height: 65vw;
		translate: -50% 0;
	}
	.chairmanCommentWrap::after {
		width: 70vw;
		height: 70vw;
		translate: 50% 0;
	}
	.contTitle {
		font-size: 3em;
		position: relative;
		z-index: 20;
		margin-bottom: 1.5em;
		padding-top: 1em;
	}
	.content::before {
		width: 100vw;
		height: 50vw;
		background-size: auto 100%;
	}
	.contCatch {
		font-size: 2em;
	}
	.chairmanCommentWrap {
		display: block;
	}
	.chairmanImg {
		margin: 0 auto 3rem;
	}
	.chairmanComment {
		font-size: 1em;
		line-height: 1.75;
		margin: 0 auto;
	}
	.artistBox {
		max-width: 100%;
		margin-inline: auto;
	}
	.artistBox.vertical img {
		max-width: 60vw;
	}
	.artistBox .square {
		width: auto;
		height: 5rem;
	}
	.content.teamCont {
		padding-right: 0;
		padding-left: 0;
	}
	.teamSelectorWrap {
		width: 100%;
	}
	.teamSelector {
		font-size: 0.575em;
		width: 25%;
		padding: 0.625em 0 0.75em;
	}
	.teamSelector .capsL {
		font-size: 1.75em;
	}
	.teamDetailName {
		font-size: 2.25em;
		width: 100%;
	}
	.teamMember {
		margin-top: 1rem;
	}
	.teamMember figcaption {
		font-size: 1.25em;
		margin-top: 0.375em;
	}
	.teamMember img {
		width: 40vw;
	}
	.teamMemberWrap {
	}
	.teamMemberWrap .teamMember {
		margin: 0 1rem 2rem;
	}
	.teamMemberWrap .teamMember img {
		width: 35vw;
		height: 48.125vw;
	}
	.teamMemberWrap .teamMember figcaption {
		font-size: 1em;
		margin-top: 0.5em;
	}
	.teamMembers {
		font-size: 1.125em;
	}
	.teamMembers.leader {
		font-size: 1.5em;
	}
	
	.game::before {
		height: 66vw;
		top: 50vw;
		background-size: auto 100%;
	}
	.gameDetail {
		max-width: 100%;
		margin: 0;
	}
	.gameDetail figcaption {
		font-size: 1.5em;
	}
	
	.ticketPrice {
		font-size: 1.5em;
	}
	.ticketPgTitle {
		font-size: 1.3125em;
		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;
	}
	.iconSoldout {
		translate: 17.5% -180%;
	}
	.streamNotes {
		font-size: 0.75em;
		margin-top: -1.5rem;
	}
	.goodsItem {
		width: 87.5%;
	}
	.goodsName {
		font-size: 1.625em;
	}
	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;
	}
	.notesTxt {
		font-size: 1em;
		line-height: 1.5;
		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;
	}
	.stickyBnr {
		right: 2vw;
		top: 2vw;
		font-size: 1rem;
		border: solid 2px var(--color-accent);
	}
}
