@charset "utf-8";

/*==========================================================
	個別設定 (ユーザーログイン only style)
==========================================================*/
html,body{
	height: 100%;
	min-height: 100%;
}
/*==========================================================
	枠：背景
==========================================================*/
.rhombus_out{
	position: absolute;
	top: 0px; bottom: 30%; left: -20%; right: 0px;
	width: 640px; height: 640px;
	margin: auto;
	transform: rotate(30deg);
	border: solid 80px #106516;
}
.rhombus_in{
	position: absolute;
	top: 50%; bottom: 0px; left: 10%; right: 0px;
	width: 500px; height: 500px;
	margin: auto;
	transform: rotate(30deg);
	border: solid 80px #106516;
}
/*==========================================================
	ユーザーログイン：枠
==========================================================*/
.contents_login{
	position: absolute;
	top: 0px; bottom: 0px; left: 0px; right: 0px;
	width: 500px; height: 550px;
	margin: auto;
	padding: 60px 20px;
	text-align: center;
	-webkit-box-shadow: inset 1px 1px 0px 0px rgba(100,100,100,0.2), inset -1px -1px 0px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: inset 1px 1px 0px 0px rgba(100,100,100,0.2), inset -1px -1px 0px 0px rgba(0,0,0,0.2);
	box-shadow: inset 1px 1px 0px 0px rgba(100,100,100,0.2), inset -1px -1px 0px 0px rgba(0,0,0,0.2);
	background-color: rgba(245,245,245,0.6);
}
.contents_login h1{
	width: 100%; height: 40px;
	margin: 0px auto 80px auto;
	line-height: 40px;
	color: #106516;
	font-size: 34px;
}
/*==========================================================
	ユーザーログイン：ＩＤ／ＰＷ入力エリア
==========================================================*/
.contents_login .input_row{
	position: relative;
}
.contents_login .input_row label{
	position: absolute;
	top: 0px; bottom: 0px; left: 0px;
	width: 80px; height: 80px;
	margin: auto 0px;
	text-align: center;
	line-height: 80px;
}
.contents_login .input_row label:before {
	color: #106516;
	font-size: 40px;
	opacity: 0.4;
}
.contents_login input[type="text"],
.contents_login input[type="password"]{
	display: block;
	width: 100%; height: 80px;
	margin: 0px 0px 20px 0px;
	padding: 0px 0px 0px 70px;
	line-height: 80px;
	color: #000000;
	font-size: 30px;
	font-weight: 300;
	font-family: 'Lato', sans-serif;
	box-sizing: border-box;
	outline: none;
	border-radius: 40px;
	-webkit-box-shadow: inset 1px 1px 0px 0px rgba(255,255,255,0.2), inset -1px -1px 0px 0px rgba(0,0,0,0.2);
	-moz-box-shadow: inset 1px 1px 0px 0px rgba(255,255,255,0.2), inset -1px -1px 0px 0px rgba(0,0,0,0.2);
	box-shadow: inset 1px 1px 0px 0px rgba(255,255,255,0.2), inset -1px -1px 0px 0px rgba(0,0,0,0.2);
	border-style: solid;
	border-color: #106516;
	border-width: 2px 0px 0px 2px;
	background-color: #FFFFFF;
}
.contents_login input[type="text"]:focus + label:before,
.contents_login input[type="password"]:focus + label:before{
	opacity: 1;
}
/*==========================================================
	ユーザーログイン：ログインボタン
==========================================================*/
.contents_login input[type="submit"]{
	display: block;
	width: 200px; height: 60px;
	margin: 50px auto 0px auto;
	line-height: 60px;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #FFFFFF;
	font-size: 20px;
	font-weight: 600;
	font-family: 'Lato', sans-serif;
	border: 0px;
	outline: none;
	background-color: #106516;
	border-radius: 60px;
	-webkit-appearance: none;
}
.contents_login input[type="submit"]:hover{
  background-color: #106516;
}
.contents_login input[type="submit"]:active{
  background-color: #106516;
}
