@charset "UTF-8";
/* CSS Document */


/* ////////////////////////////////////////////////////////////////////////////////

	Common

//////////////////////////////////////////////////////////////////////////////// */
@font-face {
	font-family: 'sns_icon';
	src:
		url('../font/sns_icon.ttf?5mfine') format('truetype'),
		url('../font/sns_icon.woff?5mfine') format('woff'),
		url('../font/sns_icon.svg?5mfine#icf') format('svg');
	font-weight: normal;
	font-style: normal;
}
i.snsIcon {
	font-family: 'sns_icon' !important;
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	
	color: #fff;
}
.icon_facebook:before { content: "\e900"; }
.icon_instagram:before { content: "\e901";}
.icon_line:before { content: "\e902";}
.icon_twitter:before { content: "\e903";}
.icon_youtube:before { content: "\e904";}


body {
	/*font-family: "游明朝体", "Yu Mincho", YuMincho, "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;*/
	font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	font-size: 12px;
	line-height: 1.8;
	background-color: #000;
	-webkit-text-size-adjust: 100%;
	color: #fff;
}

h2 {
	font-family: 'Oswald', sans-serif;
	font-weight: bold;
	position: absolute;
	top: 60px;
	right: 50px;
	font-size: 26px;
	letter-spacing: 0.08em;
}

img {
	max-width: 100%;
	height: auto;
}

section {
	position: relative;
}

.inrWrap {
	max-width: 980px;
	margin: 0 auto;
	padding: 0 50px 0 80px;
}

.anim {
	opacity: 0;
	transform: translateY(40px);
	transition: all 0.5s ease-out;
}
.anim.on {
	opacity: 1;
	transform: translateY(0);
}

.menuBtn {
	position: fixed;
	top: 0;
	left: 0;
	width: 45px;
	height: 100%;
	background-color: #c5024e;
	color: #fff;
	text-decoration: none;
	font-size: 18px;
	font-family: 'Oswald', sans-serif;
	letter-spacing: 0.1em;
	z-index: 8000;
}
.menuBtn span {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-90deg);
	background: url("../images/icon_menu.png") no-repeat left center;
	background-size: 15px;
	padding-left: 25px;
}

.closeBtn {
	position: fixed;
	top: 0;
	left: 0;
	width: 45px;
	height: 100%;
	background-color: #c5024e;
	color: #fff;
	text-decoration: none;
	font-size: 18px;
	font-family: 'Oswald', sans-serif;
	letter-spacing: 0.1em;
	z-index: 9999;
	display: none;
}
.closeBtn span {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-90deg);
	background: url("../images/icon_close.png") no-repeat left center;
	background-size: 12px;
	padding-left: 25px;
}
.closeBtn.on {
	display: block;
}

#globalNavi {
	padding: 40px 0;
	position: fixed;
	top: 0;
	left: 46px;
	width: 0;
	height: 100%;
	background-color: #c5024e;
	color: #fff;
	text-decoration: none;
	font-size: 18px;
	font-family: 'Oswald', sans-serif;
	letter-spacing: 0.1em;
	z-index: 9998;
	overflow: hidden;
	transition: all 0.3s ease-out;
	box-sizing: border-box;
}
#globalNavi.on {
	width: 320px;
	padding: 40px;
}
#globalNavi .inrNavi {
	height: 100%;
	width: 240px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
#globalNavi .inrNavi div:first-child {
	margin-bottom: 12vh;
}

#globalNavi .navi {
	list-style: none;
	padding-bottom: 30px;
	border-bottom: #000 solid 1px;
	margin-bottom: 30px;
}
#globalNavi .navi li a {
	color: #fff;
	text-decoration: none;
	font-size: 20px;
	letter-spacing: 0.06em;
}
#globalNavi .sns {
	display: flex;
	list-style: none;
}
#globalNavi .sns li {
	margin-right: 20px;
}
#globalNavi .sns li a {
	color: #fff;
	text-decoration: none;
	font-size: 20px;
}

#globalNavi .alert {
	font-size: 12px;
	letter-spacing: 0;
	color: #000;
	margin-bottom: 20px;
}
#globalNavi .copyright {
	font-size: 10px;
}



@media screen and (min-width: 813px) {
	
	.sp { display: none;}
	
	a { transition: all 0.3s ease-out;}
	a:hover { opacity: 0.5;}
	
	.menuBtn:hover,
	.closeBtn:hover {
		opacity: 1;
		background-color: #e5004a;
	}
	
}
@media screen and (max-width: 812px) {
	
	.pc { display: none;}
	
	h2 {
		top: 8vw;
		right: inherit;
		left: 6vw;
		font-size: 5.8vw;
	}
	
	#lower h2 {
    	top: 28vw;
	}
	
	.inrWrap {
		padding: 0 6vw;
	}
	
	.menuBtn,
	.closeBtn {
		display: none;
	}
	
	.spMenuBtn {
		display: block;
		width: 60px;
		height: 60px;
		position: fixed;
		top: 0;
		right: 0;
		z-index: 9999;
		background-color: #c5024e;
	}
	.spMenuBtn span {
		display: block;
		background: #fff;
		width: 20px;
		height: 2px;
		position: absolute;
		left: 20px;
		transition: all 0.4s;
	}

	.spMenuBtn span:first-child { top: 24px;}
	.spMenuBtn span:nth-child(2) { margin-top: -1px; top: 50%;}
	.spMenuBtn span:nth-child(3) { bottom: 24px;}
	.spMenuBtn.active span:first-child {
		transform: translateY(5px) rotate(45deg);
	}
	.spMenuBtn.active span:nth-child(2) { opacity: 0;}
	.spMenuBtn.active span:nth-child(3) {
		transform: translateY(-5px) rotate(-45deg);
	}
	
	#globalNavi {
    	padding: 8vw 0;
		left: inherit;
		right: 0;
	}
	#globalNavi.on {
		width: 100%;
    	padding: 8vw;
	}
	#globalNavi .inrNavi {
		width: 84vw;
	}
	#globalNavi .navi {
		padding-bottom: 6vw;
		margin-bottom: 6vw;
	}
	#globalNavi .navi li a {
		font-size: 8vw;
    	line-height: 1.6;
	}
	
	#globalNavi .sns li {
		margin-right: 6vw;
	}
	#globalNavi .sns li a {
		font-size: 6vw;
	}
	#globalNavi .alert {
		font-size: 3vw;
		margin-bottom: 6vw;
	}
	#globalNavi .copyright {
		font-size: 2.6vw;
	}
}





/* ////////////////////////////////////////////////////////////////////////////////

	mainVisual

//////////////////////////////////////////////////////////////////////////////// */
#mainVisual {
	height: 100vh;
	width: 100vw;
	background: #000 url("../images/mv_bg.jpg") no-repeat center center;
	background-size: auto 100%;
	display: flex;
	justify-content: center;
	align-items: center;
    flex-direction: column;
	
	opacity: 0;
	animation: op1 2s ease-out 1s forwards;
}
@keyframes op1 {
	0% { opacity: 0;}
	100% { opacity: 1;}
}

#mainVisual h1 {
	line-height: 0;
	
	opacity: 0;
	animation: op2 0.7s ease-in 3s forwards;
}
@keyframes op2 {
	0% { opacity: 0; filter: blur(60px);}
	100% { opacity: 1; filter: blur(0);}
}

#mainVisual h1 img {
    height: 28vh;
    width: auto;
}

#mainVisual .scroll {
    position: absolute;
    bottom: 50px;
    left: 50%;
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
    font-size: 16px;
    letter-spacing: 0.06em;
    transform: translateX(-50%);
}
#mainVisual .scroll a {
	color: #fff;
	text-decoration: none;
}

#mainVisual .bnr {
	position: absolute;
    top: 30px;
    right: 30px;
    width: 230px;
    line-height: 0;
	z-index: 1;
}

#mainVisual .character {
    margin-top: 6vh;
	opacity: 0;
	animation: op2 0.6s ease-in 3.5s forwards;
	position: relative;
    height: 40vh;
	width: 70vh;
	display: block;
}

#mainVisual .character div {
	position: absolute;
	bottom: 0;
	line-height: 0;
}

#mainVisual .character div a {
	display: none;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background-color: #fff;
}
#mainVisual .character div a:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background-color: #fff;
	animation: charabt 1s ease-out 0s infinite;
}
#mainVisual .character div a:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 14px;
	height: 14px;
	border-radius: 50%;
	background-color: #fff;
	animation: charabt 1s ease-out .5s infinite;
}
@keyframes charabt {
	0% { transform: scale(1); opacity: .9;}
	100% { transform: scale(3); opacity: 0;}
}
#mainVisual .character .mvChara01 a { top: 34%; left: 38%;}
#mainVisual .character .mvChara02 a { top: 32%; left: 44%;}
#mainVisual .character .mvChara03 a { top: 38%; left: 54%;}
#mainVisual .character .mvChara04 a { top: 34%; left: 53%;}
#mainVisual .character .mvChara05 a { top: 34%; left: 38%;}
#mainVisual .character .mvChara06 a { top: 37%; left: 66%;}

#mainVisual .character div .off {
	display: none;
}
#mainVisual .character div.off .off {
	display: block;
}
#mainVisual .character div.off .on {
	display: none;
}
#mainVisual .character .mvChara01 {
    left: 54%;
    transform: translateX(-50%);
    width: 24%;
    z-index: 2;
}
#mainVisual .character .mvChara02 {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 3;
    width: 37%;
}
#mainVisual .character .mvChara03 {
    position: absolute;
    bottom: 0;
    left: 21%;
    z-index: 1;
    width: 25%;
}
#mainVisual .character .mvChara04 {
    position: absolute;
    bottom: 0;
    left: -1%;
    z-index: 4;
    width: 18%;
}
#mainVisual .character .mvChara05 {
    position: absolute;
    bottom: 0;
    right: 24%;
    z-index: 5;
    width: 19%;
}
#mainVisual .character .mvChara06 {
    position: absolute;
    bottom: 0;
    left: 6.5%;
    z-index: 6;
    width: 25%;
}

#mainVisual .bnrLine {
	position: absolute;
	bottom: 50px;
	left: 60px;
    width: 260px;
}

#mainVisual .episode {
	position: absolute;
	bottom: 40px;
	right: 0;
    width: 280px;
}
#mainVisual .episode dl {
	background: linear-gradient(45deg, #260229, #140337);
	margin-top: 3px;
	transition: all .3s ease-out;
	position: relative;
}
/*#mainVisual .episode dl.on {
	background: linear-gradient(45deg, #39023e, #1e0552);
}*/
#mainVisual .episode dl.new {
	background: linear-gradient(295deg, #70004f 30%, #c5024e);
}


/*#mainVisual .episode dl.new::before,
#mainVisual .episode dl.new::after {
	content: "";
    display: block;
    position: absolute;
    top: 21px;
    left: 124px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #fff;
}
#mainVisual .episode dl.new::before {
    animation: charabt 1s ease-out 0s infinite;
}
#mainVisual .episode dl.new::after {
    animation: charabt 1s ease-out .5s infinite;
}*/

#mainVisual .episode dl dt {
	padding: 10px 18px;
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
	font-size: 16px;
	position: relative;
}
#mainVisual .episode dl dt::after {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	right: 18px;
	width: 15px;
	height: 1px;
	background-color: #fff;
}
#mainVisual .episode dl dt::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 25px;
    width: 1px;
    height: 15px;
    background-color: #fff;
    transform: translateY(-50%);
	transition: all .3s ease-out;
}
#mainVisual .episode dl dt.on::before {
	opacity: 0;
}
#mainVisual .episode dl dd {
	padding: 5px 15px 15px;
	display: none;
	overflow: hidden;
}
#mainVisual .episode dl dd .epWrap {
	display: flex;
	justify-content: space-between;
}
#mainVisual .episode dl dd .epTxt {
	width: 100%;
}
#mainVisual .episode dl dd .epTxt p {
	font-size: 14px;
	margin-bottom: 15px;
	line-height: 1.5;
}
#mainVisual .episode dl dd .epTxt a {
	display: block;
	/*border: #6a428b solid 1px;*/
	border: #fff solid 1px;
	color: #fff;
	text-align: center;
	font-size: 12px;
	text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
	padding: 4px;
}
#mainVisual .episode dl dd .epPic {
	width: 35%;
}
#mainVisual .episode dl dd .epPic img {
	width: 100%;
}


.modal .epHead {
	border-bottom: #ccc solid 1px;
	padding-bottom: 30px;
	text-align: center;
    margin-bottom: 40px;
}
.modal .epHead h3 {
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
	font-size: 56px;
    letter-spacing: .05em;
    line-height: 1.4;
}
.modal .epHead p {
	font-size: 18px;
}
.modal .epBody {
	display: flex;
    justify-content: space-between;
	margin-bottom: 40px;
}
.modal .epBodyPic {
	width: 30%;
    text-align: center;
}
.modal .epBodyTxt {
	width: 100%;
}
.modal .epBodyTxt p {
    font-size: 14px;
    margin-bottom: 30px;
}
.modal .btnWrap {
	background: url("../images/ep_btn_bg.jpg") no-repeat center center;
	background-size: cover;
    padding: 19% 0px;
}
.modal .btnWrap a {
	display: block;
	margin: 0 auto;
	width: 300px;
	background-color: #c5024e;
	color: #fff;
	text-decoration: none;
	text-align: center;
    font-size: 16px;
    font-weight: bold;
    padding: 15px 0;
}

@media screen and (max-width: 812px) {
	#mainVisual {
		height: 100vh;
		width: 100vw;
		background: #000 url(../images/mv_bg.jpg) no-repeat center top;
    	background-size: auto 86%;
    	padding-bottom: 30vw;
	}
	#mainVisual h1 {
		max-width: 54vw;
    	margin-bottom: 12vw;
	}
	#mainVisual h1 img {
		height: auto;
		width: 100%;
	}
	#mainVisual .scroll {
		bottom: 16vw;
		font-size: 4vw;
    	transform: translateX(-50%);
	}
	
	#mainVisual .bnr {
		top: 4vw;
		right: inherit;
		left: 4vw;
		width: 30vw;
	}
	
	#mainVisual .character {
		margin-top: 0;
		height: 50vw;
		width: 90vw;
	}
	#mainVisual .character img {
		height: auto;
    	width: 86vw;
	}
	
	#mainVisual .character div a {
		width: 10px;
		height: 10px;
	}
	#mainVisual .character div a:before,
	#mainVisual .character div a:after {
		width: 10px;
		height: 10px;
	}
	#mainVisual .character .mvChara01 a { top: 34%; left: 28%;}
	
	#mainVisual .bnrLine {
		bottom: 26vw;
		left: 20vw;
		width: 60vw;
	}
	
	#mainVisual .episode {
		bottom: 55vw;
		right: 2vw;
		width: 96vw;
		display: flex;
		flex-direction: row-reverse;
		justify-content: flex-end;
	}
	#mainVisual .episode dl {
		width: calc((100% / 6) - 2px);
    	margin: 0 1px;
	}
	#mainVisual .episode dl dt {
		padding: 3.5vw 0;
    	font-size: 2.8vw;
		text-align: center;
    	line-height: 1.4;
	}
	#mainVisual .episode dl dt span {
		display: block;
    	font-size: 4.8vw;
	}
	#mainVisual .episode dl dd .epTxt p {
		font-size: 3.4vw;
		margin-bottom: 4vw;
	}
	#mainVisual .episode dl dd .epTxt a {
		font-size: 3.4vw;
		padding: 1vw;
	}
	
	#mainVisual .episode dl.on {
		/*background: linear-gradient(45deg, #260229, #140337);*/
		margin-top: 0;
	}
	#mainVisual .episode dl dt::after,
	#mainVisual .episode dl dt::before {
		display: none;
	}
	#mainVisual .episode dl dd {
		display: none !important;
	}
	
	#mainVisual .episode dl.new::before,
	#mainVisual .episode dl.new::after {
		top: -3px;
		left: inherit;
		right: -3px;
		width: 6px;
		height: 6px;
	}
	
	.modal .epHead {
		padding-bottom: 6vw;
		margin-bottom: 6vw;
	}
	.modal .epHead h3 {
		font-size: 8.6vw;
	}
	.modal .epHead p {
		font-size: 3vw;
	}
	.modal .epBody {
		display: block;
		margin-bottom: 8vw;
	}
	.modal .epBodyPic {
		width: 60%;
		margin: 0 auto 6vw;
	}
	.modal .epBodyTxt {
		width: 100%;
	}
	.modal .epBodyTxt p {
		font-size: 3.6vw;
		margin-bottom: 6vw;
	}
	
	.modal .btnWrap {
		padding: 13% 0px;
	}
	.modal .btnWrap a {
		width: 60vw;
		font-size: 3.8vw;
		padding: 4vw 0;
	}
}

/* ////////////////////////////////////////////////////////////////////////////////

	contents

//////////////////////////////////////////////////////////////////////////////// */

main {
}

#character {
	background-image: linear-gradient(45deg, #2b0118, #10032d);
	padding: 120px 0 100px;
}

#character .charaList {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	max-width: 800px;
	margin: 0 auto 40px;
	list-style: none;
}
#character .charaList li {
	width: 26%;
	text-align: center;
	margin-bottom: 40px;
}
#character .charaList li .chara {
	line-height: 0;
	margin-bottom: 15px;
	position: relative;
}
#character .charaList li .chara img {
	width: 100%;
}
#character .charaList li .chara .off {
	display: none;
}
#character .charaList li.off .chara .off {
	display: block;
}
#character .charaList li.off .chara .on {
	display: none;
}

#character .charaList li.off .chara a::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url("../images/lose.png") no-repeat center center;
	background-size: 100%;
}

#character .charaList li .btn {
	width: 95%;
	margin: 0 auto 10px;
}
#character .charaList li .btn a {
	font-size: 18px;
	font-family: 'Oswald', sans-serif;
    font-weight: bold;
	letter-spacing: .05em;
	display: block;
	background-color: #c5024e;
	color: #fff;
	text-decoration: none;
	padding: 5px;
}

#character .btnLineComic {
	width: 300px;
	margin: 0 auto;
}
#character .btnLineComic a {
	display: block;
	background-color: #fff;
	text-align: center;
	color: #c5024e;
	text-decoration: none;
	font-size: 16px;
	font-weight: bold;
	padding: 15px;
}

.modal {
	padding: 60px;
}
.modal .detailHead {
	display: flex;
	justify-content: space-between;
	padding-bottom: 40px;
	border-bottom: #ccc solid 1px;
    margin-bottom: 40px;
	min-height: 480px;
}
.modal .detailHead .detailChara {
    width: 35%;
	position: relative;
	display: flex;
    align-items: end;
}
.modal .detailHead .detailChara p {
    font-family: 'Oswald', sans-serif;
    font-weight: bold;
	position: absolute;
    top: 0;
    left: 0;
	color: #fff;
    opacity: 0.1;
	font-size: 110px;
    line-height: 1;
	z-index: 1;
    transform: translateY(-100%) rotate(90deg);
    transform-origin: left bottom;
}

#vail .detailHead { background: url("../images/chara_all01.png") no-repeat left top; background-size: 30%;}
#ava .detailHead { background: url("../images/chara_all02.png") no-repeat left top; background-size: 40%;}
#desmond .detailHead { background: url("../images/chara_all03.png") no-repeat left top; background-size: 30%;}
#ld .detailHead { background: url("../images/chara_all04.png") no-repeat left top; background-size: 26%;}
#seno .detailHead { background: url("../images/chara_all05.png") no-repeat left top; background-size: 28%;}
#milo .detailHead { background: url("../images/chara_all06.png") no-repeat left top; background-size: 28%;}

.modal .detailHead .profile {
	width: 60%;
	position: relative;
	margin-left: 40%;
}
.modal .detailHead .profile h3 {
	font-size: 25px;
	margin-bottom: 20px;
    line-height: 1.4;
}
.modal .detailHead .profile h3 span {
    font-size: 0.62em;
}
.modal .detailHead .profile ul {
	display: flex;
	justify-content: space-between; 
    flex-wrap: wrap;
    flex-direction: column;
    height: 120px;
    margin-bottom: 30px;
}
.modal .detailHead .profile ul li {
    display: flex;
    justify-content: space-between;
    width: 45%;
    border-bottom: #ccc solid 1px;
    padding: 5px 0;
    font-size: 14px;
    margin: 0 10% 0 0;
}
.modal .detailHead .profile ul li:nth-child(n+4) {
	margin-right: 0;
}
.modal .detailHead .profile .catch {
    font-size: 22px;
	font-weight: bold;
	letter-spacing: .1em;
    line-height: 1.6;
	color: #c5024e;
	margin-bottom: 20px;
}
.modal .detailHead .profile p {
	font-size: 14px;
}

.modal .detailHead .profile .defeat {
    font-size: 34px;
    font-weight: bold;
    letter-spacing: .06em;
    color: #f21b6f;
    margin-top: 35px;
}

.modal .detailBody h4 {
	font-size: 24px;
	margin-bottom: 30px;
}
.modal .detailBody h4 span {
	color: #c5024e;
}
.modal .detailBody p {
	font-size: 15px;
}

.iframeBox {
	position: relative;
	width: 100%;
}
.iframeBox iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.modal .iframeBox {
	padding-top: 56.25%;
}



@media screen and (max-width: 812px) {
	
	#character {
		padding: 24vw 0 16vw;
	}
	#character .charaList {
		margin: 0 auto 10vw;
	}
	#character .charaList li {
		width: 46%;
		margin-bottom: 8vw;
	}
	#character .charaList li .btn a {
		font-size: 4.2vw;
		padding: 1vw;
	}
	
	.modal {
		padding: 5vw;
	}
	.modal .detailHead {
		padding-bottom: 8vw;
		margin-bottom: 8vw;
		min-height: auto;
	}
	.modal .detailHead .profile {
		width: 100%;
		margin-left: 0;
	}
	.modal .detailHead .profile h3 {
		font-size: 4.8vw;
		margin-bottom: 4vw;
		margin-left: 0;
		line-height: 1.6;
	}
	.modal .detailHead .profile h3 span {
		font-size: 3.4vw;
	}
	.modal .detailHead .profile .defeat {
		font-size: 6.2vw;
		margin-top: 6vw;
	}
	
	.modal .detailHead .profile ul {
    	margin-bottom: 10vw;
    	margin-left: 50%;
		height: auto;
	}
	.modal .detailHead .profile ul li {
		width: 100%;
		padding: 3vw 0;
		font-size: 3.2vw;
		margin: 0;
	}
	.modal .detailHead .profile .catch {
		font-size: 4.4vw;
		margin-bottom: 6vw;
	}
	.modal .detailHead .profile p {
		font-size: 3.4vw;
	}
	
	.modal .detailBody h4 {
		font-size: 5.8vw;
		margin-bottom: 6vw;
	}
	.modal .detailBody p {
		font-size: 3.4vw;
	}
	
	#vail .detailHead {
		background: url(../images/chara_all01.png) no-repeat left 20vw;
		background-size: 47%;
	}
	#ava .detailHead {
		background: url(../images/chara_all02.png) no-repeat left 20vw;
		background-size: 58%;
	}
	#desmond .detailHead {
		background: url(../images/chara_all03.png) no-repeat left 22vw;
		background-size: 44%;
	}
	#ld .detailHead {
		background: url(../images/chara_all04.png) no-repeat left 22vw;
		background-size: 39%;
	}
	#seno .detailHead {
		background: url(../images/chara_all05.png) no-repeat left 21vw;
		background-size: 44%;
	}
	#milo .detailHead {
		background: url(../images/chara_all06.png) no-repeat left 20vw;
		background-size: 45%;
	}
}


#movie {
	padding: 160px 0 80px;
}

#movie .movieHead {
	max-width: 700px;
	margin: 0 auto 60px;
}
#movie .movieHead ul {
	display: flex;
	justify-content: space-between;
	list-style: none;
}
#movie .movieHead ul li {
	line-height: 0;
    width: 14%;
}
#movie .movieHead ul li img {
	opacity: 0.64;
}

#movie .movieHead ul li a {
	display: block;
	line-height: 0;
	background: #1d1d1d;
	padding: 3px;
	border-radius: 50%;
	text-align: center;
	overflow: hidden;
	position: relative;
}
#movie .movieHead ul li.new a::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg, #ff1771 0%, #935dbb 100%);
	animation: movH 10s linear 0s infinite;
	border-radius: 50%;
}
#movie .movieHead ul li a img {
	position: relative;
	opacity: 1;
}

@keyframes movH {
	0% { transform: rotate(0deg);}
	100% { transform: rotate(360deg);}
}

#movie .movieWrap {
	max-width: 1200px;
	margin: 0 auto 80px;
    padding: 0 50px 0 80px;
}
#movie .movieWrap h4 {
	font-family: 'Oswald', sans-serif;
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 20px;
}

#movie .movieWrap .result {
	margin-bottom: 30px;
	font-size: 18px;
	display: flex;
	justify-content: space-between;
}
#movie .movieWrap .result h5 {
	font-family: 'Oswald', sans-serif;
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 15px;
	width: 220px;
}
#movie .movieWrap .result p {
	width: calc(100% - 220px);
}
#movie .movieWrap .result span {
	color: #c5024e;
}

#movie .movieWrap .end {
	text-decoration: line-through;
}


#movie .movieWrap .rule {
	color: #ed00ee;
    font-size: 20px;
    margin-bottom: 15px;
}
#movie .movieWrap .period {
    font-size: 24px;
    margin-bottom: 40px;
}
#movie .movieWrap ul {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
}
#movie .movieWrap ul li {
	width: 24%;
	margin-right: 1.25%;
	margin-bottom: 20px;
}
#movie .movieWrap ul li:nth-child(4n) {
	margin-right: 0;
}
#movie .movieWrap ul li a {
	display: block;
	border: #222 solid 1px;
	background-color: #000;
	line-height: 0;
	position: relative;
}
#movie .movieWrap ul li a::before {
	content: "";
	display: block;
	background: url("../images/play_btn.png") no-repeat center center;
	background-size: 100%;
	width: 40px;
	height: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
    z-index: 1;
}
#movie .movieWrap ul li a img {
	opacity: .6;
	width: 100%;
}

#movie .movieWrap ul li p {
	font-size: 14px;
	margin-top: 10px;
    font-feature-settings: "palt";
}

#movie .iframeBox {
	max-width: 880px;
	margin: 0 auto;
}
#movie .iframeBox div {
	padding-top: 56.25%;
	position: relative;
	margin-bottom: 40px;
}
#movie .iframeBox div iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


@media screen and (max-width: 812px) {
	#movie .movieHead {
		margin: 0 5vw 12vw;
	}
	#movie .movieHead ul {
		flex-wrap: wrap;
	}
	#movie .movieHead ul li {
		width: 31%;
		margin-bottom: 4vw;
	}
	#movie .movieHead ul li img {
		width: 100%;
	}
	
	
	#movie .movieWrap {
		margin: 0 auto 12vw;
		padding: 0 5vw 0 5vw;
	}
	#movie .movieWrap h4 {
		font-size: 4.6vw;
		margin-bottom: 4vw;
	}
	
	#movie .movieWrap .result {
		margin-bottom: 8vw;
    	font-size: 3.6vw;
		display: block;
	}
	#movie .movieWrap .result h5 {
		font-size: 5.4vw;
		margin-bottom: 4vw;
		width: 100%;
	}
	#movie .movieWrap .result p {
		width: 100%;
	}
	
	
	#movie .movieWrap .rule {
		font-size: 3.8vw;
    	margin-bottom: 3vw;
	}
	#movie .movieWrap .period {
		font-size: 4.2vw;
    	margin-bottom: 8vw;
	}
	#movie .movieWrap ul {
		justify-content: space-between;
	}
	#movie .movieWrap ul li {
		width: 48%;
		margin-right: 0;
		margin-bottom: 6vw;
	}
	#movie .movieWrap ul li a::before {
		width: 8vw;
		height: 8vw;
	}
	#movie .movieWrap ul li p {
		font-size: 2.8vw;
		margin-top: 2vw;
	}
	
	
	
}

#information {
	background: linear-gradient(130deg, rgba(80,12,176,0.6) 0%, rgba(90,13,178,0.6) 44%, rgba(58,31,175,0.6) 100%);
	padding: 160px 0;
}



#about {
	padding: 180px 0;
	background: url("../images/content_bg.jpg") no-repeat center bottom;
	background-size: 100% auto;
}
#about .aboutLead {
	text-align: center;
	font-size: 18px;
	line-height: 2.2;
	padding-bottom: 60px;
	margin-bottom: 60px;
	border-bottom: rgba(255,255,255,0.5) solid 1px;
}
#about .aboutLead span {
	color: #c5024e;
}

#about .rule {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	list-style: none;
	padding-bottom: 140px;
}
#about .rule li {
	width: 45%;
	margin-bottom: 80px;
}
#about .rule li:nth-child(even) div {
	transform: translateY(140px);
}

#about .rule li h4 {
	font-family: 'Oswald', sans-serif;
	font-weight: bold;
	font-size: 32px;
	margin-bottom: 20px;
	color: #c5024e;
}
#about .rule li p {
	font-size: 16px;
	line-height: 2;
}

#about .underCatch {
	font-family: "游明朝体", "Yu Mincho", YuMincho, serif;
	text-align: center;
	font-size: 30px;
	color: #8ed660;
}


#credit {
	padding: 180px 0;
}
#credit .creditList {
	list-style: none;
}
#credit .creditList li {
	font-size: 16px;
	line-height: 2;
	text-align: center;
	margin-bottom: 15px;
}
#credit .aboutLogo {
	max-width: 340px;
	margin: 120px auto 0;
	line-height: 0;
}


@media screen and (max-width: 812px) {
	main {
		background-size: 200% auto;
	}
	#movie {
		padding: 26vw 0 14vw;
	}
	#information {
		padding: 26vw 0 20vw;
	}
	
	#about {
		padding: 26vw 0 20vw;
	}	
	
	#about .aboutLead {
    	font-size: 3.6vw;
		padding-bottom: 10vw;
		margin-bottom: 10vw;
	}
	#about .rule {
		display: block;
		padding-bottom: 0;
		margin-bottom: 20vw;
	}
	#about .rule li {
		width: 100%;
		margin-bottom: 14vw;
	}
	#about .rule li h4 {
		font-size: 5.6vw;
		margin-bottom: 3vw;
	}
	#about .rule li p {
		font-size: 3.2vw;
	}
	#about .rule li:nth-child(even) div {
		transform: translateY(0);
	}
	#about .underCatch {
		font-size: 4.6vw;
	}
	
	
	#credit {
		padding: 26vw 0 20vw;
	}
	#credit .creditList li {
		font-size: 3vw;
		margin-bottom: 3vw;
	}
	#credit .aboutLogo {
		max-width: 50vw;
		margin: 10vw auto 0;
	}
}


@media screen and (max-width: 820px) and (min-width: 813px) {
	.inrWrap,
	#movie .movieWrap {
		padding: 0 70px 0 100px;
	}
	#mainVisual h1 img {
		height: 20vh;
	}
	#mainVisual .character {
		margin-top: 4vh;
		height: 33vh;
		width: 52vh;
	}
}


/* ////////////////////////////////////////////////////////////////////////////////

	Lower

//////////////////////////////////////////////////////////////////////////////// */
#lower h1 {
	position: absolute;
	top: 40px;
	left: 90px;
	width: 160px;
}
#lower main {
	padding: 260px 0 100px;
	min-height: 100vh;
	position: relative;
	background: url("../images/content_bg.jpg") no-repeat center bottom fixed;
	background-size: cover;
}

.pager {
	display: flex;
	list-style: none;
	justify-content: center;
	margin-top: 80px;
}
.pager li {
	margin: 0 4px;
}
.pager li.prev,
.pager li.next {
	margin: 0 15px;
}
.pager li span,
.pager li a {
	display: block;
	padding: 5px 15px;
	font-family: 'Oswald', sans-serif;
	font-size: 14px;
	border: #fff solid 1px;
}
.pager li a {
	text-decoration: none;
	color: #fff;
}
.pager li span {
	background-color: #fff;
	color: #000;
}

.back {
	margin-top: 60px;
	text-align: center;
}
.back a {
	color: #fff;
	text-decoration: none;
	font-family: 'Oswald', sans-serif;
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 0.1em;
}


.infoList {
	list-style: none;
}
.infoList li {
	display: flex;
	padding: 20px 0;
	border-bottom: rgba(255,255,255,0.5) solid 1px;
}
.infoList li .date {
	width: 120px;
	font-family: 'Oswald', sans-serif;
	font-size: 16px;
	letter-spacing: 0.06em;
}
.infoList li .cat {
	width: 130px;
	font-family: 'Oswald', sans-serif;
	font-weight: bold;
	font-size: 16px;
	letter-spacing: 0.06em;
	color: #c5024e;
}
.infoList li .ttl {
	width: calc(100% - 250px);
	font-size: 14px;
}
.infoList li .ttl a {
	color: #fff;
	text-decoration: none;
}


.infoDetail .date {
	font-family: 'Oswald', sans-serif;
	font-size: 18px;
	letter-spacing: 0.06em;
	margin-bottom: 20px;
}
.infoDetail h3 {
	font-size: 16px;
	margin-bottom: 40px;
}
.infoDetail .detailBody {
	padding: 40px 0;
	border-top: rgba(255,255,255,0.5) solid 1px;
	border-bottom: rgba(255,255,255,0.5) solid 1px;
}
.infoDetail .detailBody p {
	font-size: 14px;
	line-height: 2;
	margin-bottom: 20px;
}
.infoDetail .detailBody p:last-child {
	margin-bottom: 0;
}
.infoDetail .detailBody a {
	color: #fff;
	text-decoration: underline;
}


.auditionHdrLogo {
	opacity: 0;
	animation: alead 1s linear 2s forwards;
}

.audition {
    padding-bottom: 80px;
    border-bottom: rgba(255,255,255,0.5) solid 1px;
    text-align: center;
}
.audition .logo {
    max-width: 580px;
    margin: -100px auto 60px;
}

.auditionTtl {
	position: absolute;
    top: -170px;
    left: 50%;
    width: 420px;
    transform: translateX(-50%);
	animation: alogo 1s linear 1s forwards;
}
@keyframes alogo {
	0% { opacity: 1;}
	100% { opacity: 0;}
}
.auditionLead {
	opacity: 0;
	animation: alead 1s linear 2s forwards;
}
@keyframes alead {
	0% { opacity: 0;}
	100% { opacity: 1;}
}
.auditionLead img {
	vertical-align: bottom;
}

.audition p {
	text-align: center;
	font-size: 24px;
	font-weight: bold;
	line-height: 2;
}
.audition p span {
	color: #e5004a;
}

.audition p.start {
	border: #e5004a solid 1px;
    display: inline-block;
    padding: 4px 30px;
	color: #e5004a;
    margin-top: 30px;
	font-size: 18px;
}


.auditionContent {
	margin-top: 80px;
}
.auditionContent h3 {
	font-size: 28px;
	margin-bottom: 40px;
	letter-spacing: 0.08em;
	text-align: center;
	color: #e5004a;
}

.auditionContent .bmWrap {
	margin-bottom: 80px;
}
.auditionContent .bmWrap .battleMusic {
	display: flex;
	justify-content: space-between;
	margin-bottom: 30px;
}
.auditionContent .bmWrap .battleMusic.bm01 {
	background: #1f0247 url("../images/audition_bg01.jpg") no-repeat left bottom;
	background-size: auto 100%;
}
.auditionContent .bmWrap .battleMusic.bm02 {
	background: #1f0247 url("../images/audition_bg02.jpg") no-repeat left bottom;
	background-size: auto 100%;
}
.auditionContent .bmWrap .battleMusic.bm03 {
	background: #1f0247 url("../images/audition_bg03.jpg") no-repeat left bottom;
	background-size: auto 100%;
}
.auditionContent .bmWrap .battleMusic.bm04 {
	background: #1f0247 url("../images/audition_bg04.jpg") no-repeat left bottom;
	background-size: auto 100%;
}
.auditionContent .bmWrap .battleMusic.bm05 {
	background: #1f0247 url("../images/audition_bg05.jpg") no-repeat left bottom;
	background-size: auto 100%;
}
.auditionContent .bmWrap .battleMusic.bm06 {
	background: #1f0247 url("../images/audition_bg06.jpg") no-repeat left bottom;
	background-size: auto 100%;
}
.auditionContent .bmWrap .battleMusic .btTtl {
    width: 35%;
	padding-top: 1%;
    padding-left: 4%;
}
.auditionContent .bmWrap .battleMusic .btTtl div {
	line-height: 0;
}
.auditionContent .bmWrap .battleMusic .btTtl .playBtn {
	width: 70%;
	margin: 0 auto;
}
.auditionContent .bmWrap .battleMusic .btTtl .playBtn a {
	background-color: #c5024e;
	line-height: 0;
	display: block;
	padding: 10px;
}
.auditionContent .bmWrap .battleMusic .btTtl .playBtn a img {
	width: 40%;
}

.auditionContent .bmWrap .battleMusic .candidate {
	padding: 40px;
	display: flex;
	justify-content: space-between;
    width: 65%;
	box-sizing: border-box;
	list-style: none;
}
.auditionContent .bmWrap .battleMusic .candidate li {
	width: 30%;
}
.auditionContent .bmWrap .battleMusic .candidate li div {
	line-height: 0;
	margin-bottom: 20px;
}
.auditionContent .bmWrap .battleMusic .candidate li p {
	font-size: 15px;
	font-weight: normal;
	line-height: 1.6;
}




.auditionContent .scheduleWrap {
	background: linear-gradient(120deg, #360996 0%, #8d0250 100%);
	padding: 40px;
}
.auditionContent .scheduleWrap .schedule {
	list-style: none;
}
.auditionContent .scheduleWrap .schedule li {
	background-color: rgba(121,141,243,0.15);
	margin-bottom: 80px;
	position: relative;
}
.auditionContent .scheduleWrap .schedule li.close {
	min-height: 190px;
}
.auditionContent .scheduleWrap .schedule li .appBtn {
    margin-top: 30px;
	padding-bottom: 40px;
}
.auditionContent .scheduleWrap .schedule li::after {
	content: "";
	display: block;
	width: 30px;
	height: 30px;
	position: absolute;
	bottom: -45px;
	left: 50%;
	background: linear-gradient(45deg, #fff 50%, transparent 50%);
	transform: translateX(-50%) rotate(-45deg);
}
.auditionContent .scheduleWrap .schedule li h4 {
	padding: 20px 0;
	border-bottom: #fff solid 1px;
	text-align: left;
	font-size: 18px;
	letter-spacing: .05em;
	position: relative;
}
.auditionContent .scheduleWrap .schedule li h4:last-child {
	border-bottom: none;
}
.auditionContent .scheduleWrap .schedule li h4 .tag {
    display: inline-block;
	background-color: #e5004a;
	color: #fff;
	font-weight: bold;
	font-size: 16px;
	padding: 5px;
	text-align: center;
	width: 100px;
	margin-right: 25px;
}
.auditionContent .scheduleWrap .schedule li h4 .tobe {
	display: inline-block;
    width: calc(100% - 240px);
    text-align: center;
    color: #e5004a;
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    line-height: 1.2;
    letter-spacing: 0.1em;
}
.auditionContent .scheduleWrap .schedule li h4 .status {
	position: absolute;
	top: 50%;
	right: 20px;
	font-size: 12px;
	font-weight: normal;
	letter-spacing: 0.05em;
	transform: translateY(-50%);
	border: #fff solid 1px;
	border-radius: 30px;
	padding: 3px 15px;
}
.auditionContent .scheduleWrap .schedule li h4 .week {
	font-size: 14px;
	margin-right: 20px;
}

.auditionContent .scheduleWrap .schedule li .scheduleTxt {
	text-align: left;
	padding: 25px 40px;
}
.auditionContent .scheduleWrap .schedule li .scheduleTxt p {
	text-align: left;
	font-size: 16px;
	font-weight: normal;
	margin-bottom: 20px;
}
.auditionContent .scheduleWrap .schedule li .scheduleTxt p:last-child {
	margin-bottom: 0;
}
.auditionContent .scheduleWrap .schedule li .scheduleTxt ul {
	list-style: disc;
	padding-left: 20px;
}
.auditionContent .scheduleWrap .schedule li .scheduleTxt ul li {
	background-color: transparent;
	font-size: 12px;
	margin: 0;
}
.auditionContent .scheduleWrap .schedule li .scheduleTxt ul li::after {
	content: none;
}

.auditionContent .scheduleWrap .schedule li .close {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(29,0,69,.95) url("../images/closed.png") no-repeat center center;
	background-size: 60% auto;
}
.auditionContent .scheduleWrap .schedule li .close p {
	font-size: 18px;
	letter-spacing: .1em;
}
.auditionContent .scheduleWrap .schedule li .close .closeTxtBox {
	border: #fff solid 1px;
	padding: 3px 30px;
	font-size: 24px;
    margin-bottom: 15px;
}


.auditionContent .scheduleWrap .scheduleBtm {
	background: url("../images/audition_schedule_img.png") no-repeat center center;
	background-size: contain;
    padding: 160px 0 110px;
	text-align: center;
    margin-top: -60px;
}
.auditionContent .scheduleWrap .scheduleBtm p {
	font-size: 38px;
	letter-spacing: 0.1em;
	display: inline-block;
	line-height: 1.4;
	border-bottom: #fff solid 2px;
}

.auditionContent .auditionAbout {
	background-color: rgba(121,141,243,0.15);
	padding: 30px 60px;
	text-align: left;
}
.auditionContent .auditionAbout li {
	font-size: 14px;
}

.auditionContent .dlBtn {
	display: flex;
	justify-content: space-between;
	list-style: none;
	padding: 0 40px;
}
.auditionContent .dlBtn li {
	width: 46%;
}
.auditionContent .dlBtn li a {
	display: block;
	text-align: center;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	border: #fff solid 2px;
	text-decoration: none;
	padding: 16px;
	border-radius: 40px;
}

.auditionContent .appBtn {
	margin-top: 80px;
	padding: 0 80px;
}
.auditionContent .appBtn a {
	display: block;
	background: linear-gradient(120deg, #c5024e 0%, #8d0250 100%);
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	letter-spacing: 0.06em;
	text-decoration: none;
	padding: 20px;
	border-radius: 60px;
}

.opfinal {
	opacity: 0;
    animation: h3wh 1s linear 3s forwards;
}
@keyframes h3wh {
	0% { opacity: 0;}
	100% { opacity: 1;}
}

.auditionContent h3.wh {
	color: #fff;
}

.finalImg {
	line-height: 0;
	max-width: 720px;
	margin: 0 auto 60px;
}

.scSns {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	list-style: none;
	margin-bottom: 40px;
}
.scSns > li {
	width: 46%;
	color: #fff;
	background-image: linear-gradient(140deg, #5a0032 20%, #24006e 80%);
	margin-bottom: 30px;
}
.scSns > li h4 {
	background-color: #1f0247;
	padding: 5px 20px;
	text-align: left;
	font-size: 16px;
	letter-spacing: .1em;
}
.scSns > li > div {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 10px 20px;
}
.scSns > li > div p {
	font-size: 24px;
	font-weight: bold;
}
.scSns > li .scSnsList {
	display: flex;
	list-style: none;
}
.scSns > li .scSnsList li {
	margin-left: 20px;
    line-height: 1;
}
.scSns > li .scSnsList li a {
	text-decoration: none;
}
.scSns > li .scSnsList li a i {
	font-size: 24px;
}

.scMovieList {
	display: flex;
	justify-content: space-between;
	list-style: none;
	padding: 50px 0;
	border-top: rgba(255,255,255,0.5) solid 1px;
	border-bottom: rgba(255,255,255,0.5) solid 1px;
}
.scMovieList li {
	width: 46%;
}
.scMovieList li .iframeBox {
	padding-top: 56.25%;
}
.scMovieList li p {
	text-align: center;
	font-size: 16px;
	margin-top: 20px;
}


@media screen and (max-width: 812px) {
	#lower main {
		padding: 44vw 0 24vw;
		background: none;
	}
	#lower main::before {
		content: "";
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		height: 100vh;
		width: 100vw;
		background: url("../images/content_bg.jpg") no-repeat center bottom;
		background-size: cover;
		z-index: 0;
	}
	#lower h1 {
		top: 4vw;
		left: 4vw;
    	width: 22vw;
	}
	
	.infoList li {
   		display: block;
		padding: 6vw 0;
	}
	.infoList li .date {
		float: left;
		width: 22vw;
		font-size: 3.4vw;
		margin-bottom: 4vw;
	}
	.infoList li .cat {
		float: left;
		width: 22vw;
		font-size: 3.4vw;
		margin-bottom: 4vw;
	}
	.infoList li .ttl {
		clear: both;
		width: 100%;
		font-size: 3.4vw;
	}
	
	.pager {
		margin-top: 12vw;
	}
	.pager li span,
	.pager li a {
		padding: 1vw 3vw;
		font-size: 3vw;
	}
	.pager li.prev,
	.pager li.next {
		margin: 0 3vw;
	}
	.pager li {
		margin: 0 1vw;
	}
	
	.back {
		margin-top: 12vw;
	}
	.back a {
		font-size: 4.2vw;
	}
	
	.infoDetail .date {
		font-size: 3.8vw;
		margin-bottom: 4vw;
	}
	.infoDetail h3 {
		font-size: 3.6vw;
		margin-bottom: 6vw;
	}
	.infoDetail .detailBody {
		padding: 8vw 0;
	}
	.infoDetail .detailBody p {
		font-size: 3.4vw;
		margin-bottom: 4vw;
	}
	
	.auditionTtl {
		top: -10vw;
		width: 62vw;
	}
	.audition {
		padding-bottom: 12vw;
	}
	.audition .logo {
		margin: -6vw auto 6vw;
	}
	.audition p {
		font-size: 4vw;
	}
	.audition p.start {
    	padding: 1vw 3vw 1vw 4vw;
    	margin-top: 6vw;
		font-size: 3.4vw;
	}
	
	.auditionLead img {
		width: 54vw;
	}
	
	.auditionContent {
		margin-top: 10vw;
	}
	.auditionContent h3 {
		font-size: 4.8vw;
		margin-bottom: 8vw;
	}
	
	
	.auditionContent .bmWrap .battleMusic {
    	display: block;
    	margin-bottom: 4vw;
		position: relative;
		padding-bottom: 16vw;
	}
	.auditionContent .bmWrap .battleMusic .candidate {
		padding: 5vw;
		width: 100%;
	}
	.auditionContent .bmWrap .battleMusic .candidate li {
		width: 31%;
	}
	.auditionContent .bmWrap .battleMusic .candidate li div {
		margin-bottom: 3vw;
	}
	.auditionContent .bmWrap .battleMusic .candidate li p {
		font-size: 3vw;
	}
	.auditionContent .bmWrap .battleMusic .btTtl {
		width: 60%;
		padding-top: 1%;
		padding-left: 0;
		margin-left: 40%;
		margin-bottom: 0;
	}
	.auditionContent .bmWrap .battleMusic .btTtl .playBtn {
		width: 80%;
		margin: 0;
		position: absolute;
		bottom: 5vw;
		left: 10%;
	}
	.auditionContent .bmWrap .battleMusic .btTtl .playBtn a {
		padding: 3vw;
	}
	.auditionContent .bmWrap .battleMusic .btTtl .playBtn a img {
		width: 32%;
	}
	
	
	.auditionContent .scheduleWrap {
		padding: 5vw;
	}
	.auditionContent .scheduleWrap .schedule li {
		margin-bottom: 11vw;
	}
	.auditionContent .scheduleWrap .schedule li::after {
		width: 4vw;
		height: 4vw;
		bottom: -6vw;
	}
	.auditionContent .scheduleWrap .schedule li h4 {
		padding: 3.5vw 5vw;
		font-size: 3.4vw;
	}
	.auditionContent .scheduleWrap .schedule li h4 .tag {
		font-size: 3vw;
		padding: 0.6vw;
		width: 18vw;
		margin-right: 0;
		position: absolute;
		top: -5vw;
		left: -5vw;
    	z-index: 2;
	}
	.auditionContent .scheduleWrap .schedule li h4 .tobe {
		width: 100%;
		font-size: 4.2vw;
	}
	.auditionContent .scheduleWrap .schedule li h4 .status {
		right: 4vw;
		font-size: 2.6vw;
    	padding: 1vw 2.5vw;
	}
	.auditionContent .scheduleWrap .schedule li .scheduleTxt {
		padding: 4vw 5vw;
	}
	.auditionContent .scheduleWrap .schedule li .scheduleTxt p {
		font-size: 3.4vw;
		margin-bottom: 3vw;
	}
	.auditionContent .scheduleWrap .schedule li .scheduleTxt ul {
		padding-left: 4.5vw;
	}
	.auditionContent .scheduleWrap .schedule li .scheduleTxt ul li {
		font-size: 2.8vw;
	}
	
	.auditionContent .scheduleWrap .schedule li .close {
    	padding: 3vw;
		background: rgba(29,0,69,.95) url(../images/closed.png) no-repeat center center;
		background-size: 80% auto;
	}
	.auditionContent .scheduleWrap .schedule li .close .closeTxtBox {
		padding: 1vw 5vw;
		font-size: 4.2vw;
		margin-bottom: 3vw;
	}
	.auditionContent .scheduleWrap .schedule li .close p {
		font-size: 3.4vw;
	}
	
	.auditionContent .scheduleWrap .scheduleBtm {
		padding: 19vw 0 12vw;
		margin-top: -8vw;
	}
	.auditionContent .scheduleWrap .scheduleBtm p {
		font-size: 4.3vw;
	}
	
	.auditionContent .auditionAbout {
		padding: 5vw 5vw 5vw 8vw;
	}
	.auditionContent .auditionAbout li {
		font-size: 3vw;
		line-height: 1.6;
		margin-bottom: 2vw;
	}
	.auditionContent .auditionAbout li:last-child {
		margin-bottom: 0;
	}
	
	.auditionContent .dlBtn {
		padding: 0 2vw;
	}
	.auditionContent .dlBtn li a {
		font-size: 3.6vw;
		padding: 2vw;
	}
	.auditionContent .appBtn {
		margin-top: 12vw;
		padding: 0 8vw;
	}
	.auditionContent .appBtn a {
		font-size: 3.8vw;
		padding: 4vw;
	}
	
	.auditionContent .scheduleWrap .schedule li .appBtn {
		margin-top: 6vw;
		padding-bottom: 6vw;
	}
	
	
	
	.finalImg {
		margin: 0 auto 10vw;
	}

	.scSns {
		display: block;
		margin-bottom: 6vw;
	}
	.scSns > li {
		width: 100%;
		margin-bottom: 2vw;
	}
	.scSns > li h4 {
		padding: 1vw 4vw;
		font-size: 3.4vw;
	}
	.scSns > li > div {
		padding: 2vw 4vw;
	}
	.scSns > li > div p {
		font-size: 5.2vw;
	}
	.scSns > li .scSnsList li {
		margin-left: 4vw;
	}
	.scSns > li .scSnsList li a i {
		font-size: 5.2vw;
	}

	.scMovieList {
		display: block;
		padding: 8vw 0;
	}
	.scMovieList li {
		width: 100%;
		margin-bottom: 6vw;
	}
	.scMovieList li p {
		font-size: 3.6vw;
		margin-top: 4vw;
	}
}

