@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へのリンク指定 */

#footer #cds,
#footer #cds a,
#footer #cds a:hover {
  font-size: 90%;
  text-align: right;
  color: #999999;
}

/*++++++++++++++++++++++++++++++++++++++++

[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;
  background: url(img/bg-body.jpg) no-repeat 50% 0;
}

/*-- 全体を囲んでいます --*/

#wrapper {
  text-align: left;
  margin: 0 auto;
  width: 780px;
  padding-right: 20px;
  background: url(img/bg-wrapper.jpg) no-repeat 100% 200px;
}

/*-- ヘッダー部分 --*/
#header { margin-bottom: 100px; }

/*-- コンテンツ部分 --*/
#contents {
  float: left;
  width: 500px;
  padding: 2em 20px;
  background: #ffffff url(img/bg-contents.jpg) no-repeat 0 0;
}

/*-- サイドバー部分 --*/
#sidebar {
  float: right;
  width: 200px;
  margin: 100px 0 0 0;
  padding: 0;
}

/*-- フッター部分 --*/
#footer {
  clear: both;
  padding: 2em 0 1em;
  border-top: 1px solid #9999ff;
}

/*++++++++++++++++++++++++++++++++++++++++

[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 { padding: 0.5em 0; }

/*++++++++++++++++++++++++++++++++++++++++

[5]コンテンツ内の各部分指定 */


/*-- 見出し --*/

h2,
h3,
h4,
h5,
h6 {
  font-size: 120%;
  margin-bottom: 1em;
  padding: 0.5em 0 0.5em 25px;
}

h3,
h4,
h5,
h6 { margin-top: 3em; }

h2 { background: url(img/bg-h2.gif) no-repeat 0 50%; }

h3 { background: url(img/bg-h.gif) no-repeat 0 50%; }

/* -- 文字 -- */
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;
}

img
	{
	float:left;
	margin-right:15px;
	}
/*++++++++++++++++++++++++++++++++++++++++

[6]サイドバー内の各部分指定 */

/*-- サイドバータイトル --*/

.p_sidetitle {
  font-weight: bold;
  padding-bottom: 2px;
  border-bottom: 1px solid #666666;
}

/*-- ローカルナビ --*/

.localnavi {
  list-style-type: none;
  margin-bottom: 2em;
}

.localnavi li {
  display: inline;
  margin:0;
}

.localnavi li a {
  width: 180px;
  padding: 0.5em 10px;
  display: block;
  text-decoration: none;
  background: url(img/button.jpg) no-repeat 0 20%;
  font-size: 90%;
 
}

.localnavi li a:hover {
  text-decoration: none;
  background: url(img/button.jpg) no-repeat -200px 20%;
}

/*-- 通常のリスト<ul> --*/


#sidebar ul li { margin-bottom: 0.5em; }

/*++++++++++++++++++++++++++++++++++++++++

[7]フッター内の各部分指定 */

/*-- コピーライト --*/

#footer p { text-align: center; }
