#news {
	max-width: 960px;
	margin: auto;
	padding: 2em 1em;
	font-family: "Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
	margin: 0;
	background: #fff;
	color: #222;
	line-height: 1.8;
	margin: auto;
}

.news-item,
.news-image-link,
.news-image,
.news-text {
	position: static !important;
	padding: 0;
}

.news-list {
	list-style: none;
}

.news-item {
	display: flex;
	flex-direction: column;
	/* ← これが最重要 */
	gap: 10px;
	border-bottom: 1px solid #ddd;
	padding: 15px 0;
}

.news-item:not(.has-image) {
	flex-direction: column;
}

.news-image-link {
	float: none;
	display: block;
	width: 100%;
}

.news-image {
	float: none;
	width: 100%;
	height: auto;
	border-radius: 8px;
	object-fit: cover;
	display: block;
}

.news-image-link:hover .news-image {
	opacity: 0.85;
}

.news-text time {
	font-size: 0.9rem;
	color: #666;
	margin-right: 10px;
}


.category {
	font-size: 0.8rem;
	padding: 2px 8px;
	border-radius: 4px;
}


.category.info {
	background: #e3f2fd;
	color: #1565c0;
}

.category.update {
	background: #e8f5e9;
	color: #2e7d32;
}

.category.plan {
	background: #ffb5b5;
	color: #b70000;
}

.category.event {
	background: #ffff88;
	color: #a4a400;
}

.title {
	margin: 6px 0;
	font-weight: bold;
}


.body {
	font-size: 0.9rem;
	color: #555;
}


@media (max-width: 600px) {
	.news-item {
		flex-direction: column;
	}


	.news-image {
		width: 100%;
	}
}