/* ===============================
追加CSS　四国で暮らす
※アプデ後にすべて見直すこと（2604）
=============================== */
/* ===============================
画像キャプション
=============================== */
/* 画像説明（キャプション用） */
.img-caption {
	font-size: 16px;
	font-weight: 500;
/* medium相当 */
	color: #333;
	text-align: center;
	line-height: 1.6;
	margin-top: 10px;
}

/* スマホ調整 */
@media screen and (max-width: 630px) {
	.img-caption {
		font-size: 14px;
		margin-top: 8px;
	}
}

/* =========================
画像カード（汎用）
========================= */
.img-card {
	border: 1px solid #ddd;
	border-radius: 10px;
	padding: 16px;
	margin: 24px 0;
	background: #fff;
	text-align: center;
}

/* 画像 */
.img-card img {
	max-width: 100%;
	height: auto;
	display: block;
	margin: 0 auto;
	border-radius: 6px;
}

/* キャプション（説明文） */
.img-card .img-caption {
	font-size: 16px;
	font-weight: 500;
	color: #444;
	line-height: 1.6;
	margin-top: 12px;
}

/* 補助テキスト（任意で小さく） */
.img-card .img-subtext {
	font-size: 13px;
	color: #777;
	margin-top: 6px;
	line-height: 1.5;
}

/* スマホ対応 */
@media screen and (max-width: 630px) {
	.img-card {
		padding: 12px;
		margin: 20px 0;
	}
	
	.img-card .img-caption {
		font-size: 14px;
	}
	
	.img-card .img-subtext {
		font-size: 12px;
	}
}

/* ===============================
基本ボタンスタイル
=============================== */
.btn {
	display: inline-block;
	background-color: #0071bb;
	color: #fff;
	padding: 16px 24px;
	border-radius: 12px;
	text-decoration: none;
	font-size: 18px;
	font-weight: 700;
	margin-top: 8px;
	transition: background-color .3s ease;
}

.btn:hover {
	background-color: #005a90;
}

/* btn-consult クラスだけ色を白に */
a.btn-consult,
a.btn-consult:visited {
	color: #fff !important;
/* 既存の a:visited より優先 */
	background-color: #007acc;
/* 必要なら背景色も */
	border-radius: 12px;
	text-decoration: none;
	display: inline-block;
}

a.btn-consult:hover {
	color: #fff;
/* ホバー時も白 */
	opacity: .8;
/* 任意でホバー効果 */
}

/* スマホ表示用ボタン調整 */
@media screen and (max-width: 630px) {
	.btn {
		display: block;
		width: 100%;
		text-align: center;
		padding: 10px 0;
		font-size: 16px;
		margin-top: 12px;
	}
}

/* ===============================
CTAエリア
=============================== */
/* ---- PC用 ---- */
.cta-box {
	border: 2px solid #0071bb;
/* 枠線 */
	border-radius: 8px;
/* 角丸 */
	padding: 24px;
/* 内側余白 */
	margin: 32px 0;
/* 上下余白 */
	background-color: #f9fcff;
/* 背景色（ほんのり） */
	text-align: center;
}

.cta-title {
	font-size: 20px;
	font-weight: 700;
	color: #0071bb;
	margin-bottom: 12px;
}

/* タイトル下の画像 */
.cta-image {
	display: block;
	margin: 0 auto 16px;
/* 上0 / 左右自動 / 下16px */
	max-width: 80%;
/* 横幅は最大80％ */
	height: auto;
/* 高さは自動 */
}

@media screen and (max-width: 630px) {
	.cta-image {
		max-width: 100%;
	/* スマホでは幅いっぱい */
		margin: 0 auto 12px;
	/* 上0 / 左右自動 / 下12px */
	}
}

/* リスト全体 */
.cta-points {
	list-style: none !important;
/* 強制リセット */
	padding: 0;
	margin: 0 0 20px;
	text-align: left;
	display: inline-block;
/* 中央ブロックの中で左揃えにする */
}

/* 各項目 */
.cta-points li {
	margin-bottom: 8px;
	position: relative;
	padding-left: 1.5em;
/* マーク分余白 */
}

/* ★ここが重要：■を強制表示 */
.cta-points li::before {
	content: "■";
/* ←これなら確実に出る */
	position: absolute;
	left: 0;
	color: #0071bb;
	font-weight: bold;
}

/* キャッチ */
.cta-catch {
	font-size: 14px;
	margin-bottom: 10px;
	color: #666;
	margin-bottom: 4px;
/* 間隔を狭く調整 */
}

/* ボタン */
.cta-button {
/* margin-top: 0; 元の余白を消す */
	display: inline-block;
	background-color: #0071bb;
	color: #fff !important;
	padding: 14px 24px;
	border-radius: 999px;
	text-decoration: none;
	font-size: 18px;
	font-weight: bold;
	transition: .3s;
	margin-bottom: 16px;
}

.cta-button:hover {
	background-color: #005a90;
}

/* ---- スマホ用 ---- */
@media screen and (max-width: 630px) {
	.cta-box {
		padding: 16px;
		margin: 24px 0;
	}
	
	.cta-title {
		font-size: 18px;
	}
	
	.cta-points li {
		font-size: 14px;
	}
	
	.cta-button {
		display: block;
		width: 100%;
		padding: 12px 0;
		font-size: 16px;
	}
}

/* ===============================
目次スタイル（Table of Contents, TOC）
PC &amp; スマホ対応・階層マーク付き
※テーマが古いため階層マークは表示されない
　テキストでマークを入れる（アプデ後に再検討）
=============================== */
/* ---- PC用 ---- */
.toc {
	border: 2px solid #0071bb;
/* 外枠線 */
	border-radius: 6px;
/* 角丸 */
	padding: 16px;
/* 内側余白 */
	margin-bottom: 32px;
/* 下余白 */
	background-color: #fff;
/* 背景色 */
}

.toc strong {
	display: block;
/* ブロック表示で改行 */
	font-size: 18px;
/* タイトル文字サイズ */
	margin-bottom: 12px;
/* タイトル下の余白 */
	color: #0071bb;
/* タイトル色 */
}

/* 親リスト全体の設定 */
.toc ul {
	padding-left: 20px;
/* リスト全体のインデント */
	margin: 0;
/* デフォルト余白リセット */
}

/* 親リスト項目 */
.toc &gt; ul &gt; li {
	margin-bottom: 8px;
/* 各項目下の余白 */
	position: relative;
/* マーク表示用の基準位置 */
	padding-left: 1.5em;
/* ■マーク分の余白 */
	list-style: none;
/* リセットCSSで消されるので明示 */
}

/* 親リストマーク「■」 */
.toc &gt; ul &gt; li::before {
	content: "■" !important;
/* 表示文字 */
	position: absolute !important;
/* 絶対位置で左に固定 */
	left: 0 !important;
	top: 0;
/* 縦位置調整（必要なら微調整可能） */
	color: #0071bb !important;
/* マーク色 */
	font-weight: bold;
/* 太字 */
}

/* 子リスト */
.toc ul li ul li {
	margin-bottom: 4px;
/* 子リスト項目下の余白 */
	padding-left: 1.2em;
/* ・マーク分の余白 */
	position: relative;
/* ・マーク表示用基準 */
	list-style: none;
/* リセットCSSで消されるため明示 */
}

/* 子リストマーク「・」 */
.toc ul li ul li::before {
	content: "・" !important;
/* 表示文字 */
	position: absolute !important;
/* 左に固定 */
	left: 0 !important;
	top: 0;
	color: #0071bb !important;
/* マーク色 */
	font-weight: bold;
/* 太字 */
}

/* リンク装飾 */
.toc a {
	color: #0071bb;
/* リンク色 */
	text-decoration: none;
/* 下線なし */
}

.toc a:hover {
	text-decoration: underline;
/* ホバーで下線 */
}

/* ---- スマホ用 ---- */
@media screen and (max-width: 630px) {
	/* TOCボックス調整 */
	.toc {
		padding: 12px;
	/* 内側余白を少し小さく */
		margin-bottom: 24px;
	/* 下余白も少し減らす */
	}
	
	/* タイトル文字サイズ調整 */
	.toc strong {
		font-size: 16px;
	/* タイトルを少し小さく */
		margin-bottom: 8px;
	/* 下余白も小さく */
	}
	
	/* リスト全体のインデント調整 */
	.toc ul {
		padding-left: 16px;
	}
	
	/* 親リスト */
	.toc &gt; ul &gt; li {
		margin-bottom: 6px;
		padding-left: 1.2em;
	/* ■マーク分の余白 */
	}
	
	.toc &gt; ul &gt; li::before {
		left: 0;
		top: 0;
	/* 縦位置調整 */
	}
	
	/* 子リスト */
	.toc ul li ul li {
		margin-bottom: 3px;
		padding-left: 1em;
	/* ・マーク分の余白 */
	}
	
	.toc ul li ul li::before {
		left: 0;
		top: 0;
	/* 縦位置調整 */
	}
}

/* ===============================
【暫定】余白ユーティリティ（2026/04）
クラシックエディタ対応のため追加
※アプデ後に全体の余白設計を見直すこと
=============================== */
.mb-16 {
	margin-bottom: 16px;
}

.mb-24 {
	margin-bottom: 24px;
}

.mb-32 {
	margin-bottom: 32px;
}

/* ===============================
強調（テキスト/サイズ大）
=============================== */
.emphasis-text {
	font-size: 20px;
/* PC表示用 */
	font-weight: bold;
/* 太字 */
	color: #000000;
	margin: 1em 0;
/* 上下に余白 */
}

/* スマホなど小さい画面用 */
@media screen and (max-width: 630px) {
	.emphasis-text {
		font-size: 18px;
	/* フォントを少し小さく調整 */
	}
}

/* ==============================
強調（テキスト/標準サイズ）
============================== */
.sk-em {
	font-weight: bold;
}

.sk-em-red {
	color: #e53935;
}

.sk-em-blue {
	color: #1e88e5;
}

/* ==============================
マーカー
============================== */
.sk-marker {
	font-weight: bold;
	padding: 0 2px;
}

.sk-marker-yellow {
	background: linear-gradient(transparent 60%,#fff59d 60%);
}

.sk-marker-green {
	background: linear-gradient(transparent 60%,#a5d6a7 60%);
}

/* =============================
応用（少しリッチな強調）
============================ */
/* 重要ポイント（赤＋少し強め） */
.sk-important {
	color: #e53935;
	font-weight: bold;
}

/* 補足・安心感（青） */
.sk-note {
	color: #1e88e5;
}

/* 注意書き（やや控えめ赤） */
.sk-caution {
	color: #d32f2f;
	font-weight: bold;
}

/* ==============================
番号付きリスト（ol）のスタイル復活
----------------------------
リセットCSSで list-style: none; が指定されているため、
このクラスを付けたリストのみ番号を表示させる
============================== */
.number-list {
	list-style-type: decimal;
/* 番号（1,2,3…）を表示 */
	padding-left: 1.5em;
/* 番号の表示スペースを確保 */
	margin-bottom: 1.5em;
/* リスト全体の下余白 */
}

/* 各リスト項目の調整 */
.number-list li {
	margin-bottom: .5em;
/* 項目ごとの余白 */
	line-height: 1.6;
/* 読みやすさ向上 */
}

/* 最後の項目だけ余白を消す（見た目調整） */
.number-list li:last-child {
	margin-bottom: 0;
}

/* ==============================
汎用：強調ボックス（ハイライト）
------------------------------
リスト・文章どちらにも使える
記事内で重要な部分を目立たせる
============================== */
.box-highlight {
	padding: 1.5em;
/* 内側余白 */
	margin: 1.5em 0;
/* 上下余白 */
	background-color: #f9f9f9;
/* 背景（薄グレー） */
	border: 1px solid #ddd;
/* 枠線 */
	border-radius: 8px;
/* 角丸 */
}

/* ボックス内のリスト調整（リセット対策も兼ねる） */
.box-highlight ol {
	list-style-type: decimal;
/* 番号復活 */
	padding-left: 1.5em;
}

.box-highlight ul {
	list-style-type: disc;
/* ・復活 */
	padding-left: 1.5em;
}

/* リストの余白調整 */
.box-highlight li {
	margin-bottom: .5em;
}

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