@charset "UTF-8";
/* CSS Document */

/* ブラウザスタイル初期化 */

/* 主要なブロックタグの初期化 */
body, 
h1, h2, h3, h4, h5, h6, p, div, 
ul, ol, li, dl, dt, dd,
table, th, td {
	font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",
				"メイリオ", Meiryo,
				Osaka,
				"ＭＳ Ｐゴシック","MS PGothic",
				sans-serif;
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}

/* リンク指定された画像のボーダーを非表示 */
a img  {
	border:none;
}

/* テーブルのボーダーを一重線に・セル間隔をゼロに */
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* テキストを非表示する為の cleartxtハック */
.clearText {
	text-indent:100%;
	white-space:nowrap;
	overflow:hidden;
}

/* floatを解除するための clearfixハック */

.clearfix:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}
.clearfix {
	display: inline-block;
}
/* Hides from IE-mac \*/
* html .clearfix {
	height: 1%;
}
.clearfix {
	display: block;
}
