$('.accordion').on('click', function () { var target = $(this).data('target'); $( '#' + target ).slideToggle(); }); if (window.matchMedia("(min-width: 481px)").matches) { $(function () { var headerHeight = 79;//固定ヘッダーの高さを入れる $('[href^="#"]').click(function(){ var href= $(this).attr("href"); var target = $(href == "#" || href == "" ? 'html' : href); var position = target.offset().top-headerHeight; $("html, body").animate({scrollTop:position}, 400, "swing");//200はスクロールの移動スピードです return false; }); }); } else { $(function () { var headerHeight = 59;//固定ヘッダーの高さを入れる $('[href^="#"]').click(function(){ var href= $(this).attr("href"); var target = $(href == "#" || href == "" ? 'html' : href); var position = target.offset().top-headerHeight; $("html, body").animate({scrollTop:position}, 400, "swing");//200はスクロールの移動スピードです return false; }); }); } $(function () { $('#navToggle').on('click', function () { $('#navContent').toggleClass('open'); $('#navToggle span').toggleClass('open'); $('html').toggleClass('fixed'); }); }); $(function () { $('.header-item a').on('click', function () { $('#navContent').toggleClass('open'); $('#navToggle span').toggleClass('open'); }); });