:root {
    --main_color: #F87E98;
    --second_color: #FCFFF1;
    --third_color: #9FC31D;
    --main_font_color: #111111;
    --main_font_size: 20px;
    --letter_spacing: 3px;
}

footer {
    padding-top: 50px;
    padding-bottom: 50px;
    background-color: var(--second_color);
}
.footer_box {
    display: flex;
}
.footer_l {
    width: 55%;
    height: auto;
    border-right: 2px solid #ccc;
}
.footer_logo {
    max-width: 300px;
    margin-bottom: 25px;
}
.footer_txt {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    margin-bottom: 20px;
}
.footer_txt:last-child {
    margin-bottom: 0;
}
.footer_txt p:first-child {
    width: 30%;
    height: auto;
}
.footer_txt p:last-child {
    width: 70%;
    height: auto;
}

.footer_r {
    width: 45%;
    height: auto;
    padding-left: 30px;
}
.footer_link_txt {
    font-size: 18px;
    font-weight: bold;
    color: var(--third_color);
    margin-bottom: 20px;
}
.footer_link_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 36px;
}
.footer_link {
    width: 50%;
    height: auto;
    font-size: 18px;
    color: var(--main_font_color);
    margin-bottom: 20px;
}
.footer_link:nth-of-type(7) {
    margin-bottom: 0px;
}
.footer_sns_box {
    display: flex;
}
.footer_sns {
    display: block;
    width: 50px;
    height: 50px;
    margin-right: 30px;
}
.footer_sns:last-child {
    margin-right: 0;
}
.copyright {
    font-size: 12px;
    font-weight: bold;
    letter-spacing: var(--letter_spacing);
    text-align: center;
    padding-top: 16px;
    padding-bottom: 16px;
    background-color: #B0E8AD;
}

@media only screen and (max-width: 1024px) {
    .footer_box {
        display: block;
    }
    .footer_l {
        width: 100%;
        border-right: none;
        padding-bottom: 30px;
        border-bottom: 2px solid #ccc;
        margin-bottom: 30px;
    }
    .footer_r {
        width: 100%;
        padding-left: 0;
    }
    .footer_txt {
        font-size: 16px;
    }
    .footer_txt p:first-child {
        width: 40%;
    }
    .footer_txt p:last-child {
        width: 60%;
    }
    .footer_link {
        font-size: 16px;
    }
    .footer_sns_box {
        justify-content: center;
    }
    .copyright {
        font-size: 10px;
    }
}