/* ベース */
.news-archive {
  background: #D8DAD2;
  color: #28332e;
  font-family: "A-OTF Shuei Mincho Pro", "Hiragino Mincho ProN",
    "Yu Mincho", "游明朝", serif;

}

/* タイトル行 */
.page-title {
  padding: 64px 0 40px;
  margin: 0;
  line-height: 1;
}

.news-title__inner {
  margin: 0 10vw;
  display: flex;          /* ← 横並びにする */
  align-items: center;    /* ← ベースラインをそろえる */
  gap: 24px;              /* NEWS と ラインの間隔 */
}

.news-title__text {
  font-family: "A-OTF Shuei Mincho Pro", "Hiragino Mincho ProN",
    "Yu Mincho", "游明朝", serif;
  font-size: 42px;
  letter-spacing: 0.16em;
}

.news-title__line {
  flex: 0 0 20%;                /* 右側の余白いっぱいまで伸ばす */
  height: 1px;
  background: #28332e;
}

.news-title__text {
  font-family: "A-OTF Shuei Mincho Pro", "Hiragino Mincho ProN",
    "Yu Mincho", "游明朝", serif;
  font-size: 42px;
  letter-spacing: 0.16em;
}

.news-title__line {
  flex: 0 0 20%;
  height: 1px;
  background: #28332e;
}

/* 一覧リスト */
.news-list-section {
  margin: 0 10vw 120px;
}

.news-list__inner {
}

.news-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-item {
  padding: 22px 0 0 0;
}

.news-item__link {
  display: flex;
  align-items: center;
  gap: 32px;
  text-decoration: none;
  color: inherit;
  width: 80vw;
}

.news-item__date {
  font-size: 12px;
  white-space: nowrap;
  margin-top: 0;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  color: #858585;
}

.news-item__body {
  flex: 1;
}

.news-item__title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 6px;
}

.news-item__excerpt {
  font-size: 14px; /* pタグ14px指定 */
  line-height: 2;
}

/* もっと見るボタン */
.news-more {
  margin-top: 56px;
  text-align: center;
}

.news-more__btn {
  display: inline-block;
  min-width: 220px;
  padding: 14px 40px;
  border: 1px solid #28332e;
  background: transparent;
  font-size: 13px;
  text-decoration: none;
  color: #28332e;
  letter-spacing: 0.12em;
}

.news-more__btn:hover {
  background: #28332e;
  color: #D8DAD2;
}

/* 空の場合 */
.news-item--empty {
  padding: 40px 0;
}
/* ==========================
   768px 以下：NEWS一覧
========================== */
@media screen and (max-width: 768px) {

  /* ページ全体ちょい小さめ文字 */
  .news-archive {
    font-size: 13px;
    line-height: 1.9;
  }

  /* タイトル「NEWS ＋ ライン」 */
  .page-title {
    padding: 40px 0 0;
  }

  .news-title__inner {
    margin: 0 6vw;
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .news-title__text {
    font-size: 28px;
    letter-spacing: 0.1em;
  }
  .news-item__body {
    flex: 1;
  }

  .news-title__line {
    flex: 0 0 70px;   /* ライン短め */
    height: 1px;
  }

  /* 一覧ブロックの余白 */
  .news-list-section {
    margin: 0 6vw 80px;
  }

  .news-list {
    margin: 0;
    padding: 0;
  }

  .news-item {
    padding: 18px 0 0;
    grid-template-columns: none;
    gap: 0px;
  }

  .news-item__link {
    width: 100%;
    display: flex;
    flex-direction: row;   /* 日付 → 本文の縦並び */
    align-items: flex-start;
    gap: 13px;
    text-decoration: none;
    color: inherit;
  }

  .news-item__date {
    font-size: 11px;
    margin: 0 0 2px;
  }

  .news-item__title {
    font-size: 16px;
    margin-bottom: 4px;
    margin-block-end: 0;
    margin-block-start: 0;
  }

  .news-item__excerpt {
    font-size: 12px;
    line-height: 1.9;
  }

  /* 「もっと見る」ボタンを横幅いっぱいに */
  .news-more {
    margin-top: 32px;
    text-align: center;
  }

  .news-more__btn {
    display: block;
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    padding: 12px 0;
  }
}
