@charset "utf-8";

/* --CSS Information =====================
	File name: リセットCSS ver1.1;
	Description: For reset&hack;
	Editors: Go Shimura(INO);
	Last Editor: Go Shimura(INO);
	Date: 2009.07.08;
======================================*/

/* --各種ブラウザ余白初期化-- */
body,
div,
dl, dt, dd,
ul, ol, li,
h1, h2, h3, h4, h5, h6,
pre,
form, fieldset, input, textarea,
p, blockquote,
th, td {  
	margin: 0;
	padding: 0;
}

/* --フォント設定-- */
body {
	font:12px/1 'Lucida Grande','ＭＳ Ｐゴシック', Helvetica;
}

	/* for IE7 */
	*+html body {
	font-family:'メイリオ', 'ＭＳ Ｐゴシック';
	font-size:75%;
	}

	/* for IE6 */
	* html body {
	font-family:'ＭＳ Ｐゴシック';
	font-size:75%;
	}

/* --カラー初期化-- */
html {
	background: #fff;
	color: #333;
}

/* --FirefoxやOperaでスクロールバーを強制表示する-- */
html {
	height: 100%;
	margin-bottom: 1px;
}

/* --テーブル(tableタグ)関連の初期化-- */
table {
	border-collapse: collapse;
	border: none;
	border-spacing: 0;
}

caption {
	text-align: left;
}

th {
	vertical-align: top;
	font-weight: normal;
	text-align: left;
}

td {
	vertical-align: top;
}

/* --フォーム関連の初期化-- */
button, fieldset, form, input, label, legend, select, textarea {
 font-family: inherit;
 font-size: 100%;
 font-style: inherit;
 font-weight: inherit;
 margin: 0;
 padding: 0;
 vertical-align: baseline;
}

fieldset {
	border: 0;
}

input {
	_margin: -1px 0;
}

/* --テキスト関連の初期化-- */
address, caption, cite, code, dfn, em, th, strong, var {
	font-style: normal;
	font-weight: normal;
}

code, kbd, pre, samp, tt {
	font-family: monospace;
	line-height: 100%;
}

	/* for IE7 */
	*+html code, kbd, pre, samp, tt {
		font-size:108%;
	}

h1, h2, h3, h4, h5, h6 {
	font-size: 100%;
	font-weight: normal;
}

ol, ul {
	list-style: none;
}

sup,
sub {
	vertical-align: baseline;
	position: relative;
}

sup {
	top: -4px
}

sub {
	top: 4px
}

/* --その他初期化-- */
body {
	overflow:visible;
}

a {
	overflow: hidden;
}

a img, img {
	border: 0;
}

abbr, acronym {
	border: 0;
}

q:before, q:after {
	content: '';
}

/* --clearfixハック-- */
.clearfix:after {
	content: " ";
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}

.clearfix { display: inline-block; }
/* --\*/
* html .clearfix { height: 1%; }
.clearfix { display: block; }
/* --*/