@charset "shift_jis";

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

[1] レイアウトに関する指定
[2] ヘッダーブロック内に関する指定
[3] コンテンツブロック内に関する指定
[4] サイドバーブロック内に関する指定
[5] フッターブロック内に関する指定
[6] CSSデザインサンプルリンク指定

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


/* 一括で全ての要素の余白をゼロに指定 */
* {
  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;
}

#wrapper {
  text-align: left;
  margin: 0 auto;
  padding: 10px 10px 0;
  width: 1000px;
  }

#header {
  height: 80px;
  margin-top: 10px;
  margin-bottom: 10px;
}

#header-inner {
  width: 100%;
  height: 100%;
  position: relative;
}

#container {
  width: 660px;
  float: left;
}

#contents {
  width: 460px;
  float: right;
}

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

#right-sidebar {
  width: 310px;
  float: right;  
}

#footer {
  padding: 20px 0 30px;
  border: 1px solid #69f;
  clear: both;
}

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

/* 企業名｜ショップ名｜タイトル */
h1 {
  font-size: 80%;
  font-weight: bold;
  position: absolute;
  top: 10px;
  left: 800px;
  color: #000000;
}

/* ページの概要 */
.description {
  position: absolute;
  bottom: 10px;
  left: 20px;
}

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

/* -- 見出し -- */
h2,h3,h4,h5,h6 {
  font-size: 100%;
  font-weight: bold;
  margin-bottom: 1em;
  padding-left: 20px;
  background: url(img/maru.gif) no-repeat 0 0;
}

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

/* -- 文字 -- */
#contents p {
  font-size: 90%;
  line-height: 2.5em;
  margin-bottom: 0.5em;
}

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

/* -- サイドバータイトル -- */
.side-title { 
  padding: 4px 4px;
  border-top: 1px solid #69f;
  border-left: 1px solid #69f;
  border-right: 1px solid #69f;
  background: url(img/side.jpg) no-repeat 0 0;
  color: #0000CC;
  font-weight: bold;
  }

/* -- リスト/サイドバーメニュー -- */
.localnavi {
  list-style-type: none;
  border-left: 1px solid #69f;
  border-right: 1px solid #69f;
  border-bottom: 1px solid #69f;
  margin-bottom: 20px;
}

.localnavi li { 
  display: inline; 
  }

.localnavi a {
  font-size: 90%;
  width: 170px;
  text-decoration: none;
  padding: 4px 4px;
  display: block;
  color: #00f;
}

.localnavi a:hover {
  text-decoration: underline;
  color: #00f;
}

#right-sidebar .localnavi li a {
  font-size: 90%;
  text-decoration: none;
  width: 300px;
  padding: 4px 4px;
  display: block;
  color: #00f;
}

#right-sidebar .localnavi li a:hover {
  color: #f00;
}

.sidebar-dl {
  font-size: 90%;
  margin: 0 0 20px;
}

.sidebar-dl dt {
  text-align: center;
  padding: 4px 0;
  border-top: 1px solid #69f;
  border-left: 1px solid #69f;
  border-right: 1px solid #69f;
  background: url(img/side.jpg) no-repeat 0 0;
  color: #000;
}
.sidebar-dl dd {
  line-height: 1.5em;
  margin-bottom: 10px;
  padding: 9px;
  border-left: 1px solid #69f;
  border-right: 1px solid #69f;
  border-bottom: 1px solid #69f;
}


.rightbar-dl {
  font-size: 90%;
  margin: 0 0 20px;
}

.rightbar-dl dt {
  text-align: center;
  padding: 4px 0;
  border-top: 1px solid #69f;
  border-left: 1px solid #69f;
  border-right: 1px solid #69f;
  background: url(img/rightback.jpg) no-repeat 0 0;
  color: #000;
}
.rightbar-dl dd {
  line-height: 1.5em;
  margin-bottom: 10px;
  padding: 9px;
  border-left: 1px solid #69f;
  border-right: 1px solid #69f;
  border-bottom: 1px solid #69f;
}

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

#footer p {
  text-align: center;
  padding-top: 0px;
  color: #000;
}

