/* -----------------------------------------------
 * 管理ページ　ログイン用
 * ----------------------------------------------- */

*{
	box-sizing:border-box;
}
html { font-size: 62.5%; }
body,
button,
input,
select,
optgroup,
textarea {
	color: #000;
	font-family:sans-serif;
}
html,
body{
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	background-color: #ffffff;
}

body{
	font-size: 15px;
	font-size: 1.5rem;
	line-height:1.5;
	background-color: #dbd4ba;
}



div{
	margin: 0;
	padding: 0;
}

#wrapper{
	width:100%;
	height:100%;
	display:flex;
	align-items: center;
	justify-content: center;
}

#content{
	width:100%;
	max-width: 400px;
/* 	background:#dbd4ba; */
}
#content-inner{
	padding:30px 40px;
}

#content-inner h1{
	font-size:2.6rem;
	font-weight:normal;
	text-align:center;
	font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
	margin-bottom:13px;
}
ul.input{
	padding:0px;
	margin:0px;
	list-style:none;
	border-radius:5px;
	border:1px solid rgba(0,0,0,0.25);
	margin-bottom:25px;
	overflow:hidden;
}
ul.input input{
	width:100%;
	font-size:1.6rem;
	font-weight:bold;
}
ul.input input[type="text"],
ul.input input[type="password"]{
	border:0;
	padding:10px 15px;
}
ul.input input[type="text"]{
	border-bottom:1px solid rgba(0,0,0,0.25);
}
#content-inner input[type="submit"]{
	color: #fff;
	display: inline-block;
	text-align: center;
	border-radius: 3px;
	padding: 10px 30px;
	background: #78583b;
	cursor: pointer;
	position: relative;
	z-index: 1;
	font-size: 13px;
	border: 0;
	-webkit-appearance: none;
}


#form-btn{
	text-align:center;
}


@media screen and (max-width:480px){
	#content-inner {
	    padding: 30px 5%;
	}
}




/*
#content{
	position: absolute;
	top: 50%; left: 50%;
	width: 320px; height: 280px;
	background:url(../img/bg_login.gif) center center #2f2f2f;
	margin-left: -160px; margin-top: -140px;

	-moz-box-shadow: 2px 2px 10px #808080;
	-webkit-box-shadow: 2px 2px 10px #808080;

	border-radius: 10px;        /* CSS3草案 */  
	-webkit-border-radius: 10px;    /* Safari,Google Chrome用 */  
	-moz-border-radius: 10px;   /* Firefox用 */
}
*/
