/**
 * base.css — Agriviz ベーススタイル
 * リセット・ボディ・タイポグラフィ・スクロールバー
 */

/* ── リセット ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 15px;
  scroll-behavior: smooth;
  scrollbar-gutter: stable; /* スクロールバー出現によるレイアウトシフト防止 */
}

body {
  font-family: 'Noto Sans JP', 'Hiragino Sans', 'Meiryo', 'Segoe UI', sans-serif;
  min-height: 100vh;
  background: var(--bg-grad) fixed;
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.5;
}

/* ── スクロールバー ── */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(76,175,80,0.3); border-radius: 999px; }
* { scrollbar-width: thin; scrollbar-color: rgba(76,175,80,0.3) transparent; }

/* ── フォーカス ── */
:focus-visible { outline: 2px solid var(--green-light); outline-offset: 2px; }

/* ── セレクト option 背景 ── */
select option { background: var(--select-opt-bg, #1a3a1a); color: var(--text-main); }

/* ── ピュアホワイト テーマ補正 ── */
[data-theme="white"] ::-webkit-scrollbar-thumb { background: rgba(76,175,80,0.25); }
[data-theme="white"] a { color: inherit; }

/* ── 画像 ── */
img { max-width: 100%; height: auto; }

/* ── リンク ── */
a { color: inherit; }

/* ── モバイルでは入力幅制限を解除 ── */
@media (max-width: 600px) {
  input, select, textarea {
    max-width: 100% !important;
  }
}
