@charset "utf-8";
/* CSS Document */
.gmenu{
	width:800px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap:15px;
	cursor: pointer;
}
.gmenu a{
	text-decoration: none;
}
.gmenu a:hover{
	color:#7a894c;
}

.gmenu dl{
	text-align: center;
	color:#48663f;
	position: relative;
	padding:15px 0;
}
.gmenu dl a dt{
	color:#48663f;
}
.gmenu dt{
	font-size:14px;
	line-height: 1.7em;
	font-weight:600;
}
.gmenu dd{
	font-size:10px;
	line-height: 1.7em;
}

.gmenu dl dl dt{
	background: url("../images/ico_ls.png");
	background-repeat: no-repeat; 
	background-position: 0px 7px;
	list-style-type: none;
	height:auto;
	padding:0 0 0 14px;
	color:#ffffff;
}

.gmenu dl dl dd{
	padding:0 0 0 14px;
	margin-bottom: 1em;
	color:#ffffff;
}
/*　サブメニュー　*/
.gmenu dl dl{
	display:none;
	background: #7a894c;
	position:fixed;
	width:200px;
	height:auto;
	z-index: 20;
	line-height: 35px;
	font-size:15px;
	top:100px;
	border: 2px solid #fff;
	text-align: left;
    padding:10px;
	visibility: hidden;
	opacity: 0;
	transition: all 0.5s;
	color:#ffffff;
}
.gmenu dl:hover dl{
	display: block;
	opacity: 1;
	visibility: visible;
	animation-name: ddown;
	animation-duration:0.5s;
	
}
@keyframes ddown{
    0%{
		opacity: 0;
    }
    100%{
		opacity: 1;
    }
}

.gmenu dl dl {
/*	background:url(../images/ls_gm.png);
	background-repeat: no-repeat;
	background-position: 0 12px;*/
	margin-right: 1em;
}
.fl{
	float:left!important;
	width:240px;
	height:auto;
	overflow: hidden;
}
.mt{
	color:#07579f;
	font-size:15px;
}
.mt a{
	color:#07579f;
}
.btnsub{
	position: absolute;
	top:8px;
	right:10px;
}
.hover-text {
  text-decoration: none;
  transition: text-decoration 0.3s ease;
}

.hover-text:hover {
  	text-decoration-line: underline;
	text-decoration-thickness:2px;
	text-underline-offset:5px;
}
@media screen and (max-width: 1080px) {
	.gmenu{
		display: none;
	}
}
