@charset "UTF-8";

/* -------------------------------------
宅地情報のスタイルを横四つのスタイルに変更　2026.04.03
分譲住宅もestate.cssを読み込んでいるため、上書きして変更しています。
------------------------------------- */

/* アーカイブ↓ */
.postlist {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.postlist__item {
  height: 100%;
  border-right: 1px solid #ccc;
}
.post__table {
  display: block;
  border: none;
}
.post__table-contents {
  border-right: none;
}
.post__list-member-inner {
  display: block;
}
.post__list-member-link {
  width: 100%;
  max-width: 240px;
  margin: 0 auto;
}
.post__list-member-parts1 {
  margin: 0 auto 15px;
}
.post__list-member-parts2 {
  width: 100%;
  margin-bottom: 15px;
}
.post__list-member-btn,
.post__list-member-btn2 {
  width: 100%;
}
.not-member {
  height: 100%;
}
@media screen and (max-width: 930px) {
  .postlist {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 750px) {
  .postlist__item {
    width: 100%;
  }
}
@media screen and (max-width: 560px) {
  .postlist {
    grid-template-columns: repeat(2, 1fr);
  }
}
