/***************************************************
/* e-drqqy
/*
/* Copyright (c) 2016. 
/* Web制作 Eight http://eight-web.com/
/*
/* This software is released under the MIT License.
/* http://opensource.org/licenses/mit-license.php
/***************************************************/
@media screen and (min-width: 781px) {
/***** first *****/
.e-droppy > ul > li {
	position: relative;
}
/***** Second *****/
.e-droppy > ul > li > ul {
	display: none;
	left: 0;
	position: absolute;
	top: 60px;
	width: 100%;
}
.e-droppy > ul > li:hover > ul { display: block; }
.e-droppy > ul > li > ul > li {
	position: relative;
	width: 100%;
}
/***** Third *****/
.e-droppy > ul > li > ul > li > ul {
	display: none;
	margin: 0;
	padding: 0;
	position: absolute;
	right: -100%;
	top: 0;
	width: 100%;
}
.e-droppy > ul > li > ul > li:hover > ul { display: block; }
}
