$(function(){
		// ページ内リンクスクロール
		$("#faq a[href*=#], #event a[href*=#], #kindergarten a[href*=#], #life_cicle a[href*=#]").click(function() {
			$("html,body").animate({ scrollTop: $($(this).attr("href")).offset().top }, 'normal', 'swing');
			return false;
			});
		});
/* toTopアニメーション
--------------------------------------------------*/
jQuery(document).ready(function(){

	// hide #gototop first
	jQuery("#gototop").hide();
	jQuery("#gototop a").css("opacity", "0.4");
	
	
	// fade in #gototop
	jQuery(function () {
		jQuery(window).scroll(function () {
			if (jQuery(this).scrollTop() > 300) {
				jQuery('#gototop').show();
			} else {
				jQuery('#gototop').hide();
			}
		});

		//ウインドウ幅を変更したらボタン位置変更
		jQuery(window).resize(function () {
			var left_content = $("#contents").offset().left;
			var result_left = left_content + 720 + 10;
			jQuery('#gototop a').css("left", result_left + "px");
		});

		// scroll body to 0px on click
		jQuery('#gototop a').click(function () {
			jQuery('body,html').animate({
				scrollTop: 0
			}, 1000);
			return false;
		});

		//ホバーしたら透明度を変更
		jQuery('#gototop a').hover(function () {
			$(this).css("opacity", "1.0");
		}, function() {
			$(this).css("opacity", "0.4");
		});
	});

});	

