.footer_area {
    background-color: #253044;
    display: flex;
    padding: 2rem 12rem;
    justify-content: space-between;
}

.footer_copy {
    font-family: var(--NotoSans);
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 150%;
    letter-spacing: 0%;
    color: #fff;
}

.footer_privacy {
    font-family: var(--NotoSans);
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 150%;
    letter-spacing: 0%;
    color: #fff;
    border-bottom: solid #fff 0.1rem;
}

.footer_company {
    font-family: var(--NotoSans);
    font-weight: 400;
    font-size: 1.4rem;
    line-height: 150%;
    letter-spacing: 0%;
    color: #fff;
}

.footer_area02 {
    display: flex;
    width: 22rem;
    justify-content: space-between;
}

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

    .footer_area {
        padding: 2rem 7.5rem 3rem;
        flex-direction: column;
    }

    .footer_area02 {
        order: 1;
        margin-bottom: 2rem;
    }

    .footer_copy {
        order: 2;
        text-align: center;
    }
}