﻿footer{
    font-family: 'Roboto', sans-serif;
    margin-top: 1rem;
}

#background_list{
    background-color: #dcdced;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.footer_inner{
    width: 960px;
    display: flex;
    margin: auto;
}

.footer_inner dl{
    width: 50%;
}

.footer_inner dt{
    font-weight: bold;
    color: #1B75BC;
}

.footer_inner dd{
    font-size: 0.8rem;
    line-height: 1rem;
}

.footer_inner a{
    color: #000000;
    text-decoration: none;
}

.footer_inner a:hover{
    color: #1B75BC;
}

#background_compensation{
    background-color: #152ac3;
}

#compensation{
    padding: 1rem;  
    justify-content:space-between;
}

#compensation img{
    max-width: 100%;
}

#compensation p{
    font-size: 0.8rem;
    text-align: center;
    color: #ffffff;
}

/*スマホ用*/
@media screen and (max-width:720px) {
    .footer_inner{
        width: 100%;
        flex-flow:column;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .footer_inner dl{
        width: 100%;
    }
    
    #compensation p{
        padding-top: 1rem;
    }
    
    #compensation img{
        width: 100%;
    }

}