/*ブラウザのデフォルトスタイルをリセット*/
/*文字色を黒、背景色を白にする*/
html{color: #000;background: #FFF;}
/*デフォルトでマージンやパディングに当たっている要素を0にする*/
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,hpre,code,fo,rm,fieldset,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,strong,th,var{font-style: normal;font-weight: normal;}
/*リストアイテムのマーカーをなくす*/
li,ol,ul{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;}
/*ハック：windows IEのみに適応させるフォームパーツのフォント100％*/
input,textarea,select{*font-size: 100%;}
/*フォームのグループラベルを黒に*/
legend{color: #000;}
