#header ul {
	z-index: 100;
	position: relative;
	margin: 0;
	padding: 0;
	list-style: none;
}
#header ul::after {
	display: block;
	clear: both;
	content: '';
}
#header ul li {
	position: relative;
	float: left;
	/*border: 2px solid #000000;*/
	margin-top: 60px;
	/*background-color: #FFFFFF;*/
	text-align: center;
}
#header ul li:not(:first-child) {
	border-left: none;
}
#header ul li:hover {
	background-color: rgba(255,255,255,0.5);
}
#header ul li a {
	display: inline-block;
	/*padding: 1em 1em;*/
	padding-bottom: 5px;
	padding-top: 5px;
	padding-left: 5px;
	padding-right: 5px;
	color: #535353;/*文字カラー*/
	font-size: 18px;
	text-align: center;
	text-decoration: none;
	white-space: nowrap;
}
#header ul ul {
	position: absolute;
	top: 100%;
	/*left: -2px;*/
}
#header ul ul li {
	float: none;
	margin: 0;
	border-bottom: 1px solid s#EDB7B7;/*ラインカラー*/
	background-color: #FFFFFF;/*サブメニュー背景カラー*/
	background-color: rgba(255,255,255,0.8);
}
#header ul ul li:not(:first-child) {
	border-top: none;
}
#header ul ul ul {
	position: absolute;
	top: -2px;
	left: 100%;
}
#header ul ul {
  visibility: hidden;
  opacity: 0;
  transition: .2s ease-in-out;
  transform: translateY(-20px);
}
#header ul li:hover > ul {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width : 700px) {
#header {
	/*background-color: #00509B;*/
	height: 60px;
}
#header ul li {
	display: none;
}