html,body{
    hight: 100%;
}
body{
	-webkit-text-size-adjust: 100%;
	font-family: "メイリオ", Meiryo, Osaka, "ＭＳ ゴシック", "MS Gothic", sans-serif, "小塚ゴシック Pro M", "小塚ゴシック Pro R", "小塚ゴシック Std M", "小塚ゴシック Std R", "ヒラギノ角ゴ3";
    margin: 0;
    padding: 0;
    positiion: relative;
    max-width: 500px;   /*中央配置するボックスの横幅*/
    max-height: 250px;  /*中央配置するボックスの縦幅*/
	overflow: hidden;
}
.login_page{
    margin-top: -125px;  /*ネガティブマージンでずらす*/
    position: absolute;     /*body要素に対して絶対配置*/
    top: 50%;       /*上端を中央に*/
    width: 100%;   /*横幅*/
    height: 100%;  /*縦幅*/
	text-align: center;
}
.login_title{}
.account_area{}
.login_item{
	overflow: hidden;
	margin-bottom: 20px;
}
.login_label{
	display: inline-block;
	width: 120px;
}
.login_input{
	width:200px;
	
}
input[type="submit"]{
  background: #000;
  border: none;
  color: #FFF;
  font-size:17px;
  font-weight:bold;
  padding: 5px 20px;
}
.logim_error_messages{
	margin-top: 20px;
	font-weight: bold;
	color: #FF0004;
}

.login_footer{
	/*margin-top: -125px;  /*ネガティブマージンでずらす*/
    position: absolute;     /*body要素に対して絶対配置*/
	bottom: 5px;
    width: 100%;   /*横幅*/
    height: 20px;  /*縦幅*/
	font-size: 12px;
	text-align: center;
}

