/*－－－－－－－－－　上部メニュー　－－－－－－－－－*/

#info_menu {
	width: 520px;
	height: 200px;
	margin: 0px 5px 5px 0px;
}
#info_menu ul{
	list-style: none;
}
.grid-list {
	display: grid;
	grid-template-columns: repeat(3, 125px); /* 3列 */
	gap: 10px; /* 隙間 */
	list-style: none;
	padding: 0;
	width: fit-content; /* ←ポイント！ */
	margin: 0 auto;     /* 念のため中央揃え */
	justify-content: center;
}

#info_menu li{
	width: 125px;
	height: 41px;
	background-color: #e6f3ff;
}
	/*　選択したメニューの色　*/
#info_menu li#choice{
	padding: 11px 0 11px 0;
	font-weight: 550;
	color: #604730;
	background-color: #87e7fa;
	line-height: 1;
	height: 19px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
}

#info_menu li a{
	margin: 0;
	padding: 11px 0 11px 0;
	/*　メニューのフォントの色　*/
	font-weight: 550;
	color: #604730;
	line-height: 1;
	height: 19px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-decoration: none;
}
#info_menu li:hover > a{
	height:19px;
	background: #f7fc7c;
/*	マウスを合わせた時の色　ex.fc8475*/
	color: #aaa;
}
