<?php
header("Content-type: text/css; charset=utf-8");
echo '@charset "utf-8";';

$ua = $_SERVER['HTTP_USER_AGENT'];
if (preg_match("/Macintosh|Mac_PowerPC|AppleWebKit/",$ua) && !preg_match("/Chrome/",$ua)) {
	echo "body {font-family:'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro',sans-serif;font-size: 15px;}";
}
else if (preg_match("/Windows NT (4|5)\.\d+|windows (98|95|CE)/",$ua)) {
	echo "body {font-family:'ＭＳ Ｐゴシック','MS PGothic',sans-serif;}";
}
else if (preg_match("/Windows NT (6)\.\d/",$ua)) {
	echo "body {font-family:'メイリオ',Meiryo,'Segoe UI',sans-serif;}";
}
else if (preg_match("/Windows/",$ua)) {
	echo "body {font-family:'メイリオ',Meiryo,'Segoe UI',sans-serif;}";
}
?>