/* ======================================= お知らせ アーカイブ（リニューアル） ======================================= */

/* Design tokens */
/* MOSS BLACK: #42220F, CLEAR MOSS: #B2A581 */
/* BACKGROUND WHITE: #FEFDFB, SUBTLE MOSS: #E9E9E2 */

.news-page {
  background-color: #fefdfb;
  padding-top: 72px; /* ヘッダー高さ（PC） */
}

/* ======================================= ヒーローセクション ======================================= */
.news-page-hero {
  position: relative;
  overflow: hidden;
  height: 576px;
}

.news-page-hero__bg {
  position: absolute;
  inset: 0;
}

.news-page-hero__bg img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 576px;
  object-fit: cover;
  object-position: center center;
}

.news-page-hero__title-card {
  position: absolute;
  left: 50%;
  top: auto;
  bottom: 0;
  transform: translateX(-50%);
  background-color: #fefdfb;
  padding: 40px 48px;
  text-align: center;
  width: calc(100% - 320px);
  min-width: 342px;
}

.news-page-hero__label {
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1.12px;
  color: #b2a581;
  margin: 0 0 12px;
}

.news-page-hero__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 32px;
  letter-spacing: 2.56px;
  color: #42220f;
  margin: 0;
}

/* ======================================= ニュースリスト ======================================= */
.news-page-list {
  background-color: #fff;
}

.news-page-list__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 48px 160px 48px;
}

.news-page-items {
  display: flex;
  flex-direction: column;
}

.news-page-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid #b2a581;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.25s ease;
}

.news-page-item:hover {
  opacity: 0.8;
}

.news-page-item:hover .news-page-item__title {
  text-decoration: underline;
}

.news-page-item__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.news-page-item__date {
  font-family: "Roboto", "Lato", sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.56px;
  color: #b2a581;
  margin: 0;
}

.news-page-item__title {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.8px;
  line-height: 1.5;
  color: #42220f;
  margin: 0;
}

.news-page-item__arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 1px solid #b2a581;
  border-radius: 50%;
  background-color: transparent;
}

.news-page-item__arrow img {
  display: block;
  width: 6px;
  height: 10px;
  object-fit: contain;
}

/* 最後の項目の下に罫線 */
.news-page-items .news-page-item:last-child {
  border-bottom: 1px solid #b2a581;
}

/* ページネーションは pagination-archive.css で共通化 */

/* ======================================= その他 ======================================= */

.news-page-no-posts {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  color: #42220f;
  text-align: center;
  padding: 48px 24px;
}

/* ======================================= タブレット（1250px以下） ======================================= */
@media (max-width: 1024px) {
  .news-page {
    padding-top: 56px;
  }

  .news-page-list__inner {
    padding-left: 80px;
    padding-right: 80px;
  }

  .about-cta__inner {
    padding-left: 80px;
    padding-right: 80px;
  }
}

/* ======================================= SP（767px以下） ======================================= */
@media (max-width: 1024px) {
  .news-page {
    padding-top: 56px;
  }

  .news-page-hero {
    min-height: 276px;
    height: 276px;
  }

  .news-page-hero__bg img {
    min-height: 276px;
  }

  .news-page-hero__title-card {
    width: calc(100% - 48px);
    padding: 24px 20px;
    min-width: 280px;
  }

  .news-page-hero__label {
    font-size: 13px;
    letter-spacing: 1.04px;
  }

  .news-page-hero__title {
    font-size: 24px;
    letter-spacing: 1.92px;
  }

  .news-page-list__inner {
    padding: 32px 24px 32px;
  }

  .news-page-item {
    padding: 16px 0;
    gap: 16px;
  }

  .news-page-item__date {
    font-size: 12px;
    letter-spacing: 0.48px;
  }

  .news-page-item__title {
    font-size: 16px;
    letter-spacing: 0.64px;
  }

  .news-page-item__arrow {
    width: 20px;
    height: 20px;
  }

  .news-page-item__arrow img {
    width: 5px;
    height: 8px;
  }
}
