/* ===================== Archive News Page ===================== */
/* お知らせアーカイブページ専用のスタイル */

/* アーカイブページ全体のコンテナ */
.archive-news {
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  background: #F5F1EB; /* About/Productページと同じ背景色 */
}

/* アーカイブページのコンテンツエリア */
.archive-news__content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 1rem 80px;
  text-align: center;
}

/* アーカイブページのリスト（単一カラム、縦並び） */
.archive-news__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

/* アーカイブページのアイテム（シンプルなテキストリスト） */
.archive-news__item {
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 24px;
  width: 100%;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* アーカイブページのリンク */
.archive-news__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* アーカイブページの日付 */
.archive-news__date {
  display: block;
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 8px;
  text-align: center;
}

/* アーカイブページのカテゴリタグ */
.archive-news__category {
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 8px;
  background: #f0f0f0;
  border-radius: 4px;
  font-size: 0.75rem;
  color: #333;
  font-weight: 500;
}

/* アーカイブページのタイトル */
.archive-news__title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: #333;
  line-height: 1.6;
  text-align: center;
}

.archive-news__link:hover .archive-news__title {
  color: #2D5016;
}

/* アーカイブページのページネーション */
.archive-news__pagination {
  margin-top: 48px;
  text-align: center;
}

.archive-news__pagination .page-numbers {
  display: inline-block;
  padding: 8px 16px;
  margin: 0 4px;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
  color: #333;
  transition: all 0.2s ease;
}

.archive-news__pagination .page-numbers:hover,
.archive-news__pagination .page-numbers.current {
  background: #4caf50;
  color: #fff;
  border-color: #4caf50;
}

.archive-news__pagination .page-numbers.current {
  font-weight: bold;
}

/* アーカイブページのレスポンシブ */
@media (max-width: 900px) {
  .archive-news__list {
    gap: 24px;
  }
  
  .archive-news__item {
    padding-bottom: 20px;
  }
  
  .archive-news__title {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .archive-news__content {
    padding: 40px 1rem 60px;
    text-align: center;
  }
  
  .archive-news__list {
    gap: 20px;
  }
  
  .archive-news__item {
    padding-bottom: 16px;
  }
  
  .archive-news__date {
    font-size: 0.8125rem;
  }
  
  .archive-news__title {
    font-size: 0.9375rem;
  }
}
