/*============================================== #へ移動↓ ==============================================*/ jQuery(function() { jQuery("a[href^=#]").click(function(){ var elmID = jQuery(this).attr("href"); var posi = 0; if(jQuery(elmID).size()){ posi = jQuery(elmID).offset().top -0; BodySlider(posi); return false; } }); function BodySlider(HashOffset){ jQuery("html,body").animate({ scrollTop: HashOffset }, 600); } }); /*============================================== スライドショー ==============================================*/ $(function() { $('.slider').slick({ prevArrow: '', nextArrow: '', infinite: true, dots: false, slidesToShow: 1, centerMode: true, //要素を中央寄せ centerPadding:'10%', //両サイドの見えている部分のサイズ autoplay:true, //自動再生 responsive: [{ breakpoint: 480, settings: { centerMode: true, } }] }); }); /*============================================== アコーディオン ==============================================*/ //もっと見る $(function(){ $(".more_btn").click(function(){ $(this).next(".show_more").slideToggle(); $(this).toggleClass("open"); $(this).siblings(".show_more").removeClass("open"); }); }); /*============================================== 要素の高さを揃える ==============================================*/ $(function(){ $('.STF_WEBNAME').matchHeight(); });