@charset "shift_jis";

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

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

----------------------------------------------------------------
CSSデザインサンプ [ URL ] http://www.css-designsample.com
------------------------------------------------------------- */


/* 一括で全ての要素の余白をゼロに指定 */
*{
  margin: 0;
  padding : 0px;
}

/* 全体的なリンク */

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.gif) repeat-x 0 0;
}

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

#header{
	height: 100px;
}

#header-inner{
  margin-left: 250px;
  border-bottom: 1px solid #666;
}

#container{
	width: 100%;
}

#contents{
  width : 750px;
  float: right;
  color : #666666;
}

#sidebar{
  width: 200px;
  float: left;
  padding-top: 260px;
}

#footer{
  padding: 20px 0 30px;
  background: url(img/bg-footer.gif) repeat-x 0 100%;
}

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

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

/* -- 企業名｜ショップ名｜タイトル -- */
.logo{
  text-align: right;
  font-size: 180%;
  text-align: right;
  margin: 0 0 0.5em 230px;
}

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

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

/* -- ページの概要 -- */
.description{
  margin-bottom: 0.5em;
  color: #666;
}

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

/* -- 見出し -- */
h2,h3,h4,h5,h6{
  font-size: 120%;
  padding: 1em 0 1em 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;
}

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

/* -- サイドバータイトル -- */
.side-title{
  text-align: center;
  padding: 5px 0;
  background-color: #ccc;
  color: #333;
}

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

.localnavi li{
	display : block;
}

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

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

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

#footer p{
	text-align: center;
}

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

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

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

td{
  padding-top : 10px;
  padding-left : 10px;
  padding-right : 10px;
  padding-bottom : 10px;
}

