@charset "Shift_JIS";

#dropmenu{
	list-style-type: none;
	height: 100px;
	margin: 0px;
	padding: 0px;
}
#dropmenu li{
	position: relative;
	width: 100px;
	float: right;
	padding: 0;
	text-align: center;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #fff;
	margin-top: 20px;
}

#dropmenu li:last-child{
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #666;
}


#dropmenu li a{
  display: block;
  margin: 0;
  padding: 25px 0 21px;
  color: #fff;
  font-size: 13px;
  line-height: 1;
  text-decoration: none;
}
#dropmenu li:hover .cursor {
  cursor: default;
}
#dropmenu li:hover > a{
  color: #7fa3a0;
}
#dropmenu > li:hover > a{
  border-radius: 3px 3px 0 0;
}
#dropmenu li ul{
  list-style: none;
  position: absolute;
  top: 70%;
  left: 100%;
  margin: 0;
  padding: 0;
  width: 100%
}

#dropmenu li:nth-last-child(2) ul{
  left: 100%;
  width: 100%
}
#dropmenu li:last-child ul{
  left: 100%;
  width: 100%
}
#dropmenu li ul li{
  overflow: hidden;
  width: 200%;
  height: 0;
  color: #fff;
  -moz-transition: .4s;
  -webkit-transition: .4s;
  -o-transition: .4s;
  -ms-transition: .4s;
  transition: .4s;
  border-left-style: none;
}

#dropmenu li ul li:last-child{
	border-right-style: none;
}

#dropmenu li ul li a{
	background: #666666;
	text-align: left;
	font-size: 13px;
	font-weight: normal;
	padding-top: 23px;
	padding-right: 10px;
	padding-bottom: 23px;
	padding-left: 10px;
}

#dropmenu li:hover ul li{
  overflow: visible;
  height: 38px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
#dropmenu li:hover ul li:first-child{
  border-top: 0;
}
#dropmenu li:hover ul li:last-child{
  border-bottom: 0;
}
#dropmenu li:hover ul li:last-child a{
  border-radius: 0 0 3px 3px;
}
