$(document).ready(function(){ var _width = $(window).width(); var isMobile = false; if (window.matchMedia('screen and (max-width:640px)').matches) { // スマートフォン isMobile = true; } else { // PC } // ページトップへ var topBtn = $('a.tk_go_top'); $(window).scroll(function () { if ($(this).scrollTop() > 75) { topBtn.fadeIn(); } else { topBtn.fadeOut(); } }); topBtn.on('click', function() { $('html, body').animate({ scrollTop: 0}, 600, 'swing'); return false; }); });