@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 {
  text-align: center;
  font-family: "メイリオ", Meiryo "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  padding: 0;
  margin: 0;
  background-color: #fcc;
}

#wrapper {
  text-align: left;
  width: 830px;
  margin: 10px auto;
  padding: 0 5px;
  background-color: #ff6;
}

#header {
  width: 100%;
  height: 80px;
  margin-bottom: 20px;
  position: relative;
  background-color: #ff6;
  background: url(img/title.jpg);

}

#contents {
  font-size: 13px;
  float: right;
  width: 590px;
  padding: 10px;
  background-color: #fff;
}

#sidebar {
  font-size: 14px;
  float: left;
  width: 210px;
  background-color: #ff6;
}

#footer {
  clear: both;
  background-color: #ff6;
  color: #000;
}

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

/* -- 見出しレベル1 -- */
h1 {
  font-size: 8px;
  font-weight: normal;
  color: #fff;
  position: absolute;
  top: 70px;
  right: 10px;
}

/* -- 企業名 ショップ名 サイト名 -- */
.logo {
  font-size: 18px;
  position: absolute;
  top: 10px;
  left: 70px;
}

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

.logo a:hover {
  text-decoration: none;
  background-color: #ffffff;
  color: #ff0000;
}

/* -- 概要 -- */
.description {
  width: 780px;
  color: #f90;
  position: absolute;
  top: 35px;
  left: 70px;
}

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

/* -- 見出し -- */
h2,h3,h4,h5,h6 {
  font-size: 16px;
  font-weight: normal;
  height: 35px;
  padding-top: 10px;
  padding-left: 0;
  background: url(img/bgh.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: 18px;
  padding: 3px;
  background-color: orange;
}

/* -- リスト -- */
.localnavi {
  list-style-type: none;
  padding:1px;
  background-color: #fc0;
}

.localnavi li {
  padding:1px;
  list-style-type: none;
  background-color: #fc3
}

.localnavi a {
  text-decoration: none;
  display: block;
  width: 198px;
  padding: 1px 3px ;
  margin:1px; 
  background-color: #ff6;
  color: #000;
}

.localnavi a:hover {
  text-decoration: none;
  background-color: #fff;
  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;
}

/* -------------------------------------------------------------
   [7] テーブル指定 */

td {
 padding: 10px 10px 0px 10px;   
}  
   
   
 
 
 
 
 
 
 
 
 
   