@charset "shift_jis";

body {
	font-family: Verdana,"MS PGothic","Osaka",Arial,sans-serif;
}

/* ログインフォーム */
div#form {
	width: 85%;
	margin: 2px auto;
	padding: 4px;
	border: 1px solid #666;
	-webkit-border-radius: 6;
	-moz-border-radius: 6;
	border-radius: 6px;
	-webkit-box-shadow: 0px 1px 3px #666666;
	-moz-box-shadow: 0px 1px 3px #666666;
	box-shadow: 0px 1px 3px #666666;
	color: #4d4d4d;
	font-size: 100%;
	background: #fff;
	padding: 10px 20px 10px 20px;
	border: solid #1f628d 1px;
	text-decoration: none;
}
p.form-ttl {
	color: #004080;
	text-align: center;
	font-size: 140%;

}
p.submit {
	text-align: center;
}
p.pass {
	margin: 0.5em 0;
}
p.pass input[type="password"] {
	width: 35%;
	padding: 4px;
}

/* ボタン */






div#form:hover {
  text-decoration: none;
}

/* エラー画面 */
div#err-box {
	text-align: center;
	width: 90%;
	margin: 3em auto;
	border-top: 3px double #499dd6;
	border-bottom: 3px double #499dd6;
	padding: 1.2em;
}

div#err-box p {
	color: #333333;
}
/*submitボタンの設定*/
input[type="submit"],
input[type="button"],
input[type="reset"] {
	width: 90px;	/*ボタン幅*/
	padding: 4px;	/*ボタン内の余白*/
	margin-bottom: 2px;
	border: 1px solid #999;	/*枠線の幅、線種、色*/
	border-radius: 30px;	/*角丸のサイズ*/
	background-color: #e9f7f6;	/*背景色*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#FFF), to(#e3e3e3));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#FFF, #e3e3e3);	/*同上*/
	background-image: linear-gradient(#FFF, #e3e3e3);			/*同上*/
	-webkit-box-shadow:  0px 2px 5px #bebebe;	/*影の設定。それぞれ右へ、下へ、ぼかし幅、色の設定。*/
	box-shadow: 0px 2px 5px #bebebe;			/*同上*/
}
/*submitボタンのマウスオン時の設定*/
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {
	background-image: -webkit-gradient(linear, left top, left bottom, from(#e3e3e3), to(#FFF));
	background-image: -webkit-linear-gradient(#e3e3e3, #FFF);
	background-image: linear-gradient(#e3e3e3, #FFF);
}
