@charset "utf-8";
body {
	position: relative;
	margin-top: 0;
	margin-left: 0;
	width: 100%;
	font-size: 16px;
	line-height: 160%;
}
.contener {
    display: line-block;
    position: absolute;
    width: 100%;
    background: #F2E6D8;
}
.titlebox {
	position: absolute;
	width: 100%;
    color: #FFF;
    background: #24401C;

}
.titlebox p {
	text-align: center;
}


.menubar{
    position: absolute;
    margin-top: 6em;
    margin-left: 8px;
    width: 80%;
}
.inner{
	display: inline-block;
	position: relative;
	margin-top: 0.1em;
	margin-left: 1em;
	width: 94%;
	background: #F2E6D8;
}
.area1{
	display: inline-block;
	position: relative;
	width: 92%;
	margin-top: 10px;
	margin-left: 8px;
}
.subtitle{
	display: inline-block;
	margin-top: 1em;
	width: 92%;
	background-color: #A0BF5E;
	padding: 8px 8px;
	border-radius: 10px;
	position: relative;
}
.subtitle p{
	margin: 0 auto;
	text-align: left;
	font-weight: bold;
	color:#212020 ;
}
.footer{
	display: inline-block;
	position: relative;
	margin-top: 2em;
	width: 100%;
	height: 40px;
	padding-top: 20px;
	background-color: #BFB5A8;
	text-align: center;
	font-size: 16px;
	font-weight: bold;
	color: #636B73;
}

nav a {
color:#24401C;
text-decoration:underline;
}

nav a:hover {
color: aliceblue;
text-decoration:underline;
}

nav {
	position: relative;
	margin-top: 5.5em;
	margin-left: 1em;
	display: flex;
	box-sizing: border-box;
	z-index: 1;
}

nav::before {
	position: absolute;
	left: 0;
	width: 100%;
	color: #000;
	text-align: center;
}
	
nav ul {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
	background-color: #BFB5A8;
}
nav ul::after {
  display: block;
  clear: both;
  content: '';
}
nav ul li {
  position: relative;
  float: left;
  border: 2px solid #ddd;
}
nav ul li:not(:first-child) {
  border-left: none;
}
nav ul li:hover {
  background-color: rgba(104,125,138,0.50);
}
nav ul li a {
  display: inline-block;
  padding: 0.5em 2em;
  color: #000;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}
nav ul ul {
  position: absolute;
  left: 40px;
}
nav ul ul li {
  float: none;
  margin: 0;
}
nav ul ul li:not(:first-child) {
  border: 2px solid #ddd;
  border-top: none;
}
nav ul ul ul {
  position: absolute;
  top: -2px;
  left: 100%;
}
.nav01 ul ul {
	display: none;
}
.nav01 ul li:hover > ul {
	display: block;
}

