.footer_wrap {
    padding: 0 0 80px;
}

.footer_menu_wrap {
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: space-between;
}

.footer__logo {
    width: 67%;
}

a.logo_a {
    max-width: 300px;
}

.footer_main_nav {
    display: flex;
    margin-top: 24px;
    flex-wrap: wrap;


    a {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 25%;
        margin-bottom: 24px;
        color: var(--main-dark, #142357);
        font-family: Barlow;
        font-size: 1.765vw;
        font-style: normal;
        font-weight: 600;
        line-height: normal;
        letter-spacing: -0.48px;
        text-transform: uppercase;

        span {
            color: var(--Neutral-Gray-500, #9E9E9E);
            font-family: "Zen Kaku Gothic New";
            font-size: 1.176vw;
            font-style: normal;
            font-weight: 400;
            line-height: 20px; /* 125% */
            text-transform: uppercase;
        }
    }
}

.footer_info_menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 767px) {

    .footer_menu_wrap {
        flex-direction: column;
    }

    .footer_main_nav {
        flex-wrap: wrap;

        a {
            width: 50%;
            margin-bottom: 28px;
            font-size: 6.154vw;

            span {
                font-size: 4.176vw;
            }
        }
    }

    .footer__logo {
        width: 100%;
        flex-direction: column;
    }

    .footer_info_menu a {
        color: #142357;
        margin-bottom: 15px;
    }

    .footer_info_menu {
        margin-top: 20px;
    }

    .fotter_sns_link {
        position: absolute;
        bottom: 120px;
        right: 8%;
    }
}