@charset "UTF-8";
:root {
	/* メインカラー指定 */
  --main-color: #4169FF;
}
body {
    min-height: 100vh;
}
/* ローカル======================================================= */
.loghead {
    margin: 0;
    text-align: center;
    background-color: var(--main-color);
    color: white;
    height: 30px;
    position: relative;
    z-index: 2;
}

.forget a {
    text-decoration: none;
    color: #077685;
}

footer {
    margin: 0;
    text-align: center;
    background-color: var(--main-color);
    color: #FFFFFF;
    position: relative;
    z-index: 2;
    /* フッターを下に固定 */
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 10px 0;
}
footer a {
	color: #FFFFFF;
}

.error-mess {
    text-align: center;
}

.error-mess .error {
    color: red;
    font: bold;
    font-family: Arial;
    margin: 0 0 10px 0;
    font-weight: bold;
}


/* ======================================================= 
背景画像をぼかし
======================================================= */

.blurBg {
    width: 350px;
    height: 100px;
    line-height: 235px;
    background: url(../img/login_logo.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    z-index: 0;
    overflow: hidden;
    margin: 20px auto;
    /*background-color: rgba(128, 128, 128, 0.5);*/
}


/* ======================================================= 
ログインフォーム
======================================================= */

body,
p,
form,
input {
    margin: 0
}

.checkbox {
    margin-right: 10px;
}

.form {
    width: 400px;
    height: auto;
    margin: 0px auto;
    padding: 20px;
    border: 1px solid #555;
}

form p {
    font-size: 14px;
}

.form-title {
    text-align: center;
}

.userid,
.pass {
    margin-bottom: 20px;
}

input[type="text"],
input[type="password"] {
    width: 96%;
    padding: 4px;
    font-size: 14px;
}

.submit {
    text-align: right;
}

.enter {
    cursor: pointer;
    margin-bottom: 15px;
}

.form p {
    color: var(--main-color);
    font-weight: bold;
}

.form .form-title {
    font-family: Arial;
    font-size: 30px;
    color: var(--main-color);
}

.form {
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-shadow: 0px 1px 10px var(--main-color);
    -moz-box-shadow: 0px 1px 10px var(--main-color);
    box-shadow: 0px 1px 10px var(--main-color);
    border: solid #4eb4c2 1px;
    background-color: rgba(255, 255, 255, 0.7);
}

.form .form-title {
    padding-bottom: 6px;
    border-bottom: 2px solid var(--main-color);
    margin-bottom: 20px;
}

.submit input {
    font-family: Arial;
    color: #ffffff;
    font-size: 16px;
    padding-top: 10px;
    padding-right: 20px;
    padding-bottom: 10px;
    padding-left: 20px;
    text-decoration: none;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    -webkit-box-shadow: 0px 8px 6px #e3e3e3;
    -moz-box-shadow: 0px 8px 6px #e3e3e3;
    box-shadow: 0px 8px 6px #e3e3e3;
    border: solid #f5fdff 4px;
    background: -webkit-gradient(linear, 0 0, 0 100%, from(#61c7e0), to(#418da8));
    background: -moz-linear-gradient(top, #61c7e0, #418da8);
}

.submit input:hover {
    background: #37a4bf;
}

.form #caution {
    color: #FFD400;
}

.maintenance {
    text-align: left;
    color: red;
    font-family: Arial;
}

.contactus {
    font-family: Arial;
    text-decoration: none;
    text-align: center;
}

.contactspace {
    margin-bottom: 20px;
}
/*===================================================
 メインエリア
=======================================================*/
.mainaria {
	position: relative;
	z-index: 3;
	height: auto;
    text-align: center;
    /*
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	color: #fff;
	text-shadow: 0 0 15px #666;
	*/
	transform: translateY(3%) translateX(0%);
}

/* =========================================================== 
モバイル480px以下からブレイク
 =============================================================*/

@media screen and (max-width:480px) {
    #wrapper {
        max-width: 100%;
    }
    .logospace,
    .loginspace,
    .blurBg,
    .form,
    .form-title,
    .form form,
    .form form p,
    .form form p input {
        max-width: 100%;
    }
    .form {
        width: auto;
        margin: 0 2%;
    }
    .logospace {
        margin: 0 2%;
    }
}


/* =========================================================*/

#header {
    position: relative;
    height: 100vh;
    text-align: center;
    color: #fff;
    /*ローディング画面時＆動画が表示されないときに表示する背景画像のレスポンシブ化*/
    background: url("#") no-repeat;
    background-size: cover;
}

/*===============================
login.htmlのログインエラー文字
===================================*/
.login-error {
	font-size: 16px;
	color: red!important;
	font-weight: bold;
}



