/* =========================
   Footer
========================= */

.footer {
    background: #000;
    color: #fff;
    padding: 80px 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer__logo img {
    height: 7rem;
    background: #fff;
    padding: 8px 12px;
    border-radius: 4px;
}

.footer__nav ul {
    display: flex;
    gap: 32px;
}

.footer__nav a {
    color: #fff;
    font-weight: 700;
    opacity: 0.85;
}

.footer__nav a:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 24px;
    text-align: center;
    font-size: 14px;
    opacity: 0.8;
}

/* SP */
@media (max-width: 767px) {
    .footer__top {
        flex-direction: column;
        gap: 24px;
    }

    .footer__nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}