@charset "utf-8";
/* 푸터 */
footer.footer .footer_wrap {
    padding: 60px 0;
    border-top: 1px solid #e1e1e1;
}

footer.footer .footer_container{
    max-width: 1510px;
}

footer.footer .footer_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer.footer .pc_logo {
    width: 124px;
}

footer.footer .pc_logo img {
    width: 100%;
}

footer.footer .footer_policy {
    display: flex;
    gap: 0 20px;
    transform: translateY(-5px);    
}


footer.footer .footer_policy li {
    position: relative;
}

footer.footer .footer_policy li + li::after {
    position: absolute;
    content: '';
    top: 50%;
    transform: translateY(-50%);
    left: -10px;
    width: 1px;
    height: 14px;
    background: #cccccc;

}

footer.footer .footer_policy a {
    display: block;
    padding: 5px;
    font-weight: 500;
    font-size: 15px;
    color: #5d5d5d;
}

footer.footer .footer_bot {
    padding-top: 40px;
}

footer.footer .footer_bot .info_ul{
    margin-bottom: 10px;
}

footer.footer .footer_bot .info_ul.info_flex {
    display: flex;
    gap: 0 28px;
}

footer.footer .footer_bot .info_li {
    position: relative;
}

footer.footer .footer_bot .info_li:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 0;
    right: -14px;
    width: 1px;
    height: 14px;
    background: #cccccc;
}


footer.footer .footer_bot .info_b {
    font-weight: 700;
    font-size: 15px;
    color: #0c0c0c;
}


footer.footer .footer_bot .info_g {
    font-weight: 500;
    font-size: 15px;
    color:#5d5d5d;
}

footer.footer .footer_bot h5 {
    font-size: 13px;
    color: #777777;
}

@media (max-width:991px) {

    .section06 {
        margin-top: 60px;
    }

    footer.footer .footer_wrap {
        padding: 0;
        border-top:1px solid #f1f1f1;
    }

    footer.footer .container_fix {
        padding: 0 17px;
    }

    footer.footer .footer_wrap .mob_logo-box {
        position: relative;    
        padding: 21px 0;
    }

        footer.footer .mob_logo-box::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% + 34px);
        height: 1px;
        background:#f1f1f1;
    }


    footer.footer .footer_wrap .mob_logo-box img {
        width: 93px;
    }

        footer.footer .footer_wrap .mob_logo::after {
        content: '';
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%) rotate(180deg);
        width: 11px;
        height: 6px;
        background: url(/img/drop_arrow.svg) no-repeat center center / cover;
        transition: all .2s ease-in-out;
    }

    footer.footer .footer_wrap .mob_logo-box.active .mob_logo::after {
        transform: translateY(-50%) rotate(0deg);
    }


    footer.footer .footer_box {
        display: none;
    }

    footer.footer .footer_top {
        position: relative;
        padding: 19px 0;
    }


    footer.footer .footer_policy {
        transform: translateY(0px);
        gap:0 27px;
    }

    footer.footer .footer_policy li + li::after {
        left: -14px;
    }

    footer.footer .footer_policy a {
        padding:0;
    }

    footer.footer .footer_bot {
        position: relative;
        padding: 39px 0;
    }

    footer.footer .footer_bot::after {
      content: '';
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% + 34px);
        height: 1px;
        background:#f1f1f1;

    }

    footer.footer .footer_bot .info_ul {
        margin-bottom: 12px;
    }

    footer.footer .footer_bot .info_b {
        font-size: 13px;
    }
    footer.footer .footer_bot .info_g {
        font-size: 13px;
    }


}