@charset "utf-8";
/* CSS Document */
ul.menu {
	padding: 0;
	list-style: none;
	width: 100%;
	margin: 20px auto;
	clear: both;
	display: table;
	margin-bottom:20px;
	max-width:300px;
}
/*第一層*/
ul.menu .list {
	font-size: 16px;
	position: relative;
	width: 100%;
	box-sizing: border-box;
	height: 50px;
	vertical-align: sub;
	background: #fff;
	clear: both;
	text-align:center;
}
ul.menu .list:after {
	font-family: "Font Awesome 5 Free";
	content: "\f0fe";
	position: absolute;
	right: 15px;
	top: 15px;
	padding: 0px 5px;
	color: #333;
}
ul.menu .list a {
	text-decoration: none;
	color: #333;
	padding: 12px 0px;
	display: block;
	height: 100%;
	box-sizing: border-box;
	border: 1px solid #333;
}
ul.menu .list a:hover {
	background-color: #fff;
	transition: 300ms all;
	color: #333;
}
/*第2層*/
ul.menu .list .items {
	height: 0px;
	overflow: hidden;
}
ul.menu .list .items a {
	padding: 12px;
	text-align:left;
	
}
ul.menu .list .items a:hover {
	background-color:#724223;
	color: #fff;
	transition: 300ms all;
}
ul.menu .list .items a:before {
	font-family: "Font Awesome 5 Free";
	content: '\f138';
	font-weight: 700;
	font-size: 18px;
	margin-left: 5px;
	padding-left: 0px;
	margin-right: 5px;
}
ul.menu .list:last-child {
	border-bottom: none;
}
ul.menu .active:after {
	font-family: "Font Awesome 5 Free";
	content: "\f146";
	position: absolute;
	right: 15px;
	top: 15px;
	padding: 0px 5px;
	color: #333;
}
ul.menu .active > .items {
	display: block;
	background: #fff;
	padding: 0px;
	height: auto;
	color: #333;
	transition-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
	transition: all 200ms;
	clear: both;
	float: left;
	width: 100%;
}
ul.menu .active > .items li {
	padding: 0px;
	border-bottom: 1px solid #fff;
	list-style: none;
}
ul.menu .active > .items li:last-child {
	border-color: transparent;
	padding-bottom: 0px;
}
ul.menu .active .list {
	background: #000;
}
ul.menu .active .list a {
	padding: 17px 0px 17px 15px;
}
@media only screen and (min-width: 992px) {
 ul.menu {
 display: none;
}
}
