@charset "utf-8";

/*--------------------------------------------------
	common
--------------------------------------------------*/
a:link { color: #ffec1a; text-decoration: none; }
a:visited { color: #ffec1a; text-decoration: none; }
a:hover { color: #ffec1a; text-decoration: none; }
@media screen and (min-width: 768px) {
a[href^="tel:"] { pointer-events: none; }
}

.sp { display: none !important; }
@media screen and (max-width: 767px) {
.pc { display: none !important; }
.sp { display: inherit !important; }
}

/*--------------------------------------------------
	layout
--------------------------------------------------*/
html {
	font-size: 62.5%;
}
body {
	min-width: 1060px;
	font-family: 'Noto Sans JP', "メイリオ", "meiryo", Verdana, "Hiragino Kaku Gothic Pro W3", "MS UI Gothic";
	font-size: 1.0rem;
	line-height: 1;
	overflow-wrap: break-word;
	word-wrap: break-word;
	-webkit-text-size-adjust: none;
	color: #fff;
	background: #000;
}
img {
	max-width: 100%;
	height: auto;
}
.inner {
	width: 1240px;
	margin: 0 auto;
	padding: 0 20px;
}
.secTtl {
	text-align: center;
}
.secTtlParts {
	margin-top: 30px;
}
a.btn {
	position: relative;
	display: block;
	line-height: 1;
	text-align: center;
	font-size: 2.0rem;
	font-weight: bold;
	color: #000;
	padding: 15px 5px;
	background: #f5f6d4;
	background: -moz-linear-gradient(left,  #f5f6d4 0%, #e7de55 30%, #c49e1f 100%);
	background: -webkit-linear-gradient(left,  #f5f6d4 0%,#e7de55 30%,#c49e1f 100%);
	background: linear-gradient(to right,  #f5f6d4 0%,#e7de55 30%,#c49e1f 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f6d4', endColorstr='#c49e1f',GradientType=1 );
	border-radius: 30px;
}
a.btn:before {
	content: "\f0da";
	position: absolute;
	top: 33.33%;
	right: 10px;
	font-weight: 600;
	font-family: "Font Awesome 5 Free";
}
.btn2 {
	max-width: 300px;
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	padding: 1px 1px;
	border-radius: 30px;
	background: -moz-linear-gradient(left,  #f5f6d4 0%, #e7de55 30%, #c49e1f 100%);
	background: -webkit-linear-gradient(left,  #f5f6d4 0%,#e7de55 30%,#c49e1f 100%);
	background: linear-gradient(to right,  #f5f6d4 0%,#e7de55 30%,#c49e1f 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f6d4', endColorstr='#c49e1f',GradientType=1 );
}
.btn2 a {
	position: relative;
	display: block;
	line-height: 1;
	text-align: center;
	font-size: 2.0rem;
	font-weight: bold;
	color: #c49e1f;
	padding: 15px 5px;
	border-radius: 30px;
	background: #000;
}
.btn2 a:before {
	content: "\f0da";
	position: absolute;
	top: 33.33%;
	right: 10px;
	font-weight: 600;
	font-family: "Font Awesome 5 Free";
}
.btn2 a span {
	display: inline-block;
	background: -moz-linear-gradient(left,  #f5f6d4 0%, #e7de55 30%, #c49e1f 100%);
	background: -webkit-linear-gradient(left,  #f5f6d4 0%,#e7de55 30%,#c49e1f 100%);
	background: linear-gradient(to right,  #f5f6d4 0%,#e7de55 30%,#c49e1f 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f6d4', endColorstr='#c49e1f',GradientType=1 );
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.disable {
	filter: alpha(opacity=30);
	-moz-opacity: 0.3;
	opacity: 0.3;
	pointer-events: none;
}
.hover:hover {
	opacity: 0.6;
	transition: 0.3s;
}
.youtubeWrap {
	position: relative;
	padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
	height: 0;
	overflow: hidden;
}
.youtubeWrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/* スライド表示 */
.gallery {
	margin-top: 40px;
}
.gallery_main {
	position: relative;
	text-align: center;
	margin: 0 15px;
}
.gallery_main .mainItem {
    display: none;
}
.gallery_main .mainItem.show {
    display: block;
}
.gallery_main .arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	padding: 0;
	background: none;
	border: none;
	cursor: pointer;
	z-index: 10;
}
.gallery_main .arrow.prev {
	left: -2.82%;
}
.gallery_main .arrow.next {
	right: -2.82%;
}
.gallery_select {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	margin: 15px 15px 0;
}
.gallery_select .selectBtn {
	width: 32.48%;
	cursor: pointer;
}
.gallery_main .arrow:hover,
.gallery_select .selectBtn:hover {
	opacity: 0.6;
	transition: 0.3s;
}
.gallery_select .selectBtn.active {
	cursor: initial;
}
.gallery_select .selectBtn.active {
	opacity: 0.6;
}
@media screen and (max-width: 767px) {
	body {
		min-width: initial;
	}
	.inner {
		width: 92%;
		padding: 0;
	}
	.secTtl h2 {
		height: 45px;
	}
	.secTtl h2 img {
		max-width: initial;
		height: 100%;
	}
	.secTtlParts {
		margin-top: 15px;
	}
	a.btn {
		font-size: 1.4rem;
	}
	.btn2 a {
		font-size: 1.4rem;
	}
	/* スライド表示 */
	.gallery {
		margin-top: 20px;
	}
	.gallery_main {
		margin: 0;
	}
	.gallery_main .arrow {
		width: 20px;
	}
	.gallery_select {
		margin: 2.17% 0 0;
	}
	.gallery_select .selectBtn {
		width: 31.88%;
	}
}

/*--------------------------------------------------
	body
--------------------------------------------------*/
header {
	position: relative;
	z-index: 100;
}
.header_platform {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
}
.header_lang {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	background: #000;
}
.header_lang li a {
	display: block;
	width: 80px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	font-size: 2.4rem;
	color: #000;
	background: rgba(255,255,255,0.4);
}
.header_lang li.active a {
	background: rgba(255,255,255,1);
}
.header_lang li a:hover {
	background: rgba(255,255,255,1);
	transition: 0.3s;
}
@media screen and (max-width: 767px) {
	.header_platform li.switch {
		width: 50px;
	}
	.header_platform li.steam {
		width: 117px;
	}
	.header_lang li a {
		width: 50px;
		height: 30px;
		line-height: 30px;
		font-size: 1.5rem;
	}
}


#mv {
	position: relative;
}
.mv_visual {
	position: relative;
	text-align: center;
}
.mv_visual .main {
	position: relative;
	z-index: -1;
}
.mv_visual .main img {
	width: 100%;
}
@media screen and (max-width: 767px) {
}


#intro {
	margin-top: 100px;
}
.intro_movie {
	max-width: 854px;
	margin: 0 auto;
}
.intro_movie .youtubeWrap {
	box-shadow: 0 0 160px rgba(255,255,255,0.4); 
}
.intro_movie .btn2 {
	margin-top: 20px;
}
@media screen and (max-width: 767px) {
	#intro {
		margin-top: 40px;
	}
	.intro_movie {
		margin: 0 auto;
	}
}


#system {
	text-align: center;
	margin-top: 140px;
}
.system_block + .system_block {
	margin-top: 80px;
	padding-top: 80px;
	border-top: 2px rgba(255, 255, 255, 0.4) dotted;
}
.system_ttl {
	line-height: 1.5;
	font-size: 4rem;
	font-weight: bold;
}
.system_block1 .system_ttl {
	font-size: 4.8rem;
}
.system_lead {
	line-height: 1.8;
	font-size: 2.4rem;
	font-weight: bold;
	margin-top: 30px;
}
.system_detail {
	line-height: 2;
	font-size: 1.8rem;
	margin-top: 40px;
}
.system_detail p + p {
	margin-top: 1.5em;
}
@media screen and (max-width: 767px) {
	#system {
		margin-top: 60px;
	}
	.system_block + .system_block {
		margin-top: 40px;
		padding-top: 40px;
	}
	.system_ttl,
	.system_block1 .system_ttl {
		font-size: 2.2rem;
	}
	.system_lead {
		text-align: left;
		font-size: 1.6rem;
		margin-top: 20px;
	}
	.system_detail {
		line-height: 1.8;
		text-align: left;
		font-size: 1.4rem;
		margin-top: 20px;
	}
}


#spec {
	margin-top: 140px;
}
#spec .inner {
	width: 1060px;
	margin: 0 auto;
	padding: 0 20px;
}
.spec_box {
	position: relative;
	margin-top: 40px;
	padding: 60px;
	border: 1px #fff solid;
}
.spec_box .corner {
	position: absolute;
}
.spec_box .corner.topL {
	top: 0;
	left: 0;
}
.spec_box .corner.topR {
	top: 0;
	right: 0;
}
.spec_box .corner.btmL {
	bottom: 0;
	left: 0;
}
.spec_box .corner.btmR {
	bottom: 0;
	right: 0;
}
.spec_boxInner {
	display: flex;
	justify-content: space-between;
}
.spec_img {
	width: 26.67%;
	text-align: center;
}
.spec_img p + p {
	margin-top: 40px;
}
.spec_img .download img {
	border: 1px #fff solid;
}
.spec_detail {
	width: 68.89%;
}
.spec_list dl {
	display: flex;
	flex-wrap: wrap;
	line-height: 1.5;
	font-size: 1.5rem;
}
.spec_list dl dt {
	width: 10em;
	color: #d6bdbd;
	padding-right: 1em;
}
.spec_list dl dd {
	width: calc(100% - 10em);
}
.spec_list dl + dl {
	margin-top: 20px;
}
.spec_note {
	text-align: center;
	line-height: 1.5;
	font-size: 1.2rem;
	margin-top: 40px;
}
.spec_buy {
	margin-top: 60px;
}
.spec_buyhead {
	font-size: 2.4rem;
	margin-top: 20px;
	padding: 5px 0 7px 5px;
	border-bottom: 2px #fff dotted;
	border-left: 5px #fff solid;
}
.spec_buybtns {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.spec_buybtns .buybtn {
	max-width: 300px;
	width: 100%;
	margin-top: 20px;
}
.spec_buybtns .buybtn:nth-child(n+3) {
	margin-top: 20px;
}
@media screen and (max-width: 767px) {
	#spec {
		margin-top: 60px;
	}
	#spec .inner {
		width: 92%;
		padding: 0;
	}
	#spec .secTtl .ttlTone {
		right: initial;
	}
	.spec_box {
		margin-top: 20px;
		padding: 30px 15px;
	}
	.spec_boxInner {
		display: block;
	}
	.spec_img {
		display: flex;
		align-items: flex-end;
		flex-wrap: wrap;
		justify-content: center;
		width: 100%;
	}
	.spec_img p {
		width: 38.1%;
		margin: 0 auto;
	}
	.spec_img p + p {
		margin-top: initial;
	}
	.spec_img p:nth-child(n+3) {
		margin-top: 10px;
	}
	.spec_detail {
		width: 100%;
		margin-top: 30px;
	}
	.spec_list dl {
		display: block;
		line-height: 1.5;
		font-size: 1.4rem;
	}
	.spec_list dl dt {
		width: initial;
		padding-right: 1em;
	}
	.spec_list dl dt::after {
		content: "：";
	}
	.spec_list dl dd {
		width: initial;
	}
	.spec_note {
		text-align: left;
		font-size: 1.1rem;
		margin-top: 20px;
	}
	.spec_buy {
		margin-top: 40px;
	}
	.spec_buynow {
		width: 107px;
	}
	.spec_buyhead {
		font-size: 1.4rem;
	}
	.spec_buybtns .buybtn {
		max-width: initial;
		width: 47.62%;
	}
	.spec_buybtns .buybtn.wide {
		width: 100%;
	}
}

/*--------------------------------------------------
	footer
--------------------------------------------------*/
footer {
	text-align: center;
	margin-top: 80px;
	padding-bottom: 20px;
}
.footer_sns {
	display: flex;
	justify-content: center;
	margin-top: 40px;
}
.footer_sns li {
	width: 36px;
}
.footer_sns li + li {
	margin-left: 30px;
}
.footer_d3 {
	margin-top: 40px;
}
.footer_copy {
	line-height: 1.5;
	font-size: 1.1rem;
	color: #666;
	margin-top: 20px;
}
@media screen and (max-width: 767px) {
	footer {
		margin-top: 40px;
	}
	.footer_sns {
		margin-top: 20px;
	}
	.footer_d3 {
		width: 21.74%;
		margin: 20px auto 0;
	}
	.footer_copy {
		margin-top: 10px;
	}
}

