@charset "utf-8";

/*==========================================================
	RESET
==========================================================*/
html,body,h1,h2,h3,h4,h5,h6,p,ul,ol,li,dl,dt,dd,table,th,td,form,fieldset,object,blockquote{
	margin: 0px;
	padding: 0px;
	font-size: 100%;
	box-sizing: border-box;
	vertical-align: middle;
}
body{
	line-height: 1em;
	-webkit-text-size-adjust: none;
}
img{
	border: 0px;
	vertical-align: bottom;
}
ul,ol,li{
	list-style: none;
}
table{
	border-spacing: 0px;
	empty-cells: show;
}
article,section,div{
	box-sizing: border-box;
}
/*==========================================================
	共通設定 (Primary style)
==========================================================*/
body{
	width: 100%;
	font-size: 12px;
	line-height: 1.4em;
	color: #000000;
	font-family: '游ゴシック','YuGothic','ヒラギノ角ゴ Pro','Hiragino Kaku Gothic Pro','メイリオ','Meiryo', sans-serif;
	background-color: #FFFFFF;
	overflow-x: hidden;
}
a:link{
	color: #4C4C4C;
	text-decoration: none;
}
a:visited{
	color: #4C4C4C;
	text-decoration: none;
}
a:hover{
	color: #4C4C4C;
	text-decoration: none;
}
a:active{
	color: #4C4C4C;
	text-decoration: none;
}
/*==========================================================
	全体
==========================================================*/
.main{
	position: relative;
	width: 100%; height: 100%;
	margin: 0px auto;
	padding: 200px 0px 0px 0px;
	background-color: #F2F2F2;
}



/*==========================================================
	ログインフォーム
==========================================================*/
.login_form{
	position: absolute;
	left: 0px; right: 0px;
	width: 500px;
	margin: 50px auto;
	padding: 40px 30px 20px 30px;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	box-shadow: 0px 1px 0px #CFCFCF;
	background-color: #FAFAFA;
}
h4{
	width: 100%; height: 50px;
	margin-bottom: 20px;
	line-height: 50px;
	text-align: center;
	font-size: 24px;
	border-bottom: solid 1px #000000;
}
p{
	width: 100%; height: 20px;
	margin: 10px auto 30px auto;
	line-height: 20px;
	text-align: center;
	font-size: 16px;
}
.form_control{
	width: 100%; height: 50px;
	margin: 10px 0px;
	padding: 0px 0px 0px 5px;
	line-height: 50px;
	letter-spacing: 0.01em;
	font-size: 20px;
	font-family: 'Lato', sans-serif;
	border-radius: 8px;
	-webkit-border-radius: 8px;
	-moz-border-radius: 8px;
}
.wrapper{
	margin: 30px auto 5px auto;
	text-align: center;
}
#login_button{
	cursor: pointer;
	width: 120px; height: 40px;
	line-height: 40px;
	letter-spacing: 0.2em;
	color: #FFFFFF;
	font-size: 16px;
	font-weight: bold;
	border: 1px solid #DDDDDD;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	background-color: #414141;
}
#login_button:hover{
	background-color: #000000;
}
