.menu {
	background-color:#f2f2f2;
	padding-top:13px;
	padding-bottom:13px;
	border-bottom:1px solid #ddd;

}
.gnavi__wrap {
    width: 980px;
    margin: 0 auto;
}
.gnavi__lists {
    display: flex;
}
.gnavi__list {
	padding:0 24px;
    height: 40px;
    position: relative;
    transition: all .3s;
}
.gnavi__list:hover {
    background-color: #299f16;
}
.gnavi__list:not(:first-child)::before {
    content: "";
    width: 1px;
    height: 100%;
    background-color: #666666;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .3s;
}
.gnavi__list:hover::before {
    background-color: #299f16;
}
.gnavi__list a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
	text-align:center;
    font-size: 14px;
	line-height:120%;
	font-weight:700;
    letter-spacing: 0.05em;
    font-weight: 700;
    transition: all .3s;
	/*

	color:#333333;
	*/
	color:#168604;
	

}
.gnavi__list:hover a {
    color: #fff;
}


.dropdown__lists {
    transform: scaleY(0);
    transform-origin: center top;
    transition: all .2s;
    width: 100%;
    position: absolute;
    top: 40px;
    left: 0;
}
.gnavi__list:hover .dropdown__lists {
    transform: scaleY(1);
}
.dropdown__list {
    background-color: #299f16;
    height: 40px;
    transition: all .3s;
    position: relative;
}



.dropdown__list::before{
    content: "";
    width: 100%;
    height: 1px;
    background-color: #117501;
    position: absolute;
    top: 0;
    left: 0;
}
.dropdown__list:hover {
    background-color: #1c6400;
}
.dropdown__list a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    position: relative;
}
.dropdown__list a::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: rotate(135deg);
    position: absolute;
    right: 10px;
    top: calc(50% - 5px);
}