@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 {
	/* [disabled]color: #00f; */
}

a:visited {
	/* [disabled]color: #90f; */
}

a:hover { color: #f00; }

a:active {
	/* [disabled]color: #f00; */
}



/* -------------------------------------------------------------
   [1] レイアウトに関する指定 */
body {
	font-size: 90%;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	padding: 0;
	margin: 0;
	background-image: url(../pic/bg-body.jpg);
	background-position: 0 0;
	background-repeat: repeat-x;
	background-size: auto auto;
}

#wrapper {
	margin: 0 auto 0;
	width: 95%;
}

#header {
	width: 100%;
	height: 200px;
	margin-bottom: 2em;
	position: relative;
	background-image: url(../pic/header4.jpg);
	background-position: 0 100%;
	background-repeat: no-repeat;
}

#container {
	float: left;
	width: 100%;
	margin-right: -300px;
}

#container-inner {
  float: right;
  width: 100%;
  margin-left: -180px;
}

#contents {
	padding: 0 20px;
	margin-bottom: 0;
	margin-left: 180px;
	margin-right: 300px;
	margin-top: 0;
}

#left-sidebar {
  float: left;
  width: 180px;
}

#right-sidebar {
	float: right;
	width: 300px;
}

#footer {
	padding: 20px 0 30px;
	background-color: #FF5757;
	color: #003300;
}

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

/* -- 見出しレベル1 -- */
h1 {
	font-size: 120%;
	font-weight: bold;
	position: absolute;
	left: 227px;
	bottom: 65px;
	color: #FFFFF9;
}

/* -- 企業名 ショップ名 サイト名 -- */
.logo {
	font-size: 120%;
	position: absolute;
	top: 30px;
	/* [disabled]left: 0; */
	display: none;
}

.logo a {
  text-decoration: none;
  background-color: #ffffff;
  color: #336600;
}

.logo a:hover {
  text-decoration: none;
  background-color: #ffffff;
  color: #ff0000;
}

/* -- 概要 -- */
.description {
	position: absolute;
	top: 70px;
	left: 200px;
	display: none;
}

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

/* -- 見出し -- */
/*h2,h3,h4,h5,h6 {
	font-size: 120%;
	font-weight: normal;
	padding: 1em 0 1em 1em;
	background-image: url(../pic/bg-h2.jpg);
	background-position: 0 50%;
	background-repeat: repeat-x;
}
*/
h3,h4,h5,h6 { margin-top: 1.5em; }

h2 {
	font-size: 120%;
	font-weight: bold;
	padding: 1em 0 1em 1em;
	background-image: url(../pic/bg-h2.jpg);
	background-position: 0 50%;
	background-repeat: repeat-x;
}

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

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

/* -- カテゴリタイトル -- */
.side-title {
	padding: 0.5em 5px;
	background-color: #AB1D40;
	color: #ffffff;
}

#left-sidebar ul,
#right-sidebar ul {
  list-style-type: none;
  width: 168px;
  margin-bottom: 2em;
  padding: 1em 5px;
  border: 1px solid #336600;
}

#left-sidebar li,
#right-sidebar li { margin-bottom: 1em; }

/* -- リスト -- */
#left-sidebar .localnavi,
#right-sidebar .localnavi {
  width: 180px;
  padding: 0;
  border: none;
}

.localnavi li {
  display: inline;
  margin: 0;
}

#left-sidebar .localnavi a {
  text-decoration: none;
  display: block;
  width: 170px;
  padding: 0.5em 5px;
}

#right-sidebar .localnavi a {
  text-decoration: none;
  display: block;
  width: 290px;
  padding: 0.5em 5px;
}

#left-sidebar .localnavi a {
	background-image: url(../pic/bg-localnavi.jpg);
	background-position: 0 100%;
	background-repeat: no-repeat;
	font-weight: bold;
	color: #FFFFFF;
}

#right-sidebar .localnavi a {
  background-color: #eeeeee;
  color: #000000;
  border-bottom: 1px solid #ffffff;
}

#left-sidebar .localnavi a:hover,
#right-sidebar .localnavi a:hover { 
text-decoration: none;
 }

#left-sidebar .localnavi a:hover {
	background: url(../pic/bg-localnavi.jpg) no-repeat -180px 100%;
	color: #000000;
}

#right-sidebar .localnavi a:hover {
  background-color: #99CC33;
  color: #ffffff;
  transition : 0.3s ;
}

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

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

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

#cds {
	font-size: 80%;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	text-align: right;
	margin: 0;
	clear: both;
	/* [disabled]display: none; */
}

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

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

#pan {
	top: 207px;
	position: absolute;
	list-style-type: none;
}
#pan li{
	list-style-type: none;
	display: inline;
}
