/* 補助金インテリジェンスAI — 共通スタイル */

* { box-sizing: border-box; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic UI", "Meiryo", sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* スクロールバーを目立たせない */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}

/* リンクのデフォルト */
a {
  color: inherit;
  text-decoration: none;
}

/* ボタンの再現性 */
button {
  cursor: pointer;
  font-family: inherit;
}
button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}
