@charset "utf-8";

/* セクション全体（背景は白のまま） */
.news-section {
  padding: 2rem 0;
  background: #ffffff;
}

/* 中央寄せ＋左右余白 */
.news-section .inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* リスト */
.news-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

/* カード */
.news-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;

  /* 上下マージンを詰める（1.4rem → 0.9rem） */
  padding: 0.9rem 1.4rem;

  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;

  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);

  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.news-item:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.12);
}

/* SVGアイコン（ミニマル線画＋ミント色） */
.news-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.news-icon-svg {
  width: 18px;
  height: 18px;
  stroke: #1f7f5f;   /* 薄いミントグリーン */
  fill: none;
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* 日付 */
.news-item dt {
  font-size: 0.95rem;
  color: #4a4a4a;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* タイトル */
.news-item dd a {
  font-size: 1.05rem;
  font-weight: 500;
  color: #222;
  text-decoration: none;
  transition: color 0.2s ease;
}

.news-item dd a:hover {
  color: #1f7f5f;   /* アイコンと統一 */
}
