.login_box{
	position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
	.login_box .form_box{
		position: absolute;
	    top: 0;
	    bottom: 0;
	    left: 0;
	    right: 0;
	    margin: auto 30px;
	    height: 400px;
	    text-align: center;
	}
	.login_box img{
		margin: 40px auto 20px;
	    display: block;
	}
	.login_box input[type="text"],
	.login_box input[type="password"]{
		border: 2px solid #e5e5e5;
		border-radius: 2px;
		color: #444;
		display: block;
		font-size: 13px;
		width: 320px;
		height: 42px;
		line-height: 42px;
		margin: 20px auto;
		padding-left: 12px;
	}
	.login_box input[type="button"]{
		width: 200px;
	}
	.login_box a{
		color: #ff6928;
		display: block;
		font-size: 12px;
		text-align: center;
		text-decoration: underline;
		margin: 20px auto;
	}
    #store_name {
		display: none;
		margin: 0 auto 20px;
		text-align: left;
		width: 320px
	}

/*------------------------------------*
スマホ
/*------------------------------------*/
@media screen and (max-width:600px) { /*600px以下*/
	/*
	ログイン
	*/
	.login_box input[type="text"],
	.login_box input[type="password"]{
		width: 280px;
	}

	#store_name {
		display: none;
		margin: 0 auto 20px;
		text-align: left;
		width: 280px
	}
}