@charset "utf-8";
/* CSS Document */
:root{
	--color1:#0a6e96;
	--color2:#dc5523;
	--color3:#aa3246;
	--color4:#782d96;
	--color5:#bfa451;
	--color6:#006c46;
	--color7:#a9592c;
}
.gmenu{
	position: absolute;
	top:35px;
	right: 20px;
	width:840px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	height:auto;
	font-size:12px;
	font-weight: 500;
	margin:0;
	z-index: 10000;
}
.gmenu li{
	list-style-type: none;
	width:140px;
	height: 35px;
	display: flex;
	position: relative;
	justify-content: center;
	align-items: center;
	margin: 0;
	background: #ffffff00;
	cursor: pointer;
}
.gmenu li:hover{
    background: #ffffff77;
}
.gmenu li li{
	list-style-type: none;
	width:140px;
	height: 35px;
	display: flex;
	position: relative;
	justify-content: center;
	align-items: center;
	margin: 0;
	background: #ffffff77;
	cursor: pointer;
}
.gmenu li li:hover{
    background: #ffffffdd;
}
.gmenu li.m1:before{
	content: '';
	position: absolute;
	left:50%;
	bottom: 2px;
	display: inline-block;
	width:50px;
	height: 2px;
  	-webkit-transform: translateX(-50%);
  	transform: translateX(-50%);/*位置調整*/
   	background: var(--color1);
}
.gmenu li.m2:before{
	content: '';
	position: absolute;
	left:50%;
	bottom: 2px;
	display: inline-block;
	width:50px;
	height: 2px;
  	-webkit-transform: translateX(-50%);
  	transform: translateX(-50%);/*位置調整*/
   	background: var(--color2);
}
.gmenu li.m3:before{
	content: '';
	position: absolute;
	left:50%;
	bottom: 2px;
	display: inline-block;
	width:50px;
	height: 2px;
  	-webkit-transform: translateX(-50%);
  	transform: translateX(-50%);/*位置調整*/
   	background: var(--color3);
}
.gmenu li.m4:before{
	content: '';
	position: absolute;
	left:50%;
	bottom: 2px;
	display: inline-block;
	width:50px;
	height: 2px;
  	-webkit-transform: translateX(-50%);
  	transform: translateX(-50%);/*位置調整*/
   	background: var(--color4);
}
.gmenu li.m5:before{
	content: '';
	position: absolute;
	left:50%;
	bottom: 2px;
	display: inline-block;
	width:50px;
	height: 2px;
  	-webkit-transform: translateX(-50%);
  	transform: translateX(-50%);/*位置調整*/
   	background: var(--color5);
}
.gmenu li.m6:before{
	content: '';
	position: absolute;
	left:50%;
	bottom: 2px;
	display: inline-block;
	width:50px;
	height: 2px;
  	-webkit-transform: translateX(-50%);
  	transform: translateX(-50%);/*位置調整*/
   	background: var(--color6);
}
.gmenu li.m7:before{
	content: '';
	position: absolute;
	left:50%;
	bottom: 2px;
	display: inline-block;
	width:50px;
	height: 2px;
  	-webkit-transform: translateX(-50%);
  	transform: translateX(-50%);/*位置調整*/
   	background: var(--color7);
}
.gmenu a{
	text-decoration: none;
	color:#3E3A39;
}
.gmenu a:hover{
	opacity: 0.7;
	text-decoration: none!important;
}


/*　サブメニュー　*/
.gmenu li.hover-text{
	position: relative;
}
/* 擬似要素でホバー範囲を拡張（透明） */
.gmenu li.hover-text::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 160px; /* サブメニューの高さと合わせる */
  pointer-events: none; /* マウスイベントを受ける */
  /* background: rgba(255,0,0,0.1);  開発時に見えるように一時的に設定可能 */
  z-index: -1;
}
.gmenu .hover-text ul{
	opacity: 0;
	visibility: hidden;
/*	background: rgba(255,255,255,0.7);*/
	position:absolute;
	width:140px!important;
	line-height: 35px;
	height:auto;
	overflow: hidden;
	font-size:12px;
	top:100%; /*78px;*/
	text-align: center;
    padding:0;
	transition: all 0.5s;
	color:#ffffff;
	z-index: 9999;
	left: 0;
}
.gmenu .hover-text ul li{
	margin:0;
}
.gmenu .hover-text:hover ul,
.gmenu .hover-text ul:hover {
	opacity: 1;
	visibility: visible;
	animation-name: ddown;
	animation-duration:0.5s;
	position: absolute;
}
@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: none;
	text-decoration-thickness:2px;
	text-underline-offset:5px;
}
@media screen and (max-width: 1100px) {
	.gmenu{
		display: none;
	}
}
