@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-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}

#wrapper {
	text-align: left;
	width: 800px;
	margin-top: 20px;
	margin-right: auto;
	margin-bottom: 20px;
	margin-left: auto;
	border-width: 1px;
	border-style: solid;
	border-color: black rgb(51, 51, 51) rgb(51, 51, 51);
	background-color: white;
	background-image: url(img/bg-container.jpg);
}

#header {
	width: 100%;
	height: 300px;
	margin-bottom: 20px;
	position: relative;
	background-color: transparent;
	background-image: url(img/header3.jpg);
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-position: 0px 0px;
}

#container {
	margin-bottom: 40px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	background-color: transparent;
	background-repeat: repeat-y;
	background-attachment: scroll;
	background-position: 100% 0px;
	color: rgb(255, 255, 255);
	background-image: url(img/bg-container.jpg);
}

#contents {
	width: 540px;
	float: left;
	padding-top: 0px;
	padding-right: 40px;
	padding-bottom: 0px;
	padding-left: 20px;
	color: rgb(255, 255, 255);
	background-color: transparent;
	background-image: url(img/bg-container.jpg);
}

#sidebar {
	width: 177px;
	float: right;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 5px;
	background-color: transparent;
	background-image: url(img/bg-container.jpg);
}

#footer {
	padding-top: 20px;
	padding-right: 0px;
	padding-bottom: 30px;
	padding-left: 0px;
	background-color: rgb(0, 0, 255);
	background-image: none;
	background-repeat: repeat;
	background-attachment: scroll;
	background-position: 0% 0%;
}

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

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

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

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

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

/* ページの概要 */
.description {
  position: absolute;
  top: 50px;
  left: 20px;
}

/* グローバルナビゲーション */
#globalnavi {
	list-style-type: none;
	width: 800px;
	height: 28px;
	padding-top: 12px;
	overflow: hidden;
	position: absolute;
	bottom: 0px;
	left: 0px;
	background-color: rgb(21, 21, 255);
	background-image: none;
	background-repeat: repeat;
	background-attachment: scroll;
	background-position: 0% 0%;
}

#globalnavi li {
	display: inline; 
}

#globalnavi a {
	text-decoration: none;
	padding-top: 0px;
	padding-right: 5px;
	padding-bottom: 0px;
	padding-left: 15px;
	background-color: transparent;
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-position: 0px 50%;
	color: white;
}

#globalnavi li a:hover {
	background-color: transparent;
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-position: -400px 50%;
	color: yellow;
}

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

/* 見出し */
h2,h3,h4,h5,h6 {
	font-size: 120%;
	font-weight: normal;
	height: 30px;
	margin-bottom: 1em;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 10px;
	background-color: transparent;
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-position: 0px 0px;
}

h3,h4,h5,h6 {
	margin-top: 20px;
}

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

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

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

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

.localnavi li {
	display: inline; 
}

.localnavi li a {
	text-decoration: none;
	width: 175px;
	padding-top: 4px;
	padding-right: 4px;
	padding-bottom: 4px;
	padding-left: 4px;
	display: block;
	border-width: 1px;
	border-style: outset;
	border-color: transparent;
	background-color: transparent;
	height: 50px;
}

.localnavi li a:hover {
	text-decoration: none;
	border-width: 1px;
	border-style: outset;
	border-color: #ffffff;
	background-color: white;
}

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

#footer p {
  color: #fff;
  text-align: center;
}

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

#cds {
  font-size: 80%;
  font-family: Geneva, Arial, Helvetica, sans-serif;
  text-align: right;
  margin: 0;
  padding-right: 10px;
  clear: both;
}

#cds, #cds a, #cds a:hover {
	text-decoration: none;
	color: rgb(255, 255, 255);
}