@charset "utf-8";

html{
    background-color: #aaa;
}
body{
    min-height: 100vh;
    background-color: #fff;
}

#header{
    position: fixed;
    top: 0;
    background-color: #fff;
    border-bottom: 1px solid lightgray;
}
@media screen and (min-width:768px){
    body{
        max-width: 1024px;
        margin: auto;
    }
    #header{
        width: 100%;
        max-width: 1024px;
        margin: auto;
        display: flex;
        justify-content: space-between;
        align-items: baseline;
    }
}
#header-info{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
}
#title{
    width: 45%;
}
#title img{
    width: 100%;
    height: auto;
}
#header-link{
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding-bottom: 1rem;
}
#header-link a{
    width: 40%;
}
#header-link a img{
    width: 100%;
    height: auto;
    -moz-appearance: none;
    appearance: none;
}
h3{
    margin: 0;
    background-color: cadetblue;
    color: white;
    padding: 0.7rem 1rem;
    display: flex;
    justify-content: space-between;
    border-bottom:1px solid #4b7e80;
}
h3.dc{
    cursor: pointer;    
}
h3.dc::after{
    font-family: 'Material Icons';
    content: "menu";
    font-weight: normal;
}
h3.active::after{
    font-family: 'Material Icons';
    content: "close";
    font-weight: normal;
}
h3 a{
    display: flex;
    justify-content: space-between;
    width: 100%;
    text-decoration: none;
    color: #fff;
}
h3 a::after{
    font-family: 'Material Icons';
    content: "arrow_back";
    font-weight: normal;
}
ul{
    list-style-type: none;
    padding: 0;
    margin: 0 0 1rem;
}
@media screen and (min-width:768px){
    #dc_world{
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
    }
    #dc_world > div{
        width: 45%;
    }
}
.world_data{
    display: flex;
    justify-content: space-between;
    line-height: 1.5rem;
    padding: 0.7rem 1rem;
    border-bottom: 1px solid lightgray;
}
.today{
    background-color: lightpink;
}
.no_report{
    pointer-events: none;
    text-decoration: none;
    color: gray;
}

dt {
    padding: 0.5rem 1rem 0.5rem;
    border-bottom: 1px solid lightgray;
    font-weight: bold;
}

dd {
    margin: 0;
    padding: 0.5rem 1rem 1rem;
}

dd div {
    line-height: 2rem;
}
dd span.dd_attention{
    line-height: 1.2rem;
    font-size: 0.8rem;
    padding-top: 0.5rem;
}

#form_submit{
    background-color: lightgray;
    padding: 0.7rem;
    border: none;
    text-align: center;
    border-radius: 0.3rem;
    cursor: pointer;
}
.button_container{
    text-align: center;
    padding-bottom: 1rem;
}
#tweet{
    background-color: #00acee;
    padding: 0.7rem;
    border: none;
    color: white;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    border-radius: 0.3rem;
}
#contents{
    padding-bottom: 2rem;
}

footer{
    position: fixed;
    bottom: 0;
    width: 100vw;
    background-color: #fff;
    font-size: 0.7em;
    text-align: center;
    padding: 0.5rem 0 1.5rem;
}
footer a{
    color: black;
}
footer a:last-child{
    padding-left: 1rem;
}
@media screen and (min-width:768px){
    footer{
        width: 100%;
        max-width: 1024px;
    }
}