/*//////////////////////////////////////////////////

	共通js

//////////////////////////////////////////////////*/



$(window).on('load resize scroll', function(e){

	///--------------------------------------------------
	///    アニメーション稼働
	///--------------------------------------------------
    //スクロール位置
    let ws = $(window).scrollTop();
    let ih = $(window).innerHeight();
	$('.js-anime').each(function(){
		//稼働済みはスキップ
		if($(this).hasClass('on')) return true;
		//数字の位置
		let elem_offset = $(this).offset();
		if((ws + ih) > (elem_offset.top + (ih * 0.2))){
			$(this).addClass('on');
		}
	})
});
