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

/* --- お知らせ一覧 --- */
.news-archive { padding: 0px 0 400px; }

.news-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.news-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.news-card:hover { transform: translateY(-5px); }

.news-card a { text-decoration: none; color: inherit; }

.news-img { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.news-img img { width: 100%; height: 100%; object-fit: cover; }

.news-category {
  position: absolute;
  top: 10px; left: 10px;
  background: var(--color-orange);
  color: #fff;
  padding: 3px 12px;
  border-radius: 5px;
  font-size: 0.8rem;
  font-weight: bold;
}
/* カテゴリー別色分*/
/* お知らせ */
/*
.news-category.is-news {
    background-color: #ff8c00;
    color: #fff;
}
*/
/* ブログ */
/*
.news-category.is-blog {
    background-color: #4caf50;
    color: #fff;
}
*/

.news-content { padding: 20px; }
.news-date { font-size: 0.9rem; color: #888; }
.news-card-title { font-size: 1.1rem; margin-top: 10px; line-height: 1.5; color: var(--color-brown); }

/* --- ページネーション --- */
.pagination { text-align: center; margin-top: 50px; }
.pagination span, .pagination a {
  display: inline-block;
  width: 40px; height: 40px;
  line-height: 40px;
  margin: 0 5px;
  background: #fff;
  border-radius: 50%;
  text-decoration: none;
  color: var(--color-brown);
  font-weight: bold;
}
.pagination span.current { background: var(--color-orange); color: #fff; }

/* --- お知らせ詳細（単体） --- */
.news-single { padding: 0px 0 400px;}

.post-detail {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 50px;
  border-radius: 30px;
}

.post-meta { display: flex; gap: 15px; align-items: center; margin-bottom: 15px; }

.post-title { font-size: 1.8rem; color: var(--color-brown); line-height: 1.4; margin-bottom: 30px; }

.post-main-img { margin-bottom: 40px; border-radius: 15px; overflow: hidden; }
.post-main-img img { width: 100%; }

.post-content { line-height: 2; color: #444; }
.post-content h2 { color: var(--color-orange-dark); margin: 40px 0 20px; border-left: 5px solid; padding-left: 15px; }

.post-footer { text-align: center; margin-top: 60px; border-top: 1px solid #eee; padding-top: 30px; }

.back-btn {
  display: inline-block;
  background: var(--color-brown);
  color: #fff;
  padding: 12px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
}


/* スマホ対応 */
@media (max-width: 768px) {
  .post-detail { padding: 30px 20px; }
  .post-title { font-size: 1.4rem; }
  .news-list { grid-template-columns: 1fr; }
}