body {
font-family: system-ui, sans-serif;
margin: 2rem;
background: #f5f5f5;
color: #333;
}


h1 {
font-size: 1.6rem;
margin-bottom: 1rem;
}


.link-list {
background: #fff;
padding: 1.5rem;
border-radius: 12px;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}


.link-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

/* 画像を統一サイズに */
.link-item img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  flex-shrink: 0;
}

.link-text {
  display: flex;
  flex-direction: column;
}

/* タイトルリンク */
.link-text a {
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  color: #0070c9;
  margin-bottom: 0.3rem;
}

/* note は普通に下に表示 */
.link-item .note {
  font-size: 0.9rem;
  color: #444;
}

.link-item:last-child {
margin-bottom: 0;
border-bottom: none;
}


a:hover {
text-decoration: underline;
}


