<!--
//*****css振り分け****

var IsWin = (navigator.userAgent.indexOf("Win") >= 0);
app = navigator.appName.charAt(0);
v=navigator.appVersion.indexOf("MSIE");
Ver=navigator.appVersion.substring((v+4),(v+8));
window.onresize = rebuild;
function rebuild(){ location.reload();}
	if(IsWin) {
		if(app == "N"){
			document.write('<link rel="stylesheet" href="../../css/mobile_wn.css" type="text/css">');
		}else if(app == "M"){
			document.write('<link rel="stylesheet" href="../../css/mobile_wi.css" type="text/css">');
		}
	}else{
		if(app == "N") {
			document.write('<link rel="stylesheet" href="../../css/mobile_mn.css" type="text/css">');
		}else if(app == "M"){
			document.write('<link rel="stylesheet" href="../../css/mobile_mi.css" type="text/css">');
		}
	}
//-->