@charset "utf-8";
/* CSS Document */

/* リセット */
/*====================================================
　全体
====================================================*/
html, body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, 
fieldset, input, textarea, p, table, th, tr, td, img {
    margin: 0; 
    padding: 0;
}
/*====================================================
　リスト関係
====================================================*/
ul, ol, li {
  list-style:none;
}
/*====================================================
　テーブル関係
====================================================*/
table{
  border-collapse:collapse;
  border-spacing:0;
  border:none;
}
th, td{
  vertical-align:top;
}
caption{
  text-align:left;
}
/*====================================================
　画像、オブジェクト関係
====================================================*/
img {
  vertical-align:bottom;
  border:none;
}
object, embed{
  vertical-align:top;
}
/*====================================================
　フォーム関係
====================================================*/
fieldset{
  border:none;
}
/*====================================================
　Clear Fix  (  clearfix 表記 )
====================================================*/
.clearfix:before,
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  overflow: hidden;
}
.clearfix:after {clear: both;}
.clearfix {zoom: 1;} /* IE < 8 */

