@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: #ff28b2;
	--color-accent-rgb: 255,40,178;
	--color-accent2: #2934ff;
	--color-accent2-rgb: 41,52,255;
	--transition-default: all 0.4s ease; 
}


/* !foundation */
/* --------------------------- */
html,body {
	font-family:'Arial Black','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 */
/* --------------------------- */

.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: 100vw;
	height: 80px;
	position: fixed;
	top: 0;
	left: 0;
	background: var(--color-primary);
	z-index: 2000;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 2rem 0 0;
	translate: 0 -100%;
	transition: translate 0.4s ease 3.4s;
}
.loaded .gHeader {
	translate: 0 0;
}
.siteTitle {
	margin: 0 auto 0 0;
}
.checkEl {
	display: none;
}
.menu {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 3.625rem;
	height: 3.625rem;
	margin: 0;
	cursor: pointer;
}
.menu .bar {
	width: 80%;
	height: 0.25rem;
	background: var(--color-accent);
	border-radius: 0.125rem;
	margin: 0.3125rem auto;
	transition: translate 0.4s ease, rotate 0.4s ease, scale 0.4s ease;
}
#menu:checked ~ .gHeader .menu .bar:first-of-type {
	scale: 1.2 1;
	rotate: 225deg;
	translate: 0 360%;
}
#menu:checked ~ .gHeader .menu .bar:nth-of-type(2) {
	scale: 0 1;
}
#menu:checked ~ .gHeader .menu .bar:last-of-type {
	scale: 1.2 1;
	rotate: -225deg;
	translate: 0 -360%;
}
.headerBtn {
	display: block;
	font-size: 1.125em;
	line-height: 1;
	font-weight: 800;
	text-decoration: none;
	margin: auto 2em auto auto;
	background: var(--color-accent);
	color: var(--color-primary);
	padding: 0.75em 1.5em;
	border-radius: 100vmax;
	box-shadow: 0 0 8px 6px rgba(var(--color-primary-contrast-rgb), .75);
}
.headerBtn:hover {
	color: var(--color-primary-contrast);
	box-shadow: 0 0 6px 3px rgba(var(--color-primary-contrast-rgb), 1);
}

.pageNav {
	position: fixed;
	top: 10vw;
	left: 0;
	z-index: 1000;
	padding: 0 0 0 3rem;
	translate: -110% 0;
	transition: translate 0.6s cubic-bezier(.21,1.82,.16,.67);
}
#menu:checked ~ .pageNav {
	translate: 0 0;
}
ul.pageNavList {
	margin: 0 0 1rem;
	line-height: 1;
	text-align: left;
}
ul.pageNavList li {
	margin: 0 0 2rem;
}
ul.pageNavList li a img {
	pointer-events: none;
	display: block;
	filter: drop-shadow(0 0 5px rgba(var(--color-accent-rgb), 1)) drop-shadow(0 0 5px rgba(var(--color-accent-rgb), 1)) drop-shadow(0 0 5px rgba(var(--color-accent-rgb), 1)) drop-shadow(0 0 10px rgba(var(--color-accent-rgb), .75));
	transform-origin: left center;
}
ul.pageNavList li a:hover img {
	opacity: 1;
	filter: drop-shadow(0 0 5px rgba(var(--color-accent-rgb), 1)) drop-shadow(0 0 5px rgba(var(--color-accent-rgb), 1)) drop-shadow(0 0 5px rgba(var(--color-accent-rgb), 1)) drop-shadow(0 0 10px rgba(var(--color-accent-rgb), 1)) drop-shadow(0 0 10px rgba(var(--color-accent-rgb), .5));
	scale: 1.25;
}
ul.snsList {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
ul.snsList li a {
	display: block;
}
ul.snsList li a:hover {
	scale: 1.25;
}
ul.snsList li a:hover img {
	opacity: 1;
}

.heroImg {
	width: 100%;
	padding-top: 40px;
	background: url("../imgs/hero_bg.jpg") center center no-repeat;
	background-size: cover;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: -1;
}
.heroTitle {
	margin: auto auto 0;
	opacity: 0;
	transition: opacity 0.8s cubic-bezier(.21,1.82,.16,.67) 0.4s, scale 0.4s cubic-bezier(.21,1.82,.16,.67) 0.4s;
	scale: 0.75;
}
.loaded .heroTitle {
	opacity: 1;
	scale: 1;
}
.heroTitle img {
	width: auto;
	height: 70vh;
}
.heroCatch {
	font-size: 2.75em;
	line-height: 1.6;
	font-weight: 800;
	margin: auto auto 1em;
	position: relative;
	opacity: 0;
	transition: opacity 0.4s ease 1.4s, translate 0.4s ease 1.4s;
	translate: 0 50%;
}
.loaded .heroCatch {
	opacity: 1;
	translate: 0 0;
}
.heroInfo {
	width: 100%;
	margin: 0 auto 0;
	background: var(--color-accent);
	font-size: 5.5625em;
	line-height: 1;
	font-weight: bolder;
	padding: 0.2em 0;
	position: relative;
	overflow: hidden;
}
.heroInfo::before {
	content: "";
	display: block;
	width: 100%;
	height: 30vw;
	background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
	position: absolute;
	top: 0;
	left: 0;
	translate: 0 -100%;
	z-index: -1;
}
.heroInfo dt {
	margin: 0;
	translate: -1em 0;
	opacity: 0;
	transition: opacity 0.4s ease 2.0s, translate 0.4s ease 2.0s;
}
.loaded .heroInfo dt,
.loaded .heroInfo dd {
	translate: 0 0;
	opacity: 1;
}
.heroInfo dd {
	margin: 0;
	color: var(--color-primary);
	translate: 1em 0;
	opacity: 0;
	transition: opacity 0.4s ease 2.0s, translate 0.4s ease 2.0s;
}

/* !content */
/* --------------------------- */
main {
	position: relative;
}
.content {
	margin: 0 auto;
	padding: 8rem 0;
	position: relative;
}
.contTitle {
	width: 100%;
	margin: 0 auto 5rem;
	font-size: 1em;
	line-height: 1;
}
.contTitle img {
	transform: translateZ(0);
	overflow-x: visible;
	overflow-y: visible;
	filter: drop-shadow(0 0 5px rgba(var(--color-accent-rgb), 1)) drop-shadow(0 0 5px rgba(var(--color-accent-rgb), 1)) drop-shadow(0 0 5px rgba(var(--color-accent-rgb), 1)) drop-shadow(0 0 10px rgba(var(--color-accent-rgb), 1));
}
.contTitle.invisible img {
	filter: drop-shadow(0 0 5px rgba(var(--color-accent-rgb), 0)) drop-shadow(0 0 5px rgba(var(--color-accent-rgb), 0)) drop-shadow(0 0 5px rgba(var(--color-accent-rgb), 0)) drop-shadow(0 0 10px rgba(var(--color-accent-rgb), 0));
}
.contTitle.visible img {
	filter: drop-shadow(0 0 5px rgba(var(--color-accent-rgb), 1)) drop-shadow(0 0 5px rgba(var(--color-accent-rgb), 1)) drop-shadow(0 0 5px rgba(var(--color-accent-rgb), 1)) drop-shadow(0 0 10px rgba(var(--color-accent-rgb), 1));
	transition: filter 1.0s cubic-bezier(.21,1.82,.16,.67);
}

.contCatch {
	font-size: 2.5em;
	line-height: 1.25;
	font-weight: 800;
	color: var(--color-primary-contrast);
	margin: 0 auto 1em;
}
.contBody {
	position: relative;
	z-index: 10;
	max-width: 1040px;
	margin: 0 auto;
	padding: 5.625rem 7.5rem;
	border-radius: 2.5rem;
	box-shadow: 0 0 20px 8px rgba(var(--color-accent-rgb), 1);
}
.contBody::before {
	content: "";
	display: block;
	width: calc(100% - 2.5rem);
	height: calc(100% - 2.5rem);
	border-radius: 2rem;
	box-shadow: 0 0 20px 8px rgba(var(--color-accent-rgb), 1);
	position: absolute;
	top: 1.25rem;
	left: 1.25rem;
	z-index: -1;
}
.artistImg {
	display: block;
	margin: 0 auto;
	border-radius: 2.5rem;
	overflow: hidden;
	position: relative;
	box-shadow: 0 0 12px 8px rgba(var(--color-accent-rgb), 1);
	pointer-events: none;
}
.msgTxt {
	font-family:'Hiragino Sans','ヒラギノ角ゴシック',YuGothic,'Yu Gothic','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic',sans-serif;
	font-size: 1.125em;
	line-height: 1.888;
	text-align: justify;
	-webkit-font-feature-settings: 'pkna' 1;
	font-feature-settings: 'pkna' 1;
	margin: 0 0 1.5em;
}
.artistImg + .msgTxt {
	margin-top: 1.5em;
}
.msgTxt + .contCatch {
	margin-top: 2.5em;
}

.artistBox {
	margin: 0 auto 4.5rem;
	position: relative;
	pointer-events: none;
}
.artistBox figcaption {
	font-size: 2.5em;
	line-height: 1.25;
	font-weight: 800;
	color: var(--color-primary-contrast);
	margin: 0 auto 1em;
	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);
}
.artistBox .capsS {
	display: block;
	text-align: right;
	margin-top: 0.75em;
}
.mcName {
	font-size: 2em;
	line-height: 1.25;
	font-weight: 800;
	color: var(--color-primary-contrast);
	margin: 0 auto 1em;
	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);
}
.mcName .capsS {
	font-size: 0.666em;
}

.memberList {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 3rem 1.875rem;
}
.memberBox {
	margin: 0;
	position: relative;
}
.memberBox img {
	display: block;
	width: 100%;
	border-radius: 50%;
	position: relative;
	box-shadow: 0 0 10px 6px rgba(var(--color-accent-rgb), 1);
	margin-bottom: 2rem;
	pointer-events: none;
}
.memberBox figcaption {
	margin: 0;
	position: relative;
	font-size: 1em;
	line-height: 1.25;
	font-weight: 800;
	text-shadow: 0 0 20px rgba(var(--color-accent-rgb),.9),0 0 15px rgba(var(--color-accent-rgb),.9),0 0 8px rgba(var(--color-accent-rgb),.9),0 0 4px rgba(var(--color-accent-rgb),.9);
}
.memberBox figcaption::after {
	content: "";
	display: block;
	width: 1px;
	height: 1.75rem;
	background: #fff;
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 100;
	translate: -50% -115%;
	filter: drop-shadow(0 0 5px rgba(var(--color-accent-rgb), 1)) drop-shadow(0 0 5px rgba(var(--color-accent-rgb), 1)) drop-shadow(0 0 5px rgba(var(--color-accent-rgb), 1));
	transform: translateZ(0);
}

.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: 5rem auto 5rem;
	color: var(--color-primary-contrast);
	letter-spacing: 0.05em;
	text-indent: 0.05em;
	filter: drop-shadow(0 0 5px rgba(var(--color-accent-rgb), 1)) drop-shadow(0 0 5px rgba(var(--color-accent-rgb), 1)) drop-shadow(0 0 5px rgba(var(--color-accent-rgb), 1));
	transform: translateZ(0);
}
.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%;
}

#streaming .contCatch {
	font-size: 2.25em;
	line-height: 1.5;
}

.ticketPrice {
	font-size: 1.875em;
	line-height: 1.2;
	font-weight: 700;
	margin: 2em auto 1.4em;
}
.ticketPrice .capsL {
	font-size: 1.875em;
	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%;
	color: var(--color-primary);
}
.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;
}
.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-accent);
	color: var(--color-primary);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.75rem;
	line-height: 1;
	font-weight: 900;
	white-space: nowrap;
	width: fit-content;
	position: absolute;
	padding: 0.25em 0.5em 0.3125em;
	top: 50%;
	left: 50%;
	rotate: -5deg;
	translate: -50% -50%;
}
.bnrWrap {
	width: 640px;
	max-width: 90%;
	margin: 2rem auto 5rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}
.bnrBtn {
	display: block;
	position: relative;
	overflow: hidden;
}
.bnrBtn:hover {
	scale: 1.1;
}
.bnrBtn:hover img {
	opacity: 1;
}
.ticketUpgrade {
	width: 340px;
	height: 340px;
	background: var(--color-primary);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 3rem auto -240px;
	border-radius: 50%;
	filter: drop-shadow(0 0 5px rgba(var(--color-accent-rgb), 1)) drop-shadow(0 0 5px rgba(var(--color-accent-rgb), 1)) drop-shadow(0 0 5px rgba(var(--color-accent-rgb), 1));
	transform: translateZ(0);
}
.ugTitle {
	margin: auto auto 0;
}
.ugTitle img {
	filter: drop-shadow(0 0 5px rgba(var(--color-accent-rgb), 1)) drop-shadow(0 0 5px rgba(var(--color-accent-rgb), 1)) drop-shadow(0 0 5px rgba(var(--color-accent-rgb), 1));
	transform: translateZ(0);
}
.ticketUpgrade .cs {
	font-size: 1.625em;
	margin: 0.75em auto 3em;
	filter: none;
}

.goodsLineupWrap {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 3rem;
}
.goodsItem {
	margin: 0;
}
.goodsItem img {
	border-radius: 1.5rem;
}
.goodsItem figcaption {
	margin: 0.5em 0 0;
	font-size: 1.5em;
	line-height: 1.375;
	font-weight: bold;
	color: var(--color-accent);
}
.goodsItem figcaption .capsS {
	color: var(--color-primary-contrast);
}
.goodsPrice {
	display: block;
	font-size: 1.25em;
	color: var(--color-primary-contrast);
}
.goodsPrice .capsS {
	font-size: 0.5em;
}

.infoBody {
	max-width: 900px;
	margin: 0 auto;
	font-family:'Hiragino Sans','ヒラギノ角ゴシック',YuGothic,'Yu Gothic','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic',sans-serif;
}
.infoBody::before,
.infoBody::after {
	content: "";
	display: block;
	width: 100%;
	height: 1px;
	background: var(--color-accent);
	margin: 3rem auto;
	filter: drop-shadow(0 0 5px rgba(var(--color-accent-rgb), 1)) drop-shadow(0 0 5px rgba(var(--color-accent-rgb), 1)) drop-shadow(0 0 5px rgba(var(--color-accent-rgb), 1)) drop-shadow(0 0 10px rgba(var(--color-accent-rgb), 1));
	transform: translateZ(0);
}
.notesCatch {
	font-size: 1.375em;
	line-height: 1.25;
	margin: 0 auto 1.5em;
}
.notesTxt {
	font-size: 1em;
	line-height: 1.75;
	text-align: left;
	margin: 0 auto 1em;
}
ul.notesList {
	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: "■";
}

.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.625em;
	line-height: 1;
	font-weight: 700;
	margin: 0 auto 0.75em;
}
* + .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;
	font-family:'Hiragino Sans','ヒラギノ角ゴシック',YuGothic,'Yu Gothic','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic',sans-serif;
}

/* !footer */
/* --------------------------- */
.gFooter {
	font-family:'Hiragino Sans','ヒラギノ角ゴシック',YuGothic,'Yu Gothic','メイリオ', Meiryo,'ＭＳ Ｐゴシック','MS PGothic',sans-serif;
	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.388em;
}

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


/* !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 {
		padding: 0 0.5rem 0 0;
		height: 3rem;
	}
	.siteTitle {
		display: flex;
		justify-content: center;
		align-items: center;
		flex-shrink: 0;
	}
	.siteTitle img {
		width: 45vw;
	}
	.headerBtn {
		font-size: 0.625em;
		padding: 0.5em 0.75em;
		filter: none;
		margin-right: 1em;
	}
	.menu {
		width: 2rem;
		height: 2rem;
	}
	.menu .bar {
		margin: 0.25rem auto;
	}
	#menu:checked ~ .gHeader .menu .bar:first-of-type {
		translate: 0 380%;
	}
	#menu:checked ~ .gHeader .menu .bar:nth-of-type(2) {
		scale: 0 1;
	}
	#menu:checked ~ .gHeader .menu .bar:last-of-type {
		translate: 0 -380%;
	}
	.pageNav {
		top: 20vw;
		padding: 0 0 0 1.5rem;
	}
	.heroTitle img {
		width: 100%;
		height: auto;
	}
	.heroCatch {
		font-size: 1.5em;
	}
	.heroInfo {
		font-size: 3em;
	}
	
	main {
		width: 100vw;
		overflow: hidden;
	}
	.content {
		padding: 5rem 1rem 3rem;
	}
	.contTitle {
		margin-bottom: 3rem;
	}
	.content::before {
		width: 100vw;
		height: 50vw;
		background-size: auto 100%;
	}
	.contBody {
		padding: 3rem 3rem;
		box-shadow: 0 0 10px 4px rgba(var(--color-accent-rgb), 1);
	}
	.contBody::before {
		box-shadow: 0 0 10px 4px rgba(var(--color-accent-rgb), 1);
		width: calc(100% - 1.5rem);
		height: calc(100% - 1.5rem);
		position: absolute;
		top: 0.75rem;
		left: 0.75rem;
	}
	.contCatch {
		font-size: 2.25em;
	}
	.artistImg.vertical {
		max-width: 80%;
	}
	.artistImg {
		border-radius: 1.5rem;
	}
	.msgTxt {
		font-size: 1em;
	}
	.artistBox {
		max-width: 100%;
		margin-inline: auto;
	}
	.memberList {
		grid-template-columns: repeat(2, 1fr);
		gap: 3rem 1.875rem;
	}
	.memberBox figcaption {
		font-size: 1.125em;
	}
	
	#streaming .contCatch {
		font-size: 1.5em;
		line-height: 1.375;
	}
	
	.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;
	}
	.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%;
	}
	.goodsLineupWrap {
		grid-template-columns: 1fr;
		gap: 3rem;
	}
	.goodsItem {
		width: 100%;
	}
	.goodsItem figcaption {
		font-size: 1.5em;
	}
	.goodsItem figcaption .capsS {
		font-size: 0.666em;
		line-height: 1.375;
		display: inline-block;
	}
	.infoBody {
		max-width: 81vw;
	}
	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: 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.7125em;
	}
}
