@charset "shift_jis";

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

[1] レイアウトに関する指定
[2] ヘッダーブロック内に関する指定
[3] コンテンツブロック内に関する指定
[4] サイドバーブロック内に関する指定
[5] フッターブロック内に関する指定
[6] 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-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;
  margin: 0 auto;
  width: 800px;
  background: url(img/bg-wrapper.jpg) repeat-y 0 0;
}

/*-- ヘッダー部分 --*/

#header {
  height: 130px;
  margin-bottom: 20px;
  padding-top: 10px;
  background: url(img/bg-header.jpg) no-repeat 0 0;
}

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

/*-- コンテンツ部分 --*/
#contents {
  float: right;
  width: 550px;
  padding-left: 50px;
}

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

/*-- アンダーナビ部分 --*/
#undernavi {
  clear: both;
  width: 100%;
  padding: 2em 0 1em;
  text-align: right;
}

/*-- フッター部分 --*/
#footer {
  padding: 2em 0 1.5em;
  background: url(img/bg-body.jpg) repeat-x 0 100%;
}

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

/* -- キーワード -- */
h1 {
  font-size: 100%;
  font-weight: normal;
  text-align: right;
  margin-bottom: 0.5em;
}

/* -- 企業名｜ショップ名｜タイトル -- */
.logo {
  font-size: 140%;
  margin: 0 0 0.5em 250px;
}

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

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

/* -- ページの概要 -- */
.description {
  margin-left: 250px;
  margin-bottom: 0.5em;
}

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

/*-- 見出し --*/

h2,h3,h4,h5,h6 {
  font-size: 120%;
  margin-bottom: 0.5em;
  padding: 5px 10px;
  border-style: solid;
  border-color: #cccccc;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 10px;
}

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

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

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

/*-- サイドバータイトル --*/

.side-title {
  font-weight: bold;
  padding-bottom: 2px;
  border-bottom: 1px solid #666;
}

/*-- ローカルナビ --*/

.localnavi {
  font-size: 95%;
  list-style-type: none;
  margin-bottom: 20px;
}

.localnavi li { display: inline; }

.localnavi a {
  text-decoration: none;
  display: block;
  width: 170px;
  padding: 4px;
  border: 1px outset #fff;
  background-color: #eee;
  color: #000;
}

.localnavi a:hover {
  text-decoration: none;
  border: 1px outset #fff;
  background-color: #666;
  color: #fff;
}

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

#footer p { text-align: center; }

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

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

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