/* ===== ニュース一覧 ===== */
.news-bg {
  background: #f8f9ff;
}

.news-notice {
  max-width: 1000px;
  margin: 0 auto 36px;
  background: #fff;
  border-left: 4px solid #0f3460;
  border-radius: 6px;
  padding: 16px 20px;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.7;
}

.news-card-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

.news-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.13);
}

.news-card-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.news-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.news-card-date {
  font-size: 0.8rem;
  color: #888;
}

.news-card-title {
  font-size: 1rem;
  font-weight: bold;
  color: #1a1a2e;
  line-height: 1.5;
}

.news-card-excerpt {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.7;
  flex: 1;
}

.news-card-more {
  font-size: 0.85rem;
  color: #0f3460;
  font-weight: bold;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .news-card-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .news-card-list {
    grid-template-columns: 1fr;
  }
}
