@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: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  padding: 0;
  margin: 0;
  background: url(img/bg-body.jpg) repeat-x 0 0;
}

/*-- 全体を囲んでいます --*/
#wrapper {
  text-align: left;
  width: 860px;
  margin: 20px auto 0;
}

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

/*-- コンテナー部分 --*/
#container { width: 100%; }

/*-- コンテンツ部分 --*/
#contents {
  width: 470px;
  float: right;
  margin-bottom: 4em;
}

/*-- サイドバー部分 --*/
#left-sidebar {
  width: 180px;
  float: left;
  margin-right: 10px;
}

#right-sidebar {
  width: 180px;
  float: left;
}

/*-- アンダーナビ部分 --*/
#undernavi { clear: both; }

/*-- フッター部分 --*/
#footer {
  padding: 25px 0 10px;
  background: url(img/bg-body.jpg) repeat-x 0 0;
}

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

/* -- キーワード -- */
h1 {
  font-size: 120%;
  font-weight: normal;
  text-align: right;
  position: absolute;
  top: 90px;
  right: 20px;
}

/* -- 企業名｜ショップ名｜タイトル -- */
.logo {
  font-size: 140%;
  position: absolute;
  top: 15px;
  left: 0;
}

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

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

/* -- ページの概要 -- */
.description {
  position: absolute;
  top: 2.5em;
  right: 1em;
}

.ul-headernavi {
  font-size: 90%;
  list-style-type: none;
  position: absolute;
  top: 0;
  right: 0;
}

.ul-headernavi li {
  display: inline;
  padding: 0 10px 0 12px;
  background: url(img/bg-headernavi.jpg) no-repeat 0 50%;
}

.ul-headernavi a,
.ul-headernavi a:hover { text-decoration: none; }

.ul-headernavi a { color: #000; }

.ul-headernavi a:hover { color: #f00; }

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

/* 見出し */
h2,h3,h4,h5,h6 {
  font-size: 100%;
  line-height: 1;
  padding: 5px 10px;
  background: url(img/bg-h-top.jpg) no-repeat 0 0;
}

/* 文字 */
#contents p {
  line-height: 1.5em;
  margin-bottom: 0.5em;
}

/* お知らせ更新情報 */
.information {
  height: 250px;
  overflow: auto;
  margin-bottom: 20px;
  border: 1px solid #666;
}

.information dl { padding: 19px; }

.information dt { color: #900; }

.information dd {
  line-height: 1.5em;
  margin-bottom: 20px;
  padding: 5px 0;
  border-bottom: 1px solid #ccc;
}

/* 本文内 */
.inner {
  margin-bottom: 20px;
  padding: 19px 14px;
  border: 1px solid #666;
}

/* -------------------------------------------------------------
   [4] サイドバーブロック内に関する指定 */

#left-sidebar,
#right-sidebar { font-size: 90%; }

/* サイドバータイトル */
.side-title {
  text-align: center;
  padding: 5px 0 5px;
  background: url(img/bg-sidetitle.jpg) no-repeat 0 0;
  color: #000;
}

.localnavi {
  list-style-type: none;
  margin-bottom: 20px;
}

.localnavi li { display: inline; }

.localnavi a {
  text-decoration: none;
  width: 170px;
  display: block;
  padding: 4px;
}

#left-sidebar .localnavi a {
  border: 1px outset #000;
  background-color: #333;
  color: #eee;
}

#right-sidebar .localnavi a {
  border: 1px outset #eee;
  background-color: #eee;
  color: #000;
}

#left-sidebar .localnavi a:hover,
#right-sidebar .localnavi a:hover {
  text-decoration: none;
  background-color: #fcf;
  color: #f00;
  border: 1px outset #fff;
}

/*----------------------サイドバー内のDIV
ボーダーはこの部分に指定してあります。
#sidebarで幅を変更した場合など、ここで
メニューなどの幅を指定します。
.localnavi等の幅指定は要りません。
----------------------------------------*/
#left-sidebar div,
#right-sidebar div {
  width: 170px;
  margin-bottom: 2em;
  padding: 4px;
  border: 1px solid #666;
}

#left-sidebar dt,
#right-sidebar dt {
  margin-bottom: 0.5em;
  color: #903;
}

#left-sidebar dd,
#right-sidebar dd {
  margin-bottom: 1em;
  line-height: 1.5em;
}

#left-sidebar div p,
#right-sidebar div p { margin-bottom: 1em; }

#left-sidebar div ul,
#right-sidebar div ul { margin-left: 15px; }

#left-sidebar div ol,
#right-sidebar div ol { margin-left: 25px; }

#left-sidebar div li,
#right-sidebar div li { margin-bottom: 0.5em; }

/* 左右サイドバー部分の下にあるボックス */
 #side-info {
  width: 370px;
  float: left;
}

#side-info .side-title { background: url(img/bg-sidetitle02.jpg) no-repeat 0 0; }

#side-info dl {
  margin-bottom: 20px;
  padding: 9px 9px;
  border: 1px solid #666;
}

#side-info dt {
  margin-bottom: 0.5em;
  color: #903;
}

#side-info dd {
  margin-bottom: 1em;
  line-height: 1.5em;
}

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

#footer p { text-align: center; }

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

#cds {
  font-size: 80%;
  font-family: Geneva, Arial, Helvetica, sans-serif;
  margin: 0;
  clear: both;
}

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

