@charset "UTF-8";
/* -----------------------------------------------------------------------------
 * コラム・テーマ（タクソノミー）関連の最小スタイル
 * 機能・レイアウトの担保が目的。本格的なデザイン調整は別途（ui-ux-polish）。
 * 既存テーマの .column / .__door 等の文脈に乗る前提で追記分のみ定義。
 * --------------------------------------------------------------------------- */

/* ---- コラム一覧：テーマナビ（Introduction下・縦並び） ---- */
.columnThemeNav {
	margin-top: 6vh;
}
.columnThemeNav__head {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	font-size: 1.3rem;
	margin: 0 0 4px;
	padding-bottom: 12px;
	border-bottom: 2px solid #222;
}
.columnThemeNav .themeGroup {
	padding: 16px 0;
	border-top: 1px solid #e2e2e2;
}
.columnThemeNav .themeGroup:first-of-type {
	border-top: 0;
}
.columnThemeNav .themeArea {
	display: inline-block;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	font-size: 1.4rem;
	line-height: 1.5;
	margin-bottom: 10px;
	color: #1e80a6;
	text-decoration: none;
	transition: opacity .2s;
}
.columnThemeNav .themeArea:hover {
	opacity: .6;
}
.columnThemeNav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.columnThemeNav li {
	margin: 7px 0;
}
.columnThemeNav li a {
	display: inline-block;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.4rem;
	line-height: 1.6;
	color: #555;
	text-decoration: none;
	transition: color .2s;
}
.columnThemeNav li a:hover {
	color: #1e80a6;
}

/* レスポンシブ：1024px以下では Introduction → テーマから探す → 記事一覧 の縦積み。
   テーマから探すは全幅でも1列の縦並びを維持（左カラムの構造をそのまま流用）。 */
@media screen and (max-width: 1024px) {
	.columnThemeNav {
		margin-top: 4vh;
		max-width: 640px;
	}
}

/* ---- タグ別アーカイブLP ---- */
.columnTopic .topicLead {
	max-width: 760px;
	margin: 16px auto 8px;
	font-size: .95rem;
	line-height: 2;
	color: #444;
}
.columnTopic .topicParent {
	margin-top: 5vh;
}
.columnTopic .topicParent a {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 13px 24px;
	border: 1px solid #ccc;
	border-radius: 8px;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	font-size: 1.3rem;
	line-height: 1.4;
	color: #222;
	text-decoration: none;
	background-color: #fff;
	transition: background-color .2s, color .2s, border-color .2s;
}
.columnTopic .topicParent a:hover {
	background: #1e80a6;
	border-color: #1e80a6;
	color: #fff;
}
.columnTopic .topicChildren {
	list-style: none;
	display: flex;
	flex-direction: column;
	gap: 12px;
	margin: 28px 0 0;
	padding: 0;
}
.columnTopic .topicChildren li a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	padding: 15px 20px;
	border: 1px solid #ccc;
	border-radius: 8px;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	font-size: 1.3rem;
	line-height: 1.5;
	color: #222;
	text-decoration: none;
	background-color: #fff;
	transition: background-color .2s, color .2s, border-color .2s;
}
.columnTopic .topicChildren li a:hover {
	background: #1e80a6;
	border-color: #1e80a6;
	color: #fff;
}
.columnTopic .topicChildren .cnt {
	flex-shrink: 0;
	min-width: 1.8em;
	text-align: center;
	font-family: 'Roboto', sans-serif;
	font-size: 1.4rem;
	color: #1e80a6;
}
.columnTopic .topicChildren li a:hover .cnt {
	color: #fff;
}
.columnList .empty {
	list-style: none;
	padding: 40px 0;
	text-align: center;
	color: #888;
}

/* ---- 単記事：関連テーマ＋関連記事 ---- */
.columnTags {
	margin: 5vh auto 0;
	padding-top: 32px;
	border-top: 1px solid #e2e2e2;
}

/* 関連テーマ（チップ） */
.columnTags .label {
	display: block;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.1rem;
	font-weight: 700;
	letter-spacing: .04em;
	color: #222;
	margin-bottom: 16px;
}
.columnTags .tagList {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin: 0 0 5vh;
	padding: 0;
}
.columnTags .tagList li a {
	display: inline-block;
	padding: 10px 20px;
	border: 1px solid #ccc;
	border-radius: 8px;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.15rem;
	color: #222;
	text-decoration: none;
	transition: background-color .2s, color .2s, border-color .2s;
}
.columnTags .tagList li a:hover {
	background: #1e80a6;
	border-color: #1e80a6;
	color: #fff;
}

/* Related（同テーマの関連記事）：全幅グリッドで空白を埋める */
.columnTags .relatedColumns .withMark {
	margin-bottom: 24px;
}
.columnTags .relatedColumns .columnList {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 24px 40px;
}
.columnTags .relatedColumns .columnList li a {
	display: block;
	border-top: 2px solid #222;
	padding-top: 14px;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.2rem;
	color: #000;
	text-decoration: none;
}
.columnTags .relatedColumns .columnList .number {
	display: inline-block;
	background-color: #1e80a6;
	padding: 0.3em 0.7em;
	font-family: 'Roboto', sans-serif;
	font-size: 1rem;
	font-style: italic;
	font-weight: 500;
	line-height: 1;
	color: #fff;
}
.columnTags .relatedColumns .columnList .title {
	font-size: 1.3rem;
	font-weight: 700;
	line-height: 1.6;
	padding: 0.7em 0 0.5em;
	transition: color .2s;
}
.columnTags .relatedColumns .columnList li a:hover .title {
	color: #1e80a6;
}
.columnTags .relatedColumns .columnList .name {
	font-size: 1.05rem;
	font-weight: 500;
	line-height: 1.4;
}
.columnTags .relatedColumns .columnList .date {
	font-family: 'Roboto', sans-serif;
	font-size: 1rem;
	color: #888;
	padding-top: 10px;
}
@media screen and (max-width: 599px) {
	.columnTags .relatedColumns .columnList {
		grid-template-columns: 1fr 1fr;
		gap: 24px;
	}
}


/* ---- ページャー（WP-PageNavi）：Bootstrap風 ---- */
.wp-pagenavi {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin: 7vh 0 2vh;
	font-family: 'Roboto', 'Noto Sans JP', sans-serif;
}
.wp-pagenavi a,
.wp-pagenavi span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 44px;
	height: 44px;
	padding: 0 14px;
	border: 1px solid #dcdfe3;
	border-radius: 8px;
	background: #fff;
	color: #1e80a6;
	font-size: 1.5rem;
	line-height: 1;
	text-decoration: none;
	transition: background-color .15s, color .15s, border-color .15s, box-shadow .15s;
}
.wp-pagenavi a:hover {
	background: #1e80a6;
	border-color: #1e80a6;
	color: #fff;
}
.wp-pagenavi span.current {
	background: #1e80a6;
	border-color: #1e80a6;
	color: #fff;
	font-weight: 700;
	box-shadow: 0 3px 8px rgba(30, 128, 166, 0.3);
}
/* 「1 / 5」などのページ表記、「…」の省略はボタンにしない */
.wp-pagenavi span.pages {
	display: none;
	border: 0;
	background: transparent;
	color: #888;
	font-size: 0.9rem;
	margin-right: 6px;
}
.wp-pagenavi span.extend {
	border: 0;
	background: transparent;
	color: #b5b5b5;
	min-width: auto;
	padding: 0 2px;
}
@media screen and (max-width: 599px) {
	.wp-pagenavi {
		gap: 6px;
	}
	.wp-pagenavi a,
	.wp-pagenavi span {
		min-width: 38px;
		height: 38px;
		padding: 0 10px;
		font-size: 0.9rem;
	}
	.wp-pagenavi span.pages {
		width: 100%;
		justify-content: center;
		margin: 0 0 4px;
	}
}


/* ---- 単記事下部：前/次リンクを Related と同じ全幅に揃え、余白を圧縮 ---- */
.pageLink.column {
	max-width: 1346px;
	width: 96%;
	margin: 4vh auto 8vh;
	padding: 36px 2% 0;
}
@media screen and (max-width: 1024px) {
	.pageLink.column {
		margin: 3vh auto 6vh;
		padding-top: 28px;
	}
}
