@charset "shift_jis";

/* -------------------------------------------------------------

[1] レイアウトに関する指定
[2] コンテンツブロック内に関する指定
[3] サイドバーブロック内に関する指定
[4] フッターブロック内に関する指定
[5] 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) no-repeat 100% 100% fixed;
}

/*---------- 全体の横幅 --*/

#wrapper {
  text-align: center;
  margin: 0 auto;
  width: 700px;
  background: url(img/bg-wrapper.gif) repeat-y 0 0;
}

/*---------- コンテンツ部分 --*/

#contents {
  width: 480px;
  float: left;
  padding: 0 10px;
  background: url(img/bg-content.gif) no-repeat 0 0;
}

/*---------- サイドバー部分 --*/

#left-sidebar {
  width: 180px;
  float: left;
  padding-top: 30px;
}

#right-sidebar {
  width: 180px;
  float: right;
  padding-top: 100px;
}

/*---------- フッター部分 --*/

#footer {
	width: 700px;
	padding-top: 10px;
	padding-bottom: 10px;
}

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


#header {
  height: 120px;
  padding: 20px 20px 0;
}

/* -- キーワード -- */
h1 {
  font-size: 100%;
  font-weight: normal;
}

/* -- 企業名｜ショップ名｜タイトル -- */
#header .logo { font-size: 140%; }

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

#header .logo a:hover {
  text-decoration: none;
  color: #f00;
}

/* -- ページの概要 -- */
#header .description { margin: 0; }

/*---------- 見出し部分 --*/

h2,h3,h4,h5,h6 {
  font-size: 120%;
  margin-bottom: 1em;
  padding: 5px 0 5px 25px;
  background: url(img/bg-h.gif) no-repeat 0 50%;
}

h3,h4,h5,h6 { margin-top: 3em; }

/* -- 文字 -- */
#contents p {
  line-height: 1.6em;
  margin-bottom: 0.5em;
}

/* -- リスト -- */
#contents ul {
  list-style-position: outside;
  margin: 1em 0 1em 20px;
  padding: 0;
}

#contents ol {
  list-style-position: outside;
  margin: 1em 0 1em 25px;
  padding: 0;
}

#contents li {
  line-height: 1.6em;
  margin-bottom: 0.5em;
}

/* -------------------------------------------------------------
   [3] サイドバーブロック内に関する指定 */


/*---------- サイドバー内のタイトル指定 --*/

.side-title {
  font-weight: bold;
  text-align: center;
  color: #666;
}

/*---------- ナビゲーションの指定 --*/

.localnavi {
  font-size: 95%;
  list-style-type: none;
  margin-bottom: 20px;
}

.localnavi li { display: inline; }

.localnavi a {
  text-decoration: none;
  width: 170px;
  display: block;
  padding: 4px;
  border: 1px outset #fff;
  background-color: #eee;
  color: #003;
}

.localnavi a:hover {
  text-decoration: none;
  border: 1px outset #fff;
  background-color: #666;
  color: #f00;
}

/* -------------------------------------------------------------
   [4] フッターブロック内に関する指定 */

#footer p {
  text-align: center;
  width: 500px;
}

/* -------------------------------------------------------------
   [5] CSSデザインサンプルリンク指定 */

#cds {
  font-size: 80%;
  font-family: Geneva, Arial, Helvetica, sans-serif;
  text-align: right;
  margin: 0;
  clear: both;
}

#cds,
#cds a,
#cds a:hover {
  text-decoration: none;
  color: #999;
}
