@charset "UTF-8";

/* フッター
***************************************************************/
footer {
    padding: 20px 50px 30px;
    background-color: #5ce1e6;
}

.footer__wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {}

.footer-logo a.logo {}

.footer-logo a.logo img {}
.footer-logo .logo--name {
    font-size: 16px;
    text-align: center;
    color: #fff;
}

.footer_nav {}

.footer_nav ul {
    display: flex;
    align-items: center;
    gap: 100px;
}

.footer_nav ul li {}

.footer_nav ul li a {
    font-size: 22px;
    color: #fff;
    text-wrap: nowrap;
}

.footer-sns {}

.footer-sns__list {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 80px;
}

.footer-sns__item {}

.footer-sns__item a {}

.footer-sns__item a img {
    width: 30px;
}

.footer-sns__item:nth-of-type(5) a img {
    scale: 0.9;
}

.footer__item:nth-of-type(6) a img {
    scale: 1.3;
}

.footer-sns__item:nth-of-type(7) a img {
    scale: 1.8;
}

.copyright {
    margin-top: 20px;
    font-size: 20px;
    text-align: center;
    color: #fff;
}


@media screen and (max-width: 1080px) {

    .footer__wrap,
    .footer-sns {
        display: none;
    }
    .copyright {
        font-size: 12px;
    }
}

@media screen and (min-width: 681px) {}

@media screen and (max-width: 680px) {
    footer {
        padding: 20px;
    }

    .footer-logo {
        text-align: center;
    }

    .footer-logo a.logo {
        width: 70px;
    }

    .footer_nav {
        display: none;
    }

    .footer-sns {
        display: none;
    }

    .copyright {
        margin-top: 20px;
        font-size: 14px;
    }
}