@charset "utf-8";
/* CSS Document */

/*ここからサンプル画像用CSS*/
.imagesample{
	width: 700px;
	height: 150px;
	object-fit: cover;
}
/*ここまでサンプル画像用CSS*/
*{
	list-style: none;
	margin: 0;
	padding: 0;
}

nav{
	width: 700px;
}
.gnav{
	margin: 0 20px;
	padding: 20px 0;
	display: flex;
	background-color: #A7A7A7;
	justify-content: center;
	align-items: center;

}
.gnav li{
	width: 110px;
	height: 2rem;
	background-color: #0D4092;
	position: relative;
	transition: all 0.5s;
}

.gnav li a{
	font-size: 15px;
	text-decoration: none;
	color: #fff;
	display: block;
	text-align: center;
	line-height: 2rem;
	opacity: 1;
}
.gnav li a:hover{
	color: #0D4092;
	background-color: #5E90E2;
}
.d_nav{
	width: 100%;
	display: none;
	position: absolute;
	background-color: #2662C4;
	flex-direction: column;
	top: 2rem;
	left: 0;
	
}
.gnav li:hover .d_nav{
	display: block;
}

.d_nav li a:hover{
	background-color: #A8F4C8;
}

	
