@charset "UTF-8";
:root {
	/* メインカラー指定 */
  --main-color: #4169FF;
}
/* ローカル======================================================= */

.fit {
    height: 100vh;
    position: relative;
}

.loghead {
    margin: 0;
    text-align: center;
    background-color: var(--main-color);//#4eb4c2;
    color: white;
    height: 30px;
    position: relative;
    z-index: 2;
}

.if {
    text-align: center;
    margin: 24px auto;
}

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

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

footer {
    margin: 0;
    text-align: center;
    background-color: var(--main-color);//#4eb4c2;
    color: #FFFFFF;
    position: relative;
    z-index: 2;
    /* フッターを下に固定 */
    position: absolute;
    bottom: 0;
    width: 100%;
}
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);//#077685;
    font-weight: bold;
}

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


/* skin */

.form {
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-shadow: 0px 1px 10px var(--main-color);//#488a9e;
    -moz-box-shadow: 0px 1px 10px var(--main-color);//#488a9e;
    box-shadow: 0px 1px 10px var(--main-color);//#488a9e;
    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);//#4eb4c2;
    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 {
    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;
    /*
	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,
    .if,
    .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;
}


/* ローディングアイコン設定 */

#loading {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: bold;
}


/*jQueryで付与されたdisappearクラスがついたらロゴエリアを非表示*/

#loading.disappear {
    display: none;
}


/* youtube設定 */

#youtube-area {
    position: fixed;
    z-index: 1;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
    opacity: 0;
}

#youtube-area.appear {
    animation-name: PageAnimeAppear;
    animation-duration: .5s;
    animation-fill-mode: forwards;
}

@keyframes PageAnimeAppear {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}




