/*==============================================
スライドショー
==============================================*/
$(function() {
$('.slider').slick({
prevArrow: '',
nextArrow: '',
infinite: true,
dots: false,
speed: 900,
autoplaySpeed: 5000,
slidesToShow: 1,
centerMode: true,
centerPadding:'18%',
autoplay: true,
responsive: [{
breakpoint: 480,
settings: {
centerMode: false,
}
}]
});
});
/*==============================================
ヘッダー位置ずれ防止
==============================================*/
$(function () {
var headerHight = 50; //ヘッダの高さ
$('a[href^=#]').click(function(){
var href= $(this).attr("href");
var target = $(href == "#" || href == "" ? 'html' : href);
var position = target.offset().top-headerHight; //ヘッダの高さ分位置をずらす
$("html, body").animate({scrollTop:position}, 600, "swing");
return false;
});
});
/*==============================================
要素の高さを揃える
==============================================*/
$(function(){
$('.STF_WEBNAME').matchHeight();
});