@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: "メイリオ", Meiryo "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  padding: 0;
  margin: 0;
  background-color: #A3BACD;
}

#wrapper {
  text-align: left;
  width: 800px;
  margin: 10px auto;
  padding: 0 10px;
  background: #fff;
}

#header {
  top: 10px;
  width: 110%;
  height: 280px;
  margin-bottom: 0px;
  position: relative;
  background: url(img/Kamogawa.png) no-repeat 0 0px;
}

#contents {
  float: right;
  width: 570px;
  padding: 0 5px;
}

#sidebar {
  float: left;
  width: 200px;
}

#footer {
  clear: both;
  padding: 10px 0 5px;
  background-color: #000;
  color: #fff;
}

/* -------------------------------------------------------------
   [2] ヘッダーブロック内に関する指定 */

/* -- 見出しレベル1 -- */
h1 {
  font-size: 100%;
  font-weight: normal;
  color: #fff;
  position: absolute;
  top: 70px;
  right: 10px;
}

/* -- 企業名 ショップ名 サイト名 -- */
.logo {
  font-size: 140%;
  position: absolute;
  top: 20px;
  left: 10px;
}

.logo a {
  text-decoration: none;
  color: #006600;
}

.logo a:hover {
  text-decoration: none;
  background-color: #ffffff;
  color: #ff0000;
}

/* -- 概要 -- */
.description {
  width: 780px;
  color: #fff;
  position: absolute;
  bottom: 20px;
  left: 10px;
}

/* -------------------------------------------------------------
   [3] コンテンツブロック内に関する指定 */

/* -- 見出し -- */
h2,h3,h4,h5,h6 {
  font-size: 120%;
  font-weight: normal;
  height: 50px;
  padding-top: 10px;
  padding-left: 10px;
  background: url(img/bg-h.gif) no-repeat 0 0;
}

h3,h4,h5,h6 { margin-top: 50px; }

/* -- 文字 -- */
#contents p {
  line-height: 1.6em;
  margin-bottom: 0.5em;
}

/* -------------------------------------------------------------
   [4] サイドバーブロック内に関する指定 */

/* -- カテゴリタイトル -- */
.side-title {
  height: 30px;
  padding: 10px 5px 0;
  background: url(img/bg-sidetitle.gif) no-repeat 0 0;
}

/* -- リスト -- */
.localnavi {
  list-style-type: none;
  margin-bottom: 20px;
  padding-bottom: 20px;
  background: url(img/bg-localnavi.gif) no-repeat 0 100%;
}

.localnavi li { display: inline; }

.localnavi a {
  text-decoration: none;
  display: block;
  width: 190px;
  padding: 5px 5px 10px;
  background: #ccc url(img/bg-localnavi-li.jpg) no-repeat 0 100%;
  color: #000;
}

.localnavi a:hover {
  text-decoration: none;
  background: #cc9 url(img/bg-localnavi-li.jpg) no-repeat -200px 100%;
  color: #f00;
}

/* -------------------------------------------------------------
   [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: 20px;
  clear: both;
}

#cds,
#cds a,
#cds a:hover {
  text-decoration: none;
  color: #ccc;
}
