/*nt_ptop_slider.js*/
$(document).ready(function() {
var pagetop = $('.ptop');
$(window).scroll(function () {
if ($(this).scrollTop() > 100) {
pagetop.fadeIn();
} else {
pagetop.fadeOut();
}
});
pagetop.click(function () {
$('body, html').animate({ scrollTop: 0 }, 500);
return false;
});
});
/*pege_sc.js*/
$(function() {
var offsetY = 0;
var time = 500;
$('a[href^=#]').click(function() {
var target = $(this.hash);
if (!target.length) return ;
var targetY = target.offset().top+offsetY;
$('html,body').animate({scrollTop: targetY}, time, 'swing');
window.history.pushState(null, null, this.hash);
return false;
});
});
/*nt_tabs.js*/
$(function(){
$('#tab-menu li').on('click', function(){
if($(this).not('active')){
// タブメニュー
$(this).addClass('active').siblings('li').removeClass('active');
// タブの中身
var index = $('#tab-menu li').index(this);
$('#tab-box div').eq(index).addClass('active').siblings('div').removeClass('active');
}
});
});