/* お知らせ — LP・一覧ページ共通 */
.news-list{ max-width: 720px; margin: 0 auto; text-align: left; }

/* 一覧（フル表示） */
.news-item{
  display: flex; gap: 20px; padding: 20px 0;
  border-bottom: 1px solid var(--line-soft, #e6efe7);
  align-items: flex-start;
}
.news-item:first-child{ padding-top: 0; }
.news-date{
  flex: 0 0 auto; min-width: 6.8em;
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: .86rem;
  color: var(--accent-deep, #265a2a); letter-spacing: .02em;
  background: #eef6f0; padding: 5px 10px; border-radius: 5px; line-height: 1.35;
}
.news-body{ flex: 1; min-width: 0; }
.news-title{
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 1.05rem; font-weight: 700; margin: 0 0 7px;
  color: var(--accent-deep, #265a2a); line-height: 1.45;
}
.news-text{
  margin: 0; line-height: 1.8; color: #5a6b5e; font-size: .94rem;
  white-space: pre-wrap;
}
.news-empty{ color: #888; font-size: .95rem; text-align: center; }

/* LPプレビュー（1行） */
.news-item-compact{ display: block; padding: 11px 0; }
.news-line{
  display: flex; align-items: baseline; gap: 0;
  margin: 0; overflow: hidden; white-space: nowrap;
  font-size: .94rem; line-height: 1.55;
}
.news-line-date{
  flex-shrink: 0;
  font-family: 'Outfit', sans-serif; font-weight: 600; font-size: .84rem;
  color: var(--accent-deep, #265a2a); letter-spacing: .02em;
}
.news-line-title{
  flex-shrink: 0; font-weight: 700; color: var(--ink, #222);
  margin-left: 10px; padding-left: 10px;
  border-left: 2px solid var(--accent, #337337);
}
.news-line-body{
  flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis;
  margin-left: 8px; color: #6b7a6f; font-size: .9rem; font-weight: 400;
}
.news-line-body::before{
  content: '—'; color: #b8c9bc; margin-right: 8px; font-weight: 400;
}

@media (max-width: 640px){
  .news-item{ flex-direction: column; gap: 8px; padding: 16px 0; }
  .news-line-title{
    flex-shrink: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis;
    max-width: 55%;
  }
}
