@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@200;300;400;500;600;700;900&display=swap');

html,body{
	position: relative;
	width: 100%;
	height: auto;
}
html{
	scroll-behavior: smooth; 
	padding: 0;
	margin: 0;
	/*min-width: 1300px;*/
}
body{
	font-family: 'Noto Serif TC', serif;
	position: relative;
	padding: 0;
	margin: 0;	
	background-color: #030303;
}
*{
	box-sizing: border-box;
}
.app{
	position: relative;
	width: 100%;
	height: auto;
	margin: 0;
	overflow: hidden;
}
[data-aos="fade-ani"] {
	opacity: 0;
	transform: translateY(15%);
	transition-property: transform, opacity;
}
[data-aos="fade-ani"].aos-animate{
	opacity: 1;
	transform: translateY(0%);
}
.noise{
	position: absolute;
	width: 200%;
	height: 200vh;
	background: url('../img/noise-transparent.png') repeat 0 0;
	background-repeat: repeat;
	animation: bg-animation .2s infinite;
	opacity: .9;
	visibility: visible;
	z-index: 50;
	top: -50%;
	left: -50%;
	transform: translate(50%,50%);
}
@keyframes bg-animation {
    0% { transform: translate(0,0) }
    10% { transform: translate(-5%,-5%) }
    20% { transform: translate(-10%,5%) }
    30% { transform: translate(5%,-10%) }
    40% { transform: translate(-5%,15%) }
    50% { transform: translate(-10%,5%) }
    60% { transform: translate(15%,0) }
    70% { transform: translate(0,10%) }
    80% { transform: translate(-15%,0) }
    90% { transform: translate(10%,5%) }
    100% { transform: translate(5%,0) }
}

/*-------------------------------header-----------------------------------*/

header{
	position: absolute;
	width: 100%;
	height: 215px;
	bottom: -37px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 9999;
	padding-top: 128px;
	transition: 0.3s linear;
}
.webp header{
	background: url('../imgp/navbg.webp') no-repeat center;
}
.no-webp header{
	background: url('../img/navbg.png') no-repeat center;
}
header.sticky{
	position: fixed;
	top: -128px;
}
header.sticky a#s8-logo{
	transform: translateY(0px);
}
.header-container{
	position: relative;
	width: 95%;
	height: 50px;
	margin: 0 auto;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
    justify-content: space-between;
}
.header-left{
	position: relative;
	width: max-width;
	height: 50px;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
    justify-content: flex-start;
}
a#s8-logo{
	position: relative;
	display: block;
	width: 305px;
	height: 124px;
	transform: translateY(-46px);
	transition: 0.3s linear;
}
a#s8-logo{
	background: url('../img/s8-logo.png') no-repeat center;
}
.header-left ul{
	position: relative;
	width: max-content;
	height: 50px;
	padding: 0;
	margin: 0 0 0 15px;
	list-style: none;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
    justify-content: flex-start;
}
.header-left ul li{
	position: relative;
	margin: 0 5px;
}
.header-left ul li a{
	position: relative;
	display: block;
	padding: 0 35px;
	height: 50px;
	line-height: 50px;
	font-size: 16px;
	font-weight: 600;
	text-align: center;
	color: #fff;
	text-decoration: none;
	transition: 0.6s linear;
	border-bottom: 1px solid #410909;
}
.header-left ul li a:hover{
	border-bottom: 1px solid #cd2020;
}
.header-left ul li.active a{
	border-bottom: 1px solid #cd2020;
}
.header-right{
	position: relative;
	width: max-width;
	height: 50px;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
    justify-content: flex-start;
}
.header-right ul{
	position: relative;
	width: max-content;
	height: 50px;
	padding: 0;
	margin: 0 0 0 15px;
	list-style: none;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
    justify-content: flex-start;
}
.header-right ul li{
	position: relative;
	margin: 0 5px;
}
.header-right ul li a{
	position: relative;
	display: block;
	padding: 0 15px;
	height: 50px;
	line-height: 50px;
	font-size: 22px;
	font-weight: 600;
	text-align: center;
	color: #fff;
	text-decoration: none;
	transition: 0.3s linear;
}
.header-right ul li a:hover{
	color: #cd2020;
}
a.play-btn{
	position: relative;
	width: 229px;
	height: 50px;
	display: block;
	text-decoration: none;
	font-size: 20px;
	font-weight: 700;
	text-align: center;
	color: #fff;
	line-height: 50px;
	transition: 0.3s linear;
}
.webp a.play-btn{
	background: url('../imgp/gotoplay-btn.webp') no-repeat center;
}
.no-webp a.play-btn{
	background: url('../img/gotoplay-btn.png') no-repeat center;
}
a.play-btn:hover{
	filter: brightness(1.2);
	-webkit-filter: brightness(1.2);
	-ms-filter: brightness(1.2);
	-o-filter: brightness(1.2);
}
/*-------------------------------m-nav-----------------------------------*/

.m-nav{
	display: none;
}
button.toggle-burger{
	position: fixed;
	width: 40px;
	height: auto;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: rgba(0,0,0,0.4);
    right: 2%;
    top: 2%;
    border: 0;
    outline: none;
    padding: 3px 7px;
    z-index: 999;
    border-radius: 2px;
}
button.toggle-burger span{
	position: relative;
	width: 100%;
	height: 2px;
	background-color: #fff;
	display: block;
	margin: 4px 0;
}
.m-nav-container{
	position: fixed;
	width: 85%;
	height: 100vh;
	z-index: 1000;
	background-color: rgba(30,32,33,1);
	right: -85%;
	top: 0;
    transition: 0.6s ease-in-out;.
    box-shadow: 0 -5px 3px rgba(0,0,0,0.45);
}
.m-nav-container.active{
	right: 0%;
}
button.close-nav{
	position: absolute;
	width: 40px;
	height: 40px;
	background-color: transparent;
	border: 0;
	outline: none;
	right: 2%;
    top: 2%;
    z-index: 10;
}
button.close-nav:before{
	content: '';
	position: absolute;
	width: 40px;
	height: 2px;
	background-color: #fff;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%) rotateZ(45deg);
}
button.close-nav:after{
	content: '';
	position: absolute;
	width: 40px;
	height: 2px;
	background-color: #fff;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%) rotateZ(-45deg);
}
.m-nav-logo{
	position: relative;
	width: 100%;
	height: 70px;
	background-color: rgba(0,0,0,0.4);
	padding: 2%;
}
.m-nav-logo a{
	position: relative;
	width: 149px;
	height: 55px;
	display: block;
	background-size: cover !important;
}
.webp .m-nav-logo a{
	background: url('../imgp/cb-logo.webp') no-repeat center;
}
.no-webp .m-nav-logo a{
	background: url('../img/cb-logo.png') no-repeat center;
}
.m-nav-content{
	position: relative;
	width: 100%;
	height: calc(100% - 70px);
	min-height: calc(100% - 70px);
	overflow-y: auto;
}
ul.m-nav-list{
	position: relative;
	width: 100%;
	height: auto;
	padding: 2%;
	margin: 0;
	list-style: none;
}
ul.m-nav-list li{
	position: relative;
	width: 100%;
	height: 60px;
	border-bottom: 1px solid rgba(0,0,0,0.8);
	padding: 0 2%;
}
ul.m-nav-list li a{
	position: relative;
	display: block;
	width: 100%;
	height: 60px;
	line-height: 59px;
	text-align: left;
	color: #fff;
	text-decoration: none;
	font-size: 1rem;
}
ul.m-nav-fast{
	position: relative;
	width: 100%;
	height: auto;
	padding: 2%;
	margin: 0;
	list-style: none;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0,0,0,0.7);
}
ul.m-nav-fast li{
	position: relative;
	width: 100%;
	height: 50px;
	padding: 0 2%;
	border-bottom: 1px solid rgba(0,0,0,1);
}
ul.m-nav-fast li a{
	position: relative;
	display: block;
	width: 100%;
	height: 50px;
	line-height: 49px;
	text-align: left;
	color: #fff;
	text-decoration: none;
	font-size: 1rem;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
}
ul.m-nav-fast li a i{
	margin-right: 5px;
}
ul.m-nav-fast li a i.fa-baha{
	position: relative;
	width: 16px;
	height: 16px;
	background-color: #fff;
	border-radius: 2px;
	display: block;
	overflow: hidden;
}
ul.m-nav-fast li a i.fa-baha span{
	position: relative;
	width: 19px;
	height: 19px;
	display: block;
}
i.fa-baha{
	position: relative;
	width: 19px;
	height: 19px;
	background-color: #e8e3d6;
	border-radius: 2px;
	display: block;
	overflow: hidden;
}
i.fa-baha span{
	position: relative;
	width: 22px;
	height: 22px;
	display: block;
}
.webp i.fa-baha span{
	background: url('../imgp/baha-icn.webp') no-repeat;
	background-size: contain;
	background-position-x: -5px;
}
.no-webp i.fa-baha span{
	background: url('../img/baha-icn.png') no-repeat;
	background-size: contain;
	background-position-x: -5px;
}
a.m-signup-btn{
	position: relative;
	display: block;
	width: 100%;
	height: 70px;
	background-color: #861f1f;
	color: #fff;
	line-height: 70px;
	font-size: 1.678rem;
	text-align: center;
	font-weight: 500;
	text-decoration: none;
}

/*-------------------------------p0-----------------------------------*/

section#p0{
	position: relative;
	width: 100%;
	height: 900px;
	z-index: 25;
    /*overflow: hidden;*/
}
.webp section#p0{
	background: url('../imgp/p0bg.webp') no-repeat center;
}
.no-webp section#p0{
	background: url('../img/p0bg.jpg') no-repeat center;
}
.p0-container{
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.p0-content{
	position: relative;
	width: max-content;
	height: auto;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 10;
}
.p0-top{
	position: relative;
	width: max-content;
	height: auto;
}
.p0-top h3{
	position: relative;
	margin: 0;
	font-size: 20px;
	font-weight: 500;
	text-align: center;
	color: #fff;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
}
a.logo-container{
	position: relative;
	width: max-content;
	height: auto;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}
.p0-title{
	position: relative;
	margin: 80px 0 60px;
}
.p0-title h2{
	position: relative;
	margin: 0;
	font-size: 36px;
	font-weight: 700;
	text-align: center;
	color: #fff;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
}
.p0-title h1{
	position: relative;
	margin: 0px 0 0 0;
	font-size: 65px;
	font-weight: 700;
	text-align: center;
	color: #fff;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
}
.cb-download-container{
	position: relative;
	width: max-content;
	height: auto;
}
.cb-download-btns{
	position: relative;
	width: max-content;
	height: auto;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.cb-download-btns a:hover{
	filter: brightness(1.2);
	-webkit-filter: brightness(1.2);
	-ms-filter: brightness(1.2);
	-o-filter: brightness(1.2);
}
a.steam-btn{
	position: relative;
	display: block;
	width: 323px;
	height: 120px;
	padding-left: 115px;
	padding-top: 42px;
	font-size: 36px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 3px;
	text-decoration: none;
	transition: 0.3s linear;
}
.webp a.steam-btn{
	background: url('../imgp/steam-btn.webp') no-repeat center;
}
.no-webp a.steam-btn{
	background: url('../img/steam-btn.png') no-repeat center;
}
a.pc-btn{
	position: relative;
	display: block;
	width: 323px;
	height: 120px;
	padding-left: 175px;
	padding-top: 42px;
	font-size: 36px;
	font-weight: 700;
	color: #fff;
	letter-spacing: 3px;
	text-decoration: none;
	transition: 0.3s linear;
}
.webp a.pc-btn{
	background: url('../imgp/pc-btn.webp') no-repeat center;
}
.no-webp a.pc-btn{
	background: url('../img/pc-btn.png') no-repeat center;
}
.cb-download-container p{
	position: relative;
	font-size: 20px;
	font-weight: 700;
	color: #c62121;
	letter-spacing: 10px;
	text-align: center;
	margin-top: 10px;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
}
.p0-coverbg{
	position: absolute;
	width: 100%;
	height: 877px;
	z-index: 5;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}
.webp .p0-coverbg{
	background: url('../imgp/p0-coverbg.webp') no-repeat center bottom;
}
.no-webp .p0-coverbg{
	background: url('../img/p0-coverbg.png') no-repeat center bottom;
}
#p0v{
	position: absolute;
	min-width: 100%;
	min-height: 100%;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	z-index: 1;
}
.m-regis-btn{
	position: relative;
	display: none;
	width: 299px;
	height: 93px;
	margin: 0 auto;
}
.m-regis-btn a{
	position: relative;
	display: block;
	width: 100%;
	height: 93px;
	font-size: 30px;
	font-weight: 700;
	text-align: center;
	color: #fff;
	letter-spacing: 5px;
	text-decoration: none;
	padding-left: 10px;
	padding-top: 32px;
}
.webp .m-regis-btn a{
	background: url('../imgp/m-regis-btn.webp') no-repeat center bottom;
}
.no-webp .m-regis-btn a{
	background: url('../img/m-regis-btn.png') no-repeat center bottom;
}


/*-------------------------------p1-----------------------------------*/

section#p1{
	position: relative;
	width: 100%;
	height: 500px;
	z-index: 20;
    overflow: hidden;
}
.webp section#p1{
	background: url('../imgp/p1bg.webp') no-repeat center;
}
.no-webp section#p1{
	background: url('../img/p1bg.jpg') no-repeat center;
}
section#p1:after{
	content: '';
	position: absolute;
	display: block;
	width: 100%;
	height: 115px;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	z-index: 5;
}
.webp section#p1:after{
	background: url('../imgp/p1brush.webp') no-repeat center;
}
.no-webp section#p1:after{
	background: url('../img/p1brush.png') no-repeat center;
}
.p1-container{
	position: relative;
	width: 100%;
	height: 500px;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.p1-container h1{
	position: relative;
	margin: 0px 0 45px 0;
	font-size: 30px;
	font-weight: 700;
	text-align: center;
	color: #fff;
	text-shadow: 0 0 5px rgba(0, 0, 0, 0.9);
}
.p1-container p{
	position: relative;
	margin: 0px 0 0px 0;
	font-size: 20px;
	font-weight: 400;
	line-height: 36px;
	text-align: center;
	color: #fff;
	text-shadow: 0 0 5px rgba(0, 0, 0, 0.9);
}

/*-------------------------------p2-----------------------------------*/

section#p2{
	position: relative;
	width: 100%;
	height: 800px;
	z-index: 20;
    overflow: hidden;
}
.webp section#p2{
	background: url('../imgp/p2bg.webp') no-repeat center;
}
.no-webp section#p2{
	background: url('../img/p2bg.jpg') no-repeat center;
}
section#p2:before{
	content: '';
	position: absolute;
	width: 100%;
	height: 10px;
	display: block;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 20;
}
.webp section#p2:before{
	background: url('../imgp/sec-bar.webp') no-repeat center;
}
.no-webp section#p2:before{
	background: url('../img/sec-bar.png') no-repeat center;
}
.p2-container{
	position: relative;
	width: 1366px;
	height: 800px;
	margin: 0 auto;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    z-index: 10;
}
.p2-content{
	position: relative;
	width: max-content;
	height: auto;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.p2-content p{
	position: relative;
	margin: 0px 0 0px 0;
	font-size: 20px;
	font-weight: 400;
	line-height: 36px;
	text-align: left;
	color: #fff;
	/*text-shadow: 0 0 3px rgba(0, 0, 0, 0.7);*/
}
.p2-video{
	position: relative;
	width: 445px;
	height: 251px;
	margin: 10px 0 0 -42px;
	padding: 35px 0 0 42px;
}
.webp .p2-video{
	background: url('../imgp/videobg.webp') no-repeat center;
}
.no-webp .p2-video{
	background: url('../img/videobg.png') no-repeat center;
}
.p2-video-container{
	position: relative;
	width: 360px;
	height: 203px;
}
.p2-video-container a{
	position: absolute;
	display: block;
	width: 360px;
	height: 203px;
	z-index: 10;
	background-color: rgba(0, 0, 0, 0.4);
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	transition: 0.3s ease-in-out;
}
.p2-video-container a span{
	position: absolute;
	display: block;
	width: 83px;
	height: 95px;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	transition: 0.3s ease-in-out;
}
.p2-video-container a span{
	background: url('../img/video-play-btn.png') no-repeat center;
}
.p2-video-container a:hover span{
	filter: brightness(1.2);
	-webkit-filter: brightness(1.2);
	-ms-filter: brightness(1.2);
	-o-filter: brightness(1.2);
}
.p2-video-container iframe{
	position: relative;
	width: 100%;
	height: 203px;
}
#p2v{
	position: absolute;
	min-width: 100%;
	min-height: 100%;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	z-index: 1;
}


/*-------------------------------p3-----------------------------------*/

section#p3{
	position: relative;
	width: 100%;
	height: 900px;
	z-index: 20;
    overflow: hidden;
}
.webp section#p3{
	background: url('../imgp/p3bg.webp') no-repeat center;
}
.no-webp section#p3{
	background: url('../img/p3bg.jpg') no-repeat center;
}
section#p3:before{
	content: '';
	position: absolute;
	width: 100%;
	height: 10px;
	display: block;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 20;
}
.webp section#p3:before{
	background: url('../imgp/sec-bar.webp') no-repeat center;
}
.no-webp section#p3:before{
	background: url('../img/sec-bar.png') no-repeat center;
}
.p3-container{
	position: relative;
	width: 100%;
	height: 900px;
	margin: 0 auto;
	z-index: 100;
}
.p3-title{
	position: absolute;
	width: max-content;
	height: auto;
	z-index: 20;
	top: 35px;
	left: 50%;
	transform: translateX(-50%);
}
.p3-title h1{
	position: relative;
	margin: 80px 0 0 0px;
	padding: 0 0 25px 0;
	font-size: 26px;
	font-weight: 700;
	text-align: center;
	color: #c62121;
	text-shadow: 0 0 5px rgba(0, 0, 0, 0.9);
}
.p3-title h1:before{
	content: '';
	position: absolute;
	display: block;
	width: 64px;
	height: 165px;
	top: -80px;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
}
.webp .p3-title h1:before{
	background: url('../imgp/p3titlebg.webp') no-repeat center;
}
.no-webp .p3-title h1:before{
	background: url('../img/p3titlebg.png') no-repeat center;
}
.p3-title h1:after{
	content: '';
	position: absolute;
	display: block;
	width: 200px;
	height: 1px;
	background-color: #c62121;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 0;
}
.p3-title p{
	position: relative;
	margin: 25px 0 0 0px;
	padding: 0;
	font-size: 16px;
	font-weight: 400;
	text-align: center;
	color: #fff;
	text-shadow: 0 0 3px rgba(0, 0, 0, 0.7);
}
.chara-container{
	position: relative;
	width: 1500px;
	height: 900px;
	margin: 0 auto;
	padding-top: 230px;
	overflow: hidden;
}
.chara-content{
	position: relative;
	width: 100%;
	height: 600px;
	margin: 0 auto;
}
.slick-list{
	overflow: unset !important;
}
.chara{
	position: relative;
	width: 500px;
	height: 600px;
}
.chara-info{
	position: relative;
	width: 450px;
	min-height: 200px;
	margin: 330px auto 0;
	padding: 20px 25px;
	z-index: 10;
	transition: 0.4s linear;
	background-image: linear-gradient(to right,rgba(135,12,12,0.9),rgba(226,47,47,0.9));
}
.slick-slide .chara-info{
	opacity: 0;
	visibility: hidden;
}
.slick-current .chara-info{
	opacity: 1;
	visibility: visible;
}
.chara-info:before{
	content: '';
	position: absolute;
	display: block;
	width: 3px;
	height: 100px;
	background-color: #fd0000;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
.chara-info h3{
	position: relative;
	margin: 0px 0 0 0px;
	padding: 0;
	font-size: 20px;
	font-weight: 700;
	text-align: center;
	color: #fff;
}
.chara-info p{
	position: relative;
	margin: 25px 0 0 0px;
	padding: 0;
	font-size: 16px;
	font-weight: 400;
	text-align: center;
	color: #fff;
}
a.watch-video{
	position: relative;
	display: block;
	width: 250px;
	height: 50px;
	line-height: 50px;
	font-size: 16px;
	font-weight: 700;
	text-align: center;
	color: #fff;
	text-decoration: none;
	transition: 0.4s ease-in-out;
	margin: 10px auto 0;
	z-index: 10;
}
.slick-slide a.watch-video{
	opacity: 0;
	visibility: hidden;
}
.slick-current a.watch-video{
	opacity: 1;
	visibility: visible;
}
.webp a.watch-video{
	background: url('../imgp/all-btn.webp') no-repeat center;
}
.no-webp a.watch-video{
	background: url('../img/all-btn.png') no-repeat center;
}
.webp a.watch-video:hover{
	background: url('../imgp/all-btn-on.webp') no-repeat center;
}
.no-webp a.watch-video:hover{
	background: url('../img/all-btn-on.png') no-repeat center;
}
.slick-slide .chara-img{
	opacity: 0.4;
}
.slick-current .chara-img{
	opacity: 1 !important;
}
.slick-current .t4-img{
	left: 60%;
}
.chara-img{
	position: absolute;
	width: 500px;
	height: 600px;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 5;
	transition: 0.4s ease-in-out;
}
.webp .t5-img{
	background: url('../imgp/t5-chara.webp') no-repeat center;
}
.no-webp .t5-img{
	background: url('../img/t5-chara.png') no-repeat center;
}
.webp .t4-img{
	background: url('../imgp/t4-chara.webp') no-repeat center;
}
.no-webp .t4-img{
	background: url('../img/t4-chara.png') no-repeat center;
}
.webp .t3-img{
	background: url('../imgp/t3-chara.webp') no-repeat center;
}
.no-webp .t3-img{
	background: url('../img/t3-chara.png') no-repeat center;
}
button.prev{
	position: absolute;
	display: block;
	width: 48px;
	height: 66px;
	left: 10px;
	top: 50%;
	transform: translateY(-50%) rotateY(180deg);
	z-index: 30;
	outline: none;
	border: 0;
	cursor: pointer;
	transition: 0.3s ease-in-out;
}
.webp button.prev{
	background: url('../imgp/arrow.webp') no-repeat center;
}
.no-webp button.prev{
	background: url('../img/arrow.png') no-repeat center;
}
button.prev:hover{
	left: 0;
}
button.next{
	position: absolute;
	display: block;
	width: 48px;
	height: 66px;
	right: 10px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 30;
	outline: none;
	border: 0;
	cursor: pointer;
	transition: 0.3s ease-in-out;
}
.webp button.next{
	background: url('../imgp/arrow.webp') no-repeat center;
}
.no-webp button.next{
	background: url('../img/arrow.png') no-repeat center;
}
button.next:hover{
	right: 0;
}

/*-------------------------------p4-----------------------------------*/

section#p4{
	position: relative;
	width: 100%;
	height: 950px;
	z-index: 20;
    overflow: hidden;
}
.webp section#p4{
	background: url('../imgp/p4bg.webp') no-repeat center;
}
.no-webp section#p4{
	background: url('../img/p4bg.jpg') no-repeat center;
}
section#p4:before{
	content: '';
	position: absolute;
	width: 100%;
	height: 10px;
	display: block;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: 20;
}
.webp section#p4:before{
	background: url('../imgp/sec-bar.webp') no-repeat center;
}
.no-webp section#p4:before{
	background: url('../img/sec-bar.png') no-repeat center;
}
.p4-container{
	position: relative;
	width: 1366px;
	height: 100%;
	padding-top: 285px;
	margin: 0 auto; 
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}
.p4-title{
	position: relative;
	width: max-content;
	height: auto;
}
.p4-title h1{
	position: relative;
	margin: 0px 0 0 0px;
	padding: 0;
	font-size: 30px;
	font-weight: 700;
	text-align: center;
	color: #fff;
	text-shadow: 0 0 6px rgba(0, 0, 0, 0.7);
}
.p4-title p{
	position: relative;
	margin: 20px 0 0 0px;
	padding: 0;
	line-height: 36px;
	font-size: 20px;
	font-weight: 400;
	text-align: center;
	color: #fff;
	text-shadow: 0 0 6px rgba(0, 0, 0, 0.7);
}
.p4-content{
	position: relative;
	width: 100%;
	height: auto;
	margin: 95px auto 0;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
}
.p4-box{
	position: relative;
	width: 420px;
	height: auto;
}
.p4-box-img{
	position: relative;
	width: 420px;
	height: 210px;
	background-color: #000;
}
.p4-box-img img{
	position: relative;
	display: block;
	margin: 0 auto;
}
.p4-box-img:after{
	content: '';
	position: absolute;
	display: block;
	width: 458px;
	height: 255px;
	top: -31px;
	left: -20px;
	z-index: -1;
}
.webp .p4-box-img:after{
	background: url('../imgp/newsbg.webp') no-repeat center;
}
.no-webp .p4-box-img:after{
	background: url('../img/newsbg.png') no-repeat center;
}
.p4-box-info{
	position: relative;
	width: 100%;
	height: auto;
	margin: 25px auto 0;
}
.p4-box-info h2{
	position: relative;
	margin: 0px 0 0 0px;
	padding: 0;
	font-size: 20px;
	font-weight: 700;
	text-align: left;
	color: #fff;
}
.p4-box-info p{
	position: relative;
	margin: 15px 0 0 0px;
	padding: 0;
	line-height: 24px;
	font-size: 16px;
	font-weight: 300;
	text-align: left;
	color: #dadada;
}

/*-------------------------------p5-----------------------------------*/

section#p5{
	position: relative;
	width: 100%;
	height: auto;
	z-index: 20;
    overflow: hidden;
}
.p5-1{
	position: relative;
	width: 100%;
	height: 450px;
	background-color: #1d0a0a;
}
.p5-1-container{
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
}
.p5-1-container img{
	position: relative;
	display: block;
	margin:0 auto;
	z-index: 10;
}
.p5-2{
	position: relative;
	width: 100%;
	height: 350px;
}
.webp .p5-2{
	background: url('../imgp/p5-2bg.webp') no-repeat center;
}
.no-webp .p5-2{
	background: url('../img/p5-2bg.jpg') no-repeat center;
}
.p5-2-container{
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.p5-2-container .logo-container{
	margin: 0;
}
.p5-2-container h1{
	position: relative;
	width: 1000px;
	margin: 0px auto;
	border-top: 1px solid #fff;
	padding: 10px 0 0 0;
	line-height: 30px;
	font-size: 30px;
	font-weight: 500;
	text-align: center;
	letter-spacing: 10px;
	color: #fff;
	text-shadow: 0 0 6px rgba(0, 0, 0, 0.7);
}
.p5-3{
	position: relative;
	width: 100%;
	height: 300px;
	background-color: #050505;
}
.p5-3-container{
	position: relative;
	width: 100%;
	height: 100%;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
}
.p5-3-container .cb-download-container{
	z-index: 100;
}
.p5-3-container .noise{
	top: -100%;
	left: -50%;
}

/*-------------------------------footer-----------------------------------*/

footer{
	position: relative;
	width: 100%;
	height: auto;
	padding: 35px 0;
	background-color: #060606;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.footer-container{
	position: relative;
	width: 100%;
	height: auto;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
#booming-logo{
	position: relative;
	width: 140px;
	height: 44px;
	pointer-events: none;
	margin: 0 auto;
}
.webp #booming-logo{
	background: url('../imgp/booming-logo-w.webp') no-repeat center;
}
.no-webp #booming-logo{
	background: url('../img/booming-logo-w.png') no-repeat center;
}
p.copyright{
	position: relative;
	font-size: 0.75rem;
	font-weight: 400;
	text-align: center;
	color: #d8d8d8;
	margin: 15px 0 25px;
}
.term{
	position: relative;
	width: max-content;
	height: auto;
	display: flex;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: -moz-box;
	flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.term p{
	position: relative;
	font-size: 0.75rem;
	font-weight: 400;
	line-height: 1.1rem;
	text-align: center;
	color: #d8d8d8;
	margin: 0 0 25px 0;
}
img#eva15{
	position: relative;
	height: 80px;
	height: 80px;
	margin: 0 auto;
}