/* ============================================================
   category_card.css — cross_category_list.php(建築様式一覧/王国・王朝一覧)専用CSS
   cross_category_list.php のみで読み込む。style.css には影響しない。

   方針(list_card.css / journey.css と同じ作法):
   - style.css は一切編集しない。このファイルはこのページ専用に追加で読み込む。
   - 全セレクタに .ccat- プレフィックスを付与し、style.css の既存クラスと
     衝突しないようにする。

   背景:
   - この一覧には個別の画像データが無い(mst_cross_categoryに画像カラムなし)ため、
     heritage_list.phpのような写真カードは作れない。
   - 代わりに、名前+時代範囲のみのシンプルなカード/チップ型グリッドとし、
     K-C(list_card.css)で確立した角丸・影・紺×明朝の見出しトーンを踏襲する。
   ============================================================ */

.ccat-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 14px;
	margin-bottom: 8px;
}

.ccat-card {
	display: flex;
	flex-direction: column;
	gap: 6px;
	background: #fff;
	border: 1px solid #e2e2e2;
	border-radius: 8px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.08);
	padding: 14px 16px;
	text-decoration: none;
	color: inherit;
	transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.ccat-card:hover {
	box-shadow: 0 4px 10px rgba(0,0,0,0.14);
	transform: translateY(-2px);
	text-decoration: none;
	color: inherit;
}

/* 左に紺のアクセントバーを添え、hlist-area__header等と同じ「紺×明朝」トーンを再現 */
.ccat-card {
	border-left: 4px solid #0085B2;
}

.ccat-card__name {
	font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "Sawarabi Mincho", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	font-size: 1rem;
	line-height: 1.5;
	color: #036;
	font-weight: bold;
}

.ccat-card__era {
	font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ ゴシック", "MS Gothic", sans-serif;
	font-size: 12px;
	color: #888;
}

/* ---- レスポンシブ ---- */
@media (max-width: 767px) {
	.ccat-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
	.ccat-card {
		padding: 10px 12px;
	}
	.ccat-card__name {
		font-size: 0.92rem;
	}
}
