/* ============================================================
   erase_list_card.css — erase_list.php(抹消リスト)専用CSS
   erase_list.php のみで読み込む。style.css には影響しない。

   方針(category_card.css / various_list_card.css と同じ作法):
   - style.css は一切編集しない。このファイルはこのページ専用に追加で読み込む。
   - 全セレクタに .elist- プレフィックスを付与する。
   - 画像データが無いため(mst_heritage登録抹消済のためimg資産なし)、
     category_card.css同様、名前+情報のカード/チップ型グリッドとする。
   - リンク無し(過去に個別ページへのリンクがあったが表示統一のため撤去済み。
     カードもクリック不可の情報表示のみとする)。
   ============================================================ */

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

.elist-card {
	display: flex;
	flex-direction: column;
	gap: 6px;
	background: #fff;
	border: 1px solid #e2e2e2;
	border-left: 4px solid #c0392b;
	border-radius: 8px;
	box-shadow: 0 1px 3px rgba(0,0,0,0.08);
	padding: 16px 18px;
}

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

.elist-card__meta {
	font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ ゴシック", "MS Gothic", sans-serif;
	font-size: 13px;
	color: #666;
	display: flex;
	flex-wrap: wrap;
	gap: 4px 10px;
}

.elist-card__years {
	font-size: 13px;
	color: #c0392b;
	font-weight: bold;
}

.elist-card__reason {
	font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka, "ＭＳ ゴシック", "MS Gothic", sans-serif;
	font-size: 13px;
	line-height: 1.6;
	color: #444;
	margin-top: 4px;
	padding-top: 8px;
	border-top: 1px dotted #ddd;
}
.elist-card__reason-label {
	color: #999;
	font-size: 11px;
	margin-right: 4px;
}

/* ---- レスポンシブ ---- */
@media (max-width: 767px) {
	.elist-grid {
		grid-template-columns: 1fr;
		gap: 10px;
	}
	.elist-card {
		padding: 12px 14px;
	}
}
