﻿html {
    height:100%;
}
body {
    width: 100%;
    
}

main {
    width: 100%;
}

.login-wrap {
    width: 30%;
    margin: 10% auto 0;
    min-width: 400px;
    position: relative;
}

.logo {
    text-align: center;
    margin-bottom: 40px;
}

.logo-title {
    font-family: system-ui;
    margin: 0;
    font-size: 4em;
    font-weight: bold;
}

.form-item {
    justify-content: space-between;
    margin-bottom: 20px;
}

.form-item .textbox {
    width: 70%;
    min-width: 180px;
}

.form-item label {
    width: calc(25% - 20px);
    line-height: 40px;
    margin-right: 20px;
    font-size: 16px;
    min-width: 120px;
}


/* パスワード忘れた人用の文言 */
.pass-reset {
    text-align: right;
    position: relative;
    min-width: 260px;
}

    .pass-reset a {
        color: #437DD3;
    }

        .pass-reset a:hover {
            background-color: rgba(255,255,255,0.4);
        }

/* ログインボタン */
.login-btn a {
    line-height: 50px;
    display: inline-block;
    width: 100%;
    height: 100%;
    text-align: center;
    color: #505050;
}

.login-btn {
    min-width: 200px;
    position: relative;
    width: 80%;
    margin: 0 auto;
    background-color: #FFF01A;
    height: 50px;
    border-radius: 50px;
    margin-top: 50px;
}

.login-btn a:hover::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.4);
}

.login-btn button {
    text-decoration: none;
}

.login-btn span {
    text-align: center;
    position: absolute;
    right: 20px;
    top: 10px;
    background-color: #fff;
    display: inline-block;
    height: 30px;
    width: 30px;
    line-height: 30px;
    border-radius: 30px;
}

    .login-btn span i {
        color: #FFE145;
        margin-left: 3px;
    }

.login-error {
    width: 100%;
    text-align:center;
    line-height: 40px;
    margin-right: 20px;
    font-size: 16px;
    min-width: 87px;
    color: red;
}

.entry-btn {
    min-width: 200px;
    position: relative;
    width: 80%;
    margin: 0 auto;
    background-color: #152A8C;
    height: 50px;
    border-radius: 50px;
    margin-top: 20px;
}

.entry-btn a {
    line-height: 50px;
    display: inline-block;
    width: 100%;
    height: 100%;
    text-align: center;
    color: #FFFFFF;
}
.entry-btn a:hover::after {
    position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.4);
}

.entry-btn button {
    text-decoration: none;
}

.entry-btn span {
    text-align: center;
    position: absolute;
    right: 20px;
    top: 10px;
    background-color: #fff;
    display: inline-block;
    height: 30px;
    width: 30px;
    line-height: 30px;
    border-radius: 30px;
}

    .entry-btn span i {
        color: #152A8C;
        margin-left: 3px;
    }

pre {
    display: block;
    font-family: 'Noto Sans JP Regular';
    white-space: pre;
    margin: 1em 0px;
}

/*パスワード再送信フォーム*/
.modal-form-title {
    text-align: center;
    margin-bottom: 40px;
}

/*事業再構築文言*/
.sentence {
    font-size: 0.1em;
    color: rgba(80,80,80,0.7);
    position: absolute;
    bottom: 1px;
    width: 100%;
    text-align: center;
}