html{
    font-size: 62.5%;
}
body{
    font-size: 1.4rem;
    font-family: "Noto Sans JP", sans-serif;
}
img{
    width: 100%;
    height: auto;
}
.footer{
    padding: 20px 15px;
}
.footer-inner{
    max-width: 1050px;
    margin: 0 auto;
}
.footer-lists{
    display: flex;
    flex-wrap: wrap;
}
.footer-list{
    width: 50%;
    font-size: 1.2rem;
}
.footer-list:nth-child(n+3){
    margin-top: 15px;
}
.footer-copy{
    background-color: #000;
    padding: 10px 0;
    font-size: 1rem;
    color: #fff;
    text-align: center;
    line-height: 1.35;
}
@media (min-width: 768px){
    .footer{
        padding: 23px 25px;
    }
}
@media (min-width: 1024px){
    .footer-lists{
        justify-content: center;
        flex-wrap: nowrap;
    }
    .footer-list{
        font-size: 1.3rem;
        text-align: center;
    }
    .footer-list:nth-child(n+2){
        margin-left: 60px;
    }
    .footer-list:nth-child(n+3){
        margin-top: 0;
    }
    .footer-copy{
        padding: 15px 0;
        font-size: 1.1rem;
    }
}