/* ================================
   リセット
   ================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6, p, ul, ol, figure, blockquote {
  margin: 0;
  padding: 0;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* ================================
   フォント
   ================================ */
@font-face {
  font-family: "Noto Sans JP";
  src: url("/fonts/NotoSansJP-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style:  normal;
  font-display:  swap;
}

@font-face {
  font-family: "Noto Sans JP";
  src: url("/fonts/NotoSansJP-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight:  400;
}

:root {
  color-scheme: light !important;
}

/* ================================
   Animate.css 上書き
   ================================ */
.animate__animated {
  animation-delay: var(--animate-delay, 0s) !important;
  animation-duration: 1s !important;
  animation-fill-mode: both !important;
}

#mobile-menu.animate__animated {
  animation-duration: 0.3s !important;
  --animate-delay: 0s !important;
}