@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 W3",
				Osaka,
				"メイリオ",
				"ＭＳ Ｐゴシック",
				sans-serif;
	line-height: 1;
	margin: 0px;
	padding: 0px;
}

/* リストマーク非表示 */
ol, ul, li {
	list-style-type: none;
}

/* 画像の縦位置を下に */
img {
	vertical-align: bottom;
}

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

/* テーブルのボーダーを重ねて表示 */
table {
	border-collapse: collapse;
} 

/* floatを解除する clearfix */

.clearfix:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}

.clearfix {
	display: inline-block;
	position:relative;
}

/* Hides from IE-mac \*/
* html .clearfix {
	height: 1%;
}
.clearfix {
	display: block;
}
/* End hide from IE-mac */
