﻿@charset "UTF-8";

/* -------------------------------------------------------------

[1] レイアウトに関する指定
[2] ヘッダーブロック内に関する指定
[3] コンテンツブロック内に関する指定
[4] フッターブロック内に関する指定
[5] 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: #6c6f70; }

a:visited { color : #6c6f70; }

a:hover { color: #6e2585; }

a:active { color: #6e2585; }


/* -------------------------------------------------------------
   [1] レイアウトに関する指定 */
body {
  font-size: 85%;
  color: #6c6f70;
  text-align: center;
  font-family:"小塚ゴシック", "ＭＳ Ｐゴシック";
  padding: 0;
  margin: 0;
}

/*-- 全体を囲んでいます --*/
#wrapper {
  text-align: left;
  width: 862px;
  margin: 0 auto;
  border-left: 3px solid #ccc;
  border-right: 3px solid #ccc;
}

/*-- ヘッダー部分 --*/
#header {
  width: 869px;
  height: 165px;
  position: relative;
  
}

/*-- コンテンツ部分 841px --*/
#contents { padding: 12px 16px; }

/*-- フッター部分 --*/
#footer {
  width: 868px;
  margin: 0 auto;
  padding: 1em 0 0.5em;
  background-color: #333;
}

/* -------------------------------------------------------------
   [2] ヘッダーブロック内に関する指定 */

/* 見出し */

h1 {
  font-size: 100%;
  font-weight: normal;
  text-align: right;
  position: absolute;
  top: 10px;
  left: 30px;
  color: #666;
}

/* サイトタイトル */
.logo {
  font-size: 160%;
  position: absolute;
  top: 30px;
  left: 30px;
}

.logo a {
  font-weight: bold;
  color: #000;
  text-decoration: none;
}

.logo a:hover {
  color: #f00;
  text-decoration: none;
}

/* 概要 */
.description {
  line-height: 1.5em;
  position: absolute;
  bottom: 45px;
  left: 30px;
  color: #000;
}



/*--サブメニュー部分--*/

#globalnavi ul {
  list-style-type: none;
  width: 200px;
  height: auto;
  position: static;
}

#globalnavi ul li {
  width: 200px;
  float: none;
}

#globalnavi ul li a {
  text-align: left;
  text-decoration: none;
  width: 190px;
  height: auto;
  display: block;
  padding: 4px;
  border: 1px outset #690;
  background-image: none;
  background-color: #690;
  color: #000;
}

#globalnavi ul li a:hover {
  text-decoration: none;
  border: 1px outset #666;
  background-image: none;
  background-color: #666;
  color: #fff;
}

#globalnavi .menu ul {
	display: none; 
}

#globalnavi .menuOn ul {
	display: block; 
}

/* -------------------------------------------------------------
   [3] コンテンツブロック内に関する指定 */

/* 見出し */
h2,
h3,
h4,
h5,
h6 {
  font-size: 120%;
  font-weight: bold;
  margin-bottom: 0.3em;
  padding: 3px 1px 1px;
  color: #00b2a9;
  border-top: 2px solid #ccc;
  
}

h3,
h4,
h5,
h6 { margin-top: 2em; }

/* 文字 */
#contents p {
  line-height: 2em;
  margin-bottom: 1em;
}

/* -------------------------------------------------------------
   [5] フッターブロック内に関する指定 */

#footer p {
  text-align: center;
  color: #fff;
}

/* -------------------------------------------------------------
   [6] CSSデザインサンプルリンク指定 */

#cds {
  font-size: 85%;
  font-family: Geneva, Arial, Helvetica, sans-serif;
  text-align: right;
  margin: 0;
  padding-right: 20px;
  clear: both;
}

#cds,
#cds a,
#cds a:hover {
  text-decoration: none;
  color: #ccc;
}
