@charset "utf-8";

/* ---------------------------------------------------------------------------
 [ element.css ]

 エレメントデザイン設定

 エレメントに対する個別のデザイン設定を行う。

 ex.)

 h1 {
  font-size: 120%;
}

--------------------------------------------------------------------------- */

body {
  font-family: "ＭＳ Ｐゴシック",Osaka,"ヒラギノ角ゴ Pro W3";
  text-align: center;
  background: url(../../images/site/bk.gif) repeat;
}

h1,h2,h3,h4,h5,h6,p,li,dt,dd,th,td,address {
  font-style: normal;
  font-weight: normal;
}

h1,h2,h3,h4,h5,h6 {
  line-height: 1.1;
}

p,li,dt,dd,th,td,pre {
  line-height: 1.5;
}

table {
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  empty-cells: show;
  word-wrap: break-word;
  word-break: break-all;
}

a,a:link,
a:visited {
  color: #006699;
  text-decoration: none;
}

a:hover,
a:active {
  color: #CAE4FF;
  text-decoration: underline;
}


/* ------------------------------
 IE6ハック 設定
------------------------------ */
table {
  _border-collapse: collapse;
}


/* ------------------------------
 IE7ハック 設定
------------------------------ */
*:first-child+html table {
  border-collapse: collapse;
}


/* EoS */
