@charset "UTF-8";
/* CSS Document */
.gnavi{
	background: #c5a85f;
}
.dropdwn{
    max-width: 1080px;
    display: flex;
	justify-content: center;
}

ul.dropdwn{
    text-align: center;
    list-style-type: none;
    margin: 0 auto;
    padding: 0;
    color: #fff;
}
ul.dropdwn li{
    /*max-width: calc(1080px/3);*/
    position: relative;
    /*padding: 5px;*/
    display: block;
    cursor: pointer;
	
}

ul.dropdwn>li{
    width: 1080px;
    display: inline;
}
@media screen and (min-width:1000px){
	.cate{
		background: url(../img/gnavi_arrow.png) no-repeat bottom center;
		background-size: 18px auto;
		padding-bottom: 20px;
		margin: 10px 0;
		white-space: nowrap;
	}
}
@media screen and (max-width:999px){
	li.list-cate .cate{
		background: url(../img/pic_cate.png) no-repeat center center;
		background-size:120px auto;
		height: 100px;
		text-indent: -9999px;
	}
	li.list-aboutus .cate{
		background: url(../img/pic_aboutus.png) no-repeat center center;
		background-size:120px auto;
		height: 100px;
		text-indent: -9999px;
	}
	li.list-exp .cate{
		background: url(../img/pic_exp.png) no-repeat center center;
		background-size:120px auto;
		height: 100px;
		text-indent: -9999px;
	}
}
ul.dropdwn li >ul.dropdwn_menu{
    width: 300%;
    display: none;
    position: absolute;
    padding: 0;
    background: rgb(255, 255, 255, 0.9);
	max-height: 400px; /* メニューの最大高さを指定 */
	overflow-y: auto;/* 高さが最大値を超えたらスクロールバーを表示 */
}
ul.dropdwn li.list-aboutus >ul.dropdwn_menu{
	margin-left: -100%;
}
ul.dropdwn li.list-exp >ul.dropdwn_menu{
	margin-left: -200%;
}
ul.dropdwn li >ul.dropdwn_menu li{
    width: 100%;
	padding: 10px;
	text-align: left;
}
ul.dropdwn li >ul.dropdwn_menu li a{
	padding: 10px;
    /*margin: -5px 5px -5px -5px;*/
    display: block;
    color: #000;
}
ul.dropdwn li >ul.dropdwn_menu li a:hover{
    background: #b3d7ff;
    background: rgb(255, 214, 46, 0.5);
} 