@charset "utf-8";

/*==========================================================
	個別設定 (ユーザーログイン only style)
==========================================================*/
html,body{
	height: 100%;
	min-height: 100%;
}
body{
	max-width: 640px;
	margin: 0px auto !important;
}
/*==========================================================
	コンテンツメイン
==========================================================*/
#main{
	position: relative;
	width: 100%; height: 100%;
	margin: 0px auto;
	background-color: #545472;
	overflow: hidden;
}
/*==========================================================
	ユーザーログイン：枠
==========================================================*/
.contents_login{
	position: absolute;
	top: 0px; bottom: 0px; left: 0px; right: 0px;
	width: 460px; height: 550px;
	margin: auto;
	padding: 60px 0px;
	text-align: center;
	color: #DEDEED;
	border-radius: 10px;
	background-color: #7987C4;
}
.contents_login h1{
	position: relative;
	width: 100%; height: 100px;
	margin: 0px auto 30px auto;
	line-height: 100px;
	font-size: 100px;
	font-weight: 400;
	font-family: 'ostrich-sans-medium';
}
.contents_login h1:after{
	content: '◆';
	display: block;
	position: absolute;
	bottom: -20px; left: 0px; right: 0px;
	width: 20px; height: 20px;
	margin: 0px auto;
	line-height: 20px;
	font-size: 20px;
}
.contents_login p{
	width: 100%; height: auto;
	margin: 0px auto;
	line-height: 1.8em;
	font-size: 20px;
}
.contents_login p span{
	letter-spacing: 1px;
	font-size: 24px;
	font-weight: 300;
	font-family: 'ostrich-sans-medium';
}
/*==========================================================
	ユーザーログイン：ＩＤ／ＰＷ入力エリア
==========================================================*/
.contents_login .input_row{
	position: relative;
	margin: 50px auto 0px auto;
}
.contents_login .input_row span{
	display: block;
	width: 240px; height: 30px;
	margin: 0px auto 5px auto;
	line-height: 30px;
	text-align: left;
	color: #DEDEED;
	font-size: 26px;
	font-weight: 300;
	font-family: 'ostrich-sans-medium';
}
.contents_login .input_row input[type="text"]{
	display: block;
	width: 240px; height: 60px;
	margin: 0px auto 20px auto;
	padding: 15px 10px 5px 10px;
	color: #212121;
	font-size: 40px;
	font-weight: 400;
	font-family: 'ostrich-sans-medium';
	border: none;
	box-sizing: border-box;
	background-color: #FCFCFC;
}
/*==========================================================
	ユーザーログイン：ログインボタン
==========================================================*/
.contents_login input[type="submit"]{
	display: block;
	width: 240px; height: 60px;
	margin: 20px auto 0px auto;
	line-height: 66px;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 2px;
	color: #DEDEED;
	font-size: 26px;
	font-weight: 600;
	font-family: 'ostrich-sans-black';
	border: 0px;
	outline: none;
	border-radius: 5px;
	background-color: #545472;
	-webkit-appearance: none;
}
.contents_login input[type="submit"]:hover{
  background-color: #707070;
}
.contents_login input[type="submit"]:active{
  background-color: #707070;
}
