/* ページ全体の基本設定 */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Noto Sans JP",
    "Yu Gothic",
    sans-serif;
  color: #222;
  background: #f3f5f7;
  line-height: 1.7;
}

/* 内容の最大幅 */
.container {
  width: min(92%, 900px);
  margin: 0 auto;
}

/* ヘッダー */
.site-header {
  padding: 24px 0;
  color: white;
  background: #253858;
}

.site-header .container {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-header h1 {
  margin: 0;
  font-size: 28px;
}

.logo {
  width: 48px;
  height: 48px;
}

/* メイン部分 */
main {
  padding: 32px 0;
}

.card {
  margin-bottom: 24px;
  padding: 24px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.card h2 {
  margin-top: 0;
}

/* ボタン */
button {
  padding: 12px 20px;
  color: white;
  font-size: 16px;
  font-weight: bold;
  background: #2563eb;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

button:hover {
  background: #1d4ed8;
}

/* JavaScriptで表示するメッセージ */
.message {
  min-height: 28px;
  margin-top: 16px;
  font-weight: bold;
  color: #2563eb;
}

/* リンク */
a {
  color: #2563eb;
}

/* フッター */
.site-footer {
  padding: 20px 0;
  color: #666;
  text-align: center;
}

/* スマートフォン用 */
@media (max-width: 600px) {
  .site-header h1 {
    font-size: 22px;
  }

  .card {
    padding: 18px;
  }
}