
/*서브-2차메뉴*/
#lnb {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    overflow-x: auto; /* 가로 스크롤 활성화 */
    white-space: nowrap; /* 요소들이 한 줄로 배치되도록 설정 */
}

#lnb dl {
    display: flex;
    justify-content: center;
}

#lnb dd {
    color: #fff;
    padding: 0 23px;
    position: relative;
    line-height: 70px;
    font-size: 17px;
    font-weight: 600;
}

#lnb dd a {
    color: #fff;
    position: relative;
    transition: 1s;
}

#lnb dd a.on {
    color: #FF7F40;
}
#lnb dd a::after{
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    position: absolute;
    bottom: calc(100% + 6px);
    background: #FF7F40;
    left: 50%;
    opacity: 0;
}
#lnb dd a:hover::after{
    opacity: 1;
}
#lnb dd a.on:after{
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    position: absolute;
    bottom: calc(100% + 6px);
    background: #FF7F40;
    left: 50%;
    opacity: 1;
}
@media (max-width: 1440px) {
    #lnb dd{
        font-size: 15px;
    }
}
@media (max-width: 1024px) {
    #lnb dd{
        line-height: 60px;
    }
}
@media (max-width: 768px) {
    #lnb dl{
        justify-content: flex-start;
    }
    #lnb dd{
        line-height: 50px;
        font-size: 14px;
        padding: 0 12px;
    }
}
@media (max-width: 425px) {}