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