@charset "UTF-8";
/* CSS Document */
/* デフォルトスタイルをリセットする */


/*文字色を黒・背景色を白にする*/
html{
	color:000;
	background:#FFF;
}

/*デフォルトでマージン・パディングが当っている要素をゼロにする*/
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldest,legend,input,textarea,p,blockquote,th,td{
	margin:0;
	padding:0;
}

/*テーブルセルの感覚を揃える*/
table{
	border-collapse:collapse;
	border-spacing:0;
}

/*デフォルトで線があるのをなくす*/
fieldset,img{
	border:0;
}

/*デフォルトで斜体・太字になるような要素をノーマルにする*/
address,caption,cite,code,dfn,em,stromg,th,ver{
	font-style:normal;
	font-weight:normal;
}

/*リストアイテムの行頭マーカーをなくす*/
li{
	list-style::none;
}

/*デフォルトで中央寄せになっている要素を左寄せにする*/
caption,th{
	text-align:left;
}

/*デフォルトで適用されているサイズ・ウェイトを整える*/
h1,h2,h3,h4,h5,h6{
	font-size:100%;
	font-weight:normal;
}

/*q要素（インライン引用）に引用符をつけないようにする*/
q:before,q:after{
	content:'';
}

/*デフォルトで略語等についてしまう下線を消し、スモールキャップにならないようにノーマルに設定する*/
abbr,acronym{
	border:0;
	font-variant:normal;
}

/*テキストの上端を揃える*/
sup{
	vertical-align:text-top;
}

/*テキストの下端を揃える*/
sub{
	vertical-align:text-bottom;
}

/*フォーム部品のフォントファミリー、サイズ、ウエイトを親要素の値を継承させたものにする*/
input,textarea,select{
	font-family:inherit;
	font-size:inherit;
	font-weight:inherit;
}

/*invalidなCSSハックを利用して,windosIEのみフォーム部品のフォントサイズを100%に指定する*/
input,textarea,select{
	*font-size:100%;
}

/*フォームグループのラベル色を黒にする*/
legend{
	color:#000;
}

/*=========================*/
/* FontsReset */
/*=========================*/

/*ブラウザごとにばらばらになるフォントサイズとフォントファミリーを揃える*/
body{
	font:13px/1.231 arial,helvetica,clean,sansserif;
	*font-size:small;
	*fontx-small;
}

/*テーブル内のフォントサイズが親要素を継承させるように設定*/
table{
	font-size:inherit;
	font:100%;
}

/*整形済みテキストやコード・テレタイプ文字に関する見栄えを設定*/
pre,code,kbd,samp,tt{
	font-family:monospace;
	*font-size:108%;
	line-height:100%;
}