@charset "utf-8";
/* CSS Document */

html {
	scroll-behavior: auto !important;
	overscroll-behavior: none;
}

body {
	word-wrap: break-word;
	padding: 0;
	margin: 0 auto;
	font-family: 'メイリオ', 'Meiryo', sans-serif;
	color: #1b1b1b;
	line-height: 1.25;
	background: #ffffff !important;
}

#main_wrap{
	width: max(320px, 100%); 
	min-height: calc(100vh - 50px);
	display: flex;
	flex-direction:column;
	justify-content: center;
	align-content: center;
}


#main_wrap .logo{
	width: min(320px, 100%); 
	margin: 1vw auto 0;
	text-align: center;
}

#main_wrap .logo img{
	width: 100%;
}

.loginform{
	width: 100%; 
	text-align: center;
	margin: 50px auto 0;
}

.err{
	margin-left: 10px;
	font-size: 14px;
	color: deeppink;
	display: inline-block;
}

.loginform label{
	margin-bottom: 5px;
	font-size: 14px;
	font-weight: 700;
	color: #333;
}

.loginform input[type='text'],
.loginform input[type='password']{
	width: min(320px, 100%); 
	height: 30px;
	margin-bottom: 10px;
	line-height: 30px;
	border: #cacaca solid 1px;
}

.loginform input[type='submit']{
	width: 200px;
	height: 40px;
	margin: 10px auto;
	text-align: center;
	color: #ffffff;
	line-height: 30px;
	background: linear-gradient(to right, #f8c7d5, #9995ef);
	border-radius: 10px;
}



.loginform input[type='submit']:hover{
	opacity: .8;
}

footer{
	width: max(320px, 100%); 
	height: 50px;
	text-align: center;
}

