/* =============================================
   インプラス リセット・基本設定  css/reset.css
   全ページ共通 - tokens.css の次に読み込む
   ============================================= */

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

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.96rem;
  color: var(--text);
  background: var(--gray);
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
}

img {
  border: none;
  max-width: 100%;
  vertical-align: middle;
}

input, select, button, textarea {
  font-family: inherit;
}

ul, ol, dl {
  padding-left: 1em;
}

a {
  color: var(--blue);
}

a:hover {
  color: var(--accent);
}
