$(function(){

	$("a[rel^='prettyPhoto']").prettyPhoto();
	
	
	
	var today = new Date();
	var y = today.getFullYear();
	var m = today.getMonth()+1;
	var d = today.getDate();
	
	$(".update_text_01").html("最終更新日：" + y + "年" + m + "月" + d + "日");
	



	//個人情報保護方針の続きをみるリンク
	$(".next a").click(
		function(){
			$(".hidden_text").show();
			$(".next").hide();
		}
	);

});



