@charset "utf-8";
/* CSS Document */

/* ----------------------------------------
  NEWS一覧
  slug: news
---------------------------------------- */

.page-main--news {
}

.news-page {
  color: #fff;
  padding: 220px 20px 140px;
  font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "HGS明朝E", serif;
}

.news-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.news-header {
  text-align: center;
  margin-bottom: 70px;
}

.news-header h1 {
  margin: 0;
  font-size: 42px;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.18em;
}

.news-list {
  display: grid;
  gap: 34px;
}

.news-item {
  border: 1px solid rgba(255, 255, 255, 0.85);
}

.news-item-link {
  display: grid;
  grid-template-columns: 460px 1fr;
  align-items: center;
  gap: 80px;
  min-height: 170px;
  padding: 24px;
  color: #fff;
  text-decoration: none;
}

.news-thumb img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 5.4;
  object-fit: cover;
  object-position: center;
}

.news-text h2 {
  margin: 0;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: 0.06em;
}

.news-empty {
  text-align: center;
  font-size: 16px;
  line-height: 2;
}

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

.news-pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  min-height: 56px;
  padding: 0 40px;
  border-radius: 999px;
  background: #e94712;
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  line-height: 1.6;
  letter-spacing: 0.12em;
}

.news-pagination-prev:empty,
.news-pagination-next:empty {
  display: none;
}


/* ----------------------------------------
  SP
---------------------------------------- */

@media (max-width: 768px) {
  .news-page {
    padding: 130px 20px 90px;
  }

  .news-header {
    margin-bottom: 45px;
  }

  .news-header h1 {
    font-size: 32px;
  }

  .news-list {
    gap: 24px;
  }

  .news-item-link {
    display: block;
    min-height: auto;
    padding: 16px;
  }

  .news-thumb {
    margin-bottom: 18px;
  }

  .news-thumb img {
    aspect-ratio: 16 / 7;
  }

  .news-text h2 {
    font-size: 18px;
    line-height: 1.8;
  }

  .news-pagination {
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 45px;
  }

  .news-pagination a {
    min-width: 160px;
    min-height: 46px;
    font-size: 16px;
  }
}