@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: 1040px;
  margin: 0 auto;
  width: 90%;
}

.article-list {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  gap: 25px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
@media screen and (max-width:1024px) {
  .article-list {
    justify-content: center;
  }
}
.article-list .article-card {
  width: 330px;
  height: auto;
  background: #FFFFFF;
  padding: 25px 20px;
  transition: 0.4s;
}
.article-list .article-card:hover {
  opacity: 0.7;
  transform: scale(1.02);
}
.article-list p.article-time {
  font-size: 12px;
  color: #959595;
  margin-bottom: 10px;
}
.article-list h2.article-title {
  color: #685150;
  font-size: 16px;
  margin-bottom: 0;
}
.article-list .article-thumb {
  margin-bottom: 14px;
  position: relative;
}
.article-list .article-thumb img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
.article-list .article-category {
  position: absolute;
  background: #685150;
  padding: 2px 5px 1px;
  color: white;
  font-size: 12px;
}

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

.page-numbers {
  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;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-numbers.current {
  background: #685150;
  color: #fff;
}
.page-numbers:hover {
  background: #685150;
  color: #fff;
}
.page-numbers.next {
  background: none;
  border: none;
}
.page-numbers.prev {
  background: none;
  border: none;
}

/* ─────────────────────────────────────────
   ピン留めカード
───────────────────────────────────────── */
/* カード全体に枠線アクセント */
.article-card.is--pinned {
  outline: 2px solid #dbcfb8; /* サイトのアクセントカラーに合わせて変更 */
  outline-offset: -2px;
}
.article-card.is--pinned .article-thumb .pin-badge {
  position: absolute;
  top: -45px;
  right: -12px;
  z-index: 1;
  background: url(../img/pin.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 25px;
  height: 25px;
}/*# sourceMappingURL=style.css.map */