@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;
  width: 800px;
  margin: 0 auto;
}

#header {
  width: 100%;
  height: 300px;
  position: relative;
  background: url(img/bg-header.jpg) no-repeat 0 0;
}

#header-inner {
  width: 799px;
  height: 100%;
  background: url(img/bg-header-inner.gif) no-repeat 100% 100%;
}

#container {
  width: 760px;
  padding: 50px 20px 0;
  background: url(img/bg-container.gif) no-repeat 0 0;
}

#contents {
  width: 550px;
  float: left;
}

#sidebar {
  width: 180px;
  float: right;
}

#footer {
  padding: 20px 0 30px;
  background: url(img/bg-body.jpg) repeat-x 0 0;
}

/* -------------------------------------------------------------
   [2] ヘッダーブロック内に関する指定 */

/* キーワード */
h1 {
  font-size: 100%;
  font-weight: normal;
  position: absolute;
  top: 30px;
  right: 0;
}

/* 企業名｜ショップ名｜タイトル */
.logo {
  font-size: 160%;
  position: absolute;
  top: 100px;
  left: 300px;
}

.logo a {
  text-decoration: none;
  color: #009900;
}

.logo a:hover {
  text-decoration: none;
  color: #f00;
}

/* ページの概要 */
.description {
  width: 480px;
  line-height: 1.5em;
  position: absolute;
  top: 150px;
  left: 300px;
}

/* -------------------------------------------------------------
   [3] コンテンツブロック内に関する指定 */

/* 見出し */
h2,h3,h4,h5,h6 {
  font-size: 150%;
  font-weight: normal;
  margin-bottom: 1em;
  color: #090
}

h3,h4,h5,h6 { margin-top: 3em; }

/* 文字 */
#contents p {
  line-height: 1.5em;
  margin-bottom: 0.5em;
}

/* -------------------------------------------------------------
   [4] サイドバーブロック内に関する指定 */

/* サイドバータイトル */
.side-title {
  padding-bottom: 2px;
  color: #090;
}

/* サイドバーメニュー */
.localnavi {
  list-style-type: none;
  margin-bottom: 2em;
}

.localnavi li { display: inline; }

.localnavi li a {
  text-decoration: none;
  width: 170px;
  padding: 4px 4px;
  display: block;
  border: 1px outset #fff;
  background-color: #CCFF99;
  color: #333;
}

.localnavi li 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;
  text-align: right;
  margin: 0;
  padding-right: 10px;
  clear: both;
}

#cds,
#cds a,
#cds a:hover {
  text-decoration: none;
  color: #999;
}
