

html,body{
    -webkit-text-size-adjust: 100%;
    font-family: 'Noto Sans JP',  sans-serif;
    text-align: center;
    color: #5a5a5a;
    font-weight: 400;
    letter-spacing: -.05rem;
    width: 100%;
    height: 100%;
    padding:0px;
    margin:0px;
}

*{box-sizing:border-box;}

a{
   text-decoration: none;
   color: #5a5a5a;
}

#controls{
    cursor:pointer;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-evenly;
    padding: 0% 3%;
    font-size:25px;
}

#logo{
    position: absolute;
    top: 60px;
    right: 5px;
}

#mapid{
    height:500px; 
    width:100%;
    margin: 0;
    padding: 0;
}

#charts{
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-evenly;
    width: 100%;
    margin: 0 auto;
    align-items: center;
}

.chartBox{
    height: 400px;
    width: 95%;
    background-color: #ececec;
    margin: 2%;
    border-radius: 5px;
    
}

.info{
    padding: 6px 8px;
    background: rgba(255,255,255,0.8);
    box-shadow: 0 0 15px rgba(0,0,0,0.2);
    border-radius: 5px;
    margin-right: 30px;
}

.info h4{
    margin: 0 0 5px;
    color: #777;
}

.legend{
    line-height: 18px;
    color: #555;
}

.legend i {
    width: 18px;
    height: 18px;
    float: left;
    margin-right: 8px;
    opacity: 0.7;
}

g.axis{
    font-size: 12pt;
}

g.text {
    fill: black;
    strock: black;
}

@media screen and (max-width: 865px){
    #charts{
        display: flex;
        flex-flow: column nowrap;
        
        justify-content: space-evenly;
        
    }
}

