/* フッタースタイル */
.footer {
    width: 100%;
    margin-top: 60px;
}

.footer__container {
    background-color: #e5e7e9;
    padding: 40px 20px;
}

.footer__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer__wrapper__figure {
    margin: 0;
}

.footer__wrapper__figure__img {
    width: 288px;
    max-width: 100%;
    height: auto;
}

.footer__wrapper__content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer__wrapper__content__row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1 1 0%;
    gap: 24px;
}

.footer__wrapper__content__link {
    background-color: #fff;
    border: 1px solid #000;
    padding: 16px 32px;
    text-wrap: nowrap;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
    text-decoration: none;
    color: #000;
    display: inline-block;
    transition: opacity 0.3s;
}

.footer__wrapper__content__link:hover {
    opacity: 0.75;
}

.footer__wrapper__content__info {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.footer__wrapper__content__info__sns {
    position: relative;
    background-color: #fff;
    border: 3px solid #000;
    padding: 8px 24px;
}

.footer__info__sns_label {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.footer__wrapper__content__info__menu {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer___menu__item__link {
    text-decoration: none;
    transition: opacity 0.3s;
}

.footer___menu__item__link:hover {
    opacity: 0.75;
}

.footer___menu__item__icon {
    width: 28px;
    height: auto;
    max-width: none;
    display: block;
}

.youtube-icon {
    width: 27px !important;
}

.footer__wrapper__content__about {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 8px;
    align-items: center;
    font-weight: 500;
    font-size: 13px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__about__copyright {
    font-family: "Helvetica Neue", Arial, sans-serif;
    margin: 0;
}

.footer__about__privacy,
.footer__about__term,
.footer__about__info {
    text-decoration: none;
    color: #000;
    transition: opacity 0.3s;
}

.footer__about__privacy:hover,
.footer__about__term:hover,
.footer__about__info:hover {
    text-decoration: underline;
}

/* PC表示 */
@media (min-width: 768px) {
    .footer__container {
        padding: 60px 40px;
    }

    .footer__wrapper {
        flex-direction: row;
        gap: 40px;
    }

    .footer__wrapper__figure__img {
        width: 320px;
    }

    .footer__wrapper__content__row {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .footer__wrapper__content__info {
        flex-wrap: nowrap;
    }
}
