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


/* ブロックレベルリセット */
html, body, div,h1, h2, h3, h4, h5, h6,
p, blockquote, pre, address,
ul, ol, li, dl, dt, dd,
table, th, td, form, fieldset, input, textarea {
	margin: 0;
	padding: 0;
}

/* iframe IEの横スクロールバー消す */
*html {
	overflow-x: hidden;
}

/* Firefox3スクロールバーズレ対策 */
html {
	overflow: scroll;
	overflow: -moz-scrollbars-vertical;
	overflow-x: scroll;
}

/* Font関連 */
body {
	font-family:'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
	font-size: 100%;
	line-height: 1;
}
h1, h2, h3, h4, h5, p,
ul, ol, li, dl, dt, dd,
address {
	font-size:100%;
	font-style:normal;
	font-weight:normal;
}

a {
	text-decoration: none;
	outline: none; /* リンク点線消す為 */
}

img,
fieldset { 
	border: none;
	vertical-align: bottom; /* 画像下の余白対策 */
}

ol,ul {
	list-style: none;
}

address, em {
	font-style: normal;
}

abbr, acronym {
	cursor: help; /* 略語なので？表示 */ 
}

/* 表のborder表示方法違い対策 */
table {
	border-collapse: collapse;
	border-spacing: 0;
}
