@charset "Shift_JIS";

/*
[1]全体のリンク指定
[2]CSS.DesignSampleへのリンク指定
[3]レイアウトに関する指定
[4]ヘッダー内の各部分指定
[5]コンテンツ内の各部分指定
[6]サイドバー内の各部分指定
[7]フッター内の各部分指定
*/


/* 一括で全ての要素の余白をゼロに指定 */
* {
  padding: 0;
  margin: 0;
}

/*########################################

[1]全体のリンク指定 */

a:link {
  color: #0000ff;
  text-decoration: underline;
}

a:visited {
  color: #660066;
  text-decoration: underline;
}

a:hover {
  color: #ff0000;
  text-decoration: underline;
}

/*########################################

[2]CSS.DesignSampleへのリンク指定 */

#container #cds {
  font-size: 90%;
  text-align: left;
  clear: both;
  color: #666666;
}

#container #cds a,
#container #cds a:hover {
  text-decoration: none;
  color: #666666;
}

/*########################################

[3]レイアウトに関する指定 */

body {
  font-size: 80%;
  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 0 auto;
  width: 730px;
}

/*-- description --*/
.description {
  text-align: right;
  
  height: 80px;
}

/*-- ヘッダー部分 --*/
#header {
  height: 275px;
  padding: 20px 0 10px 250px;
  background: url(img/bg-header.jpg) no-repeat 0 0;
}

/*-- contents と left-sidebar を囲む枠 --*/
#container {
  width: 728px;
  padding: 2em 0 0;
  border-left: 1px solid #ff9900;
  border-right: 1px solid #ff9900;
}

/*-- コンテンツ部分 --*/
#contents {
  width: 480px;
  padding: 0 20px 0 0;
  float: right;
}

/*-- サイドバー部分 --*/
#sidebar {
  width: 190px;
  padding: 0 0 0 10px;
  float: left;
}

/*-- フッター部分 --*/
#footer {
  clear: both;
  padding: 0.9em 0 0.1em;

  background: url(img/bg-header.jpg) no-repeat 0 100%;
}

/*########################################

[4]ヘッダー部分 */

/* -- キーワード -- */
h1 {
  font-size: 100%;
  font-weight: normal;
  padding-bottom: 0.5em;
}

/* -- 企業名｜ショップ名｜タイトル -- */
.logo {
  font-size: 150%;
  font-weight: bold;
}

.logo a {
  text-decoration: none;
  color: #000000;
}

.logo a:hover {
  text-decoration: none;
  color: #ff0000;
}

/* -- ページの概要 -- */
.description { text-align: right;}

/*########################################

[5]コンテンツ内の各部分指定 */

/* 見出し */
h2,
h3,
h4,
h5,
h6 {
  font-size: 120%;
  margin-bottom: 1em;
  padding: 0.5em 0 0.5em 2em;
  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 { margin: 1em 0 1em 20px; }

#contents ol { margin: 1em 0 1em 25px; }

#contents li {
  line-height: 1.6em;
  margin-bottom: 0.5em;
}

/*########################################

[6]サイドバー内の各部分指定

/* サイドバータイトル */
#sidebar .p_sidetitle {
  text-align: center;
  margin: 0;
  padding: 0.5em 0;
  border-bottom: 1px solid #000000;
}

/* サイドバー内の文字(P) */
#sidebar p {
  text-align: left;
  margin: 1em 0;
  padding: 0;
  padding: 0;
  line-height:1.5em;
}

/* リスト/サイドバーメニュー */
#sidebar .localnavi {
  list-style-type: none;
  margin: 0 0 2em 0;
}

#sidebar .localnavi li { display: inline;}

#sidebar .localnavi li a {
  text-decoration: none;
  width: 180px;
  display: block;
  padding: 0.5em 0 0.5em 10px;
  background: url(img/bg-navi.gif) no-repeat 0 50%;
  border-bottom: 1px solid #ffffff;
}

#sidebar .localnavi li a:hover {
  color: #ff0000;
  text-decoration: underline;
  background: url(img/bg-navi.gif) no-repeat -200px 50%;
}

/* リスト */
#sidebar ul { margin: 2em 0 2em 10px; }

#sidebar li { margin-bottom: 0.5em; }

/*########################################

[7]フッター内の各部分指定 */

#footer p { text-align: center; }
