/* フッターセクション */
.footer {
    width: 100vw;
    background-color: black;
    padding: 3.333333vw 8.333333vw;
    font-family: 'Noto Sans JP', sans-serif;
}

@media (max-width: 780px) {
    .footer {
        width: 100vw;
        padding: 10.666667vw 8vw;
    }
}

.footer__container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media (max-width: 780px) {
    .footer__container {
        flex-direction: column;
        justify-content: unset;
    }
}

.footer__logo {
    width: 8.333333vw;
    height: 5.786458vw;
}

@media (max-width: 780px) {
    .footer__logo {
        width: 64vw;
        height: 14.584vw;
    }
}

.footer__logo img {
    width: 100%;
}

.footer__list {
    list-style: none;
    display: flex;
    gap: 1.510417vw;
}

@media (max-width: 780px) {
    .footer__list {
        gap: 7.733333vw;
        margin-top: 10.666667vw;
    }
}

.footer__list-item {
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.05em;
}

@media (max-width: 780px) {
    .footer__list-item {
        font-size: 3.733333vw;
    }
}

.footer__list-item a {
    color: white;
    text-decoration: none;
}

.footer__copyright {
    color: white;
    font-size: 10px;
    font-weight: 500;
    line-height: 2.8;
    letter-spacing: 0.05em;
}

@media (max-width: 780px) {
    .footer__copyright {
        font-size: 2.666667vw;
        margin-top: 4.266667vw;
    }
}