@charset "UTF-8";
*{
	margin:0;
	padding:0;
	
	font-size:18px;
	border-sizing:border-box;
	-webkit-border-sizing:border-box;
	-ms-border-sizing:border-box;
	-ms-touch-action:none;
}

body {
	-webkit-user-select:none;
	-webkit-text-size-adjust:none;
	width:100%;
	height:100%;
	background-image:url("./background01.png");
	background-size:cover;
	object-fit:cover;
}

div.dummy {
	height:20%;
}

div.loginWrapper {
	width:500px;
	max-height:480px;
	margin:0 auto;
	padding:20px 0;
	border-radius:7px;
	background-color:rgba(255,255,255,0.8);
}

div.logo {
	width:100%;
	text-align:center;
}

div.item {
	width:90%;
	margin:5% 5%;
	padding:1% 1%;
	border:2px solid #BFBFBF;
	border-radius:7px;
	background-color:#F7F7F7;
}

div.loginItem {
	width:90%;
	margin:2% 5%;
}

#language {
	width:300px;
}

#loginId {
	width:300px;
}

#loginPassword {
	width:300px;
}

a.loginBtn {
	/* ボタンの位置 */
	/* position:absolute;
	right:290px;
	top:50px; */
	
	/* ボタンのサイズ */
	display:block;
	width:180px;
	height:38px;
	
	/* ボタンの装飾 */
	background-color:#969696;
	border:2px solid #646464;
	border-radius:7px;
	box-sizing:border-box;
	cursor:pointer;
	
	text-align:center;
	line-height:38px;
	
	color:#fff;
	text-decoration:none;
	font-size:18px;
	font-weight:bold;
}

a.loginBtn:hover{
	background-color:#0962c8;
	border:2px solid #082a79;
}

a.loginBtn img{
	display:inline-block;
	width:19px;
	height:23px;
	vertical-align:middle;
	
	margin-top:0px;
	margin-bottom:6px;
	margin-left:0px;
	margin-right:10px;
}

button.btn {
	width:auto;
	padding:0;
	margin:0;
	background:none;
	border:0;
	font-size:0;
	line-height:0;
	overflow:visible;
	cursor:pointer;
}

div.errorMessage {
	width:100%;
	text-align:center;
	font-weight:bold;
}

div.errorMessage.error {
	color:#f00;
}

div.time {
	margin:1% auto 0;
	width:500px;
	height:35px;
	vertical-align:middle;
	color:#fff;
	font-size:18pt;
	text-align:center;
	border-radius:7px;
	background-color:rgba(0,0,0,0.6);
}


a.offline{
	display:inline-block;
	width:98px;
	height:28px;
	background-color:#4FB5FD;
	line-height:28px;
	border:2px solid #3772D7;
	border-radius:5px;
	color:#fff;
	font-weight:bold;
	font-size:13px;
	text-decoration: none;
	
}
a.offline:hover{
	background-color:#0962C8;
	border:2px solid #082A79;
	cursor: pointer;
}


div.config{
	position:absolute;
	right:10px;
	width:100px;
	height:30px;
	margin-top:33px;
}

a.config{
	display:inline-block;
	width:98px;
	height:28px;
	background-color:#4FB5FD;
	line-height:28px;
	border:2px solid #3772D7;
	border-radius:5px;
	color:#fff;
	font-weight:bold;
	font-size:13px;
	text-decoration: none;
}
a.config:hover{
	background-color:#0962C8;
	border:2px solid #082A79;
	cursor: pointer;
}

