@charset "Shift_JIS";

/* 一括で全ての要素の余白をゼロに指定 */
* {
  padding: 0;
  margin: 0;
}

a:link {
  color: blue;
  text-decoration: underline;
}

a:visited {
  color: #990099;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

/* ---------------------------------------- フォントスタイル フォントサイズ */
body {
  font-size: 100%;
  text-align: center;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Osaka", "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif", "cursive";
  padding: 0;
  margin: 0;
}

/* ---------------------------------------- レイアウトに関する指定 */

#wrapper {
  text-align: left;
  margin: 1em auto 0;
  width: 800px;
}

#header {
  padding: 0px 20px 10px;
}

#globalnavi {
  width: 100%;
  position: relative;
}

#contents {
  float: right;
  width: 640px;
  padding: 4em 0px 0em 0px;
}

#sidebar {
  float: left;
  width: 135px;
  padding: 3em 0px 0em 0px;
}

#footer {
  clear: both;
  padding: 0em 0 1em;
}

/* ---------------------------------------- #header内の指定 */

/* -- サイト名 -- */
.logo {
  font-size: 200%;
  margin-bottom: 0.5em;
}

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

.logo a:hover {
  text-decoration: none;
  background-color: white;
  color: blue;
}

/* -- 概要 -- */
.description {
  color: #336600;
}

/* ---------------------------------------- #globalnaviの指定 */

#globalnavi ul {
  width: 800px;
  list-style-type: none;
  position: absolute;
  background-color: #336600;
}

#globalnavi li {
  text-align: center;
  width: 156px;
  float: left;
  border-right: 1px solid white;
}

#globalnavi .navi01{
  width: 160px;
  border: none;
}

#globalnavi li a {
  text-decoration: none;
  display: block;
  width: auto;
  padding: 0.5em 0;
  background-color: #336600;
  color: white;
}

#globalnavi li a:hover {
  background-color: lime;
  color: blue;
}

/* ---------------------------------------- #contents内の指定 */

/* -- 見出し -- */
h2,h4,h5,h6 {
  font-size: 100%;
  margin-bottom: 1.0em;
  padding: 5px 0 5px 5px;
  border-left: 10px solid #336600;
  border-bottom: 1px solid #336600;
}

h3,h4,h5,h6 { margin-top: 2.0em; }

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

/* -- 以下 リスト関係 -- */
#contents dl { 
  margin: 1em 0;
}

#contents dt {
  margin-bottom: 0.5em;
  font-weight: bold;
  border-bottom: 1px dotted #666666;
}

#contents dd { margin-bottom: 2em; }

#contents ul { margin: 1em 0 1em 20px; }
#contents ol { margin: 1em 0 1em 30px; }
#contents li { margin-bottom: 0.5em; }

/* ---------------------------------------- #sidebar内の指定 */

/* -- カテゴリタイトル -- */
.sidetitle {
  padding: 0.5em 0;
}

/* -- リスト -- */
.localnavi {
  list-style-type: none;
  margin-bottom: 1em;
}

.localnavi li { 
  display: block;
  line-height: 1.4em;
  font-size: 100%;
}

.localnavi a {
  width: 135px;
  padding: 0em 0px;
  border-bottom: none;
  font-size: 100%;
}

.localnavi a:hover {
  border-bottom: none;
}


/* ---------------------------------------- #footer内の指定 */
#footer p { 
  text-align: center;
  font-size: 80%;
}
