@charset "utf-8";

html {
	font-size: 62.5%;
}

* {
	box-sizing: border-box;
}
 
body {
	position: relative;
	font-size: 1.4rem;
	color: #fff;
	line-height: 1.75;
	font-family: -apple-system, "HelveticaNeue", Helvetica;
	-webkit-text-size-adjust: 100%;
	overflow-x: hidden;
}
body::before {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: url("../common/images/bg01.jpg") 50% 50% /cover no-repeat;
	content: " "
}
body::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background-position: 50% 0;
	background-size: 100%;
	background-repeat: no-repeat;
	content: " ";
	opacity: 0;
	visibility: hidden;
	-webkit-animation: fadeIn01 cubic-bezier(.8,.1,.24,.87) .3s 1.5s forwards;
	animation: fadeIn01 cubic-bezier(.8,.1,.24,.87) .3s 1.5s forwards;
}
body#feature::after {
	background-image: url("../feature/images/bg01.png");
}
body#gameflow::after {
	background-image: url("../gameflow/images/bg01.png");
}
body#gamesystem::after {
	background-image: url("../gamesystem/images/bg01.png");
}
body#spec::after {
	background-image: url("../spec/images/bg01.png");
}

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

.mt20 {
	margin-top: 20px;
}

.mt50 {
	margin-top: 50px;
}

/* link 
*****************************************/
a:link,
a:visited {
	color: #333;
	text-decoration: underline;
}

/* header
*****************************************/
.header01 {
	position: relative;
	z-index: 2;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	width: 100%;
	padding: 2.5vw 2vw 0 1.866vw;
}

.header01 > .logo01 {
	width: 44.53%;
}

.globalNav01 {
	width: 54%;
}

.globalNav01 > ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 4.466vw;
}

.globalNav01 > ul > li {
	min-width: 12.4vw;
	height: 8.8vw;
}

.globalNav01 > ul > li:nth-child(odd) {
	margin-right: 4%;
}

.globalNav01 > ul > li:nth-child(n+3) {
	margin-top: 2.9%;
}

.globalNav01 > ul > li > a {
	display: block;
	height: 100%;
}

.globalNav01 > ul > li > a > img {
	height: 100%;
	width: auto;
}

/* footer01
*****************************************/
.footer01 {
	position: relative;
	z-index: 50;
	padding: 8vw 0;
	background-color: #000;
}

.footList01 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	padding: 0 3%;
}

.footList01 > li{
	max-width: 30vw;
}

.footList01 > li:nth-child(1) {
	height: 6.266vw;
}

.footList01 > li:nth-child(2) {
	height: 4.933vw;
	margin-left: 5.332%;
	margin-right: 5.332%;
}

.footList01 > li:nth-child(3) {
	margin-top: -3vw;
	height: 10.666vw;
}

.copyrights01 {
	margin-top: 25px;
	width: 100%;
}

/* animation
*****************************************/
@-webkit-keyframes fadeIn01 {
0% {
	-webkit-transform: scale(3);
	transform: scale(3);
}
70% {
	opacity: 1;
	visibility: visible;
	-webkit-transform: scale(1);
	transform: scale(1);
}
90% {
	opacity: 1;
	visibility: visible;
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}
100% {
	opacity: 1;
	visibility: visible;
	-webkit-transform: scale(1);
	transform: scale(1);
}
}
@keyframes fadeIn01 {
0% {
	-webkit-transform: scale(3);
	transform: scale(3);
}
70% {
	opacity: 1;
	visibility: visible;
	-webkit-transform: scale(1);
	transform: scale(1);
}
90% {
	opacity: 1;
	visibility: visible;
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}
100% {
	opacity: 1;
	visibility: visible;
	-webkit-transform: scale(1);
	transform: scale(1);
}
}

@-webkit-keyframes fadeIn02 {
0% {
	opacity: 0;
}
100% {
	opacity: 1;
	visibility: visible;
}
}

@keyframes fadeIn02 {
0% {
	opacity: 0;
}
100% {
	opacity: 1;
	visibility: visible;
}
}

/* contents
*****************************************/
.main01 {
	position: relative;;
	z-index: 1;
}

.heading01 {
	position: relative;
	width: 100%;
	opacity: 0;
	visibility: hidden;
	-webkit-animation: fadeIn01 cubic-bezier(.8,.1,.24,.87) .3s 1.3s forwards;
	animation: fadeIn01 cubic-bezier(.8,.1,.24,.87) .3s 1.3s forwards;
}
#feature .heading01 {
	padding-top: 30.666vw;
	padding-bottom: 6.266vw;
}
#gameflow .heading01 {
	padding-top: 28vw;
	padding-bottom: 13.333vw;
}
#gamesystem .heading01 {
	padding-top: 41.066vw;
	padding-bottom: 2.133vw;
}
#spec .heading01 {
	padding-top: 0.933vw;
	padding-bottom: 36.8vw;
}

.frameArea01 {
	padding-top: 18.666vw;
	padding-bottom: 18vw;
	background-position: 0 0;
	background-size: 100%;
	background-repeat: no-repeat;
}
#feature .frameArea01 {
	background-image: url(../feature/images/bg02.png);
}
#gameflow .frameArea01 {
	margin-top: -1.2vw;
	background-image: url(../gameflow/images/bg02.png);
}
#gamesystem .frameArea01 {
	background-image: url(../gamesystem/images/bg02.png);
	background-position: 0 4vw;
}
#spec .frameArea01 {
	background-image: url(../spec/images/bg02.png);
}

.flowBlock01,
.flowBlock02 {
	position: relative;
}

.flowBlock01 > .image01 {
	position: absolute;
	z-index: 4;
	top: 1.2vw;
	left: 0;
	width: 100%;
}

.flowBlock01 > .image02 {
	position: relative;
	z-index: 5;
	padding-top: 79.666vw;
}

.flowBlock01 > .image03 {
	position: relative;
	z-index: 4;
	margin-top: -3.733vw;
}

.flowBlock02 > .image01 {
	position: relative;
	z-index: 5;
	padding: 0 1.333vw;
	width: 100%;
}

.flowBlock02 > .image02 {
	position: relative;
	z-index: 4;
	margin-top: -9.6vw;
	padding: 0 1.333vw;
	width: 100%;
}

.list01 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	margin-top: 15px;
}

.list01 > li {
	width: 45.2%;
}

.btn01 {
	width: 66.666%;
	margin-left: auto;
	margin-right: auto;
}
.btn011 {
	width: 66.666%;
	margin-left: auto;
	margin-right: auto;
}
.localNavArea01:not(:first-of-type) {
	margin-top: 6.666vw;
}

.localNavArea01 > ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-justify-content: center;
	justify-content: center;
	padding: 0 2.2vw;
}

.localNavArea01 > ul > li {
	width: 31.466vw;
	margin-top: 0.2vw;
	margin-left: 0.2vw;
	margin-right: 0.2vw;
}


.txt01 {
	margin-top: 10.666vw;
}

.img01 {
	padding: 0 2.666%;
}
.img01 + .img01 {
	margin-top: 10px;
}



/* Clearfix
*****************************************/
.cf:after {
	content: " ";
	display: block;
	clear: both;
}
