/* ============================================================
   base.css — CSS変数 / グローバルリセット / アイコンフォント
   ============================================================ */

:root {
  /* ブランドカラー */
  --green: #06C755;
  --green-dark: #05a847;
  --green-light: #e8f9ef;

  /* 背景 */
  --bg: #f0f2f5;
  --white: #fff;

  /* グレースケール */
  --gray-100: #f0f2f5;
  --gray-200: #e4e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --text-sub: #6b7280;

  /* セマンティックカラー */
  --danger: #ef4444;
  --danger-light: #fef2f2;
  --warning: #f59e0b;
  --warning-light: #fffbeb;
  --blue: #3b82f6;
  --blue-light: #eff6ff;
  --purple: #8b5cf6;
  --purple-light: #f3e8ff;
  --orange: #f97316;
  --orange-light: #fff7ed;

  /* 共通トークン */
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 1px 3px rgba(0,0,0,.08), 0 4px 12px rgba(0,0,0,.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--bg);
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Material Icons Round */
.mi {
  font-family: 'Material Icons Round';
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}
