/* =========================
   記事一覧 全体
========================= */

.list-item {
  margin-bottom: 48px;
}


/* =========================
   テキストエリア
========================= */

.list-item-text {
  flex: 1;
  padding-top: 8px;
}

/* 日付 */
.list-item-date {
  font-size: 13px;
  color: #888;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

/* タイトル */
.list-item-text .title {
  font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "游明朝", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  line-height: 1.1;
  margin-bottom: 16px;
  font-weight: 700;
}

.list-item-text .title a {
  color: #111;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.list-item-text .title a:hover {
  opacity: 0.7;
}

/* 本文抜粋 */
.list-item-text .desc {
  font-size: 16px;
  line-height: 2;
  color: #444;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* 本文内のbrを消す */
.list-item-text .desc br {
  display: none;
}

/* =========================
   SP対応
========================= */

@media screen and (max-width: 768px) {

  .list-item {
    margin-bottom: 40px;
  }

  .list-item-text {
    padding-top: 0;
  }

  .list-item-text .title {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .list-item-text .desc {
    font-size: 14px;
    line-height: 1.9;

    -webkit-line-clamp: 2; /* SPはさらに短く */
  }

}


/* =========================
   ページネーション
========================= */

:root {
  --color-01: #b5a59c;
  --color-02: #fff;
}

.pager {
  width: 100%;
  margin: 60px auto;
}

.pager-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 0;
}

/* 左寄せ */
.pager-list.-left {
  justify-content: flex-start;
}

/* 右寄せ */
.pager-list.-right {
  justify-content: flex-end;
}

/* li */
.pager-list li {
  list-style: none;
}

/* ボタン共通 */
.pager-list li a,
.pager-list li .now {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 16px;
  font-weight: 600;
  line-height: 1;

  border-radius: 50%;
  border: 2px solid var(--color-01);

  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;

  text-decoration: none;
  box-sizing: border-box;
}

/* 通常 */
.pager-list li a {
  background: var(--color-01);
  color: var(--color-02);
}

/* hover */
.pager-list li a:hover {
  background: var(--color-02);
  color: var(--color-01);
  opacity: 1;
}

/* 現在ページ */
.pager-list li .now {
  background: var(--color-02);
  color: var(--color-01);
}

/* =========================
   矢印
========================= */

.pager-list .arrow a::before {
  content: "";
  width: 10px;
  height: 10px;
  display: block;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

/* 前へ */
.pager-list .arrow.-prev a::before {
  transform: rotate(-135deg);
  margin-left: 4px;
}

/* 次へ */
.pager-list .arrow.-next a::before {
  transform: rotate(45deg);
  margin-right: 4px;
}

/* =========================
   SP
========================= */

@media screen and (max-width: 768px) {

  .pager {
    margin: 48px auto;
  }

  .pager-list {
    gap: 8px;
  }

  .pager-list li a,
  .pager-list li .now {
    width: 42px;
    height: 42px;
    font-size: 14px;
  }

}
