@charset "utf-8";

/*
******************************************************************
* MJP top.css
******************************************************************
*/
body {
	position: relative;
	background: #000;
}


/*
******************************************************************
* #contents
******************************************************************/
#contents {
	overflow: hidden;
	width: 1366px;
	margin: 0 auto;
	background: #000;
}


/*
******************************************************************
* .menu-area
******************************************************************/
.menu-btn {
	display: block;
	position: fixed;
	top: 45px;
	right: 45px;
	z-index: 100;
	width: 36px;
	height: 27px;
	background: transparent;
	cursor: pointer;
}
.menu-btn i {
	display: block;
	position: absolute;
	left: 0;
	width: 100%;
	height: 3px;
	border-radius: 2px;
	background-color: #fff;
	transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	-ms-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-webkit-transition: all 0.3s ease 0s;
}
.menu-btn i:nth-child(1) {
	top: 0;
}
.menu-btn i:nth-child(2) {
	top: 13px;
}
.menu-btn i:nth-child(3) {
	top: 24px;
}
.js-nav-op .menu-btn i:nth-child(1) {
	top: 4px;
	transform: translate(0px, 4px) rotate(135deg);
	-o-transform: translate(0px, 4px) rotate(135deg);
	-ms-transform: translate(0px, 4px) rotate(135deg);
	-moz-transform: translate(0px, 4px) rotate(135deg);
	-webkit-transform: translate(0px, 4px) rotate(135deg);
}
.js-nav-op .menu-btn i:nth-child(2) {
	transform: scale(0);
	-o-transform: scale(0);
	-ms-transform: scale(0);
	-moz-transform: scale(0);
	-webkit-transform: scale(0);
}
.js-nav-op .menu-btn i:nth-child(3) {
	top: 12px;
	transform: translate(0px, -4px) rotate(-135deg);
	-o-transform: translate(0px, -4px) rotate(-135deg);
	-ms-transform: translate(0px, -4px) rotate(-135deg);
	-moz-transform: translate(0px, -4px) rotate(-135deg);
	-webkit-transform: translate(0px, -4px) rotate(-135deg);
}
.menu-area {
	display: none;
	overflow: auto;
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    padding: 121px 43px;
    background-color: rgba(0,0,0,0.7);
    text-align: right;
    box-sizing: border-box;
}
.menu-area li + li {
	margin-top: 45px;
}
.menu-area li[data-sf="slide-left"] {
	-webkit-transform: translate(-80px, 0);
	-ms-transform: translate(-80px, 0);
	transform: translate(-80px, 0);
}
.js-nav-action .menu-area li {
	opacity: 1;
	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	transform: translate(0, 0);
}
.menu-area li a {
	display: inline-block;
}


/*
******************************************************************
* .header-area
******************************************************************/
.header-area {
	position: relative;
	z-index: 10;
	width: 998px;
	margin: 0 auto;
}
.logo-ttl {
	position: absolute;
	top: 24px;
	left: 50%;
	-webkit-transform: translate(-50%,0);
	-ms-transform: translate(-50%,0);
	transform: translate(-50%,0);
}
.logo-list li {
	position: absolute;
}
.logo-list li:nth-child(1) {
	top: 7px;
	left: 0;
}

.logo-list2 li {
	position: absolute;
}
.logo-list2 li:nth-child(1) {
	top: 24px;
	right: 0;
}

.eva-project img{
max-height: 40px;
width: auto;
margin: 5px;
}


/*
******************************************************************
* 共通
******************************************************************/
/*** bg-blur ***/
.bg-blur:before,
.bg-blur:after {
	display: block;
	position: absolute;
	top: 0;
	z-index: 2;
	width: 250px;
	height: 100%;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+19,000000+100&1+19,0+100;Neutral+Density */
	background: -moz-linear-gradient(left,  rgba(0,0,0,1) 19%, rgba(0,0,0,0) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left,  rgba(0,0,0,1) 19%,rgba(0,0,0,0) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right,  rgba(0,0,0,1) 19%,rgba(0,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000000', endColorstr='#00000000',GradientType=1 ); /* IE6-9 */
	content: '';
}
.bg-blur:before {
	left: 0;
	-webkit-transform: translateX(-20%);
	-ms-transform: translateX(-20%);
	transform: translateX(-20%);
}
.bg-blur:after {
	right: 0;
	-webkit-transform: scale(-1, 1) translateX(-20%);
	-ms-transform: scale(-1, 1) translateX(-20%);
	transform: scale(-1, 1) translateX(-20%);
}

/*** ttl-border ***/
.ttl-border {
	display: block;
	position: relative;
	width: 467px;
	height: 1px;
	margin: 0 auto;
	background: url(../common/img/border_rainbow.png) no-repeat top center;
}


/*
******************************************************************
* .main-area
******************************************************************/
.main-area {
	position: relative;
	z-index: 1;
	height: 100vh;
	/* min-height: 942px; */
	margin-bottom: 84px;
}
body.device-sp .main-area {
	height: 942px;
}
.main-bg {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	width: 100%;
	height: 100%;
	background: url(../img/main/bg_main.png) no-repeat center center;
	background-size: cover;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
.main-bg-light {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	width: 100%;
	height: 100%;
	background: url(../img/main/bg_light.png) no-repeat center center;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
.bg-blur.main-bg:before {
	-webkit-transform: translateX(-32%);
	-ms-transform: translateX(-32%);
	transform: translateX(-32%);
}
.bg-blur.main-bg:after {
	-webkit-transform: scale(-1, 1) translateX(-32%);
	-ms-transform: scale(-1, 1) translateX(-32%);
	transform: scale(-1, 1) translateX(-32%);
}
.main-chara-box {
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
}
.main-chara {
	position: absolute;
}
.main-chara01 {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 4;
	-webkit-transform: translate(-50%,-46%);
	-ms-transform: translate(-50%,-46%);
	transform: translate(-50%,-46%);
}
.main-chara01:before,
.main-chara01:after {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(../img/main/img_main_chara01.png) no-repeat top center;
	background-size: 100% auto;
	content: '';
}
.main-chara02 {
	top: 8%;
	left: 50%;
	z-index: 3;
	-webkit-transform: translate(34%,0);
	-ms-transform: translate(34%,0);
	transform: translate(34%,0);
}
.main-chara03 {
	top: 21%;
	left: 50%;
	z-index: 2;
	-webkit-transform: translate(-116%,0);
	-ms-transform: translate(-116%,0);
	transform: translate(-116%,0);
}
.main-chara04 {
	top: 7.5%;
	left: 50%;
	z-index: 1;
	-webkit-transform: translate(-128%,0);
	-ms-transform: translate(-128%,0);
	transform: translate(-128%,0);
}
.main-machine {
	position: absolute;
	bottom: 13px;
	right: 50%;
	z-index: 3;
	margin-right: -527px;
}
.main-twitter-box {
	overflow: hidden;
	position: absolute;
	left: 50%;
	bottom: 44px;
	z-index: 3;
	width: 242px;
	height: 330px;
	margin-left: -490px;
	padding: 5px 5px 2px;
	background-color: rgba(0,0,0,0.5);
	text-align: center;
	box-sizing: border-box;
}
.main-twitter-ttl {
	position: relative;
	z-index: 4;
}
.main-twitter-ttl img {
	display: block;
}
.device-pc .main-twitter-cont {
	overflow-x: hidden;
	overflow-y: hidden;
	position: relative;
	z-index: 3;
	top: -3px;
	height: 305px;
}
.device-pc .main-twitter-cont-in {
	overflow-x: hidden;
	overflow-y: scroll;
	height: 305px;
	width: calc(100% + 17px);
	margin: 0;
	padding: 0  17px 0 0;

}
.device-sp .main-twitter-cont {
	overflow: hidden;
	position: relative;
	z-index: 3;
	top: -3px;
	height: 305px;
}
.device-sp .main-twitter-cont-in {
	overflow-x: hidden;
	overflow-y: scroll;
	height: 305px;
}
/* .main-twitter-cont::-webkit-scrollbar{
	width: 0;
}
.main-twitter-cont::-webkit-scrollbar-track{
	background: transparent;
	border: none;
	border-radius: none;
	box-shadow: none; 
}
.main-twitter-cont::-webkit-scrollbar-thumb{
	background: transparent;
	border-radius: 0;
	box-shadow: none;
} */
.main-twitter-box twitter-widget,
.main-twitter-box iframe {
	margin: 0 !important;
	background: #fff;
}
.main-scroll {
	position: absolute;
	bottom: 12px;
	left: 50%;
	z-index: 4;
}
.main-scroll-in {
	display: block;
	position: relative;
	color: #fff;
	font-size: 12px;
	padding: 0 0 30px;
}
.main-scroll-in:before,
.main-scroll-in:after {
	position: absolute;
	bottom: 15px;
	left: 50%;
	width: 12px;
	height: 12px;
	margin-left: -7px;
	border-right: 1px solid #fff;
	border-bottom: 1px solid #fff;
	content: '';
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.main-scroll-in:before {
	bottom: 7px;
	-webkit-animation: flashing 1.2s linear infinite 0.2s;
	animation: flashing 1.2s linear infinite 0.2s;
}
.main-scroll-in:after {
	-webkit-animation: flashing 1.2s linear infinite;
	animation: flashing 1.2s linear infinite;
}
@-webkit-keyframes flashing {
	0% {
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
@keyframes flashing {
	0% {
		opacity: 0;
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}


/*
******************************************************************
* .movie-area
******************************************************************/
.movie-area {
	position: relative;
	margin-bottom: 131px;
}
.movie-h2 {
	position: relative;
	z-index: 2;
	margin-bottom: 30px;
	text-align: center;
}
.movie-box {
	position: relative;
	z-index: 2;
    width: 755px;
    height: 512px;
	margin: 0 auto;
	cursor: pointer;
}
.movie-item {
    width: 755px;
    height: 512px;
}
.movie-item video {
	width: 100%;
	height: 442px;
	outline: none;
}
.movie-btn {
	opacity: 0.6;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	cursor: pointer;
	-webkit-transition: all 0.25s ease-in-out;
	transition: all 0.25s ease-in-out;
}
.movie-btn.js-video-playing {
	opacity: 0;
}
.movie-btn.js-video-stop {
	opacity: 0.6;
}
.movie-item:hover + .movie-btn:not(.js-video-playing) {
	opacity: 1;
}
.movie-btn:not(.js-video-playing):hover {
	opacity: 1;
}
.movie-bg-box {
	position: absolute;
	top: 60px;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
}
.movie-bg-item {
	position: absolute;
	top: 50%;
}
.movie-bg-item {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.movie-bg-item.movie-bg01 {
	left: 0;
}
.movie-bg-item.movie-bg02 {
	right: 0;
}


/*
******************************************************************
* .info-area
******************************************************************/
.info-area {
	position: relative;
}
.info-h2 {
	margin-bottom: 38px;
	text-align: center;
}
/*** info-content01 ***/
.info-content01 {
	position: relative;
	padding: 0 0 48px;
}
.info-content01-bg-box {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: absolute;
	z-index: 1;
	top: 64px;
	left: 50%;
	width: 115%;
	height: -webkit-calc(100% - 64px);
	height: calc(100% - 64px);
	background: url(../img/info/bg_rainbow.png) no-repeat top center;
	background-size: cover;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}
.info-block01 {
	position: relative;
	z-index: 2;
	height: 635px;
}
.info-block01-img {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	-webkit-transform: translate(-80%, -50%);
	-ms-transform: translate(-80%, -50%);
	transform: translate(-80%, -50%);
}
.info-block01-card {
	position: absolute;
	bottom: 20px;
	right: 50%;
	z-index: 2;
	-webkit-transform: translateX(106%);
	-ms-transform: translateX(106%);
	transform: translateX(106%);
}
.info-catch01 {
	position: relative;
	z-index: 2;
	margin: 13px 0 18px;
	text-align: center;
}
.info-block02 {
	position: relative;
	z-index: 2;
	height: 640px;
}
.info-block02-img {
	position: absolute;
	top: 50%;
	right: 50%;
	z-index: 1;
	-webkit-transform: translate(80%, -50%);
	-ms-transform: translate(80%, -50%);
	transform: translate(80%, -50%);
}
.info-block02-card {
	position: absolute;
	bottom: 25px;
	left: 50%;
	z-index: 2;
	-webkit-transform: translateX(-89%);
	-ms-transform: translateX(-89%);
	transform: translateX(-89%);
}

/*** info-content02 ***/
.info-content02 {
	position: relative;
	padding: 72px 0 0;
}
.info-content02-bg-box {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	text-align: center;
}
.info-content02-bg-box img {
	position: relative;
	-webkit-transform: translateX(-12%);
	-ms-transform: translateX(-12%);
	transform: translateX(-12%);
}
.info-block03 {
	position: relative;
	z-index: 2;
}
.info-block03-img {
	position: relative;
	left: 50px;
}
.info-block03-card {
	position: absolute;
	top: 75px;
	right: 50%;
	-webkit-transform: translateX(94%);
	-ms-transform: translateX(94%);
	transform: translateX(94%);
}

/*** info-content03 ***/
.info-content03 {
	position: relative;
	margin-top: -190px;
}
.info-content03-bg-box {
	position: absolute;
	top: 0;
	left: 50%;
	z-index: 1;
	width: 100%;
	height: 100%;
	text-align: center;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}
.info-block04 {
	position: relative;
	z-index: 2;
	text-align: right;
}
.info-block04-img {
	position: relative;
	z-index: 1;
	top: 80px;
	right: 220px;
}
.info-block04-card {
	position: absolute;
	top: 530px;
	right: 184px;
	z-index: 2;
}
.info-block05 {
	position: relative;
	top: -198px;
	z-index: 3;
	text-align: center;
}


/*
******************************************************************
* .design-area
******************************************************************/
.design-area {
	position: relative;
	margin: -68px 0 70px;
}
.design-h2 {
	position: relative;
	z-index: 2;
	margin-bottom: 26px;
	text-align: center;
}
.design-catch {
	position: relative;
	z-index: 2;
	text-align: center;
}
.design-catch-lead {
	position: relative;
	z-index: 2;
	margin-top: -22px;
	text-align: center;
}
.design-machine {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 892px;
    height: 1120px;
    margin: -255px auto 0;
}
.design-machine > img {
	position: relative;
	z-index: 1;
}
.design-machine-point {
	position: absolute;
	z-index: 2;
}
.design-machine-point {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.design-machine-point .point-ttl {
	position: absolute;
}
.design-machine-point .circle01 {
	position: absolute;
	-webkit-animation: circle 3.5s linear infinite;
	animation: circle 3.5s linear infinite;
}
.design-machine-point .circle02 {
	position: absolute;
}
.design-machine-point.point01 .point-ttl {
	top: 430px;
	left: 699px;
}
.design-machine-point.point01 .circle01 {
	top: 202px;
	left: 202px;
}
.design-machine-point.point01 .circle02 {
	top: 192px;
	left: 191px;
}
.design-machine-point.point02 .point-ttl {
	top: 582px;
	left: 239px;
}
.design-machine-point.point02 .circle01 {
	top: 500px;
	left: 53px;
}
.design-machine-point.point02 .circle02 {
	top: 490px;
	left: 44px;
}
.design-machine-point.point03 .point-ttl {
	top: 731px;
	left: 414px;
}
.design-machine-point.point03 .circle01 {
	top: 780px;
	left: 290px;
}
.design-machine-point.point03 .circle02 {
	top: 770px;
	left: 280px;
}
@-webkit-keyframes circle {
	0% {
		-webkit-transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
	}
}
@keyframes circle {
	0%   { 
		transform: rotate(0deg);
	}
	100% { 
		transform: rotate(360deg);
	}
}

.design-content01 {
	text-align: center;
	position: relative;
	z-index: 2;
	margin: -230px 0 60px;
}
.design-content01-list li + li {
	margin-top: -1px;
}
.design-content02 {
	position: relative;
	z-index: 2;
	text-align: center;
}
.design-content02-list {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
}
.design-content02-list li:nth-child(1) {
}
.design-content02-list li:nth-child(2) {
	margin-left: 105px;
}
.design-content02-list li:nth-child(3) {
	margin-left: 100px;
}



/*
******************************************************************
* .footer-area
******************************************************************/
.footer-area {
	position: relative;
	z-index: 10;
	width: 1000px;
	margin: 0 auto;
	padding: 45px 0 65px;
	text-align: center;
}
.box-copy {
	display: -webkit-inline-box;
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	left: -65px;
}
.footer-area .box-copy li {
	display: block;
	color: #fff;
	font-size: 20px;
	text-shadow: 0 0 3px #000, 0 0 5px #000;
}
.footer-area .box-copy li:nth-child(2) {
	margin: 0 15px 0 20px;
}


/*
******************************************************************
* sns_btn
******************************************************************/
.sns_btn {
	overflow: hidden;
	position: absolute;
	top: 41px;
	right: 0;
}
.sns_btn > ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.action .sns_btn li {
}
.sns_btn li {
	display: block;
	margin-left: 10px;
}
.sns_btn li:first-child {
	margin: 0;
}


/*
******************************************************************
* ファーストアクション
******************************************************************/
/*SETTING*/
.main-bg-light {
	opacity: 0;
	-webkit-transition: all 1.5s ease-in-out;
	transition: all 1.5s ease-in-out;
}
.main-chara01 {
	opacity: 0;
	-webkit-transition: all 0.4s ease-in-out 1.2s;
	transition: all 0.4s ease-in-out 1.2s;
}
.main-chara01:before {
	opacity: 1;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	-webkit-transition: all 0.35s ease-in-out 1.3s;
	transition: all 0.35s ease-in-out 1.3s;
}
.main-chara01:after {
	opacity: 1;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	-webkit-transition: all 0.3s ease-in-out 1.25s;
	transition: all 0.3s ease-in-out 1.25s;
}
.main-chara04 {
	opacity: 0;
	-webkit-transition: all 0.6s ease-in-out 1.8s;
	transition: all 0.6s ease-in-out 1.8s;
}
.main-chara02 {
	opacity: 0;
	-webkit-transition: all 0.6s ease-in-out 2s;
	transition: all 0.6s ease-in-out 2s;
}
.main-chara03 {
	opacity: 0;
	-webkit-transition: all 0.65s ease-in-out 2.25s;
	transition: all 0.65s ease-in-out 2.25s;
}
.main-bg {
	opacity: 0;
	-webkit-transition: all 0.6s ease-in-out 2.8s;
	transition: all 0.6s ease-in-out 2.8s;
	/* -webkit-transition: all 0.6s ease-in-out 0.4s;
	transition: all 0.6s ease-in-out 0.4s; */
}
.header-area {
	opacity: 0;
	-webkit-transition: all 0.9s ease-in-out 2.8s;
	transition: all 0.9s ease-in-out 2.8s;
}
.main-machine {
	opacity: 0;
	-webkit-transition: all 0.9s ease-in-out 2.8s;
	transition: all 0.9s ease-in-out 2.8s;
}
.main-twitter-box {
	opacity: 0;
	-webkit-transition: all 0.9s ease-in-out 2.8s;
	transition: all 0.9s ease-in-out 2.8s;
}
.main-scroll {
	opacity: 0;
	-webkit-transition: all 0.8s ease-in-out 3.5s;
	transition: all 0.8s ease-in-out 3.5s;
}
.menu-btn {
	opacity: 0;
	-webkit-transition: all 0.9s ease-in-out 2.8s;
	transition: all 0.9s ease-in-out 2.8s;
}

/*ACTION*/
#wrp-all.action .main-bg {
	opacity: 1;
}
#wrp-all.action .main-bg-light {
	opacity: 1;
}
#wrp-all.action .main-chara01 {
	opacity: 1;
}
#wrp-all.action .main-chara01:before {
	opacity: 0;
	-webkit-transform: scale(1.5);
	-ms-transform: scale(1.5);
	transform: scale(1.5);
}
#wrp-all.action .main-chara01:after {
	opacity: 0;
	-webkit-transform: scale(2);
	-ms-transform: scale(2);
	transform: scale(2);
}

#wrp-all.action .main-chara04 {
	opacity: 1;
}
#wrp-all.action .main-chara02 {
	opacity: 1;
}
#wrp-all.action .main-chara03 {
	opacity: 1;
}
#wrp-all.action .header-area,
#wrp-all.action .main-machine,
#wrp-all.action .main-twitter-box,
#wrp-all.action .main-scroll,
#wrp-all.action .menu-btn {
	opacity: 1;
}


/*
******************************************************************
* スクロールアクション（例外）
******************************************************************/
/*** SETTING ***/


/*** ACTION ***/
/* movie-area */
.movie-area.animation.animated .contents-ttl *[data-sf="open-x"] {
	opacity: 1;
	-webkit-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
}
.movie-area.animation.animated .contents-ttl *[data-sf="fade-in"] {
	opacity: 1;
}
.movie-area.animation.animated .movie-bg-item [data-sf="fade-in"] {
	opacity: 1;
}
.movie-area.animation.animated .movie-box[data-sf="fade-in"] {
	opacity: 1;
}

/* info-area */
.info-area.animation.animated .contents-ttl *[data-sf="open-x"] {
	opacity: 1;
	-webkit-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
}
.info-area.animation.animated .contents-ttl *[data-sf="fade-in"] {
	opacity: 1;
}
.info-area.animation.animated .info-content01 .info-content01-bg-box[data-sf="fade-in"] {
	opacity: 1;
}
.info-area.animation.animated .info-block01-img *[data-sf="slide-left"],
.info-area.animation.animated .info-block01-card *[data-sf="slide-right"] {
	opacity: 1;
	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	transform: translate(0, 0);
}
.info-block02.animation.animated .info-block02-img *[data-sf="slide-right"],
.info-block02.animation.animated .info-block02-card *[data-sf="slide-left"] {
	opacity: 1;
	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	transform: translate(0, 0);
}
.info-content02.animation.animated .info-content02-bg-box *[data-sf="fade-in"] {
	opacity: 1;
}
.info-content02.animation.animated .info-block03 .info-block03-img *[data-sf="slide-left"],
.info-content02.animation.animated .info-block03 .info-block03-card *[data-sf="slide-right"] {
	opacity: 1;
	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	transform: translate(0, 0);
}
.info-content03 .info-block04.animation.animated .info-block04-img *[data-sf="slide-top"],
.info-content03 .info-block04.animation.animated .info-block04-card *[data-sf="slide-left"] {
	opacity: 1;
	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	transform: translate(0, 0);
}
.info-content03 .info-block04.animation.animated + .info-block05 .info-block05-img *[data-sf="fade-in"] {
	opacity: 1;
}

/* design-area */
.design-area.animation.animated .contents-ttl *[data-sf="open-x"] {
	opacity: 1;
	-webkit-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
}
.design-area.animation.animated .contents-ttl *[data-sf="fade-in"] {
	opacity: 1;
}
.design-area.animation.animated .design-catch *[data-sf="fade-in"],
.design-area.animation.animated .design-catch-lead *[data-sf="fade-in"],
.design-area.animation.animated .design-machine[data-sf="fade-in"] {
	opacity: 1;
}
.design-content01-list.animation.animated *[data-sf="slide-right"],
.design-content01-list.animation.animated *[data-sf="slide-left"] {
	opacity: 1;
	-webkit-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	transform: translate(0, 0);
}
.design-content02.animation.animated .design-content02-list *[data-sf="fade-in"] {
	opacity: 1;
}

/* gameflow-area */
.gameflow-area {
	position: relative;
	z-index: 1;
}
.gameflow-area.animation.animated .contents-ttl *[data-sf="open-x"] {
	opacity: 1;
	-webkit-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
}
.gameflow-area.animation.animated .contents-ttl *[data-sf="fade-in"],
.gameflow-area.animation.animated .gameflow-catch *[data-sf="fade-in"],
.gameflow-area.animation.animated .gameflow-content01[data-sf="fade-in"] {
    opacity: 1;
}
.gameflow-h2 {
    position: relative;
    z-index: 2;
    margin-bottom: 72px;
    text-align: center;
}
.gameflow-catch {
	position: relative;
	z-index: 2;
	margin-bottom: 35px;
	text-align: center;
}
.gameflow-content01 {
	position: relative;
	text-align: center;
	width: 1366px;
	height: 1005px;
	margin-top: -120px;
	padding-top: 120px;
	background: url(../img/gameflow/bg_rainbow.png) no-repeat top center;
	background-size: 100% auto;
}

/* spec-area */
.spec-area {
	position: relative;
	margin-top: -50px;
}
.spec-area.animation.animated .contents-ttl *[data-sf="open-x"] {
	opacity: 1;
	-webkit-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
}
.spec-area.animation.animated .contents-ttl *[data-sf="fade-in"],
.spec-area.animation.animated .spec-content01[data-sf="fade-in"] {
    opacity: 1;
}
.spec-h2 {
    position: relative;
    z-index: 2;
    margin-bottom: 62px;
    text-align: center;
}
.spec-content01 {
	position: relative;
	z-index: 1;
	width: 1366px;
	height: 885px;
	margin-top: -24px;
	padding-top: 25px;
	background: url(../img/spec/bg_eva.png) no-repeat top center;
	background-size: 100% auto;
	text-align: center;
}

/* character-area */
.character-area {
    position: relative;
    padding: 147px 0 170px;
	background: url(../img/characters/bg_tile.png) no-repeat top -20px center;
	background-size: 1366px auto;
	text-align: center;
}
.character-area.animation.animated .contents-ttl *[data-sf="open-x"] {
	opacity: 1;
	-webkit-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
}
.character-area.animation.animated[data-sf="fade-in"], 
.character-area.animation.animated .contents-ttl *[data-sf="fade-in"],
.character-area.animation.animated .character-catch *[data-sf="fade-in"],
.character-area.animation.animated .character-catch-lead *[data-sf="fade-in"],
.character-area.animation.animated .character-content01[data-sf="fade-in"] {
	opacity: 1;
}
.character-h2 {
    position: relative;
    z-index: 2;
    margin-bottom: 26px;
    text-align: center;
}
.character-catch-lead {
	margin-bottom: 20px;
}
.character-slider {
	width: 1000px;
	margin: 0 auto;
}
.character-slider-item {
	position: relative;
	outline: none;
}
.character-slider-item img {
    display: block;
    margin: 0 auto;
}
.character-content01 .slick-dots {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 42px;
}
.character-content01 .slick-dots li:first-child {
	margin: 0;
}
.character-content01 .slick-dots li {
	display: block;
	overflow: hidden;
	width: 205px;
	height: 58px;
	margin-left: 10px;
	background-position: top center;
	background-repeat: no-repeat;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	cursor: pointer;
	-webkit-transition: all 0.25s;
	-o-transition: all 0.25s;
	transition: all 0.25s;
}
.character-content01 .slick-dots li:nth-child(1) {
    background-image: url(../img/characters/btn_tab01.png);
}
.character-content01 .slick-dots li:nth-child(2) {
    background-image: url(../img/characters/btn_tab02.png);
}
.character-content01 .slick-dots li:nth-child(3) {
    background-image: url(../img/characters/btn_tab03.png);
}
.character-content01 .slick-dots li:nth-child(4) {
    background-image: url(../img/characters/btn_tab04.png);
}
.character-content01 .slick-dots li.slick-active {
	background-color: #000;
}
.character-content01 .slick-dots li button {
	overflow: hidden;
	width: 205px;
	height: 58px;
	border: none;
	background: none;
	text-indent: 50em;
	cursor: pointer;
	outline: none;
}

/* story-area */
.story-area {
    position: relative;
    padding: 40px 0 240px;
	background: url(../img/storys/bg_tile.png) no-repeat top -150px center;
	background-size: 1366px auto;
	text-align: center;
}
.story-area.animation.animated .contents-ttl *[data-sf="open-x"] {
	opacity: 1;
	-webkit-transform: scaleX(1);
	-ms-transform: scaleX(1);
	transform: scaleX(1);
}
.story-area.animation.animated[data-sf="fade-in"], 
.story-area.animation.animated .contents-ttl *[data-sf="fade-in"],
.story-area.animation.animated .story-catch *[data-sf="fade-in"],
.story-area.animation.animated .story-catch-lead *[data-sf="fade-in"],
.story-area.animation.animated .story-content01[data-sf="fade-in"],
.story-content01.animation.animated + .story-bg-box *[data-sf="fade-in"],
.story-content01.animation.animated + .story-bg-box + .banner-box *[data-sf="fade-in"]  {
	opacity: 1;
}
.story-h2 {
    position: relative;
    z-index: 2;
    margin-bottom: 26px;
    text-align: center;
}
.story-catch-lead {
	margin: -15px 0 63px;
}
.story-content01 {
	position: relative;
	z-index: 2;
	margin-bottom: 150px;
}
.story-slider {
	width: 1000px;
	margin: 0 auto;
}
.story-slider-item {
	position: relative;
	outline: none;
}
.story-slider-item img {
    display: block;
    margin: 0 auto;
}
.story-content01 .slick-dots {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 46px;
}
.story-content01 .slick-dots li:first-child {
	margin: 0;
}
.story-content01 .slick-dots li {
	display: block;
	overflow: hidden;
	width: 205px;
	height: 58px;
	margin-left: 10px;
	background-position: top center;
	background-repeat: no-repeat;
	-webkit-background-size: 100% auto;
	background-size: 100% auto;
	cursor: pointer;
	-webkit-transition: all 0.25s;
	-o-transition: all 0.25s;
	transition: all 0.25s;
}
.story-content01 .slick-dots li:nth-child(1) {
    background-image: url(../img/storys/btn_tab01.png);
}
.story-content01 .slick-dots li:nth-child(2) {
    background-image: url(../img/storys/btn_tab02.png);
}
.story-content01 .slick-dots li:nth-child(3) {
    background-image: url(../img/storys/btn_tab03.png);
}
.story-content01 .slick-dots li:nth-child(4) {
    background-image: url(../img/storys/btn_tab04.png);
}
.story-content01 .slick-dots li.slick-active {
	background-color: #000;
}
.story-content01 .slick-dots li button {
	overflow: hidden;
	width: 205px;
	height: 58px;
	border: none;
	background: none;
	text-indent: 50em;
	cursor: pointer;
	outline: none;
}
.story-bg-box {
	position: absolute;
	z-index: 1;
	bottom: 0;
	left: 50%;
	width: 100%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}
.banner-box {
	position: relative;
	z-index: 2;
}