﻿@charset "utf-8";
/* =======================================

	ContentsElements

======================================= */

body {
	overflow-x: hidden;
}

/* ------------------------------------
	.basic_btn
------------------------------------ */
.basic_btn {
	display: inline-block;
	border: 2px solid #004388;
	background: #fff;
	color: #004388;
	line-height: 2.5em;
	text-align: center;
	font-weight: bold;
	padding: 0 20px;
}
.basic_btn:link,
.basic_btn:visited,
.basic_btn:active,
.basic_btn:hover { color: #004388;	}



/* ------------------------------------
	.pg_login
------------------------------------ */
.pg_login {
	width: 100%;
	height: 100%;
}

.pg_login main {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.pg_login main > section {
	width: 730px;
	text-align:center;
	padding: 0;
}

.pg_login h1 {
	margin: 0 auto;
}

.pg_login form {
	padding: 30px 80px;
	width: 620px;
	margin-left: 55px;
	text-align: left;
}
.pg_login form label {
	display: block;
	font-weight: bold;
	margin: 0 0 25px;
}
.pg_login form input[type="text"],
.pg_login form input[type="password"] {
	width: 100%;
	background: #fff;
	border: 1px solid #c8c6c4;
	height: 50px;
	padding: 15px;
	margin: 5px 0 0;
	font-weight: bold;
}

.pg_login.loginButton {
	display: block;
	width: 220px;
	height: 50px;
	margin: 30px auto 0;
	background: #143767;
	color: #fff;
	font-weight: bold;
	font-size: 2rem;
}
.pg_login.loginButton::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 29px;
    background: transparent url("../img/ico_key_w.png") center top no-repeat;
    background-size: 100%;
    vertical-align: middle;
    margin: 0 10px 0 0;
}

.pg_login.loginButton:disabled {
    background: #fff;
    color: #A19F9D;
    cursor: not-allowed;
}
.pg_login.loginButton:disabled::before {
    background-image: url("../img/ico_key.png");
}

.pg_login .setting {
	padding: 15px 0;
}
.pg_login .setting p {
	display: inline-block;
	margin-right: 20px;
}

.pg_login .error_msg {
	width:auto;
	background: #a80000;
	background-image: url("../img/ico_excl.png");
	background-repeat: no-repeat;
	background-position: left 6.5% bottom 50%;
	color: #fff;
	padding: 14px 20px 14px 90px;
	font-weight: bold;
	white-space: pre-wrap;
	text-align: left;
	margin-top: 10px;
}
/*.pg_login .error_msg::before {
	content: '';
	display: inline-block;
	width: 20px;
	height: 24px;
	background: transparent url("../img/ico_excl.png") center top no-repeat;
	background-size: 100%;
	vertical-align: middle;
	margin: 0 10px 0 0;
}*/

.pg_login form input.error {
	background-color: #f6e5e5;
}

/* IE11 */
_:-ms-lang(x)::-ms-backdrop, .pg_login form input[type="text"],
_:-ms-lang(x)::-ms-backdrop, .pg_login form input[type="password"] {
	padding: 12px 20px 12px;
}
_:-ms-lang(x)::-ms-backdrop, .pg_login button {
	padding: 0px 20px;
}
_:-ms-lang(x)::-ms-backdrop, .pg_login .error_msg {
	padding: 13px 20px 12px 83px;
}

/* hover
------------------------------------ */
/* all */
body.pc_view .basic_btn,
.pg_login button {
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
}
body.pc_view .basic_btn:hover {
	color: #004388;
	background: #f3f2f1;
	opacity: 1;
}
.pg_login button:not(:disabled):hover {
	background-color: #003c78;
}
