/* ベース */
:root {
  --bg: #f0f8ff;
  --text: #333333;
  --muted: #555555;
  --card: #ffffff;
  --accent: #0078ff;
  --radius: 12px;
  --shadow: 0 6px 18px rgba(0,0,0,0.08);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'M PLUS Rounded 1c', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.8;
}

/* ヘッダー＆ナビ */
.site-header {
  position: sticky; top: 0; z-index: 10;
  background: var(--card);
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 32px;
  box-shadow: var(--shadow);
}

.site-title { font-size: 20px; margin: 0; }

.site-nav ul { list-style: none; display: flex; gap: 20px; margin: 0; padding: 0; }
.site-nav a {
  text-decoration: none; color: var(--text); font-weight: 700;
  padding: 6px 10px; border-radius: 8px;
}
.site-nav a:hover { background: #e7f2ff; color: var(--accent); }

/* レイアウト */
.container { width: min(1000px, 92%); margin: 32px auto; }

/* ヒーロー */
.hero { text-align: center; margin: 24px 0 32px; }
.profile-img {
  width: 160px; height: 160px; object-fit: cover;
  border-radius: 50%; box-shadow: var(--shadow);
}
.tagline { color: var(--muted); margin-top: 12px; }

/* セクションカード */
.card {
  background: var(--card);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 20px 0 28px;
}

h2 { margin: 0 0 12px; color: var(--muted); }
ul { padding-left: 20px; }

/* フッター */
.site-footer {
  text-align: center; color: var(--muted);
  padding: 40px 0 60px;
}
