﻿/* リスト全体のスタイル */
.note-feed-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* 記事1件の枠組み */
.note-feed-item a {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: #333;
  padding: 12px;
  border: 1px solid #eee;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}

.note-feed-item a:hover {
  background-color: #f9f9f9;
}

/* サムネイル画像 */
.note-thumb {
  width: 120px;
  height: 80px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 4px;
}

.note-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* テキスト情報 */
.note-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

.note-title {
  font-size: 1rem;
  font-weight: bold;
  margin: 0;
  line-height: 1.4;
}