/*フォントファミリーとフォントサイズをクロスブラウザ*/
/*ブラウザごとにバラバラなフォントサイズとフォントファミリーを揃える*/
body{
font:13px/1,230 arial,helvetica,clean,sans-serif;
*font-size: small;
*font:x-small;
font-family:'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ','Mayryo','ＭＳ Ｐゴシック','MS PGothic',sans-serif;
/* ... */
/*font-family:'ヒラギノ明朝 Pro W3','Hiragino Mincho Pro','ＭＳ Ｐ明朝','MS PMincho',serif;*/
}

/*テーブルで親要素を継承*/
table{
font-size: inherit;
font:100%;
}


/*整形済みテキストの見栄えを設定*/
pre,code,kbd,samp,tt{
font-family: monospace;*font-size: 108%;
line-height: 100%;
}
