@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: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  padding: 0;
  margin: 0;
}

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

#header {
  height: 200px;
  background : url(img/bg-header.jpg) no-repeat 0px 0px;
}

#header-inner {
  width: 100%;
  height: 100%;
  position: relative;
  background : url(img/bg-header-inner.jpg) no-repeat 220px 40px;
}

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

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

#left-sidebar {
  width: 170px;
  float: left;
  padding: 0 5px;
}

#right-sidebar {
  width: 170px;
  float: right;
  padding: 0 5px;
}

#footer {
  height: 150px;
  background : url(img/bg-footer.jpg) no-repeat 0px 0px;
}

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

/* キーワード */
h1 {
  font-size: 300%;
  font-weight: normal;
  position: absolute;
  top: 50px;
  right: 40px;
  color: #f90;
}

/* 企業名｜ショップ名｜タイトル */
.logo {
  font-size: 100%;
  font-weight: bold;
  position: absolute;
  top: 70px;
  right: 40px;
  color:#00000
}

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

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

/* ページの概要 */
.description {
  position: absolute;
  bottom: 50px;
  right: 40px;
  color: #f90;
}

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

/* -- 見出し -- */
h2,h3,h4,h5,h6 {
  font-size: 120%;
  font-weight: normal;
  margin-bottom: 1em;
  border-bottom: 2px ridge #000;
}

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

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

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

/* -- サイドバータイトル -- */
.side-title { padding-bottom: 2px; }

/* -- リスト/サイドバーメニュー -- */
.localnavi {
  list-style-type: none;
  margin-bottom: 20px;
}

.localnavi li { display: inline; }

.localnavi li a {
  font-size: 90%;
  text-decoration: none;
  width: 160px;
  padding: 4px 4px;
  display: block;
  border: 1px outset #eee;
  background-color: #eee;
  color: #333;
}

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

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

#footer p {
  text-align: center;
  padding-top: 20px;
  color: #fff;
}

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

#cds {
  font-size: 80%;
  font-family: Geneva, Arial, Helvetica, sans-serif;
  text-align: left;
  margin: 0;
  padding: 20px 0 0 10px;
  height: 30px;
  clear: both;
  background : url(img/bg-cds.jpg) no-repeat 0px 0px;
}

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