jQuery(function ($) { $('.menu-item-has-children, a').on('click', function () { $(this).toggleClass('toggleIcon__close'); $(this).children('.sub-menu').slideToggle(200, 'swing'); }); $('.js-headerArea--search').on('click', function () { $('.js-headerArea--searchBox').toggleClass('headerArea--searchBox__open'); }); // ページトップ var pagetop = $('#page_top'); pagetop.hide(); $(window).scroll(function () { if ($(this).scrollTop() > 100) { pagetop.fadeIn(); } else { pagetop.fadeOut(); } }); pagetop.click(function () { $('body, html').animate({ scrollTop: 0 }, 500); return false; }); });