@charset "Shift_JIS";

/* 一括で全ての要素の余白をゼロに指定 */
* {
  padding: 0;
  margin: 0;
}

a:link {
  color: #3333ff;
  text-decoration: none;
}

a:visited {
  color: #990099;
  text-decoration: none;
}

a:hover {
  color: #ff0000;
  text-decoration: underline; 
}

/* ---------------------------------------- フォントスタイル フォントサイズ */
body {
  font-size: 0.85em;
  text-align: center;
  font-family: "Verdana","ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", sans-serif;
  color: #444444;
  padding: 0;
  margin: 0;
}




/* ---------------------------------------- レイアウトに関する指定 */

#wrapper {
  text-align: left;
  margin: 1em auto 0;
  width: 800px;
  border: 1px solid #4682B4;
}

#header {
  padding: 20px 20px 10px;
  border-bottom: 1px solid #cccccc;
}

#globalnavi {
  width: 100%;
  position: relative;
}

#contents {
  width: 750px;
  padding: 4em 30px 4em 20px; /* 空白上右下左を指定 */
}

#footer {
  clear: both;
  padding: 1em 0 1em;
  font-size: 0.85em;
  border-top: 1px solid #cccccc;
  text-align: center;
　background-color: #cce6e6;
}


/* ---------------------------------------- #header内の指定 */

/* -- 見出しレベル1 -- */
h1 {
  text-align: right;
  font-size: 0.85em;
  font-weight: normal;
  color: #87CEEB;
}

/* -- サイト名 -- */
.logo {
  margin-bottom: 0.3em;
}


/* -- 概要 -- */
.description {
  font-size: 0.85em;
  color: #4682B4;
  text-indent: 1em;
}

/* ---------------------------------------- #globalnaviの指定 */

#globalnavi ul {
  width: 800px;
  list-style-type: none;
  position: absolute;
  background-color: #0099ff;
}

#globalnavi li {
  width: auto;
  float: left;
  border-right: 2px groove #cccccc;
  font-family: "Comic Sans MS","sans-serif";
  font-weight: bolder;
  color: #ffffff;
}

#globalnavi li a {
  text-decoration: none;
  display: block;
  width: auto;
  padding: 0.5em 1em;
  background-color: #0099ff;
  color: #ffffff;
}

#globalnavi li a:hover {
  background-color: #99ccff;
  color: #000000;
}

/* ---------------------------------------- #contents内の指定 */

/* -- 見出し -- */
h2{
  font-size: 1.3em;
  margin-bottom: 0.8em;
　color: #191970; 
　font-weight: bolder;
  padding: 0.2em 5px;
  border-bottom: 2px solid #4682B4;
}

h3{
  font-size: 1.2em;
  margin-bottom: 0.8em;
  margin-top: 2.5em;
　color: #191970; 
　font-weight: bolder;
  padding: 0.2em 5px;
  border-bottom: double #4682B4;
}

h4 {
  font-size: 1em;
  margin-bottom: 0.8em;
  color: #000033; 
　font-weight: bolder;
  padding: 0.4em 12px;	/* 上下 左右 */
  background-color: #e5f1ff;
  border-top: 2px solid #4682B4;
  border-bottom: 1px solid #cccccc;
}

h5 {
  font-size: 1em;
  margin-bottom: 0.5em;
  font-weight: bold;
  border-bottom: 1px dotted #666666;
}

/* -- 文字 -- */
#contents p {
  line-height: 1.6em;
  margin-bottom: 0.5em;
}

/* -- 水平線 -- */
hr {
  color: #666666; /* 線の色(IE用) */
  background-color: #666666; /* 線の色(NN用) */
  height: 1px; /* 線の太さ */
  border: 1px; /* 枠の太さ */
  border-style: dotted; /* 枠の種類 */
}

/* ---------------------------------------- divスタイル */


/* -- ページトップ -- */
#pegetop {
 text-align: right;
 font-size: 0.85em;
 margin: 1em 0 1em 0; /* 空白上右下左を指定 */
 padding: 1em 7px 5px 0;
 border-bottom: 1px #4682B4 dotted; 
}


/* ---------------------------------------- #sidebar内の指定 */

/* -- カテゴリタイトル -- */
.sidetitle {
　color: #191970; 
　font-weight: bolder;
  padding: 1em 3px 0.3em 3px;/* 空白上右下左を指定 */
  border-bottom: 2px solid #4682B4;
}

/* -- リスト -- */
.localnavi {
  list-style-type: none;
}

.localnavi li { display: inline; }

.localnavi a {
  text-decoration: none;
  display: block;
  width: 170px;
  padding: 0.5em 5px;
  background-color: #e5f1ff;
  color: #3333ff;
  border-bottom: 1px solid #cccccc;
}

.localnavi a:hover {
  text-decoration: none;
  background-color: #8fbcef;
  color: #000066;
  border-bottom: 1px solid #0068e0;
}

/* ---------------------------------------- #footer内の指定 */
#footer p {
　text-align: center;
　margin-top:10px
}

#footer ul {float: center;}

#footer li{
 display: inline;
 margin: 0;
 padding: 0 10px;
 list-style: none;
 border-right: 1px solid #333;
}

#footer li.right {border-right: none;}

