$(function(){ // #で始まるアンカーをクリックした場合に処理 $('a[href^=#]'+ 'a:not(.link_tabs)').not('.ui-tabs-nav a').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; }); // castサムネイルサイズ調整 $('.lady, .cast').matchHeight(); //アコーディオン $('.accordion').on('click',function() { $(this).next().slideToggle('fast'); $(this).toggleClass('down'); }); // slider $('#top_slider').slick({ autoplay: true, fade: false, autoplaySpeed: 3500, arrows: true, cssEase: 'linear', speed: 250 }); });