@charset "utf-8";
/* CSS Document */

@charset "utf-8";

/*　リセット　------------------------------------------　*/

*{
	margin: 0;
	padding: 0;
	line-height: 1;
	text-decoration:none;
	font-size:100%;
	font-style:normal;
	font-weight:normal;

}

/*　ベース　------------------------------------------　*/

html{
	height: 100vh
	}
body {
	font-family: "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3";
	font-size: 16px;
	background-color: #F60;
	color: #fff;
	padding: 0;
	width:100%;
	height: 100vh;
	background: radial-gradient(#f90,#f60);
	} 
a:link {
	color: #fff;
	}


/*　フィールド　------------------------------------------　*/


#wrapper{
	width: 100%;
	min-height: 100vh;
}
#header{
	height: 100px;
	}
#contents {
	text-align: center;
	width: 100%;
	height: auto;
	overflow: hidden;
	}
#footer {
	text-align: center;
	margin-top: 60px;
	}
#contents p {
	line-height: 1.4em;
	margin-bottom: 12px;
	}
form{
	margin: 60px 0;
	}
label{
	margin-right: 1em;
	}
input{
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: none;
  border: none;
  width: 100%;
	padding: 0.6em;
	margin: 3px 0;
	border-radius: 5px;
	}
input:focus {
  border: none;
  box-shadow: none;
  outline: none;
}
div.submit{
	width: 100px;
	margin: 0 auto;
	}
input.mumber,
input.password {
	width: 200px;
}
input.btnLogin {
	font-size: 14px;
	color: #fff;
	background-color: #333;
	border: 0px;
	display: block;
	height: 32px;
	width: 120px;
	clear: both;
	text-align: center;
	margin-top: 6px;
	margin-bottom: 6px;
	cursor: hand;
}
input.btnLogin:hover {
	background-color: #f60;
}
#contents #secured {
	margin-top: 24px
	margin-bottom: 12px;
	text-align: center;
	}
#contents h1 {
	font-weight: bold;
	font-size: 24px;
	line-height: 1.5em;
	margin-bottom: 24px;
	}
#contents h2 {
	padding-bottom: 12px;
	line-height: 19px;
	text-align: center;
	}
div.error_message,
div.message {
	color: #FF0000;
	padding-top: 12px;
}

