﻿@charset "UTF-8";
/* ------------------------------------
	* frame
* ------------------------------------ */
html,body {
	height: 100%;
	margin: 0;
}
#header {
	border-bottom: thick solid #003a95;
	font-size: 1.3em;
}

#container {
	width: 100%;
	min-height: 100%;
	height: auto !important;
	height: 100%;
	position: relative;
}
#content {
	padding-bottom: 70px;
}
#footer {
	border-top:60px solid #fff;
	width: 100%;
	height: 10px;
	position: absolute;
	bottom: 0;
}
* html #footer {
	bottom:expression(document.getElementById("container").offsetHeight % 2 == 0 ? 0 : -1);
}

a{ color:#0099cc; }
a:hover{ color:#33ccff; }
img{ vertical-align: middle; }

/* ------------------------------------
	* login
* ------------------------------------ */
#container {
	background-color:#FFFFFF;
	background-size: cover;
}
#main-content .login_box{
	margin:60px auto;
	width:600px;
	background-size: cover;
	color:#fff;
}
@media screen and (max-width:767px) {
	#main-content .login_box{
		margin: 10px auto;
		width:350px;
		background-size: cover;
		color:#fff;
	}
}

#main-content .login_box .inner{
	padding:30px;
}
@media screen and (max-width:767px) {
	#main-content .login_box .inner{
	}
}

#main-content .login_box dl{
	width:100%;
	overflow:hidden;
}

#main-content .login_box dl dt{
	margin-bottom: 0px;
	padding-left:40px;
	padding-right:10px;
	width:29%;
	background-color:#fff;
	border: none;
	border-right:none;
	color: #696969;
	line-height: 35px;
	float:left;
	clear: both;
	box-sizing:border-box;
	font-size: 1.2em
}
@media screen and (max-width:767px) {
	#main-content .login_box dl dt{
		margin-bottom: 0px;
		padding-left:0px;
		padding-right:0px;
		width:29%;
		background-color:#fff;
		border: none;
		border-right:none;
		color: #696969;
		line-height: 35px;
		float:left;
		clear: both;
		box-sizing:border-box;
		font-size: x-small;
	}
}

#main-content .login_box dl dd{
	margin-left: 29%;
	margin-bottom:15px;
	background-color:#fff;
	border:1px solid #003a95;
	border-left:none;
	line-height: 35px;
}
#main-content .login_box dl dt.dt_user{
	background-image: url("/shared/images/icon/icn_user.png");
	background-position: 10px 50%;
	background-repeat: no-repeat;
	background-size: 20px auto;
}
#main-content .login_box dl dt.dt_pass{
	background-image: url("/shared/images/icon/icn_key.png");
	background-position: 10px 50%;
	background-repeat: no-repeat;
	background-size: 20px auto;
}
#main-content .login_box ul{
	margin:40px 0 20px;
	text-align: center;
}
#main-content .login_box ul li{
	margin: auto;
	text-align: center;
	width: 70%;
}
#main-content .login_box ul li .button{
	padding:10px;
	width:100%;
	background-color:#1e90ff;
	border-color:#000099;
}
#main-content .login_box ul li .button:hover{
	color:#fff;
	background-color:#000099;
	border-color:#000099;
}
#main-content .login_box .txt_box p{
	margin-bottom:10px;
	text-align:center;
}
@media screen and (max-width:767px) {
	#main-content .login_box .txt_box p{
		font-size: x-small;
	}
}

#main-content .login_box .txt_box .txt_cookie{
	font-size:0.8em;
}
.txtRed, .required, .txt_error{
	color:#ff0000;
}
.txt_error{
	display:none;
}

/* ------------------------------------
	* input
* ------------------------------------ */
input[type="text"], textarea, input[type="password"]{
	margin:0;
	padding: 0px;
	border: 1px solid #999;
	height: 35px;
	width:100%;
	background-color: #f0ffff;
	box-sizing:border-box;
	outline: none;
	-webkit-appearance: none;
}

input[type="radio"], input[type="checkbox"]{
	margin:5px;
	display:block;
	float:left;
}

input::placeholder {
}
@media screen and (max-width:767px) {
	input::placeholder {
		font-size: x-small;
	}
}
