/* よく登場する要素のリセット */
body, div, h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd,
table, caption, th, td, img, blockquote,
form, input, textarea {
	margin: 0;
	padding: 0;
	border: none;
	font-style: normal;
	font-weight: normal;
	font-size: 100%;
	text-align: left;
	list-style-type: none;
}

/* テキストエリア内文字サイズのブラウザ間での差異をなくす
textarea { font-size: 100%; } */

/* 画像の下にできる隙間をなくす */
img { vertical-align: bottom; }

/* hr 要素は不可視で使う */
hr { display: none; }

/* テーブルのボーダー表示の違いをなくす */
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* ブラウザのスクロールバー表示の違いをなくす */
html {
	overflow: scroll;
	overflow: -moz-scrollbars-vertical;
	overflow-x: scroll;
}

/* リストマーク表示をなくす */
ol,ul {
	list-style-type: none;
}

/* フォントの指定 */
body {
	font: 13px/1.231 arial,helvetica,clean,sans-serif; /* 基本文字設定 */
	*font-size: small; /* Win IE7およびWin IE6標準準拠モード向け */
	*font: x-small; /* Win IE 5-5.5､6(後方互換モード)向け */
}

/* IE 6以前でtableへフォントサイズの継承がうまくいかない問題を回避 */
table {
	font-size: inherit; /* モダンブラウザ向け */
	font: 100%; /* Win IE 5-5.5､6(後方互換モード)向け */
}

/* IE全般でpreやcodeの等幅フォントのサイズが小さくなるのを回避 */
pre,code,kbd,samp,tt {
	font-family: monospace;
	*font-size: 108%; /* Win IE全般向け */
	line-height: 100%;
}

/* フォントの種類の設定 */
* {
	font-family:
		"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",
		"メイリオ",Meiryo,
		Osaka,
		"MS Pゴシック","MS P Gothic",
		sans-serif;
}

/* IE7に対するフォントの種類 */
*:first-child+html *{
	font-family:
		"メイリオ",Meiryo,
		"MS Pゴシック","MS P Gothic",
	sans-serif;
}

/* IE6に対するフォントの種類 */
* html * {
	font-family:
		"メイリオ",Meiryo,
		"MS P ゴシック","MS P Gothic",
		sans-serif;
}

/* 斜体を直す */
address, em {
	font-style: normal;	/* 斜体を通常体に戻す */
}

/* pタグの間隔設定 */
p {
	line-height: 150%;
	margin: 0 10px;
}


/* 以下YUIのリセット 改めて修正予定 
======================================================
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}

:focus {
	outline: 0;
}

ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}
*/
