/* ===========================================
 * Base Styles - 基本スタイル
 * 変数定義、リセット、基本タイポグラフィ
 * =========================================== */

/* ---- CSS変数 ---- */
:root {
  --primary-color: #0066cc;
  --primary-dark: #004499;
  --header-bg: #e8e8e8;
  --header-text: #333;
  --sidebar-width: 180px;
  --content-bg: #fff;
  --border-color: #ddd;
  --text-color: #333;
  --text-muted: #666;
  --link-color: #0066cc;
  --new-color: #ff3333;
  --sp-color: #d63384;
  --success-color: #28a745;
  --shadow: 0 1px 3px rgba(0,0,0,0.1);
}

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

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  margin: 0;
  padding: 0;
  background: #f5f5f5;
  color: var(--text-color);
  font-size: 14px;
  line-height: 1.5;
}

a {
  color: var(--link-color);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

/* ---- ユーティリティ ---- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.text-center { text-align: center; }
.text-right { text-align: right; }
.text-muted { color: var(--text-muted); }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
