/**************************************************
 * VTuberの個人ニュース用 CSS
 **************************************************/


/* ------------------------------
 メタ情報
------------------------------ */

.vtuber-news-meta {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 18px;
}

.vtuber-news-label {
	font-size: 12px;
	font-weight: 600;
	padding: 4px 10px;
	border-radius: 999px;
	background: #f2f4f7;
	color: #555;
	letter-spacing: 0.03em;
}

.vtuber-news-date {
	font-size: 13px;
	color: #999;
	letter-spacing: 0.05em;
}


/* ------------------------------
 タイトル
------------------------------ */

.vtuber-news-title {
	font-size: 30px;
	font-weight: 700;
	line-height: 1.6;
	margin-bottom: 24px;
	color: #111;
	letter-spacing: 0.02em;
}


/* ------------------------------
 サムネイル
------------------------------ */

.vtuber-news-thumbnail {
	margin-top: 10px;
}

.vtuber-news-thumbnail img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	display: block;
}


/* ------------------------------
 投稿者（ここ調整）
------------------------------ */

.vtuber-news-author {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-top: 20px; /* ← サムネとの余白追加 */
	margin-bottom: 36px;
	justify-content: flex-end; /* ← PC右寄せ */
}

.vtuber-news-author-icon img {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	object-fit: cover;
}

.vtuber-news-author-name {
	font-size: 14px;
	font-weight: 600;
	color: #333;
}


/* ------------------------------
 スマホ
------------------------------ */

@media (max-width: 768px) {

	.vtuber-news-header {
		padding: 40px 16px 30px;
	}

	.vtuber-news-title {
		font-size: 22px;
		line-height: 1.5;
	}

	.vtuber-news-author {
		margin-top: 18px;
		margin-bottom: 28px;
		justify-content: center; /* ← 中央寄せ */
	}

	.vtuber-news-author-icon img {
		width: 36px;
		height: 36px;
	}

}


/* =========================
  本文
========================= */

.news-content {
	font-size: 15px;
	line-height: 1.9;
	color: #333;
	letter-spacing: 0.02em;
}

/* 段落 */
.news-content p {
	margin-bottom: 1.6em;
}

/* 見出し */
.news-content h2 {
	font-size: 20px;
	margin-top: 48px;
	margin-bottom: 16px;
}

.news-content h3 {
	font-size: 18px;
	margin-top: 32px;
	margin-bottom: 12px;
}

/* 本文終了ライン（追加） */
.news-content::after {
	content: "";
	display: block;
	margin-top: 40px;
	border-top: 1px solid #eee;
}


/* =========================
  関連ニュース
========================= */

.news-related {
	margin-top: 60px;
}

.news-related h2 {
	font-size: 18px;
	margin-bottom: 16px;
}

/* リスト */
.news-related ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.news-related li {
	border-bottom: 1px solid #eee;
}

/* リンク */
.news-related a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 14px 10px;
	text-decoration: none;
	color: #333;
	border-radius: 6px;
	transition: 0.2s;
}

/* 左側 */
.news-item-text {
	display: flex;
	align-items: center;
	gap: 12px;
	min-width: 0;
}

/* 日付 */
.news-item-text .date {
	font-size: 12px;
	color: #888;
	flex-shrink: 0;
}

/* タイトル */
.news-item-text .title {
	font-size: 14px;
	line-height: 1.6;
	flex: 1;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* 矢印 */
.news-related .arrow {
	font-size: 14px;
	color: #aaa;
	flex-shrink: 0;
	transition: 0.2s;
}

/* ホバー */
.news-related a:hover {
	background: #f9f9f9;
}

.news-related a:hover .arrow {
	transform: translateX(4px);
	color: #333;
}


/* =========================
  CTA
========================= */

.news-cta {
	margin-top: 50px;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.news-cta a {
	padding: 10px 16px;
	font-size: 14px;
	border-radius: 6px;
	text-decoration: none;
	transition: 0.2s;
}

/* ボタン */
.btn-profile {
	background: #111;
	color: #fff;
}

.btn-profile:hover {
	background: #333;
}

.btn-list {
	background: #eee;
	color: #333;
}

.btn-list:hover {
	background: #ddd;
}

.btn-home {
	background: transparent;
	border: 1px solid #ccc;
	color: #666;
}

.btn-home:hover {
	border-color: #999;
	color: #333;
}


/* =========================
  スマホ最適化
========================= */

@media (max-width: 768px) {

	.news-title {
		font-size: 22px;
	}

	.news-content {
		font-size: 14px;
	}

	.news-item-text .title {
		font-size: 13px;
	}

}





/**************************************************
 * VTuberの個人ニュース用 CSS（本文デザイン）
 **************************************************/


/* =========================
  h2（メイン見出し）
========================= */

.heading-02 {
	font-size: 22px;
	font-weight: 700;
	line-height: 1.6;
	margin-top: 56px;
	margin-bottom: 20px;
	padding-bottom: 10px;
	position: relative;
	color: #111;
	letter-spacing: 0.03em;
}

/* 下線（メイン） */
.heading-02::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 40px;
	height: 2px;
	background: #111;
}

/* 薄いベースライン */
.heading-02::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 1px;
	background: #eee;
}


/* =========================
  h3（サブ見出し）
========================= */

.heading-03 {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.6;
	margin-top: 36px;
	margin-bottom: 14px;
	padding-left: 12px;
	position: relative;
	color: #222;
}

/* 左ライン */
.heading-03::before {
	content: "";
	position: absolute;
	left: 0;
	top: 6px;
	width: 3px;
	height: 70%;
	background: #ddd;
	border-radius: 2px;
}


/* =========================
  h4（補助見出し）
========================= */

.heading-04 {
	font-size: 15px;
	font-weight: 600;
	line-height: 1.6;
	margin-top: 24px;
	margin-bottom: 10px;
	color: #333;
	letter-spacing: 0.02em;
}


/* =========================
  スマホ
========================= */

@media (max-width: 768px) {

	.heading-02 {
		font-size: 20px;
		margin-top: 48px;
	}

	.heading-03 {
		font-size: 16px;
	}

	.heading-04 {
		font-size: 14px;
	}

}




