@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700&display=swap');

/* font-family: 'Noto Sans KR', sans-serif; */

#footer{
	font-family: 'PB_R';
	font-weight: normal; 
    -webkit-text-size-adjust: 100%;
    font-family: 'Noto Sans KR', sans-serif;
    font-size:16px;
    letter-spacing:-0.005em;
    color:#797979;
    line-height:1.8;
    border-top:1px solid #B6B6B6;
    background:#FAFAFA;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
#footer .container{
    width:1600px;
    margin:0 auto;
    padding:35px 0;
    display:flex;
    justify-content:center;
    gap: 0 120px;
    align-items:center;
}
#footer .footer_list{
    width:540px;
    display:flex;
    flex-wrap:wrap;
    gap:0 25px;
    margin-bottom:25px;
}
#footer .footer_list li{
    position:relative;
}
#footer .footer_list li:nth-child(2)::before, 
#footer .footer_list li:nth-child(3)::before, 
#footer .footer_list li:nth-child(5)::before {
    content: '|';
    position: absolute;
    top: 50%;
    left: -15px;
    transform: translateY(-50%);
}
#footer .copyright{
	font-family: 'PB_B';
	font-weight: bold;    
    color:#9D9D9D;
}
#footer h2 .logo{
    display:block;
    width:80px;
    height:80px;
    background:url(../img/main/footer_logo.png) no-repeat center center/cover;
}
#footer br{
    display:none;
}
/* .footp-site {
    display: flex;
    flex-flow: column wrap;
    justify-content: space-between;
    margin-bottom: 50px;
    white-space: nowrap;
  }
.footp-site-sel{
    margin-right: 100px;
    position: relative;
}

.footp-site-sel>.site-wrap>li p {
    padding:12px 60px ;
    background: #000000;
    border: 1px solid #333;
    color: #fff;
    width:100%;
    cursor: pointer;
}

.site-wrap li p i{
    margin-left:10px;
    font-size:1rem;
    align-self: flex-start;
}

.site-wrap-sub{
    position: absolute;bottom:100%;left:0;
    width:100%;display: none;
}
.site-wrap-sub.on {
    display:block;
}
.site-wrap-sub>li {
    border-bottom:1px solid #999;
}
.site-wrap-sub>li>a{
    display: block;padding:15px 35px 15px 25px;
    background: #4e4e4e91;
    color:#fff;
    border-top: 1px solid #fff;
    font-weight: 500;
    text-align: center;
}
.site-wrap-sub>li:last-child {
    border-bottom:none;
}

.site-wrap-sub>li a:hover{
    background:#fff;
    color:#222;
    transition: .4s ease;
} */

/* ----------------------------- RESPONSIVE ------------------------------ */
@media (max-width:1650px){
    #footer .container{
        width:90%;
    }
}
@media (max-width:1080px){
    #footer{
        flex-wrap: wrap;
        justify-content: center;
    }
    .footp-site-sel{
        margin-right: 0;
    }
}
@media (max-width:768px){
    #footer .container{
        flex-direction:column;
        align-items:start;
        gap:30px;
    }
}
@media (max-width:600px){
    #footer{
        font-size:14px;
    }
    #footer .footer_list {
        width: 475px;
    }
}
@media (max-width:500px){
    #footer .footer_list{
        flex-direction:column;
    }
    #footer .footer_list li:nth-child(2)::before,
    #footer .footer_list li:nth-child(3)::before,
    #footer .footer_list li:nth-child(5)::before{
        display:none;
    }
    #footer br{
        display:block;
    }
}
@media (max-width:370px){
    #footer h2 .logo {
        width: 50px;
        height: 50px;
    }
    #footer .footer_list{
        margin-bottom:10px;
    }
    #footer .container{
        gap:20px;
    }
}