$(function(){$('a[href^="#"]').click(function(){var speed=400;var href=$(this).attr('href');var target=$(href=='#'||href==''?'html':href);var position=target.offset().top;$('body,html').animate({scrollTop:position},speed,'swing');return false;});$('#hamburger').click(function(){$('.gNavi').slideToggle(600,'linear');return false;});var setElem = $('.press'),pcName = '_pc',spName = '_sp',replaceWidth = 641;setElem.each(function(){var kore = $(this);function imgSize(){var windowWidth = parseInt($(window).width());if(windowWidth >= replaceWidth){kore.attr('src',kore.attr('src').replace(spName,pcName)).css({visibility:'visible'});}else if(windowWidth < replaceWidth){kore.attr('src',kore.attr('src').replace(pcName,spName)).css({visibility:'visible'});}}$(window).resize(function(){imgSize();});imgSize();});$('.card').css('cursor','pointer');$('.card').click(function(){window.location.href=$(this).find('a').attr('href');});$('a img').hover(function(){$(this).fadeTo(200,0.5);},function(){$(this).fadeTo(300,1);});var pagetop=$('.pagetop');$(window).scroll(function(){if($(this).scrollTop()>100){pagetop.fadeIn();}else{pagetop.fadeOut();}});pagetop.click(function(){$('body,html').animate({scrollTop:0},500);return false;});});