@charset "utf-8";
/* CSS Document */

.logo-img {
    max-width: 600px;
    margin: auto;
    text-align: center;
}
.logo-img img {
    width: 100%;
}
.login-area{
    margin: 20px auto;
    width: 512px;
    text-align: center;
}
.deadline {
    text-align: center;
}
.login-area p{
    margin-bottom: 2rem;
}
.login-area__alert {
    text-align: center;
    color: #D80041;
    font-size: 1.6rem;
    font-weight: 700;
}
.font-b {
    font-weight: 700;
}

.login-form {
    padding: 40px 80px; 
    background-color: #F2F2F2;
}
.login-input dt,
.login-input dd {
    margin-bottom: 1rem;

}
.login-form input{
    width: 100%;
    border: 1px solid #322117;
    line-height: 3rem;
}
.login-form button {
    margin: 50px 0;
    background-color: var(--corporate-color);
    color: #fff;
}
.login-form .error_txt {
    margin-bottom: 0;
    font-size: 1.4rem;
}

/* 2023年株優改修 開始↓ */
::-ms-reveal {
    display: none;
}

input.no-border {
    border: none; /* デフォルトの枠線を消す */
}
div.fieldPassword {
    display: flex;
    border-width: thin;
    border-style: solid;
    width: 100%;
    background-color: #fff;
}

#eye {
     display: flex;
     align-items: center;
     width: 25px;
     height: 25px;
     cursor: pointer;
     }
.eye_open {
    display: inline-block;
    width: 25px;
    height: 25px;
    background: url("../img/eye_open_s.png") no-repeat;
}

.eye_close {
    display: inline-block;
    width: 25px;
    height: 25px;
    background: url(../img/eye_close_s.png) no-repeat;
}
/* 2023年株優改修 終了↑ */

@media screen and (max-width : 767px) {
    .login-area{
        width: 100%;
    }
    .login-form {
        padding: 40px 7%; 
    }

}
