@charset "utf-8";
/*--京login.css--*/
html{
    font-size: 16px;
}

body{
    background: #f0f0f0;
    line-height: 1.0;
}

/*----------contents----------*/
#container{
    position:relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: none;
    margin: 0;
    padding: 0;
}

.login_box{
    box-sizing: border-box;
    width: 600px;
    background: #fff;
    padding: 0;
    border-radius: 10px;
    box-shadow: 0 0 10px 1px rgba(0,0,0,0.15);
}

.login_box > .box_header{
    margin-bottom: 1.5rem;
    padding: 1.2rem 2rem 1rem 2rem;
    background: #0a8ce1;
    border-radius: 10px 10px 0 0;
}

.login_box > .box_header .sys_name{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.login_box > .box_header .sys_name .fig{
    margin-right: 20px;
    width: 103.5px;
}

.login_box > .box_header .sys_name .fig img{
    max-width: 100%;
    height: auto;
}

.login_box > .box_header .sys_name .lbl{
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.login_box > .box_header .sys_name .lbl .lbl1{
    font-size: 0.9rem;
    margin-bottom: 0.8em;
}

.login_box > .box_header .sys_name .lbl .lbl2{
    font-size: 1.2rem;
    color: #fff;
}

.login_box > .box_inner{
    padding: 0.1rem 2rem 2rem 2rem;
}

.login_box > .box_inner .err_message{
    color: #c40026;
    text-align: center;
    line-height: 1.4;
    font-weight: bold;
}

.login_box > .box_inner .input_box{
    margin: 0.5rem 0 1.5rem;
}

.login_box > .box_inner .input_box dl{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5rem;
}

.login_box > .box_inner .input_box dl:last-child{
    margin-bottom: 0;
}

.login_box > .box_inner .input_box dl dt{
    font-weight: bold;
    width: 7.5em;
    position: relative;
}

.login_box > .box_inner .input_box dl dt:before{
    position: absolute;
    top: -0.1em;
    right: 1em;
    font-family: FontAwesome;
    content:"\f0da";
    font-weight: normal;
    color: rgba(75,100,200,0.5);
}

.login_box > .box_inner .input_box dl dd{}

.login_box > .box_inner .input_box dl dd input[type="text"],
.login_box > .box_inner .input_box dl dd input[type="password"]{
    box-sizing: border-box;
    border: 1px solid #aaa;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
    font-size: 1rem;
    width: 16em;
    padding: 0 0.3em;
}

.login_box > .box_inner .input_box dl dd input[type="text"]:focus,
.login_box > .box_inner .input_box dl dd input[type="password"]:focus{
    border: 1px solid #4b64c8;
    outline: none;
}

.login_box > .box_inner .submit_box{}

.login_box > .box_inner .submit_box ul{
    display: flex;
    justify-content: center;
}

.login_box > .box_inner .submit_box ul li button{
    box-sizing: border-box;
    background: #054ba5;
    color: #fff;
    font-size: 1rem;
    padding: 0.1em 2em 0;
    border-radius: 3px;
    display: flex;
    align-items: center;
    height: 36px;
    cursor: pointer;
    font-weight: bold;
    border: 1px solid #fff;
    box-shadow: 0 2px 0 0 rgba(0,0,0,0.15);
}

.login_box > .box_inner .submit_box ul li button:hover{
    filter: brightness(120%);
    transform: translateY(1px);
    box-shadow: none;
}

