@charset "UTF-8";

:root {
  --color-black:#000;
  --color-green:#11a952;
  --color-yellow:#ffcc00;
}

html {
  font-size: 16px;
  line-height: 1.6;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro",
    sans-serif;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  background: #fff;
  color: #3a3a3a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-y: scroll;
}

.pc{
  display: block;
}
.sp{
  display: none;
}

@media only screen and (max-width: 800px) {
  .pc{
    display: none;
  }
  .sp{
    display: block;
  }
}
