/*
Reset Css
2009/01/10
*/

/* Margin Padding Reset */
html, body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,
form,fieldset,legend,input,textarea,p,blockquote,th,td{
	margin:0;
	padding:0;
}
/* リンクのアウトライン解除 */
a{outline: 0;}
/* 画像ボーダーのリセット */
fieldset,img{
	border:0;
}
/* 文字装飾のリセット */
address,caption,cite,code,dfn,em,strong,th,var{
font-style:normal;font-weight:normal;
}
/* リストマーカーの解除 */
ol,ul {
  list-style:none;
}
/* テーブルのリセット */
table{
	border-collapse:collapse;
	border-spacing:0;
}
/* テーブル・キャプションの文字位置・文字太さをリセット */
caption, th, td{
text-align:left;
font-weight: normal;
}
/* 見出しサイズ・太さをリセット */
h1,h2,h3,h4,h5,h6{
font-size:100%;font-weight:normal;
}
/* 引用の前後 */
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;
}
