.custom-home-works-list {
  width: 100%;
  padding: 30px 18px 50px;
  box-sizing: border-box;
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Hiragino Sans", serif;
  color: #333;
}
.custom-home-works-list__wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px 36px;
  box-sizing: border-box;
  background: linear-gradient(180deg, #ffffff 0 45%, #f1f1f1 45% 100%);
}
.custom-home-works-list__items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px 24px;
  align-items: start;
}
.custom-home-works-list__card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.custom-home-works-list__card--hidden {
  display: none;
}
.custom-home-works-list__image {
  display: block;
  background: #fff;
  border: 1px solid #bdbdbd;
  height: 190px;
  overflow: hidden;
  text-align: center;
}
.custom-home-works-list__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.custom-home-works-list__image-placeholder {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  font-size: 18px;
  color: #bfbfbf;
}
.custom-home-works-list__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.custom-home-works-list__title {
  font-size: 24px;
  color: #3c3c3c;
  line-height: 1.3;
  padding-bottom: 6px;
  border-bottom: 1px solid #bfbfbf;
}
.custom-home-works-list__title a {
  color: inherit;
  text-decoration: none;
}
.custom-home-works-list__more {
  text-align: right;
  font-size: 12px;
  letter-spacing: 0.08em;
}
.custom-home-works-list__more a {
  color: #6f6f6f;
  text-decoration: none;
}
.custom-home-works-list__empty {
  grid-column: 1 / -1;
  text-align: center;
  color: #666;
}
.custom-home-works-list__more-wrap {
  text-align: center;
  margin-top: 22px;
}
.custom-home-works-list__more-btn {
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  border: 1px solid #b68d6f;
  background: #b68d6f;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.08em;
  cursor: pointer;
}
@media (max-width: 980px) {
  .custom-home-works-list__items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px) {
  .custom-home-works-list {
    padding: 22px 14px 40px;
  }
  .custom-home-works-list__wrap {
    padding: 18px 16px 28px;
    background: #f1f1f1;
  }
  .custom-home-works-list__items {
    grid-template-columns: 1fr;
  }
  .custom-home-works-list__image {
    height: 170px;
  }
}
