@charset "Shift_JIS";

/* 一括で全ての要素の余白をゼロに指定 */
* {
  padding: 0;
  margin: 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; }

/*---------------------------------------レイアウトに関する指定*/


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) repeat-x 0 0;
  height: 100%;     
}

* html body	{
	background: url(null) fixed;
}

#wrapper {
  text-align: left;
  margin: 0 auto;
  width: 900px;
  position: relative;
}

#contents {
  width: 700px;
  float: right;
}

#sidebar {
  width: 165px;
  margin-top: 0px;
  float: left;
}

#header {
  margin-bottom: 4em;
  padding-top: 7em;
}

#container {
 width: 100%;
 height:100%;
}

#footer { padding-bottom: 0.5em; }

#kokoclicker {
 position: fixed;  
 right: 0;  
 bottom: 0;  
}

p.fixed-1	{
	position: fixed;
	right: 0;
	bottom: 0;	
}



/*---------------------------------------ヘッダーブロックに関する指定*/

/* -- キーワード -- */
h1 {
  font-size: 100%;
  font-weight: normal;
  margin: 0 0 0.5em 180px;
}

/* -- 企業名｜ショップ名｜タイトル -- */
.logo {
  font-size: 180%;
  text-align: right;
  margin: 0 0 0.5em 180px;
  border-bottom: 1px solid #666666;
}

.logo a {
  text-decoration: none;
  color: #000000;
}

.logo a:hover {
  text-decoration: none;
  color: #ff0000;
}

/* -- ページの概要 -- */
.description {
  text-align: right;
  margin: 0 0 0.5em 180px;
}

/*---------------------------------------コンテンツブロックに関する指定*/

/* -- 見出し -- */
h2,h3,h4,h5,h6 {
  font-size: 130%;
  color: #349b9a;
  margin-bottom: 1em;
  padding: 0.5em 0 0.5em 30px;
  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 {
  margin-bottom: 0;
  padding-bottom: 1px;
  border-bottom: 1px solid #996;
  color: #996;
}

/* サイドバーメニュー */
.localnavi {
  list-style-type: none;
  margin-bottom: 2em;
}

.localnavi li { display: inline; }

.localnavi li a {
  text-decoration: none;
  width: 170px;
  padding: 5px 0;
  display: block;
  border-bottom: 1px solid #cc9;
  color: #333;
}

.localnavi li a:hover {
  text-decoration: none;
  border-bottom: 1px solid #f00;
  color: #f00;
}


/*---------------------------------------フッターブロックに関する指定*/

#footer p {
  text-align: right;
  margin: 0 0 0.5em 180px;
  padding-top: 0.5em;
  border-top: 1px solid #666666;
}

#footer #cds {
  font-size: 90%;
  text-align: right;
  color: #999999;
  border: none;
}

#footer #cds a {
  color: #999999;
  text-decoration: none;
}



/*---------------------------------------グローバルナビ部分*/
#globalnavi {
  position: absolute;
  top: 1em;
  left: 0;
  width: 800px;
}

#globalnavi ul {
  list-style-type: none;
}

#globalnavi li {
  width: 159px;
  float: left;
  border-right: 1px solid #666666;
}

#globalnavi li a {
  text-align: center;
  padding: 0.5em 0;
  width: 100%;
  display: block;
  text-decoration: none;
}

#globalnavi li a:hover {
  background-color: #333333;
  color: #ffffff;
  text-decoration: underline;
}

/*--サブメニュー部分--*/

#globalnavi ul ul li {
  font-size: 90%;
  width: 160px;
  float: none;
  border: none;
  display: inline;
  margin: 0;
}

#globalnavi ul ul li a {
  text-align: left;
  padding: 1em 5px;
  width: 150px;
  display: block;
  background-color: #cccccc;
  color: #000000;
  text-decoration: none;
  border-top: 1px solid #ffffff;
}

#globalnavi li a:hover {
  background-color: #333333;
  color: #ffffff;
  text-decoration: none;
}

#globalnavi ul li.menu ul { display: none; }
#globalnavi ul li.menuOn ul { display: block; }
