@charset "UTF-8";
.dropmenu{
  *zoom: 1;
  list-style-type: none;
  margin-right : auto;margin-left : auto;
  padding: 0;
}
.dropmenu::before, .dropmenu::after{
  content: "";
  display: table;
}
.dropmenu::after{
  clear: both;
}
.dropmenu li{
	position: relative;
	width : 20%;
	float: left;
	margin: 0px;
	padding: 0px;
	text-align: center;
}
.dropmenu li a{
	display: block;
	margin: 0px;
	padding : 18px 0px;
	background-color : #000080;
	background-image : none;background-repeat : repeat;background-attachment : scroll;background-position : 0% 0%;background-size : auto auto;background-origin : padding-box;background-clip : border-box;
	color : white;
	font-size: 14px;
	line-height: 1;
	text-decoration: none;
  font-weight : bold;
}
.dropmenu li ul{
  list-style: none;
  position: absolute;
  z-index: 9999;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 0;
}
.dropmenu li ul li{
  width: 100%;
}
.dropmenu li ul li a{
	padding: 13px 15px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color : #ffffff;
	background-color : navy;background-image : none;background-repeat : repeat;background-attachment : scroll;background-position : 0% 0%;background-size : auto auto;background-origin : padding-box;background-clip : border-box;
	text-align: left;
  color : white;
}
.dropmenu li:hover > a{
  background : none 0% 0% / auto auto repeat scroll padding-box border-box #8080c0;
  
}
.dropmenu li a:hover{
	background-color : #8080ff;
	background-image : none;background-repeat : repeat;background-attachment : scroll;background-position : 0% 0%;background-size : auto auto;background-origin : padding-box;background-clip : border-box;
}



/*====================================
スライドしながら伸び縮み
=====================================*/
.dropmenu li ul li{
  overflow: hidden;
  height: 0;
  transition: .2s;
}
.dropmenu li:hover ul li{
  overflow: visible;
  height: 38px;
}