const $btnMenu = $("#header .btn-menu"); const $mobGNB = $("#header .mobGnb"); const $lnbDep1 = $("#header .mobGnb .btn-dep1"); const $lnb = $("#header .mobGnb .lnbList"); $btnMenu.click(function () { $(this).toggleClass('on'); $mobGNB.fadeToggle('on'); }); $lnbDep1.click(function () { $(this).parents('.gnb__list').toggleClass('on').siblings().removeClass('on'); $(this).parents('.gnb__list').sib..