@import url('https://webfontworld.github.io/pretendard/Pretendard.css');
@font-face {
    font-family: 'ImcreSoojin';
    src: url('https://cdn.jsdelivr.net/gh/projectnoonnu/noonfonts_20-04@2.3/ImcreSoojin.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

footer{
    font-family: 'Pretendard', sans-serif;
    background:#EB2D28;
    padding:25px 0 140px;
    text-align:center;
}
footer h2 .logo{
    width:96px;
    height:81px;
    background:url(../img/footer_logo.png) no-repeat;
    display:inline-block;
    text-indent:-9999em;
    margin-bottom:15px;
}
footer .footer_list{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:0 25px;
}
footer .footer_list li{
    font-size:18px;
    font-weight:400;
    letter-spacing:-0.005em;
    color:#fefefe;
    line-height:26px;
    position:relative;
}
footer .footer_list li + li::before{
    content:'|';
    position:absolute;
    top:50%;
    left:-15px;
    transform:translateY(-50%);
}
footer .copyright{
    font-size:14px;
    font-weight:300;
    letter-spacing:-0.005em;
    line-height:26px;
    color:#ffe6e2;
    text-transform:uppercase;
}
footer .copyright br{
    display:none;
}
footer .kakao{
    position:fixed;
    z-index:90;
    bottom:230px;
    right:45px;
    display:grid;
    grid-template-rows:2fr 1fr;
    width:101px;
    height:164px;
}
footer .kakao .img_wrap{
    background:#EB2D28;
    display:flex;
    justify-content:center;
    align-items:center;
}
footer .kakao .text_wrap{
    background:#fefefe;
    border:1px solid #EB2D28;
    display:flex;
    justify-content:center;
    align-items:center;
}
footer .kakao p{
    font-family: 'ImcreSoojin';
    font-weight:500;
    font-size:16px;
    color:#EB2D28;
}
footer #top_btn{
    width:63px;
    height:63px;
    bottom:150px;
    right:45px;
    border:1px solid #EB2D28;
    background:#EB2D28;
    color:#fefefe;
    font-size:20px;
}
footer #top_btn:hover{
    background:#fefefe;
    color:#EB2D28;
    border-color:#EB2D28;
}

/* --------------------------- RESPONSIVE --------------------------- */
@media (max-width:1400px){
    footer{
        padding:25px 0 50px;
    }
    footer #top_btn{
        bottom:50px;
    }
    footer .kakao{
        bottom:130px;
    }
}
@media (max-width:1050px){
    footer .footer_list{
        flex-wrap:wrap;
    }
    footer .kakao > .img_wrap,
    footer .kakao > .text_wrap{
        display:none;
    }
    footer .kakao{
        width:67px;
        height:67px;
        background:url(../img/kakao_mobile.png) no-repeat;
    }
}
@media (max-width:500px){
    footer{
        padding:25px 15px;
    }
    footer .footer_list li:nth-child(3)::before,
    footer .footer_list li:nth-child(4)::before{
        display:none;
    }
    footer .footer_list li{
        font-size:15px;
    }
    footer .copyright br{
        display:block;
    }
    footer #top_btn{
        right:20px;
        bottom:20px;
    }
    footer .kakao{
        right:20px;
        bottom:100px;
    }
}
@media (max-width:384px){
    footer .footer_list li:last-child::before{
        display:none;
    }
}