:root {
  --pc: 1440 * 100vw;
  --sp: 390 * 100vw;
}

* {
  margin: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-tap-highlight-color: transparent;
}
*::before, *::after {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-family: "Figtree", sans-serif;
  font-size: 16px;
  width: 100%;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
}

ul li {
  list-style: none;
}

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

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

a {
  text-decoration: none;
}

.sp {
  display: none;
}

.fade {
  opacity: 0;
}
.fade.active {
  animation: fade 1s ease-in-out forwards;
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media (max-width: 768px) {
  body {
    font-size: calc(14 / var(--sp));
  }
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}/*# sourceMappingURL=base.css.map */