@charset "utf-8";
/* @import "/css/common.css"; */


footer{
    /* display: flex;
    justify-content: center;
    align-items: center; */
    padding: 90px 160px;
    background-color: var(--color-main);
    color: white;
    font-weight: var(--FW-L);
    font-size: 14px;
    width: 100%;
}
footer a{
    color: white;
}
.footer__wrap{
    width: 100%;
    display: flex;
    flex-direction: column;
}
.footer__line{
    height: 1px;
    background: white;
    opacity: 0.19;
    margin: 40px 0;
}
.footer__top{
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}
.footer__logo{
    margin-bottom: 13px;
}
.footer__logo img{
    width: 160px;
}
.footer__right{
    line-height: 25px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer__add,
.contact__t,
.contact__f,
.footer__cs{
    display: flex;
    gap: 8px;
    font-style: normal;
    /* align-items: center; */
}
.footer__contact{
    display: flex;
    gap: 60px;
}
.footer__add >p:nth-child(1),
.contact__t >p:nth-child(1),
.contact__f >p:nth-child(1),
.footer__cs >p:nth-child(1){
   font-size: 16px;
   font-weight: var(--FW-M);
}

.footer__bottom{
    padding: 0 20px;
    font-weight: var(--FW-M);
}
.footer__bottom > a{
    position: relative;
}
.footer__bottom > a::before {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 1px;
    background: #fff;
    transition: width .2s linear;
}
.footer__bottom > a:hover::before{
    width: 100%;
}
.m_nbsp{
    display: none;
}

/* 노트북 & 테블릿 가로 (해상도 1024px ~ 1279px)*/ 
@media all and (max-width:1279px) {
    footer {
        padding: 90px 30px;
    }
  }
  
/*테블릿 가로 (해상도 768px ~ 1023px)*/ 
@media all and (max-width:1023px) { 

    .footer__top{
        flex-wrap: wrap;
        gap: 20px;
    }
}

/* 모바일 가로 & 테블릿 세로 (해상도 480px ~ 767px)*/ 
/* @media all and (max-width:767px) {

}  */


@media all and (max-width:1279px) {
    footer {
        padding: 60px 30px;
    }
    .footer__top,
    .footer__bottom{
        padding: 0 ;
    }
    .m_nbsp{
        display: inline-flex;
    }
    .footer__right{
        font-size: 11px;
        word-break: keep-all;
    }
    .footer__bottom{
        font-size: 11px;
    }
    .footer__line{
        margin: 20px 0;
    }
    .footer__copy{
        font-size: 10px;
    }
    .footer__add >p:nth-child(1), 
    .contact__t >p:nth-child(1), 
    .contact__f >p:nth-child(1), 
    .footer__cs >p:nth-child(1){
        font-size: 12px;
    }
    .footer__logo img{
        width: 80px;
    }
}

/* 모바일 세로 (해상도 ~ 479px)*/ 
@media all and (max-width:479px) {

}