@charset "UTF-8";
/*
**************************************************************************
*	fields eva15 fun style.css
**************************************************************************/

/* --------------------------------------------------
		foundation
-------------------------------------------------- */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

* {
	box-sizing: border-box;
}
html {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 62.5%;
	word-wrap: break-word;
	-webkit-text-size-adjust: none;
	-webkit-font-smoothing: antialiased;
	overflow-y: scroll;
	height: 100%;
}
body {
	position: relative;
	overflow-x: hidden;
	font-size: 1.6rem;
	line-height: 1.8;
	color: #333333;
}
a {
	outline: none;
	color: inherit;
	text-decoration: none;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}
img {
	vertical-align: bottom;
	max-width: 100%;
}
[class*=js-fadeUp] {
	position: relative;
	z-index: 1;
	opacity: 0;
}
@media screen and (max-width: 767px) {
	html.is-nav {
		overflow-y: auto;
	}
	img {
		max-width: none;
		width: 100%;
	}
}


/* --------------------------------------------------
		layout
-------------------------------------------------- */
.l-wrap {
	position: relative;
	overflow: hidden;
}
.l-header {
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	width: 100%;
	height: 110px;
	background-color: #000000;
}
.l-header .u-cts__inner {
	max-width: none;
}
.l-header__content {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 110px;
}
.l-header__logo {
	width: 192px;
}
.l-header__nav-toggle {
	display: none;
}
.l-nav__list {
	display: flex;
}
.l-nav__list li {
	padding: 0 12px;
}
.l-nav__list li > * {
	position: relative;
	font-size: 1.6rem;
	color: #ffffff;
	display: block;
}
.l-nav__list li a:before {
	content: "";
	position: absolute;
	top: -45px;
	left: 0;
	width: 100%;
	height: 4px;
	background-color: #ffffff;
	pointer-events: none;
	transition: top .3s ease;
}
.l-nav__list li a:hover:before,
.l-nav__list li a.is-active:before {
	top: -41px;
}
.l-nav__list li > * span {
	position: relative;
	display: inline-block;
}
.l-nav__list li .icon--outside span {
	background-image: url(../img/icon_outside.png);
	background-repeat: no-repeat;
	background-position: center right;
	background-size: 13px auto;
	padding-right: 18px;
}
.l-nav__list li .is-deactive {
	color: #333333;
}
.l-main {
	position: relative;
	padding-top: 110px;
	overflow: hidden;
}
.l-pagetop {
	position: fixed;
	z-index: 90;
	bottom: 45px;
	right: 30px;
	display: none;
}
.l-pagetop__button {
	display: block;
	width: 96px;
	transition: opacity .3s ease;
}
.l-pagetop__button:hover {
	opacity: 0.8;
}
.l-footer {
	padding: 50px 0;
	background-color: #505050;
	background-image: url(../img/line_01.png);
	background-position: center bottom;
	background-size: auto 15px;
	background-repeat: repeat-x;
	color: #ffffff;
}
.l-footer__content {
	display: flex;
	align-items: center;
	justify-content: center;
}
.l-footer__copyright {
	font-size: 1.8rem;
	margin-right: 20px;
}
.l-footer__logo {
	display: flex;
	justify-content: center;
}
.l-footer__logo--bisty {
	position: relative;
	width: 98px;
	margin: 10px 10px 0;
}
.l-footer__logo--fields {
	width: 129px;
	margin: 0 10px 10px;
}
.l-footer__note {
	text-align: center;
	font-size: 1.8rem;
	margin-top: 10px;
}
.l-title {
	position: relative;
	z-index: 5;
	padding: 10px 0;
	background-color: #505050;
	color: #ffffff;
}
.l-title:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	height: 15px;
	width: calc((100vw - 1040px) * 0.5);
	min-width: 10px;
	background-image: url(../img/line_01.png);
	background-position: right center;
	background-size: auto 15px;
	background-repeat: repeat-x;
	transform: translateY(-50%);
}
@media screen and (max-width: 900px) {
	.is-nav .l-wrap {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
	}
	.l-header__nav-toggle {
		position: absolute;
		z-index: 10;
		display: block;
		top: 36px;
		right: 15px;
		width: 35px;
		height: 35px;
		cursor: pointer;
	}
	.l-header__nav-toggle:before {
		content: "";
		position: absolute;
		top: 5px;
		left: 0;
		width: 100%;
		height: 2px;
		background-color: #ffffff;
		transition: top .2s ease,
					transform .2s ease;
	}
	.l-header__nav-toggle:after {
		content: "";
		position: absolute;
		bottom: 5px;
		left: 0;
		width: 100%;
		height: 2px;
		background-color: #ffffff;
		transition: top .2s ease,
					transform .2s ease;
	}
	.l-header__nav-toggle span {
		position: absolute;
		top: calc(50% - 1px);
		left: 0;
		width: 100%;
		height: 2px;
		background-color: #ffffff;
		transition: opacity .3s ease;
	}
	.is-nav .l-header__nav-toggle:before {
		top: calc(50% - 1px);
		transform: rotate(45deg);
	}
	.is-nav .l-header__nav-toggle:after {
		top: calc(50% - 1px);
		transform: rotate(-45deg);
	}
	.is-nav .l-header__nav-toggle span {
		opacity: 0;
	}
	.l-header__nav {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background-color: #000000;
		display: none;
	}
	.l-nav {
		height: 100%;
		padding: 110px 0 30px;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}
	.l-nav__list {
		display: block;
		margin-right: 0;
		border-bottom: 1px solid #333333;
	}
	.l-nav__list li {
		padding: 0 0;
		border-top: 1px solid #333333;
	}
	.l-nav__list li > * {
		padding: 15px 15px 15px 35px;
	}
	.l-nav__list li a:before {
		top: calc(50% - 2px) !important;
		left: -20px;
		width: 20px;
		transition: top 0s ease,
					left .3s ease;
	}
	.l-nav__list li a:hover:before,
	.l-nav__list li a.is-active:before {
		left: 0;
	}
}

.eva-project img{
max-height: 40px;
width: auto;
}

.eva-project2 img{
max-height: 40px;
width: auto;
margin: 0 auto;
text-align: center;
margin: 20px;
}

@media screen and (max-width: 767px) {
	.l-header {
		height: 65px;
	}
	.l-header__content {
		justify-content: center;
		height: 65px;
	}
	.l-header__logo {
		width: 129px;
	}
	.l-header__nav-toggle {
		top: 15px;
		right: 7px;
	}
	.l-nav {
		padding: 65px 0 30px;
	}
	.l-nav__list li a:hover:before {
		left: -20px;
	}
	.l-nav__list li a.is-active:before {
		left: 0;
	}
	.l-main {
		padding-top: 65px;
	}
	.l-pagetop {
		bottom: 30px;
		right: 7px;
	}
	.l-pagetop__button {
		width: 61px;
	}
	.l-pagetop__button:hover {
		opacity: 1;
	}
	.l-footer {
		padding: 30px 0;
		background-size: auto 10px;
	}
	.l-footer__content {
		display: block;
	}
	.l-footer__copyright {
		font-size: 1.4rem;
		margin: 0 0 10px 0;
		text-align: center;
	}
	.l-footer__logo--bisty {
		width: 72px;
		margin-top: 6px;
	}
	.l-footer__logo--fields {
		width: 101px;
		margin-bottom: 0;
	}
	.l-footer__note {
		font-size: 1.4rem;
		margin-top: 12px;
	}
	.l-title:before {
		min-width: calc(2% + 5px);
		background-size: auto 10px;
	}
}


/* --------------------------------------------------
		component
-------------------------------------------------- */
.c-h1__title {
	font-size: 1.8rem;
	line-height: 1.2;
}
.c-h2__title {
	position: relative;
	font-size: 3.6rem;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	padding-bottom: 30px;
	margin-bottom: 60px;
	background-image: url(../img/line_02.png), url(../img/line_03.png);
	background-repeat: no-repeat;
	background-position: left bottom, right bottom;
	background-size: 100px 8px;
	opacity: 1;
}
.c-h2__title:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 100px;
	width: calc(100% - 200px);
	height: 8px;
	background-image: url(../img/line_04.png);
	background-repeat: no-repeat;
	background-size: 100% 8px;
}
.c-h2__title .en {
	position: relative;
	display: block;
	font-size: 7.2rem;
	font-weight: 400;
	line-height: 1;
	margin-bottom: 5px;
	opacity: 0;
}
.c-h2__title .jp {
	position: relative;
	display: block;
	opacity: 0;
}
.c-line--a {
	margin: 0 0;
	height: 2px;
	border: none;
	background: -webkit-linear-gradient(right, #ff0000, #ff00ff, #0000ff, #00ffff, #00ff00, #ffff00, #ff0000);
	background: linear-gradient(to left, #ff0000, #ff00ff, #0000ff, #00ffff, #00ff00, #ffff00, #ff0000);
}
@media screen and (max-width: 767px) {
	.c-h1__title {
		font-size: 1.4rem;
		padding-left: 15px;
	}
	.c-h2__title {
		font-size: 1.8rem;
		padding-bottom: 20px;
		margin-bottom: 30px;
		background-size: 50px 4px;
	}
	.c-h2__title:before {
		left: 50px;
		width: calc(100% - 100px);
		height: 4px;
		background-size: 100% 4px;
	}
	.c-h2__title .en {
		font-size: 3.6rem;
	}
	.c-line--a {
		height: 1px;
	}
}


/* --------------------------------------------------
		project
-------------------------------------------------- */
.p-movie__button a {
	position: relative;
	z-index: 1;
	display: block;
	overflow: hidden;
	border: 2px solid #6413be;
}
.p-movie__button a:after {
	content: "";
	position: absolute;
	top: calc(50% - 34px);
	left: calc(50% - 34px);
	width: 68px;
	height: 68px;
	background-image: url(../img/icon_play.png);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center center;
	transition: opacity .3s ease;
}
.p-movie__button a:hover:after {
	opacity: 0.8;
}
.p-movie__button a img {
	position: relative;
	transition: transform .3s ease;
}
.p-movie__button a:hover img {
	transform: scale(1.05);
}
.p-movie-modal {
	position: relative;
}
.p-movie-modal__frame {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 56.25%;
	box-shadow: 0 0 8px rgb(0 0 0 / 60%);
}
.p-movie-modal__frame video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
@media screen and (max-width: 767px) {
	.p-movie__button a {
		border-width: 1px;
	}
	.p-movie__button a:after {
		top: calc(50% - 17px);
		left: calc(50% - 17px);
		width: 34px;
		height: 34px;
	}
	.p-movie__button a:hover:after {
		opacity: 1;
	}
	.p-movie__button a:hover img {
		transform: scale(1);
	}
}


/* --------------------------------------------------
		utility
-------------------------------------------------- */
.u-pc {
	display: block;
}
.u-sp {
	display: none;
}
.u-font--def {
	font-family: 'Noto Sans JP', sans-serif;
}
.u-cfx:after {
	content: "";
	display: table;
	clear: both;
}
.u-cts {
	position: relative;
	padding: 80px 0;
}
.u-cts__wrap {
	position: relative;
}
.u-cts__inner {
	position: relative;
	max-width: 1040px;
	padding: 0 20px;
	margin: 0 auto;
}
.u-ancher {
	padding-top: 110px;
	margin-top: -110px;
}
.u-fw400 {
	font-weight: 400;
}
.u-fw500 {
	font-weight: 500;
}
.u-fw700 {
	font-weight: 700;
}
.u-center {
	text-align: center;
}
.u-left {
	text-align: left;
}
.u-right {
	text-align: right;
}
@media screen and (max-width: 767px) {
	.u-pc {
		display: none;
	}
	.u-sp {
		display: block;
	}
	.u-cts {
		padding: 30px 0;
	}
	.u-cts__inner {
		max-width: none;
		padding: 0 2%;
	}
	.u-ancher {
		padding-top: 65px;
		margin-top: -65px;
	}
}


/* --------------------------------------------------
		magnificPopup
-------------------------------------------------- */
.mfp-movie.mfp-bg {
	background: #ffffff;
	opacity: 0.85;
	transition: all 0.3s ease-out;
}
.mfp-movie.mfp-bg.mfp-removing {
	opacity: 0;
}
.mfp-movie.mfp-wrap .mfp-content {
	transition: all 0.3s ease-out;
}
.mfp-movie.mfp-wrap.mfp-removing .mfp-content {
	opacity: 0;
}
.mfp-movie .mfp-inline-holder,
.mfp-movie .mfp-iframe-holder {
	padding: 10px 10px;
}
.mfp-movie .mfp-inline-holder .mfp-content,
.mfp-movie .mfp-iframe-holder .mfp-content {
	max-width: 960px;
	padding-top: 70px;
}
.mfp-movie .mfp-iframe-scaler {
	position: relative;
	overflow: visible;
}
.mfp-movie button.mfp-close {
	width: 180px;
	height: 50px;
	padding: 0 0;
	font-size: 0;
	opacity: 1;
	top: -60px;
	right: 0;
	background-image: url(../img/icon_close.png);
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-position: center top;
}
.mfp-movie button.mfp-close:hover {
	background-position: center bottom;
}
@media screen and (max-width: 767px) {
	.mfp-movie .mfp-inline-holder .mfp-content,
	.mfp-movie .mfp-iframe-holder .mfp-content {
		padding-top: 35px;
	}
	.mfp-movie button.mfp-close {
		width: 90px;
		height: 25px;
		top: -30px;
	}
	.mfp-movie button.mfp-close:hover {
		background-position: center top;
	}
}


/* --------------------------------------------------
		loading
-------------------------------------------------- */
.loading {
	position: fixed;
	z-index: 200;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000000;
}
.loading-box {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	transform: translateY(-50%);
	opacity: 0;
}
.loading__image {
	position: relative;
	height: 230px;
	background-image: url(../img/loading_01.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.loading__image:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../img/loading_02.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	animation: light01 1.4s ease-in-out 0s infinite;
}
.loading__text {
	width: 120px;
	margin: 30px auto 0;
	animation: light02 0.2s steps(2) 0s infinite;
}
@keyframes light01 {
	  0% { opacity: 1.0 }
	 50% { opacity: 0.1 }
	100% { opacity: 1.0 }
}
@keyframes light02 {
	  0% { opacity: 0.6 }
	100% { opacity: 1.0 }
}
@media screen and (max-width: 767px) {
	.loading__image {
		height: 115px;
	}
	.loading__text {
		width: 90px;
		margin-top: 20px;
	}
}


/* --------------------------------------------------
		visual
-------------------------------------------------- */
.visual {
	z-index: 1;
	padding: 0 0;
	margin-top: -151px;
	height: 100vh;
	min-height: 750px;
	overflow: hidden;
	background-image: url(../img/visual_03.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-color: #000000;
}
.visual-chara {
	position: absolute;
	top: 0;
	left: -40%;
	width: 180%;
	height: 100%;
	background-image: url(../img/visual_04.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.visual-chara:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../img/visual_05.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.visual-chara.is-light:after {
	animation: light01 1.4s ease-in-out 0s 3;
}
.visual-box {
	position: relative;
	z-index: 2;
	height: 100%;
}
.visual__text {
	position: absolute;
	width: 505px;
	top: 200px;
	right: 40px;
	opacity: 0;
}
.visual__logo {
	position: absolute;
	width: 436px;
	bottom: 50px;
	left: 40px;
	opacity: 0;
}
@media screen and (max-width: 767px) {
	.visual {
		margin-top: -101px;
		height: auto;
		min-height: 0;
	}
	.visual-chara {
		left: -100%;
		width: 300%;
	}
	.visual-box {
		height: auto;
		padding: 94px 0 30px;
	}
	.visual__text {
		position: relative;
		width: 67.46666666666667%;
		top: 0;
		right: 0;
		margin: 0 auto 67vw;
	}
	.visual__logo {
		position: relative;
		width: 80.53333333333333%;
		bottom: 0;
		left: 0;
		margin: 0 auto;
	}
}


/* --------------------------------------------------
		special
-------------------------------------------------- */
.special {
	background-image: url(../img/bg_01.png);
	background-position: center top;
}
.special-sub__title {
	text-align: center;
	font-size: 3.2rem;
	font-weight: 700;
	line-height: 1;
	color: #ffffff;
	padding: 0 20px;
	margin-bottom: 25px;
	background-image: url(../img/line_05.png), url(../img/line_06.png);
	background-repeat: no-repeat;
	background-position: left center, right center;
	background-size: 20px 100%;
}
.special-sub__title span {
	display: block;
	padding: 13px 0 15px;
	background-image: url(../img/line_07.png);
	background-size: auto 100%;
}
.special .pv-box {
	margin: 0 auto;
	max-width: 640px;
}
.special .campaign-box {
	margin: 60px auto 0;
	max-width: 640px;
}
.special .campaign-box .item a {
	display: block;
	overflow: hidden;
}
.special .campaign-box .item a img {
	position: relative;
	transition: transform .3s ease;
}
.special .campaign-box .item a:hover img {
	transform: scale(1.05);
}
.special .campaign-box .slick-dots {
	letter-spacing: -0.4em;
	text-align: center;
	font-size: 0;
	margin-top: 20px;
}
.special .campaign-box .slick-dots li {
	display: inline-block;
	letter-spacing: 0;
	margin: 0 5px;
}
.special .campaign-box .slick-dots li button {
	width: 12px;
	height: 12px;
	border: none;
	padding: 0 0;
	font-size: 0;
	background-color: #cccccc;
	border-radius: 50% 50%;
}
.special .campaign-box .slick-dots li.slick-active button {
	background-color: #6413be;
}
@media screen and (max-width: 767px) {
	.special {
		background-size: 45px auto;
	}
	.special-sub__title {
		font-size: 1.6rem;
		padding: 0 10px;
		margin-bottom: 12px;
		background-size: 10px 100%;
	}
	.special-sub__title span {
		padding: 8px 0;
		background-size: auto 100%;
	}
	.special .pv-box {
		width: 88.88888888888889%;
		max-width: none;
	}
	.special .campaign-box {
		margin-top: 30px;
		width: 88.88888888888889%;
		max-width: none;
	}
	.special .campaign-box .item a:hover img {
		transform: scale(1);
	}
	.special .campaign-box .slick-dots {
		margin-top: 10px;
	}
	.special .campaign-box .slick-dots li {
		margin: 0 3px;
	}
	.special .campaign-box .slick-dots li button {
		width: 6px;
		height: 6px;
	}
}


/* --------------------------------------------------
		model
-------------------------------------------------- */
.model {
	padding-bottom: 0;
}
.model__image {
	background-image: url(../img/model_01.jpg);
	background-repeat: repeat-x;
	background-position: 0 0;
	background-size: auto 100%;
	height: 220px;
	margin-bottom: 60px;
	animation: modalBg 14s linear 0s infinite;
}
@keyframes modalBg {
	  0% { background-position: 0 0; }
	100% { background-position: -1500px 0; }
}
.model-box {
	position: relative;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% 100%, cover;
}
.model-box .u-cts__inner {
	max-width: 1200px;
}
.model-box.box--01 {
	background-image: url(../img/model_02.png), url(../img/model_03.jpg);
}
.model-box.box--02 {
	background-image: url(../img/model_02.png), url(../img/model_04.jpg);
}
.model-box.box--03 {
	background-image: url(../img/model_02.png), url(../img/model_05.jpg);
}
.model-box.box--04 {
	background-image: url(../img/model_02.png), url(../img/model_06.jpg);
}
@media screen and (max-width: 767px) {
	.model__image {
		height: 29.33333333333333vw;
		margin-bottom: 30px;
		animation-duration: 26s;
	}
	.model-box .u-cts__inner {
		padding: 0 0;
	}
	.model-box.box--01 {
		background-image: url(../img/model_02.png), url(../img/model_03_sp.jpg);
	}
	.model-box.box--02 {
		background-image: url(../img/model_02.png), url(../img/model_04_sp.jpg);
	}
	.model-box.box--03 {
		background-image: url(../img/model_02.png), url(../img/model_05_sp.jpg);
	}
	.model-box.box--04 {
		background-image: url(../img/model_02.png), url(../img/model_06_sp.jpg);
	}
}


/* --------------------------------------------------
		gameflow
-------------------------------------------------- */
.gameflow {
	background-image: url(../img/bg_02.png), url(../img/gameflow_01.jpg);
	background-repeat: repeat, no-repeat;
	background-position: center top;
	background-size: 90px auto, cover;
}
.gameflow:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 200px;
	background: -webkit-linear-gradient(bottom, rgba(238,238,238,1), rgba(238,238,238,0));
	background: linear-gradient(to top, rgba(238,238,238,1), rgba(238,238,238,0));
}
.gameflow__text {
	margin: -20px 0 60px;
}
@media screen and (max-width: 767px) {
	.gameflow {
		background-size: 45px auto, cover;
	}
	.gameflow__text {
		margin: 0 0 30px;
	}
}


/* --------------------------------------------------
		spec
-------------------------------------------------- */

@media screen and (max-width: 767px) {
}


/* --------------------------------------------------
		※※※※※
-------------------------------------------------- */

@media screen and (max-width: 767px) {
}
