/* 全体 */
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background-color: #f5f5f5;
  color: #333;
}

/* コンテンツの横幅を中央に寄せる */
.site-header,
main,
.site-footer {
  max-width: 720px;
  margin: 0 auto;
  padding: 16px;
}

/* ヘッダー */
.site-header {
  padding-top: 32px;
  padding-bottom: 16px;
}

.site-header h1 {
  margin: 0 0 8px;
  font-size: 1.8rem;
}

.site-description {
  margin: 0;
  font-size: 0.95rem;
  color: #555;
}

/* リンク集 */
.link-section h2 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.link-list li + li {
  margin-top: 8px;
}

.link-list a {
  display: inline-block;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 4px;
  background-color: #ffffff;
  border: 1px solid #ddd;
}

.link-list a:hover {
  background-color: #f0f0f0;
}

/* フッター */
.site-footer {
  padding-top: 24px;
  padding-bottom: 24px;
  text-align: center;
  font-size: 0.8rem;
  color: #777;
}

/* スマホ向け（最低限のレスポンシブ） */
@media (max-width: 600px) {
  .link-list a {
    width: 100%;
    box-sizing: border-box;
  }
}
