/* フッター */
/* footer { background: #002b80; } */
/* footer div, footer a, footer p{ color: white;} */
footer{background: var(--pale-red); position: relative;}

footer .footer-wrapper{
    padding: 60px 0;
}

footer .main{
    width: 100%;
    display: flex;
    justify-content: space-between;
    /* margin-bottom: 60px; */
    height: 100px;
}

footer .img-wrapper{
    width: fit-content;
    display: flex;
    flex-direction: column;
}

footer .img-wrapper img{
    height: 20px;
}

footer .img-wrapper img:nth-child(1){
    margin-bottom: 15px;
}

footer .privacy{font-size: var(--font-semi-normal);}

footer .credit{
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: 0.5em;
    letter-spacing: 0.05em;
}

/* =========================
スマホ（～768px）
========================= */
@media (max-width: 768px) {
    /* ----------- フッター ----------- */
    footer .footer-wrapper{padding: 30px 0;}
    
    .footer-wrapper .main{
        flex-direction: column;
        justify-content: center;
        height: auto;
    }

    .footer-wrapper .main .img-wrapper{margin: 0 auto 30px auto;}
    .footer-wrapper .links-wrapper .privacy{text-align: center;}
}