/* リセット */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  text-align: center;

background: #f0ffff;

}

/* ヘッダー */
.site-header {
  padding: 24px;
}

/* メイン */
.site-main {
  display: flex;
  justify-content: center; /* 中央寄せ */
}

/* 70%幅のグリッド */
.article-grid {
  width: 70%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* 共通カード */
.card {
  height: 220px;               /* ← 全部同じサイズ */
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  border-radius: 8px;
  font-size: 40px;
  font-weight: bold;
}

/* 色違い */
.card-1 { background: #ff4500; }
.card-2 { background: #4169e1; }
.card-3 { background: #7b68ee; }
.card-4 { background: #bdb76b; }

/* フッター */
.site-footer {
  margin
