@charset "utf-8";
/* CSS Document */

/*共通リセット*/
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,textarea,blockquote,th,td
{
	margin:0;
} 

/*隣接するセルのボーダーを重ねて表示 空ける場合separate*/
table
{ 
	border-collapse:collapse; 
} 

/*フォムの入力＆画像に対し、ボーダーを非表示*/
fieldset,img
{  
	border:0; 
} 

/*フォントのスタイルと「太さ（サイズではない）」を設定*/
address,caption,cite,code,dfn,em,th,var
{ 
	font-style:oblique;/*normal italicイタリック oblique斜体*/ 
	font-weight:900;/*100～900まで100刻み、normalは400に相当*/ 
} 

/*リスト（箇条書き）の先頭記号（ⅠとかⅡとか画像に自動で置き換えも可能）の設定
　尚、list-style は　 list-style-type・ list-style-image・ list-style-position　をまとめて設定する*/
ol,ul
{ 
	list-style:none; 
} 

/*左寄せでテキストを表示*/
caption,th
{ 
	text-align:left; 
} 

/*このタグで囲った文字が、NATO（North Atlantic Treaty Organization）などのように頭文字をとった単語であることを明示。
表示上の変化は無いが、マウスを載せると title 属性の内容がポップアップ表示される*/
abbr,acronym
{
	border:0; 
}

/*未訪問リンク*/
a:link
{
	text-decoration: none;/*テキストの下線・上線・打ち消し線・点滅を指定*/
}

/*訪問済みリンク*/
a:visited
{
	text-decoration: none;
}

/*マウスオーバー時*/
a:hover
{
	text-decoration: none;
}

/*クリックした時*/
a:active
{
	text-decoration: none;
}

object
{
	outline: none;/*アウトラインのスタイル・太さ・色をまとめて指定 noneはアウトライン非表示*/
}

