@charset "UTF-8";
/* ===== 汎用コンテナ ===== */
.container {
  max-width: calc(1100px + 80px);
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
}

/* ===== Page Hero ===== */
.page-hero {
  aspect-ratio: 1920/315;
}
@media screen and (max-width: 768px) {
  .page-hero {
    aspect-ratio: 480/177;
  }
}

/* ===== ニュース一覧 ===== */
.section-news-list {
  padding: 120px 0 200px;
}
@media screen and (max-width: 768px) {
  .section-news-list {
    padding: 80px 0 140px;
  }
}
@media screen and (max-width: 480px) {
  .section-news-list {
    padding: 60px 0 100px;
  }
}

.news-heading {
  font-size: 28px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .news-heading {
    font-size: 22px;
  }
}
@media screen and (max-width: 480px) {
  .news-heading {
    font-size: 20px;
  }
}

.news-archive-list {
  max-width: 800px;
  margin: 0 auto;
}

.news-archive-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid #e0e0e0;
  transition: color 0.3s ease;
}
.news-archive-item:first-child {
  border-top: 1px solid #e0e0e0;
}
.news-archive-item:hover {
  color: #34C8DC;
}
@media screen and (max-width: 768px) {
  .news-archive-item {
    gap: 16px;
    padding: 20px 0;
  }
}
@media screen and (max-width: 480px) {
  .news-archive-item {
    flex-wrap: wrap;
    gap: 4px 0;
    padding: 16px 0;
  }
}

.news-archive-date {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  color: #999;
  white-space: nowrap;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .news-archive-date {
    font-size: 13px;
  }
}
@media screen and (max-width: 480px) {
  .news-archive-date {
    width: 100%;
    font-size: 12px;
  }
}

.news-archive-title {
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .news-archive-title {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .news-archive-title {
    width: 100%;
    font-size: 13px;
  }
}

.news-archive-arrow {
  font-size: 20px;
  color: #999;
  flex-shrink: 0;
}
@media screen and (max-width: 480px) {
  .news-archive-arrow {
    display: none;
  }
}

.news-archive-empty {
  text-align: center;
  font-size: 15px;
  color: #999;
  padding: 60px 0;
}

/* ===== ページネーション ===== */
.news-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 60px;
}
.news-pagination a, .news-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 14px;
  border: 1px solid #ddd;
  transition: background 0.3s ease, color 0.3s ease;
}
.news-pagination a:hover {
  background: #34C8DC;
  color: #fff;
  border-color: #34C8DC;
}
.news-pagination .current {
  background: #34C8DC;
  color: #fff;
  border-color: #34C8DC;
}
.news-pagination .dots {
  border: none;
  width: auto;
}
@media screen and (max-width: 768px) {
  .news-pagination {
    margin-top: 48px;
  }
  .news-pagination a, .news-pagination span {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }
}