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

/*-------------------
市民公開企画
---------------------*/

/*ナビゲーションメニュー*/
.public_event_nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 100px 10px;
}
.public_event_nav ul li {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 377px;
	width: 100%;
	height: 80px;
	top: 0;
	transition: 0.3s;
}

@media (hover: hover){
	.public_event_nav ul li:hover {
		top: 2px;
	}
}
@media (hover: none){
	.public_event_nav ul li:hover {
		top: 2px;
	}
}


.public_event_nav ul li a {
	display: block;
	text-decoration: none;
	width: 100%;
	font-size: 18px;
	font-weight: 500;
	color: white;
	text-align: center;
	z-index: 100;
}
@media screen and (max-width:500px) {
	.public_event_nav ul li a {
		font-size: 14px;
	}
}
.public_event_nav ul li a img {
	width: 100%;
}

/*イメージ画像*/
.image_block {
	margin: 20px 0;
	width: 100%;
}
.image_block img {
	width: 100%;
}