/* CSS Document */

@charset "UTF-8";

/* 一括で全ての要素の余白をゼロに指定 */
* {
  margin: 0;
  padding: 0;
}

/* 全体的なリンク */

a:link,
a:visited,
a:hover,
a:active { text-decoration: underline; }

a:link { color: #009999; }
a:visited { color: #000000; }
a:hover { 
	color: #009999;
	font-weight: bold; 
}
a:active { color: #000000; }


/* -------------------------------------------------------------
   [1] レイアウトに関する指定 */
body {
  font-size: 100%;
  text-align: center;
/*  font-family: Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;*/
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 160%;
  padding: 0;
  margin: 0;
  background-color:#FFFFFF;
}

#wrapper {
  text-align: left;
  width: 100%;
  margin: 0 auto;
}

#header {
  width: 988px;
  height: 110px;
  margin: 10px auto;
  position: relative;
}

#header_left {
  width: 201px;
  margin: 25px 0px 0px 30px;
  float: left;
}

#header_right {
  width: 630px;
  margin: 8px 15px 10px 0px;
  float: right;
}

#header_right_common {
  width: 630px;
  text-align: right;
}

#header_right_copy {
  margin: 10px 10px 0px 0px;
  text-align: right;
}

#navi {
  width: 100%;
  background-image:url(../img/img_header_back.jpg);
  background-repeat:repeat-x;
}

#navit {
  width: 100%;
  background-image:url(../imge/img_header_back.jpg);
  background-repeat:repeat-x;
}

#footer {
  width: 100%;
  height: 75px;
  margin: 0px auto;
  position: relative;
  background-image:url(../img/img_foot_back.jpg);
  background-repeat:repeat-x;
  text-align: center;

}

#footer_copy {
  width: 930px;
  text-align:right;
  margin: 20px 0 0 0;
  position: relative;
}

/* -------------------------------------------------------------
   [2] 文字・タグに関する指定 */

/* -- 見出しレベル1 -- */
h1 {
  font-size: 75%;
  font-weight: normal;
}

h2,h3,h4,h5,h6 {
  font-size: 120%;
  font-weight: normal;
  margin-bottom: 0.5em;
  padding: 1em 0 1em 50px;
}

h3,h4,h5,h6 { margin-top: 2.5em; }

/* -- 文字 -- */
#cont_main p {
  line-height: 180%;
  margin-bottom: 0.5em;
}

.footer{
  color:#000000;
  font-size: 85%;
  line-height: 200%;
}

