/* 
 * Naver v3.1.2 - 2014-11-25 
 * A jQuery plugin for responsive navigation. Part of the Formstone Library. 
 * http://formstone.it/naver/ 
 * 
 * Copyright 2014 Ben Plum; MIT Licensed 
 */






.naver {
  margin: 0;
}
.naver,
.naver *,
.naver *:before,
.naver *:after {
  box-sizing: border-box;
}

.naver-handle {
  width: 100%;
  background: #ffffff;
  border: 1px solid #cccccc;
  color: #111111;
  cursor: pointer;
  display: none;
  font-size: 16px;
  margin: 0;
  padding: 10px 15px;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.naver-handle:after {
  height: 3px;
  width: 15px;
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  background: #cccccc;
  box-shadow: 0 5px 0 #cccccc, 0 -5px 0 #cccccc;
  content: '';
  display: block;
  margin: auto 0;
}
.naver.open .naver-handle:after {
  width: 15px;
  height: 15px;
  background: transparent;
  border: none;
  box-shadow: none;
  color: #cccccc;
  content: "\00d7";
  font-size: 22px;
  font-weight: 700;
  line-height: 15px;
  text-align: center;
}




/*スマホ用メニューここから */
@media screen and (max-width: 640px) {

.naver {
    background-color:#9acd32;
	border:solid 1px #9acd32 ;
	clear: both;
	display: block;
	float: left;
	margin: 0 auto 6px;
	width: 100%;
}
.naver ul {
	font-size: 13px;
	list-style: none;
	margin: auto;
	padding-left: 0;
}

 }


/*PC用メニューここから */
@media screen and (min-width: 641px) {

.naver {
    background-color:#709e10;
	border:solid 1px #709e10;
	clear: both;
	display: block;
	height: 33px;
	margin: 0 auto 6px;
	width: 100%;
	min-width:1180px;
}
.naver ul {
	font-size: 14px;
	list-style: none;
	margin: auto;
	padding-left: 0;
	width:1175px;
}

}

.naver li {
	float: left;
	position: relative;
}
.naver a {
	color: #fff;
	display: block;
	height:33px;
	padding: 5px 10px;
	text-decoration: none;
}
.naver ul ul {
	-moz-box-shadow: 0 3px 3px rgba(0,0,0,0.2);
	-webkit-box-shadow: 0 3px 3px rgba(0,0,0,0.2);
	box-shadow: 0 3px 3px rgba(0,0,0,0.2);
	display: none;
	float: left;
	margin: 0;
	position: absolute;
	top: 2.733em;
	left: 0;
	width: 188px;
	z-index: 99999;
}
.naver ul ul ul {
	left: 100%;
	top: 0;
}
.naver ul ul a {
	background: #fff;
	border-bottom: 1px dotted #ddd;
	color: #FF8C00;
	font-size: 14px;
	font-weight: normal;
	height: auto;
	line-height: 1.4em;
	padding: 10px 10px;
	width: 168px;
}
.naver li:hover > a,
.naver ul ul :hover > a,
.naver a:focus {
	background: #fff;
}
.naver li:hover > a,
.naver a:focus {
	background: #fff; /* Show a solid color for older browsers */
	background: -moz-linear-gradient(#fff, #fff);
	background: -o-linear-gradient(#fff, #fff);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fff), to(#fff)); /* Older webkit syntax */
	background: -webkit-linear-gradient(#fff, #fff);
	border:solid 1px #9acd32 ;
	margin:-1px -1px -1px -1px;
	color: #FF8C00;
}
.naver ul li:hover > ul {
	display: block;
}
.naver .current-menu-item > a,
.naver .current-menu-ancestor > a,
.naver .current_page_item > a,
.naver .current_page_ancestor > a {
	font-weight: bold;
}

.naver a.assistive-text:active,
.naver a.assistive-text:focus {
	background: #eee;
	border-bottom: 1px solid #ddd;
	color: #1982d1;
	clip: auto !important;
	font-size: 12px;
	position: absolute;
	text-decoration: underline;
	top: 0;
	left: 7.6%;
}






 
