@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;
  background-color: #669933;
}

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

#header {
  width: 600px;
  height: 170px;
  margin-left: 200px;
  margin-bottom: 20px;
  position: relative;
  background: url(img/bg-header3.gif) no-repeat 0 0;
}

#contents {
  width: 560px;
  float: right;
  padding: 0 20px;
}

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

#footer { padding: 0.5em 0 1.5em;}

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

/* キーワード */
h1 {
	font-size: 100%;
	font-weight: normal;
	position: absolute;
	top: 10px;
	right: 10px;
	width: 389px;
}

/* 企業名｜ショップ名｜タイトル */
.logo {
  font-size: 160%;
  position: absolute;
  top: 30px;
  right: 10px;
}

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

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

/* ページの概要 */
.description {
  position: absolute;
  bottom: 3em;
  right: 10px;
}

/* グローバルナビゲーション */
.globalnavi {
	list-style-type: none;
	width: 600px;
	height: 2em;
	overflow: hidden;
	position: absolute;
	bottom: -1px;
	left: 0px;
	background-color: #339933;
}

.globalnavi li {
  text-align: center;
  font-size: 95%;
  width: 120px;
  float: left;
}

.globalnavi a {
  text-decoration: none;
  width: 100%;
  display: block;
  padding: 0.5em 0;
  background-color: #669933;
  color: #003333;
}

.globalnavi li a:hover {
  text-decoration: none;
  background-color: #339933;
  color: #ffffcc;
}

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

/* 見出し */
h2,h3,h4,h5,h6 {
  font-size: 140%;
  font-weight: normal;
  margin-bottom: 1em;
  padding-left: 5px;
  border-left: 5px solid #693;
  color: #693;
}

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

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

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

/* サイドバータイトル */
.side-title { color: #eee; }

/* サイドバーメニュー */
.localnavi {
  list-style-type: none;
  margin-bottom: 2em;
  padding: 5px;
  background-color: #ffffcc;
}

.localnavi li { display: inline; }

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

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

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

#footer p {
  text-align: center;
  width: 600px;
  margin-left: 200px;
}

/* -------------------------------------------------------------
   [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: #333;
}
