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

/* フォントのにじみ防止 & 文字を綺麗に */
html {
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* ページの基本 */
body {
  margin: 0;
  min-height: 100vh;
  /* font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; */
  
  font-family: "Noto Sans JP", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  line-height: 1.6;
  color: #2D2D2D;
  background: #fff;
}

/* 画像・動画ははみ出さない */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* フォーム系の見た目を揃える */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

/* ボタンの余計なスタイル消す */
button {
  background: none;
  border: none;
  cursor: pointer;
}

/* リンク */
a {
  color: inherit;
  text-decoration: none;
}

/* リスト */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 見出し・段落の余白リセット */
h1, h2, h3, h4, h5, h6,
p {
  margin: 0;
}

/* テーブル */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
