#login-container{
    height:100vh;
    min-width: 1000px;
    /* display: flex; */
    overflow-y: hidden;
}

/**
    layout layer
*/
#l-leftarea{
    float: left;
    width: calc(100% - 683px);
    height: 100vh;
}

#l-rightarea{
    float: left;
    width: 683px ;
    height: 100%;
    display: flex;
    /* flex:1; */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* overflow-y: scroll; */
    overflow-x: hidden;
}

#l-right-container{

}

/**
    project layer
*/
#p-top-image{
    width:100%;
    height:100%;
}
#p-login{
    height: 100%;
    display: flex;
    flex-direction: column;
}
#p-login__logo{
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 32px;
    margin-top: 123px;
}
#p-login__input{
    margin: 0 auto;
}


/**
    component layer
*/
#c-image{
    max-width: 100%;
    max-height:100%;
}
#c-login__logo{
    width:240px;
    height:240px;
}
#c-title , #c-id , #c-password , #c-submit{
    margin-bottom: 16px;
}
#c-title , #c-masking , #c-remember-me{
    display: flex;
}
#c-title{
    font-size:14px;
    user-select: none;
}
#c-error-message{
    width:272px;
    color:red;
    font-size: 14px;
}
#c-id , #c-password , #c-submit{
    width:272px;
    height:36px;
    display: flex;
    justify-content: center;
}
#c-masking , #c-remember-me{
    font-size: 14px;
    user-select: none;
}
#c-masking{
    margin-bottom: 32px;
}


/**
    入力欄
*/
.ip-nomal{
    color:#4F4F4F;
    border-radius: 10px;
    border:3px solid #E0E0E0;
    box-sizing: border-box;
    height: 100%;
    width: 100%;
    padding: 10px;
}
.ip-nomal:active,.ip-nomal:focus,.ip-nomal:hover{
    outline: none;
    border:3px solid #44BBFF;
}
.ip-nomal::placeholder{
    color:#BDBDBD;
}

/**
    ボタン
*/
.btn-nomal{
    color:#4F4F4F;
    height: 100%;
    width: 100%;
    border-radius: 10px;
    border:3px solid #E0E0E0;
    box-shadow: 0px 3px 0px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
    cursor: pointer;
}
.btn-nomal:active,.btn-nomal:focus,.btn-nomal:hover{
    border:3px solid #44BBFF;
    outline: none;
}
.btn-nomal:active{
    box-shadow: 0px 0px 0px rgba(0, 0, 0, 0);
}

/**
    チェックボックス
*/
.ch-nomal__ip{
    display: none;
}
.ch-nomal__l{
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    padding: 5px 30px;
    position: relative;
    width: auto;
}
.ch-nomal__l::before{
    background: #FFFFFF;
    border: 2px solid #E0E0E0;
    border-radius: 3px;
    content: '';
    display: block;
    height: 15px;
    width: 15px;
    left: 5px;
    margin-top: -8px;
    position: absolute;
    top: 45%;
}
.ch-nomal__l::after {
    content: '';
    display: block;
    position: absolute;
    opacity: 0;
    width: 5px;
    height: 9px;
    top: 50%;
    left: 11px;
    margin-top: -7px;
    border-right: 2px solid #BDBDBD;
    border-bottom: 2px solid #BDBDBD;
    transform: rotate(45deg);
}
.ch-nomal__ip:checked + .ch-nomal__l::after {
    opacity: 1;
}
/* .ch-nomal__ip:checked + .ch-nomal__l::before, */
.ch-nomal__l:hover::before , .ch-nomal__l:focus::before , .ch-nomal__l:active::before {
    border: 2px solid #44BBFF;
}