@charset "shift_jis";

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

[1] レイアウトに関する指定
[2] ヘッダーブロック内に関する指定
[3] コンテンツブロック内に関する指定
[4] フッターブロック内に関する指定
[5] CSSデザインサンプルリンク指定

----------------------------------------------------------------
CSSデザインサンプ [ URL ] http://www.css-designsample.com
------------------------------------------------------------- */


/* 一括で全ての要素の余白をゼロに指定 */
* {
  margin: 0;
  padding: 0;
}

/* 全体的なリンク */

a:link,
a:visited,
a:hover,
a:active { text-decoration: underline; }

a:link { color: #00f; }

a:visited { color: #90f; }

a:hover { color: #f00; }

a:active { color: #f00; }

/* -------------------------------------------------------------
   [1] レイアウトに関する指定 */
body {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 85%;
  text-align: center;
  margin: 0;
  padding: 0;
  background-color: #660000;
  }

/*-- 全体を囲んでいます --*/
#wrapper {
  text-align: left;
  margin: 0 auto;
  border-right: 1px solid #666666;
  border-left: 1px solid #666666;
  width: 800px;
  background-color: #FFFFCC;
  }

/*-- ヘッダー部分 --*/
#header {
  width: 100%;
  height: 200px;
  position: relative;
  background: url(img/bg-header.jpg) no-repeat 0 0;
}

/*-- コンテンツ部分 740px --*/
#contents { padding: 20px 100px; background-color: #FFFFFF; }

/*-- フッター部分 --*/
#footer {
  width: 802px;
  margin: 0 auto;
  padding: 2em 0 0.5em;
  background-color: #333;
}

/* -------------------------------------------------------------
   [2] ヘッダーブロック内に関する指定 */

/* 見出し */

h1 {
  font-size: 200%;
  font-weight: normal;
  text-align: right;
  position: absolute;
  top: 100px;
  left: 30px;
  color: white;
}

/* サイトタイトル */
.logo {
  font-size: 160%;
  position: absolute;
  top: 30px;
  left: 30px;
}

.logo a {
  font-weight: bold;
  color: #000;
  text-decoration: none;
}

.logo a:hover {
  color: #f00;
  text-decoration: none;
}

/* 概要 */
.description {
  color: #FFFFFF;
  font-weight: bold;
  line-height: 1.5em;
  position: absolute;
  bottom: 30px;
  left: 30px;
}

/*---------------------------------------上メニュー部分*/
/* リスト全体 */
ul
   {
    width:750px;            /* リスト全体の幅 */
    height:25px;            /* リスト全体の高さ */
    list-style:none;        /* リストマークを無しにする */
    text-align:center;      /* 文字を中央 */
    font-size:100%;         /* 文字を大きく */
    font-weight:bold;       /* 文字を太く */
    line-height:180%;       /* 行の高さを調整 */
   }

/* 各項目 */
li
   {
    width:150px;            /* 項目の幅 */
    height:25px;            /* 項目の高さ */
    float:left;             /* 各項目を左側から回り込み */
   }

/* リンク部分 */
a
   {
    display:block;            /* リンク範囲をブロックに変換 */
    width:100%;               /* リンク範囲（幅）をリスト項目範囲全て */
    height:100%;              /* リンク範囲（高さ）をリスト項目範囲全て */
    background-image:url(画像);  /* リンク範囲の背景画像設定 */
    background-position:0px 0px; /* ★背景画像の（0px 0px）の位置★ */
    background-repeat:no-repeat; /* 背景画像繰り返し表示しない */
    color:#ffffff;            /* リンク文字色 */
   }

a:link
   { color: #330000; }         /* まだ見ていないリンク色 */

a:visited
   {color: black;}         /* 既に見たリンク色 */
 
a:hover
   {
    background-image:url(画像);     /* マウスが上に来た時の背景画像設定 */
    background-position:0px -35px;  /* ★背景画像を（0px -35px）に移動★ */
    color: #919191;          /* マウスが上に来た時の文字色 */
   }


/* -------------------------------------------------------------
   [3] コンテンツブロック内に関する指定 */

/* 見出し */
h2 {
 color: #330000;
 font-size:140%;
 font-weight: bold;
 text-align: center;
 padding-top: 7pt;
 padding-bottom: 7pt;
 border-top: 2px solid #660000;
 border-bottom: 1px solid #660000;
}

h3 {
 font-size: 120%;
 color: #330000;
 font-weight: bold;
 padding-top: 4pt;
 padding-bottom: 4pt;
 border-top: 0px solid #660000;
 border-bottom: 1px solid #660000;
 border-left: 3px solid #660000;
 width: 320px;
}

h4,
h5,
h6 {
  font-size: 140%;
  color: #003300;
  font-weight: normal;
  margin-bottom: 0.5em;
  padding: 3px 0 2px;
  border-top: 2px solid #660000;
  border-bottom: 1px solid #660000;
}

h4,
h5,
h6 { margin-top: 2em; }

/* 文字 */
#contents p {
  font-size: 13pt;
  line-height: 1.3em;
  margin-bottom: 1em;
}

.bold{
font-weight: bold;
}

.center{
      text-align: center;
}

/* -------------------------------------------------------------
   [5] フッターブロック内に関する指定 */

#footer p {
  text-align: center;
  color: #fff;
}

/* -------------------------------------------------------------
   [6] CSSデザインサンプルリンク指定 */

#cds {
  font-size: 80%;
  font-family: Geneva, Arial, Helvetica, sans-serif;
  text-align: right;
  margin: 0;
  padding-right: 20px;
  clear: both;
}

#cds,
#cds a,
#cds a:hover {
  text-decoration: none;
  color: #ccc;
}
