/* ==========================================================
   CMS化にともなう追加スタイル。
   既存の /css/style.css はそのまま流用し、このファイルは
   フッターサイトマップなど新規追加分のみを補完します。
   ========================================================== */

.footer-sitemap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 20px 10px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.footer-sitemap-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 13px;
}
.footer-sitemap-list > li > a {
  font-weight: 700;
  color: inherit;
  text-decoration: none;
}
.footer-sitemap-list ul {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
}
.footer-sitemap-list ul li { margin-bottom: 4px; }
.footer-sitemap-list ul a {
  color: inherit;
  opacity: 0.8;
  text-decoration: none;
  font-weight: 400;
}
.footer-sitemap-list a:hover { text-decoration: underline; }

/* 施工事例(投稿)一覧・詳細用の簡易スタイル(既存 works-card 等が無いページ用) */
.post-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin: 20px 0;
}
.post-card { border: 1px solid #e2e5e3; border-radius: 8px; overflow: hidden; background: #fff; }
.post-card img { width: 100%; height: 160px; object-fit: cover; display: block; }
.post-card .post-card-body { padding: 14px; }
.post-card .post-card-cat { font-size: 11px; color: #B8954A; font-weight: 700; }
.post-card h4 { margin: 6px 0; font-size: 15px; }

/* トップページ「新着施工事例」ブロック */
.latest-posts-block { margin: 30px 0; }
.latest-posts-block h3 { margin-bottom: 14px; }
