/* ===============================
NEWS 全体
=============================== */
.vnews {
	padding: 80px 20px;
	width: min(1180px, calc(100% - 40px));
	margin: 0 auto;
}

.vnews-title {
	text-align: center;
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 40px;
}


/* ===============================
メインカード
=============================== */
.vnews-card {
	display: flex;
	gap: 20px;
	padding: 24px;
	border-radius: 16px;
	background: #fff;
	box-shadow: 0 10px 30px rgba(0,0,0,0.06);
	text-decoration: none;
	color: inherit;
	position: relative;
	transition: 0.3s;
	margin-bottom: 30px;
}

.vnews-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.vnews-thumb img {
	width: 160px;
	height: 100px;
	object-fit: cover;
	border-radius: 10px;
}

.vnews-content {
	flex: 1;
}

/* NEW */
.vnews-badge {
	position: absolute;
	top: 10px;
	left: -6px;
	background: #ff4d4f;
	color: #fff;
	padding: 6px 12px;
	font-size: 11px;
	font-weight: bold;
	border-radius: 4px;
}

/* カテゴリ */
.vnews-category {
	display: inline-block;
	font-size: 11px;
	padding: 3px 8px;
	border-radius: 20px;
	color: #fff;
	margin-right: 6px;
}

/* カラー */
.vnews-category[data-slug="announcement"] { background:#e53935; }
.vnews-category[data-slug="event"] { background:#8e24aa; }
.vnews-category[data-slug="goods"] { background:#fb8c00; }
.vnews-category[data-slug="media"] { background:#3949ab; }
.vnews-category[data-slug="music"] { background:#039be5; }
.vnews-category[data-slug="costume"] { background:#d81b60; }
.vnews-category[data-slug="stream"] { background:#43a047; }
.vnews-category[data-slug="other"] { background:#757575; }

.vnews-date {
	font-size: 12px;
	color: #888;
}

.vnews-heading {
	font-size: 18px;
	font-weight: 600;
	margin-top: 8px;
}


/* ===============================
サブ（改善済み）
=============================== */
.vnews-list {
	list-style: none;
	padding: 20px;
	margin: 0;
	background: #fafafa;
	border-radius: 12px;
}
.vnews-list li:last-child .vnews-item {
	border-bottom: none;
}

.vnews-item {
	display: block;
	padding: 16px 0;
	border-bottom: 1px solid #eee;
	text-decoration: none;
	color: #333;
}

.vnews-item:hover {
	opacity: 0.7;
}

/* 上段レイアウトを分離 */
.vnews-meta {
	display: grid;
	grid-template-columns: 110px 1fr;
	align-items: center;
	gap: 10px;
	margin-bottom: 6px;
}

/* カテゴリ固定幅 */
.vnews-meta .vnews-category {
	width: 100px;
	text-align: center;

	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* タイトル強化 */
.vnews-title-text {
	font-size: 15px;
	font-weight: 500;
	line-height: 1.6;
}


/* ===============================
もっと見る（ボタン化）
=============================== */
.vnews-more {
	display: block;
	margin: 30px auto 0;
	padding: 12px 24px;
	text-align: center;
	background: #111;
	color: #fff;
	border-radius: 999px;
	text-decoration: none;
	width: fit-content;
	transition: 0.3s;
}

.vnews-more:hover {
	background: #333;
	transform: translateY(-2px);
}


/* ===============================
空状態
=============================== */
.vnews-empty {
	text-align: center;
	color: #999;
}


/* ===============================
スマホ
=============================== */
@media (max-width: 768px) {

	.vnews-card {
		flex-direction: column;
	}

	.vnews-thumb img {
		width: 100%;
		height: auto;
	}

}
