@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: 260px;
  position: relative;
}

#contents {
  width: 570px;
  float: left;
  padding-top: 60px;
  background: url(img/bg-contents.gif) no-repeat 0 0;
}

#sidebar {
  width: 200px;
  float: right;
  margin-top: 30px;
  padding-top: 30px;
  padding-left: 30px;
  background: url(img/bg-sidebar.gif) no-repeat 100% 0;
}

#footer {
  height: 40px;
  padding-top: 30px;
  background: url(img/bg-footer.gif) no-repeat 0 100%;
}

/* -------------------------------------------------------------
   [2] ヘッダーブロック内に関する指定 */

/* キーワード */
h1 {
  font-size: 100%;
  font-weight: normal;
  position: absolute;
  top: 10px;
  right: 0;
}

/* 企業名｜ショップ名｜タイトル */
.logo {
  font-size: 150%;
  height: 35px;
  padding-top: 15px;
  padding-left: 50px;
  position: absolute;
  top: 10px;
  left: 0;
  background: url(img/bg-logo.gif) no-repeat 0 0
}

.logo a {
  text-decoration: none;
  color: #036;
}

.logo a:hover {
  text-decoration: none;
  color: #f00;
}

/* ページの概要 */
.description {
  position: absolute;
  top: 70px;
  left: 50px;
}

/* -------------------------------------------------------------
   [3] コンテンツブロック内に関する指定 */

/* 見出し */
h2,h3,h4,h5,h6 {
  font-size: 120%;
  font-weight: normal;
  margin-bottom: 1em;
  padding: 5px 0 5px 25px;
}

h2 { background: url(img/bg-h2.gif) no-repeat 0 50%; }

h3,h4,h5,h6 {
  margin-top: 3em;
  background: url(img/bg-h.gif) no-repeat 0 50%;
}

/* 文字 */
#contents p {
  line-height: 1.5em;
  margin-bottom: 0.5em;
}

/* -------------------------------------------------------------
   [4] サイドバーブロック内に関する指定 */

/* サイドバータイトル */
.side-title {
  text-align: right;
  padding-bottom: 2px;
  color: #069;
}

/* サイドバーメニュー */
.localnavi {
  list-style-type: none;
  font-size: 95%;
  margin-bottom: 2em;
  padding: 3px;
  background-color: #ccf;
}

.localnavi li { display: inline; }

.localnavi li a {
  text-decoration: none;
  width: 184px;
  padding: 4px 4px;
  display: block;
  border: 1px outset #ccf;
  background-color: #eee;
  color: #333;
}

.localnavi li a:hover {
  text-decoration: none;
  border: 1px outset #ccf;
  background-color: #cc9;
  color: #f00;
}

/* -------------------------------------------------------------
   [5] フッターブロック内に関する指定 */

#footer p {
  width: 570px;
  text-align: center;
  color: #036;
}

/* -------------------------------------------------------------
   [6] CSSデザインサンプルリンク指定 */

#cds {
  font-size: 80%;
  font-family: Geneva, Arial, Helvetica, sans-serif;
  text-align: right;
  clear: both;
}

#cds,
#cds a,
#cds a:hover {
  text-decoration: none;
  color: #999;
}
