@charset "UTF-8";



/*-------------------------
フォントサイズ指定
---------------------------*/



body {
	font:12px/1.231 arial,helvetica,clean,sans-serif;
	/* for IE6/7 */ 
	*font-size:12px; 
	/* for IE Quirks Mode */
	*font:12px; 
}

::selection {
background: #FFFBDD;
}
/* Firefox対応*/
::-moz-selection {
background: #FFFBDD;
}


/*-------------------------
フォントの種類の選択
---------------------------*/

* {
	font-family: 
	helvetica,
	"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
	"メイリオ", Meiryo,
	Osaka,
	"MS Pゴシック","MS P Gothic",
	arial,
	sans-serif;
}

/*IE7に対するフォントの種類*/
*:first-child+html * {
	font-family: 
	
	"メイリオ", Meiryo,
	"MS Pゴシック","MS P Gothic",
	helvetica,
	arial,
	sans-serif;
}

/*IE6に対するフォントの種類*/
* html * {
	font-family: 
	
	"メイリオ", Meiryo,
	"MS Pゴシック","MS P Gothic",
	helvetica,
	arial,
	sans-serif;
}