@charset "shift_jis";

/* -------------------------------------------------------------

[1] レイアウトに関する指定
[2] ヘッダーブロック内に関する指定
[3] コンテンツブロック内に関する指定
[4] サイドバーブロック内に関する指定
[5] フッターブロック内に関する指定
[6] CSSデザインサンプルリンク指定

----------------------------------------------------------------
CSSデザインサンプ [ URL ] http://www.css-designsample.com
------------------------------------------------------------- */


/* 一括で全ての要素の余白をゼロに指定 */
* {
  margin: 0;
  padding: 0;
}

/* -------------------------------------------------------------
   [1] レイアウトに関する指定 */
body {
  font-size: 85%;
  text-align: center;
  font-family: "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3" sans-serif;
  padding: 0;
  margin: 0;
  background: url(img/bg-body-top.jpg) repeat-x 0 0;
}

/*-- 全体を囲んでいます --*/
#wrapper {
  text-align: left;
  width: 800px;
  margin: 0 auto;
  padding: 0 10px;
  background: url(img/bg-wrapper.jpg) no-repeat 0 0;
}

/*-- ヘッダー部分 --*/
#header {
  width: 100%;
  height: 400px;
  margin-bottom: 50px;
  position: relative;
  background: url(img/bg-header-top.jpg) no-repeat 50% 0;
}

/*-- コンテンツ部分 --*/
#contents {
  width: 550px;
  float: left;
  padding: 0 40px 0 10px;
}

/*-- サイドバー部分 --*/
#sidebar {
  width: 200px;
  float: right;
}

#right-sidebar {
  width: 180px;
  float: left;
}

/*-- アンダーナビ部分 --*/
#undernavi { clear: both; }

/*-- フッター部分 --*/
#footer {
  padding: 2em 0 0.5em;
  background: url(img/bg-body.jpg) repeat-x 0 100%;
}

/* -------------------------------------------------------------
   [2] ヘッダーブロック内に関する指定 */

/* 見出し */

h1 {
  font-size: 100%;
  text-align: right;
  position: absolute;
  top: 30px;
  left: 10px;
  color: #360;
}

/* サイトタイトル */
.logo {
  font-size: 160%;
  position: absolute;
  top: 50px;
  left: 10px;
}

.logo a {
  font-weight: bold;
  color: #360;
  text-decoration: none;
}

.logo a:hover {
  color: #f00;
  text-decoration: none;
}

/* 概要 */
.description {
  line-height: 1.5em;
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: #333;
}

/* サイトマップ等へのリスト */
.ul-info {
  list-style-type: none;
  position: absolute;
  top:25px;
  right: 10px;
}

.ul-info li {
  display: inline;
  margin-left: 0.5em;
}

.ul-info li a {
  text-decoration:none;
  color: #fff;
}

.ul-info li a:hover {
  text-decoration: underline;
  color: #f00;
}

/* -------------------------------------------------------------
   [3] コンテンツブロック内に関する指定 */

/* 見出し */
h2,
h3,
h4,
h5,
h6 {
  font-size: 160%;
  font-weight: normal;
  height: 50px;
  padding: 0 0 0 20px;
  background: #fff url(img/mark.gif) no-repeat 0 0;
  color: #006600
}

/* 文字 */
#contents p {
  line-height: 1.5em;
  margin-bottom: 1em;
}

/* 更新情報 */
.information-title {
  font-size: 160%;
  margin: 0;
  border-bottom: 1px solid #690;
  color: #060
}

.information {
  height: 200px;
  margin-bottom: 20px;
  overflow: auto;
}

.information ul {
  list-style-type: none;
  margin: 0 2em 0 0;
}

.information li {
  margin: 0;
  padding: 10px 0 9px;
  border-bottom: 1px solid #ccc;
}

/* -------------------------------------------------------------
   [4] サイドバーブロック内に関する指定 */

/* サイドバータイトル */
.side-title {
  text-align: center;
  margin: 0;
  padding: 5px 0;
  background-color: #99CC00;
  color: #000;
}

ul.localnavi {
  font-size: 95%;
  list-style-type: none;
  margin-bottom: 20px;
}

.localnavi li { display: inline; }

.localnavi a {
  text-decoration: none;
  width: 190px;
  display: block;
  padding: 4px;
  border: 1px outset #360;
  background-color: #360;
  color: #fff;
}

.localnavi a:hover {
  text-decoration: none;
  border: 1px outset #360;
  background-color: #9c0;
  color: #fff;
}

#sidebar dl{ margin-bottom: 20px;}

#sidebar dt{  text-align: center;
  padding: 5px 0;
  background-color: #99CC00;
  color: #000;}

#sidebar dd{ margin-bottom: 10px; padding: 9px; border: 1px solid #666;}
#sidebar dd p{ margin-bottom: 0.5em; line-height: 1.5em;}

/* -------------------------------------------------------------
   [5] フッターブロック内に関する指定 */

#footer p { text-align: center; }

/* -------------------------------------------------------------
   [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;
}
