@charset "UTF-8";

/* ==============================================================
   導入事例 記事本文装飾用CSS（WordPressエディタ出力タグ用）
============================================================== */

/* 記事本文のスタイル設定 */
.wpContent {
	margin-top: 40px;
	color: #222;
}

/* 結論ファースト用ボックス */
.wpContent .conclusion-box {
	background: #fdfaf0;
	border: 2px solid var(--c-accent);
	padding: 24px;
	border-radius: 8px;
	margin-bottom: 40px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.wpContent .conclusion-box h2 {
	background: none;
	border: none;
	padding: 0;
	margin: 0 0 12px 0;
	font-size: var(--fs-20);
	color: var(--c-accent);
	display: flex;
	align-items: center;
	gap: 8px;
}

.wpContent .conclusion-box h2::before {
	content: "💡";
}

.wpContent .conclusion-box p {
	margin: 0;
	font-weight: bold;
	font-size: var(--fs-16);
}

/* 見出し（H2, H3, H4） */
.wpContent h2 {
	font-size: var(--fs-22);
	color: var(--c-primary);
	background: #f0f4f8;
	padding: 12px 16px;
	border-left: 6px solid var(--c-primary);
	margin: 60px 0 24px;
	font-weight: bold;
	border-radius: 0 4px 4px 0;
	clear: both;
}

.wpContent h3 {
	font-size: var(--fs-20);
	color: #333;
	border-bottom: 2px solid var(--c-border);
	padding-bottom: 10px;
	margin: 40px 0 20px;
	position: relative;
	clear: both;
}

.wpContent h3::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 60px;
	height: 2px;
	background: var(--c-accent);
}

.wpContent h4 {
	font-size: var(--fs-18);
	color: #333;
	margin: 30px 0 16px;
	font-weight: bold;
}

.wpContent h4::before {
	content: "■";
	color: var(--c-primary);
	margin-right: 8px;
}

/* テキストとリスト */
.wpContent p {
	font-size: var(--fs-16);
	line-height: 1.8;
	margin-bottom: 24px;
	letter-spacing: 0.05em;
}

.wpContent ul,
.wpContent ol {
	margin-bottom: 32px;
	padding-left: 28px;
	background: #fafafa;
	border: 1px solid var(--c-border);
	padding: 24px 24px 24px 48px;
	border-radius: 8px;
}

.wpContent li {
	margin-bottom: 12px;
	line-height: 1.6;
	font-size: var(--fs-16);
}

.wpContent li:last-child {
	margin-bottom: 0;
}

/* 強調表示 */
.wpContent strong {
	color: #d93025;
	font-weight: bold;
	background: linear-gradient(transparent 70%, #ffcaca 70%);
}

@media (min-width: 768px) {
	.wpContent h2 {
		font-size: var(--fs-26);
		padding: 16px 20px;
	}

	.wpContent h3 {
		font-size: var(--fs-22);
	}
}
