$(function(){
var footerInfomation = $('#main .footer__infomation');
$(window).scroll(function () {
var target_offset = $("#tourinfobox_wrap").offset().top;
if($('.contactTel').css('display') == 'block'){
target_offset = $('.contactTel').offset().top;
}
if($(this).scrollTop() > target_offset - $(window).height()){
footerInfomation.fadeOut();
}else if ($(this).scrollTop() > 200) {
footerInfomation.fadeIn();
}else{
footerInfomation.fadeOut();
}
});
});