/* css変数 */
:root {
  --color-main: #de580d;
  --color-lightMain: #f08c00;
  --color-purple: #ab61eb;
  --color-orange: #f08c00;
  --color-white: #ffffff;
  --color-defaultText: #433f3f;
  --contents-width: 800px;
}
/* タグへのスタイル */
* {
  box-sizing: border-box;
}
html {
  /* スムーズスクロールを有効にする */
  scroll-behavior: smooth;
}
body {
  color: var(--color-defaultText);
  font-family: "Noto Sans JP", "Noto Sans JP Fallback", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

@media (max-width: 800px) {
  body {
    font-size: 14px;
  }
}
