$(function (){

	//Homeから対象者別リンクを辿ってきた時、nextリンクを表示切替

	var hash = window.location.hash;
	hash = hash.split("?");
	hash = hash[0].split("#");

	$(".btnNext").hide();     //普段はnextリンク非表示

	if (hash[1] == 'targeted'){     //hashが#targetedの時、
		$(".btnNext").show();     //nextリンクを表示
	}

	else if (hash[1] == 'targeted_ac'){     //hashが専門課程ルートの#targeted_acの時、
		$(".btnNext").show();     //nextリンクを表示
		$(".targeted_ll").hide();     //生涯学習ルートのリンク（targeted_ll）は非表示
	}
	
	else if (hash[1] == 'targeted_ll'){     //hashが生涯学習ルートの#targeted_llの時、
		$(".btnNext").show();     //nextリンクを表示
		$(".targeted_ac").hide();     //専門課程ルートのリンク（targeted_ac）は非表示
	}

})

