$('.tab-item').on('click', function() { var tabIndex = $('.tab-item').index(this); $('.tab-item, .panel-item').removeClass('is-active'); $('.panel-item').eq(tabIndex).addClass('is-active'); $(this).addClass('is-active'); }); $(document).on('ready', function() { $(".slider").slick({ autoplay: false, // 自動再生を設定 autoplaySpeed: 4000, // 自動再生のスピード(ミリ秒単位) }); });