@charset "UTF-8";
/* デフォルト */
/* レスポンシブ設定 */
@media screen and (min-width: 321px) {
  .ssp {
    display: none;
  }
}
@media screen and (min-width: 541px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 540px) {
  .pc {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .tb {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .nb {
    display: none;
  }
}
h1 {
  position: absolute;
  opacity: 0;
  height: 0px;
}

p.top-title {
  text-align: center;
  margin-bottom: 86px;
  font-size: 32px;
}
@media screen and (max-width:540px) {
  p.top-title {
    font-size: 23px;
    margin-bottom: 60px;
  }
}

.container {
  max-width: 700px;
  margin: 0 auto;
  width: 90%;
}
@media screen and (max-width:540px) {
  .container {
    max-width: 330px;
  }
}

/* カテゴリフィルターボタン */
.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}
@media screen and (max-width:540px) {
  .category-filter {
    gap: 15px;
    justify-content: center;
  }
}
.category-filter .filter-btn {
  font-family: "Source Serif 4", serif;
  width: 114px;
  padding: 5px 0;
  background: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 18px;
  color: #685150;
  font-weight: 400;
}
.category-filter .filter-btn:hover, .category-filter .filter-btn .active {
  background: #685150;
  color: #fff;
}
@media screen and (max-width:540px) {
  .category-filter .filter-btn {
    width: auto;
    padding: 3px 10px;
    font-size: 14px;
  }
}

/* 投稿一覧 */
.post-list {
  border-top: 1.5px solid #685150;
}
.post-list .post-item {
  transition: opacity 0.3s ease;
  border-bottom: 1.5px solid #685150;
}
.post-list .post-item.hidden {
  display: none;
}
.post-list .post-item a {
  display: block;
  text-decoration: none;
  color: inherit;
}
.post-list .post-item .post-thumbnail img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
.post-list .post-item .post-content {
  padding: 25px 0;
  padding-left: 10px;
  position: relative;
  transition: 0.4s;
}
@media screen and (max-width:540px) {
  .post-list .post-item .post-content {
    padding: 15px 0;
    padding-right: 25px;
  }
}
.post-list .post-item .post-content::after {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #685150;
  border-right: 2px solid #685150;
  top: 50%;
  right: 10px;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.4s;
}
.post-list .post-item .post-content:hover {
  opacity: 0.7;
}
.post-list .post-item .post-content:hover::after {
  right: 5px;
}
.post-list .post-item .post-category {
  font-size: 12px;
  color: #959595;
  padding: 2px;
  background: white;
  line-height: 1;
}
.post-list .post-item .post-title {
  font-size: 16px;
  margin: 10px 0 0;
}
@media screen and (max-width:540px) {
  .post-list .post-item .post-title {
    font-size: 15px;
  }
}
.post-list .post-item .post-date {
  font-size: 14px;
  color: #959595;
  margin-right: 10px;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
}

.page-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #685150;
  background: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 15px;
  font-family: "Source Serif 4", serif;
  color: #685150;
}
.page-btn.active {
  background: #685150;
  color: #fff;
}
.page-btn:hover {
  background: #685150;
  color: #fff;
}

/* ローディング */
#post-list-container.loading {
  opacity: 0.5;
  pointer-events: none;
}

/* 投稿なし */
.no-posts {
  text-align: center;
  padding: 60px 20px;
  color: #666;
}/*# sourceMappingURL=style.css.map */