/* TOPページ固有スタイル */

/* contactセクションのCTAは非表示（TOPページではRESERVEセクションで代替） */
/* 必要に応じてコメントアウト: .lumina-cta { display: none; } */

/* お知らせリスト：4件分の高さで固定し、5件以上はスクロール表示 */
.lumina-news-list {
  max-height: 340px;
  overflow-y: auto;
  padding-right: 12px;
  scrollbar-width: thin;
  scrollbar-color: #a890c0 #ece6f1;
}
.lumina-news-list::-webkit-scrollbar {
  width: 8px;
}
.lumina-news-list::-webkit-scrollbar-track {
  background: #ece6f1;
  border-radius: 999px;
}
.lumina-news-list::-webkit-scrollbar-thumb {
  background: #a890c0;
  border-radius: 999px;
}
.lumina-news-list::-webkit-scrollbar-thumb:hover {
  background: #87689f;
}
/* 最後の行の下線を消さず、スクロール末尾に余白を確保 */
.lumina-news-list .lumina-news-row:last-child {
  border-bottom: none;
}
