html {
    line-height:2;
    color: #000;
}

body {
    margin: 0;
}

h1 {
    text-align: center;
    padding-left: 20px;
    border-top : solid 5px #000;
    border-bottom : solid 5px #000;
    border-left: none;
    color: #000;
    font-weight: bold;
}

th {
    color: #000;
    text-align: right;
    font-size: 120%
}

legend {
    color: #000;
    text-align: center;
    font-weight: bold;
    font-size: 25px;
}

table {
    margin-right: auto;
    margin-left: auto;
    table-layout: fixed;
}

td {
    font-family: 'Zen Kaku Gothic New', sans-serif;
}

#userid, #password {
    width: 300px;
    height: 30px;
    font-size: 20px;
    font-family: 'Zen Kaku Gothic New', sans-serif;
}

#userid:focus, #password:focus {
    background-color: #eaf4fc;
}

.g-recaptcha div {
    margin-top: 5px;
    display: inline-block;
}

#login {
    font-size: 100%;
    font-weight: bold;
    width: 150px;
    height: 40px;
    border: none;
    margin-top: 10px;
    border: solid 1px #223a70;
    color: #ffffff;
    background-color: #223a70;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Zen Kaku Gothic New', sans-serif;
}

#login:hover {
    background-color: #fff;
    border: solid 1px #223a70;
    color: #223a70;
}

div {
    margin-top: 15px;
    text-align : center ;
}

fieldset {
    display: block;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    border: none;
    width: 800px;
    padding-left: 50px;
    padding-right: 50px;
    margin-bottom: 50px;
}

th, .null {
    width: 120px;
}

@media (max-width: 800px) {
    h1 {
        font-size: 20px;
        border-top : solid 5px #000;
        border-bottom : solid 5px #000;
        color: #000;
    }

    legend {
        font-size: 100%
    }

    th {
        font-size: 12px;
        text-align: right;
    }

    #userid, #password {
        height: 30px;
        width: 70%;
        font-size: 100%;
    }

    #login {
        font-size: 100%;
        width: 200px;
        height: 50px;
        border: none;
        margin-top: 10px;
        border: solid 1px #223a70;
        color: #ffffff;
        background-color: #223a70;
        border-radius: 5px;
    }

    fieldset {
        width: 100%;
        position: static;
        padding-left: 0;
        padding-right: 0;
    }

    .null {
        width: 0px;
    }
}


/**ロード**/
/*==================
#loading
==================*/

#loading {
    margin-top: 0px;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 0px;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: #FAF9F5;
    text-align: center;
}
#loading_box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#loading .kvArea {
    width: 100%;
}
#loading .kvArea .img_box {
    text-align: center;
}
#loading .kvArea .img_box img {
    max-width: 100%;
    height: auto;
}
.fadeUp {
    /*  */
    animation-name: fadeUpAnime;
    animation-duration: 1.8s;
    animation-delay: 1.8s;
    animation-fill-mode: forwards;
    opacity: 1;
}
@keyframes fadeUpAnime {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-100px);
    }
}