@charset "utf-8";

/*  ロゴ　===================*/
.logo {
	position: relative;
	display: block;
}
.logo img {
	font-size: 0;
	vertical-align: middle;
}
.logo.header_logo {
	width: 40%;
	max-width: 150px;
	height: 100%;
	margin: 0 auto;
	line-height: 45px;
	border-color: transparent;
}
.logo.footer_logo {
	width: 60%;
	max-width: 250px;
	height: 100%;
	margin: 0 auto;
	line-height: 60px;
}

@media screen and (min-width: 769px) {
	.logo.header_logo {
		display: inline-block;
		width: 150px;
		line-height: 60px;
		margin-left: 0.8rem;
	}
}

/*  グローバルナビゲーション　===================*/
#global_nav a {
	text-decoration: none;
	color: #fff;
}
#global_nav {
	position: relative;
	display: none;
	width: 100%;
	margin: 0;
	padding: 0;
	font-size: 1.2rem;
	background-color: #333;
	border-color: transparent;
	z-index: 1005;
}
.inner_box {
	position: relative;
	height: 100%;
}
#global_nav ul.main_link {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient:vertical;
	-webkit-box-direction:normal;
	-ms-flex-flow:column wrap;
	flex-flow:column wrap;
	width: 100%;
	margin: 0;
	padding: 0;
	border-bottom: solid 1px rgba(255, 255, 255, 0.5);
}
#global_nav ul.sub_link {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient:horizontal;
	-webkit-box-direction:normal;
	-ms-flex-flow:row wrap;
	flex-flow:row wrap;
	margin: 0;
	padding: 0;
	border-bottom: solid 1px rgba(255, 255, 255, 0.5);
}
#global_nav ul.main_link > li,
#global_nav ul.sub_link > li {
	position: relative;
	display: inline-block;
	width: 100%;
	margin: 0;
	padding: 0.6rem;
	padding-left: 1.2rem;
	color: #fff;
}
#global_nav ul.main_link > li {
	border-top: solid 1px rgba(255, 255, 255, 0.5);
}
#global_nav ul.sub_link > li {
	width: auto;
	font-size: 80%;
}
#global_nav ul.sub_link > li:not(:nth-of-type(1))::before {
	position: absolute;
	display: inline-block;
	content: '/';
	margin: 0;
	margin-left: -0.9rem;
	padding: 0;
	vertical-align: middle;
	font-size: 1.2rem;
	line-height: 20px;
}
#global_nav ul.main_link > li > a,
#global_nav ul.sub_link > li > a {
	transition: color .3s ease;
}
#global_nav ul.main_link > li > a::after,
#global_nav ul.sub_link > li > a::after {
	transition: all .2s ease;
}
@media screen and (min-width: 769px) {
	#global_nav {
		position: absolute;
		display: block;
		width: auto;
		height: 100%;
		top: 0;
		left: 50%;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
		font-size: 1rem;
		background-color: transparent;
	}
	#global_nav .inner_box {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-flow: row nowrap;
		flex-flow: row nowrap;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	#global_nav ul.main_link,
	#global_nav ul.sub_link {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-flow: row nowrap;
		flex-flow: row nowrap;
		width: auto;
		border: none;
	}
	#global_nav ul.sub_link {
		width: auto;
		margin-left: 1.2rem;
	}
	#global_nav ul.main_link > li,
	#global_nav ul.sub_link > li {
		width: auto;
		border: none;
	}
	#global_nav ul.main_link > li {
		margin: 0 0.2rem;
		padding: 0.6rem;
	}
	#global_nav ul.sub_link > li {
		margin: 0;
		padding: 0.6rem 0.2rem;
	}
	#global_nav ul.main_link > li > a:after,
	#global_nav ul.sub_link > li > a:after {
		position: absolute;
		display: block;
		overflow: hidden;
		width: 0;
		height: 0;
		top: 80%;
		left: 50%;
		background: #fff;
		content: '-';
		border-radius: 7px;
	}
	#global_nav ul.main_link > li:hover > a,
	#global_nav ul.sub_link > li:hover > a {
/*		opacity: .8;*/
	}
	#global_nav ul.main_link > li > a:hover:after,
	#global_nav ul.main_link > li:hover > a:after,
	#global_nav ul.sub_link > li > a:hover:after,
	#global_nav ul.sub_link > li:hover > a:after {
		bottom: -2px;
		height: 2px;
		width: 100%;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
	}
}

/* スマホ用ボタン */
.mobile_nav_btn {
	position: absolute;
	display: inline-block;
	margin-left: 0.8rem;
	width: 30px;
	height: 26px;
	top: 10px;
	left: 0;
	cursor: pointer;
	z-index: 1006;
	transition: all .4s;
}
.mobile_nav_btn span.menu_icon {
	display: inline-block;
	position: absolute;
	left: 0;
	margin-top: 0;
	width: 100%;
	height: 4px;
	background: #fff;
	border-radius: 2px;
	transition: all .4s;
}
.mobile_nav_btn span.menu_icon:nth-of-type(1) {top: 0;}
.mobile_nav_btn span.menu_icon:nth-of-type(2) {top: 10px;}
.mobile_nav_btn span.menu_icon:nth-of-type(3) {top: 20px;}

/* メニューが開いている時 */
.mobile_nav_btn.menu_open span.menu_icon:nth-of-type(1) {
	transform: translateY(10px) rotate(45deg);
}
.mobile_nav_btn.menu_open span.menu_icon:nth-of-type(2) {
	transform: translateY(0) rotate(-45deg);
}
.mobile_nav_btn.menu_open span.menu_icon:nth-of-type(3) {opacity: 0;}
@media screen and (min-width: 769px) {
	.mobile_nav_btn {display: none;}
}


/*  見出し　===================*/
h1.hide {
	font-size: 0;
	line-height: 0;
	overflow: hidden;
}
h1.title {
	position: relative;
	width: 100%;
	margin: 0;
	padding: 0;
	text-align: center;
	color: #fff;
	font-size: 8.5vw;
	line-height: 60px;
	text-shadow: 2px 2px 4px gray, 0 0 1.5em blue, 0 0 0.2em blue;
}
h2 {
	font-size: 14px;
	margin: 20px auto;
}
h2.subheading {
	margin: 0 auto 1vw;
	font-size: 5vw;
	text-align: center;
}
@media screen and (min-width: 769px) {
	h1.title {
		font-size: 52px;
	}
	h2 {
		font-size: 16px;
		margin: 20px auto;
	}
	h2.subheading {
		margin: 0 auto 1vw;
		font-size: 30px;
	}
}


/*---------------*/
.overlay {
	position: fixed;
	display: none;
	top: 0;
	left: 0;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	background-color: rgba(0, 0, 0, 0.8);
	z-index: 800;
}
/*---------------*/


/*  ページトップ　メイン動画　===================*/
#main_video #yt_player {
	position: absolute;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: 100%;
	transition: height,min-height .4s;
}

#main_video .overlay{
	position: absolute;
	display: block !important;
	background-color: transparent;
	z-index: -1;
}

#yt_player{
	z-index: -2;
}


section#main_video {
	position: relative;
	min-height: 360px;
	height: calc(100vw * 0.5625);
	width: 100%;
	padding-top: 0;
	padding-bottom: 0;
	overflow: hidden;
	transition: height,min-height .4s;
}
@media screen and (min-width: 769px) {
	section#main_video {
		transition: height,min-height .4s;
	}
}
@media screen and (min-width: 1000px) {
	section#main_video {
		height: 85vh;
/*		height: 720px !important;*/
		transition: height .4s;
	}
}

#main_video .link_area {
	position: absolute;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-flow: row nowrap;
	flex-flow: row nowrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100%;
	padding: 0 ;
	top: 70%;
	z-index: 501;
}
#main_video .title_area {
	position: absolute;
	width: 100%;
	padding: 0 ;
	top: 50%;
	z-index: 501;
}

#main_video .link_area .button {
	margin: 0 5%;
}
@media screen and (min-width: 481px) {
	#main_video .link_area .button {
		width: 135px;
		margin: 0 2rem;
	}
}

/*  ページトップ　メインイメージ　===================*/
#main_img {
	position: relative;
	width: 100%;
	height: 20vw;
	max-height: 350px;
	margin: 0;
	padding: 0;
}
#main_img .title_area {
	position: relative;
	width: 100%;
	height: 20vw;
	max-height: 350px;
	background-color: #ddd;
	background-size: cover;
	background-position: center center;
	overflow: hidden;
}
#main_img h1.title {
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
#main_img h1.series_name {
	position: absolute;
	width: 100%;
	max-width: 1200px;
	padding: 0 3vw;
	color: #fff;
	font-size: 6vw;
	line-height: 5vw;
	text-align: right;
	left: 0;
	bottom: 2.5vw;
	text-shadow: 2px 2px 4px gray, 0 0 1.5em blue, 0 0 0.2em blue;
}
@media screen and (min-width: 769px) {
	#main_img h1.title {
		top: 65%;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
	}
	#main_img h1.series_name {
		font-size: 36px;
		line-height: 36px;
	}
}
@media screen and (min-width: 1200px) {
	#main_img h1.series_name {
		font-size: 42px;
		line-height: 42px;
		padding: 0 36px;
		left: 50%;
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
	}
}


#main_text {
	position: relative;
	width: 100%;
	height: 15vw;
	margin: 0;
	padding: 0;
	border-bottom: solid 2px #00214a;
}
#main_text .title_area {
	position: relative;
	width: 100%;
	height: 100%;
	background-color: #ddd;
	background-size: cover;
	background-position: center;
}
#main_text h1.title {
	position: absolute;
	color: inherit;
	font-size: 5vw;
	line-height: 5vw;
	top: 50%;
	text-shadow: none;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
@media screen and (min-width: 769px) {
	#main_text {
		height: 150px;
		margin: 0;
		padding: 0;
	}
	#main_text h1.title {
		font-size: 30px;
		line-height: 36px;
		text-shadow: none;
		top: auto;
		bottom: 25px;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}
@media screen and (min-width: 1000px) {
/*
	#main_img h1.title {
		font-size: 40px;
		line-height: 40px;
	}
	#main_text h1.title {
		font-size: 50px;
		line-height: 50px;
		top: 50%;
	}
*/
}





/*  ニュース　===================*/
#news .news_list {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient:vertical;
	-webkit-box-direction:normal;
	-ms-flex-flow:column wrap;
	flex-flow:column wrap;
	width: 100%;
	font-size: 0;
	margin: 0;
	padding: 0;
}
#news .news_list .news_item {
	position: relative;
	display: inline-block;
	width: 100%;
	min-height: 60px;
	margin-bottom: 0.5rem;
	padding: 2vw;
	background-color: #fff;
}
#news .news_list .news_item a {
	color: blue;
	text-decoration: underline;
}
#news .news_list .news_item .thumb {
	position: relative;
	display: inline-block;
	width: 125px;
	margin: 0;
	padding: 0;
	vertical-align: middle;
}
#news .news_list .news_item .thumb.no_image::before {
	position: absolute;
	display: inline-block;
	width: 100%;
	margin: 0;
	padding: 0;
	top: 55%;
	left: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	color: #666;
	content: "お知らせ";
	text-align: center;
	font-size: 1.2rem;
	font-weight: bolder;
}
#news .news_list .news_item .text {
	position: relative;
	display: inline-block;
	width: calc(100% - 135px);
	margin: 0;
	padding: 0;
	padding-left: 4vw;
	font-size: 14px;
	vertical-align: middle;
}


#news .news_list.history {
	background-color: #fff;
	padding: 0 0.5rem;
/*	margin-top: -1rem;*/
}
#news .news_list.history .news_item {
	min-height: auto;
	padding: 0.5rem 0.2rem;
	margin-bottom: 0;
	border-bottom: dashed 1px #ddd;
}
#news .news_list.history .news_item .text {
	width: 100%;
	margin: 0;
	padding-left: 0.3rem;
	font-size: 12px;
	vertical-align: middle;
}
/* 履歴ページボタン */
#news .page_btn {
	position: relative;
	margin: 0 auto;
	padding: 0;
	text-align: left;
}
#news .page_btn .page_num {
	position: relative;
	display: inline-block;
	width: 32px;
	margin: 3px;
	padding: 0;
	color: #4169e1;
	text-align: center;
	background-color: #fff;
	border: solid 1px #4169e1;
}
#news .page_btn .page_num a,
#news .page_btn .page_num span {
	display: block;
	width: 100%;
	height: 100%;
	padding: 3px 5px;
}
#news .page_btn .page_num.select {
	color: #fff;
	background-color: #4169e1;
}

@media screen and (min-width: 481px) {
	#news .news_list .news_item .text {
		padding-left: 2.5vw;
	}
}
@media screen and (min-width: 560px) {
	#news .news_list .news_item {
		padding: 0.6rem;
	}
}
@media screen and (min-width: 769px) {
	#news .news_list {
		-webkit-flex-flow: row wrap;
		-ms-flex-flow: row wrap;
		flex-flow: row wrap;
		justify-content: space-around;
	}
	#news .news_list .news_item {
/*		width: 43vw;*/
		width: 21vw;
		margin-bottom: 1rem;
		padding: 0;
	}
	#news .news_list .news_item .thumb {
		display: block;
		width: 100%;
		height: 14vw;;
	}
	#news .news_list .news_item .thumb.no_image::before {
		width: 100%;
		font-size: 1.8rem;
	}
	#news .news_list .news_item .thumb img {
		width: 100%;
	}
	#news .news_list .news_item .text {
		display: block;
		position: relative;
		width: 100%;
		margin: 0;
		padding: 0.8rem 0.5rem;
	}
	
	#news .news_list.history .news_item {
		width: 100%;
	}
	#news .news_list.history .news_item .text {
		padding: 0.3rem 0.5rem;
		font-size: 12px;
		vertical-align: middle;
	}
}
@media screen and (min-width: 1200px) {
	#news .news_list .news_item {
		width: 256px;
	}
	#news .news_list .news_item .thumb {
		height: 171px;
	}
}


/*  ゲーム　===================*/
/* シリーズボタン */
section#series {
	padding-top: 2vw;
	padding-bottom: 0;
}
#series .series_list {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 100%;
	padding: 0;
}
#series .series_list .list {
	position: relative;
	width: 49%;
	margin-bottom: 2%;
	padding-left: 0;
	border-radius: 20px;
	overflow: hidden;
}
#series .series_list .list a {
/*	width: 100%;*/
}
#series .series_list .list .thumb {
	position: relative;
	line-height: 0;
	font-size: 0;
}
#series .series_list .list .thumb::after {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	content: "";
	background-color: #000;
	opacity: 0.3;
}
#series .series_list .list .text {
	position: absolute;
	width: 100%;
	top: 50%;
	left: 0
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	text-align: center;

	font-size: 4vw;
	color: #000;
	font-weight: bolder;
	
	color: #fff;
}
@media screen and (max-width: 768px) {
	#series .series_list > li:not(:nth-child(even)) {
		margin-right: 2%;
	}
}
@media screen and (min-width: 769px) {
	#series .series_list .list {
		width: 32%;
	}
	#series .series_list > li:not(:nth-of-type(3n)) {
		margin-right: 2%;
	}
	#series .series_list .list .text {
		font-size: 1.3rem;
	}
}
@media screen and (min-width: 1200px) {
	section#series {
		padding-top: 1.5rem;
	}
}

/* ゲームリスト */
#games .title_list {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 100%;
	margin: 0;
	padding: 0;
}
#games .title_list a {
	text-decoration: none;
}
#games .title_list a:hover {
	color: inherit;
}

#games .title_list.sub > li {
	width: 48%;
	background: #fff;
}
#games .title_list.sub > li:not(:nth-child(even)) {
	margin-right: 4%;
}

#games .title_list .list {
	position: relative;
	width: 100%;
	margin-bottom: 4vw;
	padding-left: 0;
}
#games .title_list .list .panel {
	position: relative;
	height: 100%;
	overflow: hidden;
	background: none;
	border: solid 1px #999;
}
@media screen and (max-width: 768px) {
	#games .title_list .list .panel {
		background: none !important;
	}
}
@media screen and (min-width: 769px) {
	#games .title_list .list .panel {
		background-color: #000;
/*		border: solid 1px #999;*/
	}
}
#games .title_list .list .thumb {
	line-height: 0;
/*	border: solid 1px #999;*/
}
#games .title_list.sub .list .thumb {
	height: 44.2vw;
}
#games .title_list .list .detail {
	position: relative;
	width: 100%;
	padding: 2vw 2.6vw;
	background: #fff;
}
#games .title_list .list .detail .info_box {
	position: relative;
}
#games .title_list.main > li .detail .info_box {
	width: 100%;
}
#games .title_list.sub > li .detail .info_box {
	width: 100%;
}

#games .title_list .list .detail .info_box .title {
	margin-bottom: 0.3vw;
	padding: 0;
	font-size: 3vw;
	font-weight: bolder;
}
#games .title_list .list .detail .info_box .date {
	margin-bottom: 1.3vw;
}
#games .title_list .list .detail .info_box .text {
	margin-bottom: 0.6vw;
	font-size: 2vw;
	padding-left: 1vw;
}
#games .title_list .list .detail .info_box .service_name {
	color: #666;
	margin: 1.2vw 0 0.6vw;
	font-size: 2.4vw;
	font-weight: bolder;
}
#games .title_list .list .detail .info_box .pf_list,
#games .title_list .list .detail .info_box .service_list {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	margin: 0;
	padding: 0;
}

.pf_list .pf, .service_list .service {
	width: auto;
	color: #FFF;
	border-radius: 5em;
	font-size: 2vw;
	line-height: 1;
	margin-bottom: 1vw;
	padding: .35em .5em;
	text-align: center;
}
.pf_list.col_3 .pf {
	width: 32%;
}
.service_list .service {
/*	width: 49%;*/
	margin-right: 2%;
	font-size: 1.8vw;
}

.pf_list .pf.switch {
	background: #dc0000;
}
.pf_list .pf.ps4 {
	background: #0078ff;
}
.pf_list .pf.ps5 {
	background: #fff;
	color: #000;
	border: solid 1px #333;
}
.pf_list .pf.steam {
	background: #333;
}
.pf_list .pf.ios {
	background: #888;
}
.pf_list .pf.android {
	background: #28cc00;
}
.pf_list .pf.amazon {
	color: #232f3e;
	font-weight: bolder;
	background: #f8991d;
	border: solid 1px #232f3e;
}
.pf_list .pf.yodobashi {
	color: #fff;
	background: #008000;
	border: solid 1px #005000;
}
.pf_list .pf.other {
	background: #ccc;
	color: #000;
}
.service_list .service.DLga {
	background: #ffe4e1;
	color: #ff4500;
	border: solid 1px #ff4500;
}
.service_list .service.DLvc {
	background: #f0f8ff;
	color: #4169e1;
	border: solid 1px #4169e1;
}
.service_list .service.DLakeaka {
	background: #ffc0cb;
	color: #dc0000;
	border: solid 1px #dc0000;
}

/*
#games .title_list .list .detail .info_box .service_list .service:not(:nth-child(2n)) {
	margin-right: 2%;
}
*/
#games .title_list .list .detail .info_box .pf_list.col_3 .pf:not(:nth-child(3n)) {
	margin-right: 2%;
}
#games .title_list.main > li .detail .info_box .pf_list .pf {
	width: 16%;
}
#games .title_list.main > li .detail .info_box .pf_list .pf:not(:nth-child(6n)) {
	margin-right: 1%;
}
#games .title_list.main > li .detail .info_box .service_list .service {
/*	width: 33%;*/
}
#games .title_list.main > li .detail .info_box .pf_list .pf:not(:nth-child(3n)) {
	margin-right: 1%;
}
@media screen and (min-width: 769px) {
	#games .title_list .list {
		width: 49.5%;
		margin-bottom: 2vw;
	}
	#games .title_list .list:not(:nth-child(even)) {
		margin-right: 1%;
	}
	#games .title_list.sub .list:not(:nth-child(even)) {
		margin-right: 0;
	}
	#games .title_list.sub > li {
		width: 24.25%;
/*		width: 19.2%;*/
	}
	#games .title_list.sub > li.list:not(:nth-child(4n)) {
		margin-right: 1%;
	}
	#games .title_list .list .panel {
		height: 100%;
		background-position: center top;
		background-repeat: no-repeat;
		background-size: cover;
	}
	#games .title_list .list .detail {
		position: absolute;
		bottom: 0;
		left: 0;
		padding: 0.5vw 1vw;
		background: rgba(0, 0, 0, 0.5);
		transition: opacity .5s ease-out, z-index .5s ease-out;
		opacity: 0;
		z-index: -1;
	}
	#games .title_list .list:hover .detail {
		margin-bottom: 0;
		opacity: 1;
		transition: opacity .5s ease-out, z-index .5s ease-out;
		z-index: 1;
	}

	#games .title_list .list .detail .info_box {
		color: #fff;
		margin-right: auto;
		width: 40%;
		z-index: 2;
	}
	#games .title_list.sub .list .thumb {
		height: auto;
	}
	#games .title_list .list .thumb img.hide {
		visibility: hidden;
	}
	#games .title_list .list .detail .info_box .title {
/*		color: #fff;*/
		margin-bottom: 0.3vw;
		font-size: 1.2vw;
	}
	#games .title_list .list .detail .info_box .text {
/*		color: #fff;*/
		margin-bottom: 0.3vw;
		font-size: 1vw;
	}
	#games .title_list .list .detail .info_box .date {
/*		color: #fff;*/
		margin-bottom: 0.6vw;
		font-size: 1vw;
	}
	#games .title_list .list .detail .info_box .service_name {
		color: #ddd;
		margin: 0.6vw 0 0.3vw;
		font-size: 0.9vw;
	}

	.pf_list .pf, .service_list .service {
		font-size: 0.6vw;
		margin-bottom: 0.5vw;
		padding: .6em 1em;
	}
	.pf_list:last-of-type .pf {
		margin-bottom: 0.3vw;
	}
/*
	.service_list .service {
		width: 49%;
		font-size: 0.6vw;
	}
*/
/*
	.service_list .service:not(:nth-child(2n)) {
		margin-right: 2%;
	}
*/
/*
	.pf_list.col_3 .pf {
		width: 32%;
	}
*/
	.pf_list.col_3 .pf:not(:nth-child(3n)) {
		margin-right: 2%;
	}
	#games .title_list.main > li .detail .info_box .pf_list .pf:not(:nth-child(6n)) {
		margin-right: 1%;
	}
	
	#games .title_list .list .panel_bg {
		position: absolute;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		background-clip: content-box;
		background-position: center bottom;
		background-repeat: no-repeat;
		background-size: cover;
		bottom: 0;
		-ms-filter: blur(1px);
		filter: blur(1px);
		z-index: 1;
	}
	#games .title_list .list .panel_bg::before {
		position: absolute;
		display: block;
		width: 100%;
		height: 100%;
		left: 0;
		bottom: 0;
		content: "";
		background: rgba(0, 0, 0, 0.5);
	}
}
@media screen and (min-width: 1200px) {
	#games .title_list .list {
		margin-bottom: 1.7rem;
	}
	#games .title_list .list .detail {
		padding: 0.5rem 0.8rem;
	}
	#games .title_list .list .detail .info_box .title {
		margin-bottom: 0.3rem;
		font-size: 0.8rem;
	}
	#games .title_list .list .detail .info_box .text {
		margin-bottom: 0.3rem;
		font-size: 0.8rem;
	}
	#games .title_list .list .detail .info_box .date {
		margin-bottom: 0.5rem;
		font-size: 0.8rem;
	}

	#games .title_list .list .detail .info_box .service_name {
		margin: 0.3rem 0;
		font-size: 0.7rem;
	}
	.pf_list .pf {
		font-size: 0.5rem;
		margin-bottom: 0.4rem;
	}
	.service_list .service {
		font-size: 0.2rem;
		margin-bottom: 0.4rem;
		padding: 1em;
	}
	.pf_list:last-of-type .pf {
		margin-bottom: 0.25rem;
	}
}

/* Project EGG */
#games .pj_egg {
	position: relative;
	width: 100%;
	border: solid 1px #999;
	background-color: #fff;
	margin-top: 1rem;
	margin-bottom: 2rem;


	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient:vertical;
	-webkit-box-direction:normal;
	-ms-flex-flow:column wrap;
	flex-flow:column wrap;
	font-size: 0;
}
#games .pj_egg .pj_egg_item {
	position: relative;
	display: inline-block;
	width: 100%;
	min-height: 60px;
	padding: 0.5rem;
	background-color: #fff;
}
#games .pj_egg .pj_egg_item .img_egg {
	position: relative;
	display: inline-block;
	width: 125px;
	margin: 0;
	padding: 0;
	vertical-align: middle;
}
#games .pj_egg .pj_egg_item .text {
	position: relative;
	display: inline-block;
	width: calc(100% - 135px);
	margin: 0;
	padding: 0;
	padding-left: 4vw;
	font-size: 14px;
	vertical-align: middle;
}
#games .pj_egg .pj_egg_item .egg_mark {
	position: relative;
	display: inline-block;
	border-radius: 5em;
	font-size: 0.8em;
	line-height: 1;
	margin-bottom: 0.4em;
	padding: .35em 1em;
	text-align: center;
	background: #ccc;
	color: #000;
	vertical-align: middle;
}
@media screen and (min-width: 560px) {
	#games .pj_egg .pj_egg_item .img_egg {
		width: 165px;
	}
	#games .pj_egg .pj_egg_item .text {
		width: calc(100% - 175px);
	}
}


/*  サポート　===================*/

/* 上海サポート -----------------*/
#support .select_box {
	margin: 1vw;
}
/* 上海ゲームの詳細 */
#support .item_list .title {
	position: relative;
	padding: 5px 5px 5px 35px;
	font-size: 15px;
	font-weight: bolder;
	color: #474747;
	background: #ffd98a;
	border-radius: 10px;
}
#support .item_list .title::before {
	position: absolute;
	display: inline-block;
	width: 25px;
	height: 25px;
	padding: 0;
	color: white;
	font-weight: normal;
	text-align: center;
	left: -0.5em;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	content: " ";
	line-height: 25px;
	border: solid 5px #ffa337; 
	border-radius: 50%;
	background: #fff;
}
#support .item_list .details .txt_area {
	margin: 0.5em 0;
}

/* スクリーンショット画像領域 */
#support .item_list .details .screenshot {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient:vertical;
	-webkit-box-direction:normal;
	-ms-flex-flow:column wrap;
	flex-flow:column wrap;
	width: 100%;
	font-size: 0;
}
#support .item_list .details .screenshot .img_item {
	position: relative;
	display: inline-block;
	width: 100%;
	min-height: 60px;
	margin-top: 3vw;
	margin-bottom: 0;
	margin-left: 0;
	margin-right: 0;
	text-align: center;
	background-color: #fff;
}
#support .item_list .details .screenshot .img_item img {
	width: auto;
	max-width: 100%;
	height: auto;
}

/* アコーディオン */
@media screen and (min-width: 560px) {
	#support .select_box {
		margin: 2vw;
	}

	/* 上海ゲームの詳細 */
	#support .item_list .title {
		font-size: 16px;
	}
	
	/* スクリーンショット画像領域 */
	#support .item_list .details .screenshot .img_item {
		margin-top: 1.2rem;
/*		margin-bottom: 1.5rem;*/
	}
}
@media screen and (min-width: 769px) {
	#support .select_box {
		margin: 1.5em;
	}
	#support .item_list .title {
/*		margin-top: 1rem;*/
	}
	/* スクリーンショット画像領域 */
	#support .item_list .details .screenshot {
		-webkit-flex-flow: row wrap;
		-ms-flex-flow: row wrap;
		flex-flow: row wrap;
		align-items: flex-end;
		justify-content: center;
	}
	#support .item_list .details .screenshot .img_item {
		width: auto;
	}
	#support .item_list .details .screenshot .img_item:not(:last-child) {
		margin-right: 4%;
	}
	#support .item_list .details .screenshot .img_item img {
		width: 100%;
		max-width: auto;
		height: auto;
	}
	
	#support .item_list .details .screenshot.col_2 .img_item {
		width: 48%;
		margin-top: 1.2rem;
		margin-bottom: 1.5rem;
	}
	#support .item_list .details .screenshot.col_2 .img_item:not(:nth-child(even)) {
		margin-right: 4%;
	}
	#support .item_list .details .screenshot.col_3 .img_item {
		width: 32%;
	}
	#support .item_list .details .screenshot.col_3 .img_item:not(:nth-child(3n)) {
		margin-right: 2%;
	}
}

/* 上海用サポート　見出し01 */
#support .subheading_01 {
	position: relative;
	display: block;
	margin: 10px auto;
	padding: 0;
}
#support .subheading_01::after {
	position: absolute;
	content: "";
	width: 0;
	height: 3px;
	left: auto;
	right: 0;
	bottom: 0;
	background-color: #0077e6;
	transition-duration: .3s;
}

#support .subheading_01 > span {
	position: relative;
	display: block;
	padding-left: 30px;
	font-size: 16px;
	font-weight: bolder;
	line-height: 38px;
	color: #494949;
	text-decoration: none;
	background: #fff;
	transition-duration: .5s;
}
#support .subheading_01 > span::before {
	display: block;
	content: "";
	position: absolute;
	width: 20px;
	height: 20px;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	background-color: #7db4e6;
	border-radius: 50%;
	transition-duration: .2s;
}
#support .subheading_01 > span::after {
	position: absolute;
	display: block;
	width: 5px;
	height: 5px;
	content: "";
	left: 3px;
	top: 49%;
	border-top: solid 2px #fff;
	border-right: solid 2px #fff;
	transform: rotate(45deg) translateY(-50%);
	transition: all 0.2s ease-in-out;
}

#support .subheading_01 img.icon {
	display: inline-block;
	width: 25px;
	height: 25px;
	margin-right: 8px;
	vertical-align: middle;
}
#support .subheading_01 .text {
	display: inline-block;
	width: calc(100% - 35px);
	vertical-align: middle;
	line-height: 1.2;
}

#support .subheading_01:hover > span {
	transition-duration: .5s;
}
#support .subheading_01:hover > span::before {
	background-color: #b8cfe6;
	transition-duration: .2s;
}

#support .open.subheading_01::after {
	width: calc(100% - 10px);
	left: 10px;
	transition-duration: .3s;
	transition-delay: .2s;
}
#support .open.subheading_01 > span {
	letter-spacing: 2px;
}
#support .open.subheading_01 > span::before {
	height: 100%;
	border-radius: 5px 0 0 5px;
	background-color: #0077e6;
	transition-duration: .2s;
}
#support .open.subheading_01 > span::after {
	border-top: solid 2px #0077e6;
	border-right: solid 2px #0077e6;
	transition: all 0.2s ease-in-out;
}

/* 上海用サポート　見出し02 */
#support .subheading_02 {
	position: relative;
	display: block;
	margin-bottom: 10px;
	padding: 0;
	padding-left: 20px;
	font-size: 15px;
	font-weight: bolder;
	line-height: 1.2;
	color: #494949;
	text-decoration: none;
	background: #fff;
	transition-duration: .5s;
}
#support .subheading_02::before {
	position: absolute;
	display: inline-block;
	content: "";
	width: 7px;
	height: 7px;
	top: 25%;
	left: 0;
	border: solid 1px #494949;
	transform: rotate(45deg);
}

#support .subheading_02:hover::before {
	background-color: #8da0b6;
	border: solid 1px #8da0b6;
	transition-duration: .2s;
}
#support .subheading_02:hover {
	color: #8da0b6;
	transition-duration: .2s;
}

#support .open.subheading_02 {
	color: #003566;
	transition-duration: .2s;
}
#support .open.subheading_02::before {
	background-color: #003566;
	border: solid 1px #003566;
	transition-duration: .2s;
}

@media screen and (min-width: 560px) {
	/* 上海用サポート　見出し01 */
	#support .subheading_01 > span {
		padding-left: 40px;
		font-size: 18px;
	}
	#support .subheading_01 > span::before {
		width: 25px;
		height: 25px;
	}
	#support .subheading_01 > span::after {
		width: 8px;
		height: 8px;
		left: 3px;
		top: 45%;
	}
	#support .subheading_01 img.icon {
		width: 30px;
		height: 30px;
	}
	#support .subheading_01 .text {
		width: calc(100% - 45px);
	}

	/* 上海用サポート　見出し02 */
	#support .subheading_02 {
		padding-left: 30px;
		font-size: 16px;
	}
	#support .subheading_02::before {
		width: 10px;
		height: 10px;
		top: 27%;
		left: 0;
	}
}


/*-- 問い合わせと注意事項 ----*/
#contact {
	width: 95%;
	height: auto;
	margin: 0 auto;
}
#contact > section {
	display: none;
	margin: 0 auto;
	opacity: 0;
	transition: all 1s ease;
}
#contact > section.open {
	display: block;
	opacity: 1;
	transition: all 1s ease;
}
/* 上海用サポート　見出し03 */
#contact h3 {
	position: relative;
	margin: 20px auto;
	padding-top: 2px;
	padding-bottom: 2px;
	font-size: 16px;
	text-align: center;
	border-top: 1px solid #0066FF;
	border-bottom: 1px solid #0066FF;
}
#contact h3 > span {
	position: relative;
	display: inline-block;
	width: 100%;
	color: #fff;
	font-weight: normal;
	background-color: #0099FF;
	vertical-align: middle;
	line-height: 30px;
}
#contact h3::after,
#contact h3::before {
	position: absolute;
	content: "◆";
	color: #fff;
	font-size: 20px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
}
#contact h3::before {
	left: 4px;
}
#contact h3::after {
	right: 4px;
}

/* 上海用サポート　見出し04 */
#contact h5 {
	position: relative;
	margin-top: 1.5em;
	padding-left: 1.8em;
	font-size: 16px;
	line-height: 24px;
	color: #333;
	line-height: 24px;
}
#contact h5::after {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	content: '';
	width: 16px;
	height: 16px;
	border: solid 4px #446688;
	border-radius: 100%;
}


/* 法令関連（アプリ用汎用ページ）　===================*/
#privacy #main_text h1.title {
	font-size: 4.5vw;
	line-height: 4.5vw;
}
#privacy dl > dt,
#terms dl > dt {
	font-size: 1.2rem;
}
#privacy dl > dd dl > dt,
#terms dl > dd dl > dt {
	font-size: 1rem;
}
#privacy dl > dd dl > dd dl > dt,
#terms dl > dd dl > dd dl > dt {
	padding-left: 1.5vw;
	padding-right: 1.5vw;
	font-size: 100%;
}
#privacy .destination .flex_container {
	margin-left: 1rem;
	margin-bottom: 0.2rem;
}
@media screen and (max-width: 480px) {
	#privacy .destination .flex_container {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-flow: column nowrap;
		flex-flow: column nowrap;
	}
	#privacy .destination .flex_container > .flex_item:not(:first-child) {
		padding-left: 1rem;
		margin-bottom: 0.3rem;
	}
}
@media screen and (min-width: 769px) {
	#privacy #main_text {
		height: 200px;
	}
	#privacy #main_text h1.title {
		font-size: 30px;
		line-height: 36px;
	}
}

/*  フッター　===================*/
footer .footer_nav .footer_logo {
	margin-bottom: 1rem;
}
footer .footer_nav .link_list {
	position: relative;
	color: rgba(255,255,255,0.7);
	margin: 0;
	padding: 0;
}
footer .footer_nav .link_list.main_link {
	margin: 1rem 0;
	font-size: 15px;
}
footer .footer_nav .link_list.sub_link {
	margin: 0.7rem 0;
	font-size: 13px;
}
footer .footer_nav .link_list.sns_link {
	margin: 0.7rem 0;
	font-size: 15px;
}
footer .footer_nav .link_list.sns_link img {
	width: auto;
	max-width: 100%;
	height: auto;
	vertical-align:text-bottom;
}
footer .footer_nav .link_list a {
	display: inline-block;
	text-decoration: none;
	width: auto;
	height: auto;
}
footer .footer_nav .link_list li {
	position: relative;
	display: inline-block;
	padding-left: 0;
}
footer .footer_nav .link_list:not(.sns_link) li:not(:first-of-type)::before {
	position: relative;
	content: "|";
	margin: 0 2vw;
}
footer .footer_nav .link_list.sns_link li:not(:first-of-type)::before {
	position: relative;
	content: "";
	margin: 0 1vw;
}
.copyright, .trademark {
	position: relative;
	color: rgba(255,255,255,0.5);
	font-size: 11px;
	letter-spacing: 1.5px;
}
@media screen and (min-width: 769px) {
	footer .footer_nav .footer_logo {
		margin-bottom: 1.5rem;
	}
	footer .footer_nav .link_list li:not(:first-of-type)::before {
		margin: 0 1rem;
	}
	footer .footer_nav .link_list.main_link {
		margin: 1rem 0;
		font-size: 1rem;
	}
	footer .footer_nav .link_list.sub_link {
		margin: 0.5rem 0;
		font-size: 14px;
	}
	.copyright, .trademark {
		font-size: 13px;
	}
}



/* ボタン ---------------*/
.button_area {
	margin-top: 6vw;
}
@media screen and (min-width: 560px) {
	.button_area {
		margin-top: 4vw;
	}
}
@media screen and (min-width: 769px) {
	.button_area {
		margin-top: 1.5vw;
	}
}
@media screen and (min-width: 1200px) {
	.button_area {
		margin-top: 1.5rem;
	}
}

.button {
	display: inline-block;
	font-size: 1rem;
	line-height: 1;
	padding: 1rem 2rem;
	font-weight: bold;
	text-decoration: none;
}
.button.standard {
	width: 60%;
	color: #fff;
	font-size: 3.2vw;
	line-height: 1;
	padding: 4vw 2vw;
	border-radius: 5em;
	background-color: #668ad8;
}
.button.square {
	width: auto;
	color: #fff;
	border: solid 2px rgba(255, 255, 255, 0.75);
	background-color: rgba(0,0,0,0.3);
	transition: all .45s;
	-webkit-transition: all .45s;
}
.button.square:hover {
	border-color: rgb(204, 0, 0);
	background-color: rgb(204, 0, 0);
}

@media screen and (min-width: 560px) {
	.button.standard {
		font-size: 2.5vw;
		padding: 3vw 1.5vw;
	}
}
@media screen and (min-width: 769px) {
	.button.standard {
		width: 20%;
		min-width: 360px;
		font-size: 2vw;
		padding: 2vw 1vw;
	}
	.button.standard:hover {
		opacity: .8;
	}
}
@media screen and (min-width: 1200px) {
	.button.standard {
		width: 20%;
		min-width: 360px;
		font-size: 18px;
		padding: 1rem 1rem;
	}
}


/*-- ボタン ----*/
/* 内部リンク */
button, button.type01,
.button, .button.type01 {
	position: relative;
	display: inline-block;
/*	margin: 18px 10px;*/
	padding: 12px 30px;
	color: #fff;
	font-size: 14px;
	font-family: inherit;
	vertical-align: middle;
	text-align: center;
	text-decoration: none;
	letter-spacing: 1px;
	line-height: 20px;
	border: 0;
	border-radius: 4px;
	background-color: #09f;
	z-index: 100;
}
button:hover,
.button:hover {
	opacity: .5;
}
button:active,
.button:active {
	bottom: -1px;
}

/* 外部リンク */
button type02,
.button.type02 {
	margin: 5px;
	padding: 1em;
	color: #09f;
	box-shadow:
		0 0 0 1px #09f,
		0 0 0 4px #FFF,
		0 0 0 5px #09f;
	background-color: #fff;
	font-weight: bolder;
}
button.type02:hover,
.button.type02:hover {
	opacity: .5;
	color: #fff;
	box-shadow:
		0 0 0 1px #09f,
		0 0 0 3px #FFF,
		0 0 0 5px #09f;
	background-color: #09f;
}
button.type02:active,
.button.type02:active {
	box-shadow: inset 
		0 0 0 1px #09f,
		0 0 0 3px #FFF,
		0 0 0 5px #09f;
	position: relative;
	bottom: -1px;
}

/* 戻るボタン */
button type03,
.button.type03 {
	margin: 10px 10px;
	padding: 0;
	padding-left: 25px;
	color: #00f;
	line-height: normal;
	border-radius: 0;
	background-color: transparent;
}
button.type03::before,
.button.type03::before {
	position: absolute;
	content: '';
	bottom: -3px;
	left: 0;
	width: 0;
	height: 0;
	border: none;
	border-left: solid 15px transparent;
	border-bottom: solid 15px rgb(119, 195, 223);
}
button.type03::after,
.button.type03::after {
	position: absolute;
	content: '';
	bottom: -3px;
	left: 10px;
	width: 100%;
	border-bottom: solid 3px rgb(119, 195, 223);
}

