/**
========================
footer-company
========================
*/
.footer_company {
    width: 100%;
    background: var(--wp--custom--color--blue--50);
}

.footer_company_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 24px 0 12px;
    box-sizing: border-box;
    gap: 20px;
}

.footer_company_box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer_company_logo {
    width: auto;
    height: 16px;
    flex-shrink: 0;
}

.footer_company_list {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0 40px;
    max-width: 300px;
}

.footer_company_item {
    color: var(--wp--custom--color--neutral--500);
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 8px;
    font-weight: 700;
    text-decoration: none;
}

.footer_company_copyright {
    color: var(--wp--custom--color--neutral--500);
    font-family: "Noto Sans JP";
    font-size: 8px;
    font-weight: 700;
}

@media screen and (min-width: 1280px) {
    .footer_company_wrapper {
        padding: 40px 0 24px;
        gap: 32px;
    }

    .footer_company_box {
        flex-direction: row;
        gap: 120px;
    }

    .footer_company_logo {
        height: 32px;
    }

    .footer_company_list {
        gap: 12px 20px;
        padding: 0;
        max-width: 400px;
        justify-content: flex-start;
    }

    .footer_company_item {
        font-size: 12px;
    }

    .footer_company_copyright {
        font-size: 12px;
    }
}