@charset "UTF-8";
/* CSS Document */

.wbase p {
	font-size: 18px;
	line-height: 1.8;
	color: #3e3a39;
	text-align: justify;
}
.login_base {
	width: 730px;
	margin: 70px auto 0;
	border: 4px solid #182987;
	border-radius: 10px;
}
.login_base strong {
	display: block;
	font-size: 30px;
	line-height: 90px;
	text-align: center;
	color: #FFF;
	font-weight: 500;
	background-color: #182987;
}
.login_base form {
	padding: 70px 90px;
}
.inp {
	border: 4px solid #dbdcdc;
	border-radius: 5px;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	margin-bottom: 25px;
}
.inp > div:first-child {
	width: 165px;
	background-color: #dbdcdc;
	font-size: 28px;
	line-height: 75px;
	text-align: center;
	color: #231815;
}
.inp > div:last-child {
	width: calc(100% - 165px);
}
.inp input {
	border: none;
	width: 100%;
	height: 100%;
	font-size: 28px;
	line-height: 75px;
	box-sizing: border-box;
	padding: 0 30px;
}
.submit {
	padding: 35px 0 0;
}
.submit a {
	display: block;
	text-decoration: none;
	color: #FFF;
	font-size: 27px;
	line-height: 80px;
	text-align: center;
	border-radius: 5px;
	background-color: #1eaa39;
}

@media screen and (max-width: 999px) {
	#contents > .container {
		overflow: visible;
	}
	.wbase p {
		font-size: 14px;
	}
	.login_base {
		width: 100%;
		margin: 30px 0 0;
		border-width: 2px;
	}
	.login_base strong {
		font-size: 17px;
		line-height: 45px;
	}
	.login_base form {
		padding: 35px 45px;
	}
	.inp {
		border-width: 2px;
		margin-bottom: 13px;
	}
	.inp > div:first-child {
		width: 83px;
		font-size: 14px;
		line-height: 38px;
	}
	.inp > div:last-child {
		width: calc(100% - 83px);
	}
	.inp input {
		font-size: 14px;
		line-height: 38px;
		padding: 0 15px;
	}
	.submit {
		padding: 10px 0 0;
	}
	.submit a {
		font-size: 14px;
		line-height: 40px;
	}
}