*{
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
html{
    font-size: 62.5%;
}

body{
    color:#242424;
    font-family: Arial, 'ヒラギノ角ゴ Pro W4', 'Hiragino Kaku Gothic Pro', Osaka, メイリオ, Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    font-size:18px;
}
a:hover{
    cursor: pointer;
}
.container{
    max-width : 1400px;
    margin: 0 auto;
}
.header{
    width : 100%;
    background-color: #ccc;
}
.header>div>div{
    position: relative;
}
.header>div>div>div:first-of-type>img{
    max-width: 100px;
    width : 20%;
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
.header>div>div>div:nth-of-type(2){
    text-align:center;
    padding: 1em 0;
    font-size : 1.2em;
    font-weight: 600;
}
.login>div>form{
    max-width : 600px;
    margin: 0 auto;
    padding : 1em;
}
.login>div>form>input[type="text"],
.login>div>form>input[type="password"]{
    width : 100%;
    margin-top : 1em;
    padding: 1em;
    border : 1px #ccc solid;
    border-radius: 10px;
    font-size: 1.1em;

}
.login>div>form>p{
    text-align: center;
    margin-top : 2em;
}
.login>div>form>p>input[type="submit"]{
    width : 50%;
    text-align:center;
    background-color: #ccc;
    font-size: 1em;
    padding:1em;
    border-radius: 10px;
    color : #666;
}
.main>div>div{
    display: flex;
    flex-direction: row;
}
.main .menu{
    width : 20%;
    border-right : 1px #ccc dashed;
    padding : 1em;
}
.main .menu>ul>li:last-of-type{
    margin-top : 5em;
}
.main>div>div>div:nth-of-type(2){
    width : 80%;
    padding : 1em;

}

.useddata{
    margin-top : 2em;
    border-top : 3px #eee solid;
    padding-top : 2em;
    margin-bottom : 2em;
}
.useddata>div{
    display: flex;
    flex-direction: row;
    align-items: top;
}
.useddata>div>div{
    width : 50%;
}
.totaldata{
    margin-top :2em;
    margin-bottom : 2em;
    text-align: right;
}
.totaldata span{
    margin-right : 2em;
    font-weight: 600;
}
.claimeddata,
.unclaimeddata{
    margin-top: 2em;
    margin-bottom : 2em;
}
.claimeddata>div,
.unclaimeddata>div{
    max-height : 300px;
    overflow-y: scroll;
    overflow-x: hidden;
}
.claimeddata td,
.unclaimeddata td{
    font-size : .6em;
}
.claimeddata th,
.unclaimeddata th{
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1;
    font-size : .7em;
}
.customer_name{
    text-align: right;
    padding:1em;
    border-bottom: 1px #ccc dashed;
}


table{
    width : 100%;
}
th{
    border-right : 1px #fff solid;
    background-color : #eee;
    text-align: center;
    padding : .5em;
}
th:last-of-type{
    border-right : none;

}
td{
    border:1px #eee solid;
    border-top: none;
    padding:.5em;
}
td>a{
    color : #555;
}
table.monthtotal{
    width : 80%;
    margin : 0 auto;
}

table.monthtotal th{
    text-align: right;
    width : 40%;
    border-bottom : 1px #fff solid;
}
table.monthtotal td:first-of-type{
    border-top : 1px #eee solid;
}
table.monthtotal th:first-of-type{
    border-top : 1px #eee solid;
}

.text-center{
    text-align: center;
}
.text-right{
    text-align: right;
}
@media screen and (max-width:740px){
    body{
        font-size: 3vw;
    }
}
