function checkFunc(){
	rd_chk1  = $("input:radio[@name='chk1']:checked").val(); 
	rd_chk2  = $("input:radio[@name='chk2']:checked").val(); 
	rd_chk3  = $("input:radio[@name='chk3']:checked").val(); 
	rd_chk4  = $("input:radio[@name='chk4']:checked").val(); 
	rd_chk5  = $("input:radio[@name='chk5']:checked").val(); 
	rd_chk6  = $("input:radio[@name='chk6']:checked").val(); 
	rd_chk7  = $("input:radio[@name='chk7']:checked").val(); 
	rd_chk8  = $("input:radio[@name='chk8']:checked").val(); 
	rd_chk9  = $("input:radio[@name='chk9']:checked").val(); 
	rd_chk10 = $("input:radio[@name='chk10']:checked").val();
    rd_total = parseInt(rd_chk1) + parseInt(rd_chk2) + parseInt(rd_chk3) + parseInt(rd_chk4) + parseInt(rd_chk5) + parseInt(rd_chk6) + parseInt(rd_chk7) + parseInt(rd_chk8) + parseInt(rd_chk9) + parseInt(rd_chk10);
    rd_total2 = parseInt(rd_chk5) + parseInt(rd_chk10);
	if( rd_total >= 7 ){ //7以上だったらCプランを表示
		$("div#wiz_area").fadeOut('slow');
		$("div#wiz_area").remove();
		$("#judgment_c").fadeIn("slow");
		$("#plan_c").fadeIn("slow");
		$("#list_b").hide();
		$("#judgment_b").hide();
		$("#plan_b").hide();
		$("#list_a").hide();
		$("#Judgment_a").hide();
		$("#plan_a").hide();
		$("#Judgment_d").hide();
		$("#plan_d").hide();
    }else if(rd_total >= 5){ //5以上だったらBプランを表示
		$("div#wiz_area").fadeOut('slow');
		$("div#wiz_area").remove();
	    $("#list_c").hide();
	    $("#judgment_c").hide();
	    $("#plan_c").hide();
		$("#list_b").fadeIn("slow");
		$("#judgment_b").fadeIn("slow");
		$("#plan_b").fadeIn("slow");
		$("#list_a").hide();
		$("#Judgment_a").hide();
		$("#plan_a").hide();
		$("#Judgment_d").hide();
		$("#plan_d").hide();
    }else if(rd_total >= 3){ //3以上だったらAプランを表示
		$("div#wiz_area").fadeOut('slow');
		$("div#wiz_area").remove();
		$("#list_c").hide();
		$("#judgment_c").hide();
		$("#plan_c").hide();
		$("#list_b").hide();
		$("#judgment_b").hide();
		$("#plan_b").hide();
		$("#list_a").fadeIn("slow");
		$("#Judgment_a").fadeIn("slow");
		$("#plan_a").fadeIn("slow");
		$("#Judgment_d").hide();
		$("#plan_d").hide();
    }else{				//それ以外もAプラン表示
		$("div#wiz_area").fadeOut('slow');
		$("div#wiz_area").remove();
		$("#list_c").hide();
		$("#judgment_c").hide();
		$("#plan_c").hide();
		$("#list_b").hide();
		$("#judgment_b").hide();
		$("#plan_b").hide();
		$("#list_a").hide();
		$("#Judgment_a").hide();
		$("#plan_a").hide();
		$("#Judgment_d").fadeIn("slow");
		$("#plan_d").fadeIn("slow");
    }
		$("#total").html("<strong>チェックした数は"+ rd_total+"個です。</strong>").fadeIn("slow");
		$("#plan_tel").html("お問合せ TEL 0120-63-7708（受付時間 9:00～18:00）").fadeIn("slow");
		$("#plan_contact").fadeIn("slow");
}

