@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: #072756;
	--color-accent-rgb: 7,39,86;
	--color-accent2: #ff0;
	--color-accent2-rgb: 255,255,0;
	--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: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 50%,  var(--color-primary) 100%);
	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-noto-r, body {
  font-family: "Noto Sans JP", system-ui;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.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;
	background: url('../imgs/header_bg.jpg') center top no-repeat;
	background-size: cover;
	z-index: 100;
	padding-top: 12.375rem;
	opacity: 0;
	filter: blur(16px);
	transition: opacity 2.0s ease-out, filter 2.0s ease-out 1.0s;
}
.loaded .gHeader {
	opacity: 1;
	filter: blur(0);
}
.siteTitle {
	margin: auto auto 0;
	position: relative;
	opacity: 0;
	transition: opacity 0.6s ease-out 2.0s;
}
.loaded .siteTitle {
	opacity: 1;
}
.siteTitle::after {
	content: "";
	display: block;
	width: 800px;
	height: 54px;
	background: url('../imgs/title_effect.png') center top no-repeat;
	background-size: cover;
	margin: 1rem auto 0;
	mix-blend-mode: screen;
}
.siteTitle img {
	pointer-events: none;
}
.star {
	display: block;
	width: 70px;
	height: 70px;
	background: url('../imgs/star.png') 0 0 no-repeat;
	background-size: cover;
	mix-blend-mode: screen;
	position: absolute;
	top: 50%;
	left: 50%;
}
@keyframes starBlink {
	0%{transform: scale(1); opacity: 0;}
	10%{transform: scale(1.5); opacity: 1;}
	30%{transform: scale(1)}
	60%{transform: scale(1); opacity: 0;}
	100%{transform: scale(1); opacity: 0;}
}
.siteTitle .star {
	opacity: 0;
}
.siteTitle .star:nth-of-type(1) {
	animation: starBlink 3.0s ease-out infinite;
	translate: -75% -325%;
}
.siteTitle .star:nth-of-type(2) {
	translate: 435% -255%;
	animation: starBlink 2.75s ease-out infinite 1.35s;
}
.siteTitle .star:nth-of-type(3) {
	translate: -372.5% -190%;
	animation: starBlink 3.15s ease-out infinite 2.25s;
}

.eventCatch {
	margin: auto auto 1.5rem;
	font-size: 2.8125em;
	line-height: 1.5;
	font-weight: 700;
	transition: opacity 0.3s ease 4.0s, translate 0.3s cubic-bezier(.21,1.82,.16,.67) 4.0s;
	filter: drop-shadow(0 0 4px var(--color-primary)) drop-shadow(0 0 10px var(--color-primary));
	position: relative;
	z-index: 10;
	opacity: 0;
	translate: 0 1em;
	transition: opacity 0.4s ease 3.2s, translate 0.4s ease 3.2s;
	word-break: keep-all;
}
.eventCatch span.colored {
	position: relative;
	font-size: 1.125em;
	line-height: 1.25;
	font-weight: 900;
	background : linear-gradient(90deg, rgba(0, 145, 255, 1) 0%, rgba(0, 177, 217, 1) 46%, rgba(0, 255, 230, 1) 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.eventCatch .capsL {
	font-size: 1.25em;
	line-height: 1.125;
	color: var(--color-accent2);
}
.loaded .eventCatch {
	opacity: 1;
	translate: 0;
}
.eventInfoWrap {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	padding: 1rem;
	background: var(--color-primary-contrast);
	width: 100%;
	opacity: 0;
	scale: 1 0;
	transition: opacity 0.4s ease 4.0s, scale 0.4s ease 4.0s;
}
.loaded .eventInfoWrap {
	opacity: 1;
	scale: 1 1;
}
.eventInfo {
	margin: 0 1rem;
	font-size: 1em;
	line-height: 1;
	opacity: 0;
	transform: translateX(5em) skewX(-15deg);
	transition: opacity 0.4s ease 4.2s, transform 0.4s ease 4.2s;
	font-size: 0.875em;
	line-height: 1.75;
	font-weight: bold;
	color: var(--color-primary);
}
.loaded .eventInfo {
	opacity: 1;
	transform: translateX(0) skewX(0deg);
}

.headerBnr {
	display: inline-block;
	margin: 0 auto 3rem;
	opacity: 0;
	translate: 0 1em;
	transition: opacity 0.4s ease 4.0s, translate 0.4s ease 4.0s;
	max-width: 70vw;
	font-size: 1.25em;
}
.loaded .headerBnr {
	opacity: 1;
	translate: 0 0;
}

/* !content */
/* --------------------------- */
main {
	position: relative;
}
.content {
	margin: 0 auto;
	padding: 6rem 0 4rem;
	position: relative;
}
.contTitle {
	width: 100%;
	margin: 0 auto 0;
	font-size: 3.125em;
	line-height: 1;
	position: relative;
	z-index: 10;
	overflow: hidden;
	white-space: nowrap;
	background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 50%,  var(--color-primary) 100%);
}
.contTitle::after {
	content: "";
	display: block;
	width: 100%;
	height: 80px;
	background: url('../imgs/title_effect.png') center top no-repeat;
	background-size: 800px auto;
	z-index: -1;
	mix-blend-mode: screen;
	margin: 0.25em auto 0;
}
.contTitle.invisible {
	translate: 0 0.5em;
}
.contTitle.visible {
	translate: 0 0;
	transition: opacity 0.6s ease, translate 0.4s ease;
}
.contTitle .star {
	translate: -50% -25%;
}
.contTitle.invisible .star {
	opacity: 0;
	scale: 1.5;
	rotate: 30deg;
}
.contTitle.visible .star {
	opacity: 1;
	scale: 1;
	rotate: 0deg;
	transition: opacity 0.6s ease 0.4s, scale 0.4s ease 0.4s, rotate 0.4s ease 0.4s;
}
.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: 880px;
	margin: 0 auto;
}
.chairmanCommentWrap::before,
.chairmanCommentWrap::after {
	content: "";
	display: block;
	position: fixed;
	z-index: -1;
}
.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%;
}

.artistBox {
	margin: 0 auto 6rem;
	position: relative;
	pointer-events: none;
	max-width: 800px;
}
.artistBox figcaption {
	margin: 1.75rem 0 0;
	position: relative;
	line-height: 1;
	font-size: 3em;
	font-weight: bold;
}
.artistBox figcaption small {
	display: inline-block;
	font-size: 0.875rem;
	line-height: 1;
	font-weight: 500;
	position: absolute;
	top: -1.5em;
	right: 0;
}
.artistBox.ebidan img {
	max-width: 60vw;
}
.artistBox.ebidan figcaption small {
	right: 22%;
}
.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-accent2);
	color: var(--color-primary);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.25rem;
	line-height: 1;
	font-weight: 900;
	width: 3em;
	height: 3em;
	border-radius: 50%;
	position: absolute;
	top: 0;
	right: 0;
	rotate: 15deg;
	translate: 50% -50%;
}
.artist .new::after {
	translate: 50% -30%;
}

.ticketPrice {
	font-size: 1.875em;
	line-height: 1.2;
	font-weight: 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 : linear-gradient(90deg, rgba(0, 145, 255, 1) 0%, rgba(0, 177, 217, 1) 46%, rgba(0, 255, 230, 1) 100%);
	padding: 0.75em 1em 0.875em;
	width: 640px;
	max-width: 90%;
}
.ticketSchedule {
	font-size: 2.5em;
	line-height: 1.5;
	font-weight: 700;
	margin: 0 auto;
}
.soldout {
	position: relative;
	width: fit-content;
}
.iconSoldout {
	background: var(--color-accent);
	color: var(--color-primary-contrast);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.25rem;
	line-height: 1;
	font-family: 'Roboto Slab', sans-serif;
	font-weight: 900;
	width: fit-content;
	border-radius: 100vmax;
	position: absolute;
	padding: 0.25em 0.5em 0.3125em;
	top: 0;
	left: 0;
	rotate: -5deg;
	translate: -50% -15%;
}
.bnrWrap {
	margin: 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%);
}
.ticketBtn,
.ticketBtn:visited {
	display: inline-block;
	font-size: 1.75em;
	line-height: 1;
	font-weight: 900;
	text-decoration: none;
	margin: 0 auto;
	padding: 0.75em 1.25em 0.875em;
	background: var(--color-primary-contrast);
	color: var(--color-accent);
	position: relative;
	border-radius: 6px;
}
#streaming .ticketBtn,
#streaming .ticketBtn:visited {
	color: #3ce132;
	font-size: 5em;
	padding: 0.25em 1em 0.375em;
}
.ticketBtn:hover {
	background-color: rgba(var(--color-primary-contrast-rgb), .15);
	color: var(--color-accent2);
}
#streaming .ticketBtn:hover {
	background-color: #000;
	color: #3ce132;
}
.ticketBtn::before {
	content: "";
	display: block;
	width: calc(100% + 12px);
	height: calc(100% + 12px);
	background : linear-gradient(-90deg, rgba(0, 145, 255, 1) 0%, rgba(0, 177, 217, 1) 46%, rgba(0, 255, 230, 1) 100%);
	position: absolute;
	top: -6px;
	left: -6px;
	z-index: -1;
	border-radius: 9px;
	box-shadow: 6px 8px 0 0 rgba(var(--color-primary-rgb), .875);
}
.fin {
	position: relative;
}
.fin::after {
	content: "受付\A終了";
	white-space: pre;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 50%;
	right: 0;
	font-size: 0.75em;
	line-height: 1.25;
	background: rgba(var(--color-accent-rgb), .75);
	color: var(--color-primary-contrast);
	width: 3.75em;
	height: 3.75em;
	border-radius: 50%;
	translate: -10% -50%;
	rotate: 15deg;
	pointer-events: none;
}

.mcTitleSub {
	position: absolute;
	top: 0;
	right: 0;
	white-space: nowrap;
	background: var(--color-accent2);
	color: var(--color-accent);
	padding: 0.25em 0.75em 0.375em;
	font-size: 0.75em;
	line-height: 1.125;
	font-weight: 900;
	translate: 50% -50%;
	rotate: 5deg;
	border-radius: 100vmax;
}
.mcImg {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 7.5rem;
	margin: 3rem auto 3rem;
}
.mcImg img {
	width: 45%;
	box-shadow: 0 0 16px 8px rgba(255,255,255,1);
	rotate: -5deg;
	pointer-events: none;
}
.mcImg:last-of-type {
	translate: 7.5% -25%;
	margin-bottom: 0;
}
ul.notesList.mcList {
	font-size: 1.125em;
	font-weight: 600;
	width: fit-content;
}
ul.notesList.mcList li::before {
	content: "●";
	color: var(--color-accent2);
	display: inline-block;
	text-indent: 0;
	scale: 0.75;
}
.mcSpec {
	margin: 0 auto 2rem;
	font-size: 1.125em;
	line-height: 1.375;
	font-weight: 700;
}
.mcSpec dt {
	margin: 0 0 0.5em;
}
.mcSpec dd {
	text-align: left;
	width: fit-content;
	margin: 0 auto;
}
.mcDisable {
	width: 100vw;
	height: 110%;
	position: absolute;
	top: 0;
	left: 50%;
	translate: -50% -3%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: column;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	gap: 1.5rem;
	padding-top: 5rem;
}
.mcDisable .eventDetailTxt {
	margin: 0 auto;
	text-shadow: 0 0 4px rgba(0,0,0,.75);
}

.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: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	width: 1080px;
	max-width: 91vw;
	margin: 0 auto 3rem;
}
.goodsItem {
	margin: 0;
	background : linear-gradient(-90deg, rgba(0, 145, 255, .75) 0%, rgba(0, 177, 217, .75) 46%, rgba(0, 255, 230, .75) 100%);
	padding: 1.5rem;
	border-radius: 1rem;
}
.goodsItem img {
	width: 100%;
	border-radius: 0.75rem;
	overflow: hidden;
	position: relative;
}
.goodsItem figcaption {
	margin: 1rem 0 0;
}
.goodsName {
	font-size: 1.375em;
	line-height: 1.25;
	font-weight: 900;
	margin-bottom: 0;
	display: inline-block;
	width: 100%;
}
.goodsName::after {
	content: "";
	display: block;
	width: 100%;
	height: 24px;
	background: url('../imgs/title_effect.png') center top no-repeat;
	background-size: 125% auto;
	z-index: -1;
	mix-blend-mode: screen;
	margin: 0 auto 0;
}
.goodsPrice {
	font-size: 1.5em;
	line-height: 1;
	font-weight: 900;
	padding-bottom: 0.5em;
	margin-bottom: 0.5em;
	display: inline-block;
	width: 100%;
	border-bottom: solid 1px rgba(var(--color-primary-contrast-rgb), .5);
}
.goodsPrice .capsS {
	font-size: 0.5em;
}
.goodsTxt {
	font-size: 0.875em;
	line-height: 1.375;
}

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

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

.contactTitle {
	font-size: 1.875em;
	line-height: 1;
	font-weight: 700;
	margin: 0 auto 0.75em;
	width: 17.3em;
	max-width: 90%;
	padding: 0.625em 0 0.75em;
	border-radius: 100vmax;
	border: solid 3px var(--color-primary-contrast);
	background: rgba(var(--color-primary-rgb), .25);
}
* + .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;
}

.eventDetailDay {
	margin: -2rem auto 2rem;
	position: relative;
	z-index: 100;
}
.eventDetailTitle {
	font-size: 3em;
	line-height: 1;
	font-weight: 900;
	font-style: italic;
	margin: 0 auto 0.5em;
	color: var(--color-accent2);
}
.eventDetailTxt {
	font-size: 1.5em;
	line-height: 1.75;
	font-weight: 700;
	margin: 0 auto 3em;
}
.backnumber {
	margin: 0 auto 3rem;
}
.backnumber a,
.backnumber a:visited {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	width: 12rem;
	height: 12rem;
	border-radius: 50%;
	font-size: 2em;
	line-height: 1;
	font-weight: 900;
	border: solid 4px #fff;
	text-decoration: none;
	box-shadow: 4px 4px 8px 0 rgba(0,0,0,.75);
}
.backnumber a img {
	width: 80%;
	margin-bottom: 0.25em;
}
.backnumber a:hover {
	color: var(--color-accent2);
	border-color: var(--color-accent2);
}
.backnumber a:hover img {
	opacity: 1;
	scale: 0.95;
}

/* !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: 1.125em;
	margin: 0 0.75em;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
}
.copyright .capsL {
	font-size: 1.388em;
}

.announceCont {
	width: fit-content;
	min-height: 7em;
	margin-top: 5rem;
	background: rgba(var(--color-primary-contrast-rgb), 1);
	color: var(--color-primary);
	padding: 3rem;
	border: solid 4px var(--color-theme-primary);
	position: relative;
}
.announceCont::after {
	content: "";
	display: block;
	width: calc( 100% + 2rem );
	height: calc( 100% + 2rem );
	background : linear-gradient(-90deg, rgba(0, 145, 255, .75) 0%, rgba(0, 177, 217, .75) 46%, rgba(0, 255, 230, .75) 100%);
	position: absolute;
	top: 50%;
	left: 50%;
	translate: -50% -50%;
	z-index: -1;
}
.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;
}

/* !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-top: 30vw;
	}
	.siteTitle {
		max-width: 90%;
	}
	.siteTitle::after {
		width: 100vw;
		height: 6.75vw;
	}
	.siteTitle .star:nth-of-type(1) {
		translate: -65% -195%;
	}
	.siteTitle .star:nth-of-type(2) {
		translate: 200% -162%;
	}
	.siteTitle .star:nth-of-type(3) {
		translate: -215% -130%;
	}
	.eventCatch {
		font-size: 1.625em;
	}
	.eventCatch img {
		max-width: 90vw;
		display: inline-block;
		margin-top: 1rem;
	}
	.eventInfoWrap {
		flex-direction: column;
	}
	.eventInfo {
		margin: 0 auto;
	}
	.eventInfo img {
		width: auto;
		height: 7.5vw;
	}
	.eventInfo:last-of-type {
		margin-top: 1em;
	}
	.headerBnr {
		margin-top: 2rem;
	}
	main {
		width: 100vw;
		overflow: hidden;
	}
	.content {
		padding: 2rem 1.5rem 1.5rem;
	}
	.contTitle {
		font-size: 3em;
		position: relative;
		z-index: 20;
		margin-bottom: 1.5em;
		padding-top: 1em;
	}
	.contTitle::after {
		width: 100%;
		height: 6.75vw;
		background-size: 100% auto;
	}
	.contTitle .star {
		translate: -50% 17.5%;
	}
	.contCatch {
		font-size: 2em;
	}
	.artistBox {
		max-width: 100%;
		margin-inline: auto;
	}
	.artistBox.ebidan figcaption {
		line-height: 1.125;
	}
	.artistBox.ebidan figcaption small {
		right: 16%;
	}
	
	.ticketPrice {
		font-size: 1.5em;
	}
	.ticketPrice img {
		margin-top: 0.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;
	}
	.ticketBtn {
		font-size: 1.375em;
	}
	.iconSoldout {
		translate: -55% 10%;
	}
	.mcTitleSub {
		translate: 25% -75%;
	}
	.mcImg {
		gap: 2rem;
	}
	.mcImg img {
		width: 42.5%;
		box-shadow: 0 0 8px 4px rgba(255,255,255,1);
	}
	.mcImg:last-of-type {
		translate: 5% -55%;
		margin-bottom: 0;
	}
	ul.notesList.mcList {
		font-size: 1em;
	}
	ul.notesList.mcList li br {
		display: none;
	}
	.streamNotes {
		font-size: 0.75em;
		margin-top: -1.5rem;
	}
	.goodsWrap {
		display: block;
		max-width: 80vw;
	}
	.goodsItem {
		margin-bottom: 3rem;
	}
	.goodsName {
		font-size: 1.5em;
		line-height: 1.375;
	}
	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: 1.125em;
	}
	.eventDetailDay {
		margin: -4.5rem auto 2rem;
	}
	.eventDetailTxt {
		font-size: 1.25em;
		line-height: 1.5;
	}
	.announceCont {
		max-width: 80vw;
	}
	.announceTitle {
		font-size: 1.25em;
		padding-right: 0;
		padding-left: 0;
		width: 100%;
	}
	.announceTxt {
		font-size: 1em;
		text-align: left;
	}
}
