/* =========================================================
   施工事例一覧ページ固有
========================================================= */

/* 一覧ページ */
.case-page {
  width: 100%;
}

.case-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 0 32px;
}

/* 事例一覧 */
.case__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.case__item {
  display: flex;
  flex-direction: column;
}

.case__img {
  display: block;
  width: 100%;
  height: auto;
}

.case__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 14px;
}

.case__category,
.case__heading,
.case__title,
.case__text {
  margin: 0;
}

.case__heading,
.case__title {
  text-align: left;
}

/* =========================================================
   スマホ調整
========================================================= */
@media (max-width: 768px) {
  /* 一覧ページ */
  .case-filter {
    gap: 10px;
    margin-bottom: 24px;
  }

  /* 事例一覧 */
  .case__list {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .case__body {
    gap: 8px;
    padding-top: 12px;
  }
}
