@charset "utf-8";

header {
	position:fixed;
	z-index: 99;
	height: 50px;
	width: 100%;
	top: 0;
	left: 0;
	text-align: center;
	background: linear-gradient(to bottom, #0008 0%,#0000 100%);
	color: white;
}
header p{
	line-height: 1;
	margin: 0.5em 0 0 0 ;
}


footer {
	position:fixed;
	z-index: 99;
	height: 50px;
	width: 100%;
	bottom: 0;
	left: 0;
	text-align: center;
	background: linear-gradient(to bottom, #0000 0%,#0008 100%);
	color: white;
}
footer p{
	line-height: 1;
	margin: 0.5em 0 0 0 ;
}

.body-wrapper:before{
	position:fixed;
	left: 0;
	top: 0;
	content: ' ';
	height:100vh;
	width:100vw;
	z-index:-999;

	background: linear-gradient(to bottom, #1e5799 0%,#7db9e8 75%,#7db9e8 100%);
}

.container {
	display: flex;
	justify-content: center;
	align-items: center;
}

section#main{
	text-align: center;
}
.item {
	display: inline-block;
	position: relative;
	width: 450px;
	height: 450px;
	margin: auto;
}

.item>img{
	user-select: none;
	border-radius: 30px;
	width: 300px;
	height: 300px;
	margin: 75px;
	transition: all 0.2s;
	box-shadow: 0 0 45px #fff;
	cursor: pointer;
}

.item>img:hover{
	width: 350px;
	height: 350px;
	margin: 50px;
}
.modal-window {
	user-select: unset;
	background: url("../img/bg.png") center;
	border-radius: 3vw;
	position: fixed;
	top: 120vh;
	transition: top 0.175s;
	z-index: 999;
}

.modal-window {
	width: 80%;
	height: 60vh;
	left: 0;
	right: 0;
	margin: auto;
}
.modal-window:after {
	clear: both;
}

.modal-window .modal-left {
	display: inline-block;
	width: 40%;
	height: 60vh;
	float: left;
	position: relative;
	/* margin: 30px; */
}
.modal-window .modal-left img{
	display: inline;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	max-width: 30vw;
	max-height: 45vh;
}
.modal-window .modal-right {
	display: inline-block;
	width: 50%;
	height: 60vh;
	position: relative;
}
.modal-window .modal-right .game-title {
	font-weight: bold;
	font-size: 1.2rem;
	margin-top: 4vh;
	margin-bottom: 2vh;
}
.modal-window .modal-right .modal-text {
	height: 6em;
	overflow-y: auto;
	text-align: left;
}
.modal-window-buttons {
}

.modal-window-buttons a,
.modal-window-buttons span{
	padding: 0.5em;
	width: 60%;
	margin-bottom: 0.4em;
	text-decoration: none;
	color: white;
	border-radius: 0.5em;
	font-weight: bold;
	display: inline-block;
	background: linear-gradient(to bottom, #999 0%,#333 100%);
}
.modal-window-buttons a.trial-dl{
	background: linear-gradient(to bottom, #096 0%,#032 100%);
}
.modal-window-buttons a.updater-dl{
	background: linear-gradient(to bottom, #906 0%,#302 100%);
}
.modal-window-buttons a.buy-link{
	background: linear-gradient(to bottom, #069 0%,#023 100%);
}
.modal-window-buttons a.special-page{
	background: linear-gradient(to bottom, #960 0%,#320 100%);
}
.modal-window-buttons a.trial-dl:hover{
	background: linear-gradient(to bottom, #0c8 0%,#032 100%);
}
.modal-window-buttons a.updater-dl:hover{
	background: linear-gradient(to bottom, #c08 0%,#302 100%);
}
.modal-window-buttons a.buy-link:hover{
	background: linear-gradient(to bottom, #08c 0%,#023 100%);
}
.modal-window-buttons a.special-page:hover{
	background: linear-gradient(to bottom, #c80 0%,#320 100%);
}
.modal-window-buttons a.trial-dl:active{
	background: linear-gradient(to bottom, #032 0%, #0c8 100%);
}
.modal-window-buttons a.updater-dl:active{
	background: linear-gradient(to bottom, #302 0%, #c08 100%);
}
.modal-window-buttons a.buy-link:active{
	background: linear-gradient(to bottom, #023 0%,#08c 100%);
}
.modal-window-buttons a.special-page:active{
	background: linear-gradient(to bottom, #320 0%, #c80 100%);
}

.modal-window-buttons .under-construction {
	cursor: default;
	background: linear-gradient(to bottom, #999 0%,#333 100%) !important;
	display: inline-block;
}
.modal-window-buttons .under-construction:before, 
.modal-window-buttons .under-construction:after {
	position: absolute;
	background: #ff0;
	border: 2px solid #000;
	color: #000;
	font-size: 0.6em;
	text-align: center;
	content: "*** 工事中 *** Under Construction *** 工事中 *** Under Construction ***";
	width: 50%;
	opacity: 0.6;
	height: 1.6em;
	overflow-y: hidden;
	word-break: break-all;
}
.modal-window-buttons .under-construction:before{
	transform: rotate(3deg) translateY(-1em);
	left: 35%;
}
.modal-window-buttons .under-construction:after {
	transform: rotate(-2deg) translateY(1.7em);
	left: 15%;
}
.modal-window-killer {
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	z-index: -999;
	background: #000;
	opacity: 0;
	transition: opacity 0.3s;
}