@charset "UTF-8";
/*--------------
ブラウザのデフォルトスタイルをリセットする
----------------------------------------------------------*/
@import url('https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css');
@import url('https://use.fontawesome.com/releases/v5.2.0/css/all.css');


/*---------------------------------------------------
　ログイン画面
---------------------------------------------------*/
body{
	font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", sans-serif;
	line-height: 1.5em;
}
#LoginMain{
	width: 620px;
	height: 525px;
	margin: 60px auto;
}

/*ID・Pass エリア*/
.Login-area{
	padding: 30px 50px;
	background: #232F3E;
}
.Login-area h3{
	color: #fff;
	font-size: 30px;
	font-weight: bold;
	text-align: left;
	margin-bottom: 0px;
	line-height: 100%;
	}
.Login-area h4{
	color: #fff;
	font-size: 12px;
	font-weight: bold;
	text-align: left;
	border-bottom: 1px #FFFFFF dotted;
	padding-bottom: 5px;	
	line-height: 100%;
	}
	
.Login-area p.lead{
	color: #fff;
	font-size: 95%;
	text-align: left;
	padding: 10px 0 0;
}
.Login-area p.forgotpw{
	color: #fff;
	font-size: 95%;
	text-align: center;
	padding: 10px 0 0;
}
.Login-area p.forgotpw a{
	color: #fff;
}
.Login-area p.save_pass{
	color: #fff;
}
dl.input-area {
	clear: both;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	text-align: left;
	padding: 10px 0;
	font-size: 18px;
}
dl.input-area:nth-of-type(1) {
	padding-bottom: 0;
}
dl.input-area:nth-of-type(2) {
	padding-top: 0;
}
dl.input-area dt {
	text-align: left;	
	clear: both;
	width: 130px;
	padding: 5px 0 10px;
	font-weight: bold;
	line-height: 1.8em;
	color: #fff;
}
dl.input-area dd:nth-of-type(1) {
	margin-left: 5px;
	padding: 10px 0;
}
dl.input-area dd:nth-of-type(2) {
	color: #fff;
	font-size: 14px;
	margin-left: 10px;
}
dl.input-area dd span{
	color: #fff;
	font-size: 14px;
	margin-left: 3px;
}

/*テキストフィールド装飾*/
dl.input-area input[type=text],
dl.input-area input[type=password] {
	width: 150px;
	border: none;
	font-size: 110%;
}
dl.input-area input:focus{
	border:1px solid #E77600;
}
	
/*ログインボタン装飾*/
input#submit_button {
	display: block;
	margin: 20px auto 0px;
	border-top: 1px solid #ccc;
	border-right: 1px solid #999;
	border-bottom: 1px solid #999;
	border-left: 1px solid #ccc;
	padding: 5px 20px;
	font-weight: bold;
	cursor: pointer;
	color: #000;
}

input#submit_button:hover {
	background: #E77600;
	color: #000;
	padding: 5px 20px;
	font-weight: bold;
}

.red {
	color: #f00;
}
.white {
	color: #fff;
}
/* パスワード表示切替 */
input[type="checkbox"] {
	display: none;
}
input[type="checkbox"] + label {
	display: inline-block;
	margin-right: 0.8em;
	padding: 3px 3px 3px 22px;
	position: relative;
}
input[type="checkbox"] + label::before,
input[type="checkbox"] + label::after {
	content: "";
	display: block;
	position: absolute;
	transition: all .2s;
}
input[type="checkbox"] + label::before {
	background: #f4f4f4;
	border: 1px solid #ccc;
	border-radius: 3px;
	top: calc(0.5em - 1px);
	left: 0;
	width: 14px;
	height: 14px;
}
input[type="checkbox"] + label::after {
	border-left: 2px solid #767676;
	border-bottom: 2px solid #767676;
	top: calc(0.5em + 3px);
	left: 3px;
	width: 8px;
	height: 4px;
	opacity: 0;
	transform: rotate(-45deg) scale(.5);
}
input[type="checkbox"] + label:hover::before {
	background: #fff;
}
input[type="checkbox"]:checked + label::before {
	background: #fff;
	border: 1px solid #767676;
	opacity: 1;
}
input[type="checkbox"]:checked + label::after {
	transform: rotate(-45deg) scale(1);
	opacity: 1;
}
.login_box .show_pass {
	font-size: 14px;
	margin-top: -8px;
	user-select: none;
}

/* # Sidebar
---------------------------------------------------------------------------- */

