/* ===== News (添付画像風) ===== */
.news-list{
  border:1px solid #ead9b8;          /* 外枠：薄ベージュ */
  background:#fff7e8;                /* 薄いクリーム色 */
  font-size:13px;
  line-height:1.9;
}
.news-item{
  display:grid;
  grid-template-columns:120px 1fr;   /* 左：日付 / 右：本文 */
  gap:14px;
  padding:10px 14px;
  border-top:1px solid #ead9b8;      /* 行の仕切り */
 line-height: 1.8;	
}
.news-item:first-child{ border-top:none; }

.news-date{
  color:#7b6a4c;                      /* 茶色寄りの文字色 */
  white-space:nowrap;
}
.news-text{ 
	color:#333; 
	 line-height: 1.8;
}


.news-text a{
  color:#333;                         /* 下線なし */
  text-decoration:none;
	 line-height: 1.8;
}


.news-text a:hover{ text-decoration:underline; }

/* 余白や高さ感を近づける微調整 */
.news-list .news-item{ padding-top:12px; padding-bottom:12px; }
.news-text br{ line-height:1.6; }

/* スマホ：縦積み */
@media (max-width:640px){
  .news-item{ grid-template-columns:1fr; gap:6px; }
  .news-date{ opacity:.9; }
}
