@charset "UTF-8";
/* CSS Document */
/* ==================================================
BASE OVERWRITE
================================================== */

@media screen and (max-width: 1100px) {

}

@media screen and (max-width: 768px) {

}

@media screen and (max-width: 480px) {

}

/*
===== COLOR =====
紺：#09094f
黄色：#19a9ff
赤：#de0a16
水色：#29abe2
ピンク：#e229a2
紫：#ff881f
黄緑：#008989 or rgba(0, 137, 137, 0.9)
*/

/* ==================================================
CONTENTS
================================================== */
.lineupPage {
	position: relative;
}
.lineupPage::after {
	content: "";
	width: 100%;
	height: 100vh;
	position: fixed;
	background: url("../img/bg.jpg") no-repeat 50% 50%;
	background-size: cover;
	top: 0;
	left: 0;
	z-index: -1;
}

/* #headArea
------------------------------ */
#headArea {}
#headArea .announce {
	color: #de0a16;
	border: 4px solid #de0a16;
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 40px;
	max-width: 800px;
	margin: 0 auto 50px;
}
#headArea .announce .label {
	color: #de0a16;
	border-bottom: 2px solid #de0a16;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.2;
	padding: 5px;
}
#headArea .announce .announceInner {
	padding: 20px;
}
/*#headArea .announce .announceInner .tag {
	display: inline-block;
	line-height: 1.2;
	color: #fff;
	background: #de0a16;
	border-radius: 4px;
	padding: 0px 5px 3px;
	font-size: 96%;
}
#headArea .announce .announceInner .tag.bgPurple {
	background: #ff881f;
}
#headArea .announce .announceInner .tag.bgYellow {
	background: #19a9ff;
}*/

@media screen and (max-width: 1100px) {
	#headArea {}
	#headArea .announce .announceInner {
		padding: 20px 3%;
	}
}

@media screen and (max-width: 768px) {
	#headArea {
		/*! padding-left: 0 !important; */
		/*! padding-right: 0 !important; */
	}
	#headArea .announce .announceInner {
		text-align: left;
	}
}

@media screen and (max-width: 480px) {
	#headArea {}
}


/* #lineupArea
------------------------------ */
#lineupArea {
	max-width: 1400px !important;
}

/* #tableSet ※LINEUP専用部分 */
#lineupArea .tableBox .list {
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	flex-wrap: wrap;
	flex-direction: row;
}
#lineupArea .tableBox .list li {
	width: calc(100% /4 - 10px);
	margin: 0 5px 10px;
	position: relative;
}
#lineupArea .tableBox .list li > span {
	display: block;
	position: relative;
}
#lineupArea .tableBox .list li > span::before,
#lineupArea .tableBox .list li > span::after {
	content: "MARK";
	position: absolute;
	width: 46px;
	height: 20px;
	top: 0;
	right: 0;
	line-height: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.2rem;
	font-weight: 700;
	background: #000;
	color: #fff;
	letter-spacing: 0.02em;
	z-index: 1;
	opacity: 0;
}
#lineupArea .tableBox .list li.talk > span::before {
	opacity: 1;
	content: "TALK";
	background: #19a9ff;
}
#lineupArea .tableBox .list li.live > span::after {
	opacity: 1;
	content: "LIVE";
	background: #ff881f;
	z-index: 2;
}
#lineupArea .tableBox .list li.live.talk > span::after {
	right: 46px;
}
#lineupArea .tableBox .list li.performance > span::after {
	opacity: 1;
	content: "PERFORMANCE";
	background: #dc26ec;
	width: 106px;
}
#lineupArea .tableBox .list li.new::before {
	content: "NEW";
	position: absolute;
	top: 0;
	left: 0;
	width: 46px;
	height: 46px;
	font-size: 1.2rem;
	font-weight: 700;
	color: #fff;
	z-index: 3;
	display: flex;
	justify-content: center;
	align-items: center;
	transform: translateX(-8px) translateY(-8px) rotate(-45deg);
}
#lineupArea .tableBox .list li.new::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 46px 46px 0 0;
	border-color: #de0a14 transparent transparent transparent;
	z-index: 2;
}
#lineupArea .tableBox .list li > span img {}
#lineupArea .tableBox .memo {
	color: #fff;
	font-size: 1.5rem;
	text-align: right;
	margin-bottom: 20px;
	padding: 0 10px;
}
#lineupArea .tableBox .andmore {
	color: #fff;
	font-size: 2.2rem;
	font-weight: 700;
	text-align: right;
	margin-top: 20px;
	padding: 0 10px;
}

@media screen and (max-width: 1100px) {
	#tableSet .tableBox .list {}
	#tableSet .tableBox .list li {
		width: calc(100% / 3 - 10px);
	}
	#tableSet .tableBox .list li > span {}
	#tableSet .tableBox .list li > span::before {}
	#tableSet .tableBox .list li.talk > span::before {}
	#tableSet .tableBox .list li.live > span::before {}
	#tableSet .tableBox .list li.performance > span::before {}
	#tableSet .tableBox .list li.new::before {}
	#tableSet .tableBox .list li.new::after {}
	#tableSet .tableBox .list li > span img {}
	#tableSet .tableBox .memo {}
	#tableSet .tableBox .andmore {}
}

@media screen and (max-width: 768px) {
	#tableSet .tableBox .list {}
	#tableSet .tableBox .list li {
		width: calc(100% / 2 - 10px);
	}
	#tableSet .tableBox .list li > span {}
	#tableSet .tableBox .list li > span::before {}
	#tableSet .tableBox .list li.talk > span::before {}
	#tableSet .tableBox .list li.live > span::before {}
	#tableSet .tableBox .list li.performance > span::before {}
	#tableSet .tableBox .list li.new::before {}
	#tableSet .tableBox .list li.new::after {}
	#tableSet .tableBox .list li > span img {}
	#tableSet .tableBox .memo {}
	#tableSet .tableBox .andmore {
		font-size: 1.8rem;
	}
}

@media screen and (max-width: 480px) {
	#tableSet .tableBox .list {}
	#tableSet .tableBox .list li {}
	#tableSet .tableBox .list li > span {}
	#tableSet .tableBox .list li > span::before {}
	#tableSet .tableBox .list li.talk > span::before {}
	#tableSet .tableBox .list li.live > span::before {}
	#tableSet .tableBox .list li.performance > span::before {}
	#tableSet .tableBox .list li.new::before {}
	#tableSet .tableBox .list li.new::after {}
	#tableSet .tableBox .list li > span img {}
	#tableSet .tableBox .memo {}
	#tableSet .tableBox .andmore {}
}
