@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: left;
  width: 800px;
  padding: 4em 30px 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,h3,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.5em; }

/* -- 文字 -- */
#contents p {
  line-height: 1.6em;
  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; }


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

/* ---------------------------------------- #table内の指定 */
table {
	border-collapse: collapse;
}
th {
	border: solid 1px black;
	color: #000000;
	background-color: #336600;
	color: white;
  	text-align: center;
        line-height: 1.3em;
}
th.lv1 {
	border: solid 1px black;
	color: #000000;
	background-color: #336600;
	color: white;
  	text-align: right;
        line-height: 1.3em;
}
th.lv2 {
	border: solid 1px #336600;
	color: #000000;
	background-color: white;
  	text-align: left;
        line-height: 1.3em;
}
th.lv3 {
	border: solid 1px #336600;
	color: #000000;
	background-color: white;
  	text-align: left;
        line-height: 1.3em;
}
th.lv4 {
	border: solid 1px #336600;
	color: #000000;
	background-color: white;
  	text-align: right;
        line-height: 1.3em;
}
td {
	border: solid 1px #336600;
	color: #000000;
	background-color: white;
  	text-align: center;
}
