@charset "utf-8";
/* 主なボックスの初期化 */

* {
	margin: 0px;
	padding: 0px;
}
html, body, h1, h2, h3, h4, h5, h6, p, div, blockquote, address, ul, ol, li, dl, dt, dd, table, th, td {
	font-family:
 "ヒラギノ角ゴ Pro W3",  "Hiragino Kaku Gothic Pro W3",  Osaka,  "メイリオ",  Meiryo,  "ＭＳ Ｐゴシック",  "MS P Gothic",  sans-serif;
	color: #333;
}
/* リストマーク非表示 */
ol, ul, li {
	list-style-type: none;
}
/* 画像の縦位置を下に */
img {
	vertical-align: bottom;
}
/* リンク画像のボーダーを非表示 */
a img {
	border:none;
}
