//******** WinとMacでfont指定のcssを振り分ける ****

if (navigator.appVersion.indexOf("Mac") != -1) {
	// ■MACの場合
	document.write("<link rel=\"stylesheet\" href=\"http://www.dolphin-gt.com/css/font-mac.css\" type=\"text/css\">");

} else {
	// ■windowsの場合

	if (navigator.userAgent.indexOf("Firefox") != -1){
		// Firefox
		document.write("<link rel=\"stylesheet\" href=\"http://www.dolphin-gt.com/css/font-ffwin.css\" type=\"text/css\">");
	} else if (navigator.userAgent.indexOf("Opera") != -1){
		// Opera
		document.write("<link rel=\"stylesheet\" href=\"http://www.dolphin-gt.com/css/font-opera.css\" type=\"text/css\">");
	} else if (navigator.userAgent.indexOf("Safari") != -1){
		// Opera
		document.write("<link rel=\"stylesheet\" href=\"http://www.dolphin-gt.com/css/font-modern.css\" type=\"text/css\">");
	} else if (navigator.userAgent.indexOf("MSIE 7") != -1) {
		// MSIE 7.x
		document.write("<link rel=\"stylesheet\" href=\"http://www.dolphin-gt.com/font-winIE7.css\" type=\"text/css\">");
	} else {
		// その他
		document.write("<link rel=\"stylesheet\" href=\"http://www.dolphin-gt.com/css/font-winIE.css\" type=\"text/css\">");
	}

}

