/* pc */
#footer_wrap {
    width: 100%;
    border-top: 1px solid #E1E1E1;
}



#footer_wrap .terms_list {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    margin-top: auto;
}

#footer_wrap .terms_list a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 400;
    color: #5E5E5E;
}

#footer_wrap .terms_list a:not(:last-child)::after {
    content: '';
    display: block;
    width: 0;
    height: 10px;
    border-right: 1px solid #9E9E9E;
}

.footer_bottom {
    padding: 32px 0;
}

#footer_wrap .flex_foot {
    display: flex;
    justify-content: space-between;
}

#footer_wrap .logo {
    display: flex;
    /* width: 195px; */
    width: 142px;
}

#footer_wrap .footer_info {
    width: 100%;
    max-width: 494px;
    display: flex;
    flex-direction: column;
}

#footer_wrap .enter_info {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 8px 30px;
}

#footer_wrap .enter_info dl {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    font-weight: 400;
    color: #5E5E5E;
}

#footer_wrap .enter_info dl.w-100 {
    width: 100%;
}

#footer_wrap .enter_info dt {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

#footer_wrap .enter_info dt::after {
    content: '';
    display: block;
    width: 0;
    height: 10px;
    border-right: 1px solid #9E9E9E;
}

#footer_wrap .copyright {
    padding: 12px 0;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    color: #5E5E5E;
    border-top: 1px solid #EBEBEB;
}

/* tablet */
@media screen and (max-width: 1023px) {
    #footer_wrap .flex_foot {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    #footer_wrap .logo {
        width: 140px;
    }

    #footer_wrap .enter_info {
        justify-content: center;
    }

    #footer_wrap .enter_info dl {
        justify-content: center;
    }

    #footer_wrap .terms_list {
        justify-content: center;
        margin-top: 24px;
    }

    .footer_bottom {
        padding: 24px 0;
    }
}

/* mobile */
@media screen and (max-width: 767px) {}