@charset "utf-8";

:root {
  --inter: "Inter";
  --noto-sans-jp: "Noto Sans JP", sans-serif;
  --bebas-neue: "Bebas Neue", sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(72px + 24px);
}
html,
body,
button {
  font-size: 14px;
  font-family: var(--inter), var(--noto-sans-jp), sans-serif;
  letter-spacing: 0.03em;
  -webkit-font-smoothing: antialiased;
}
html,
body,
div,
h1,
h2,
h3,
h4,
h5,
h6,
li,
ul,
ol,
p,
label,
form,
input,
select,
textarea,
button,
td,
th,
hr,
blockquote,
code {
  margin: 0;
  padding: 0;
}
html,
body,
a,
button {
  color: #182127;
}
body.inactive {
  overflow: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: 400;
}
button,
code,
input,
option,
select,
strong,
textarea,
th {
  font: inherit;
}
a,
button,
i,
img,
input,
label,
select,
textarea {
  display: block;
}
a {
  text-decoration: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
th {
  text-align: left;
}
img,
video,
iframe {
  vertical-align: bottom;
}
img,
hr {
  border: none;
}
li {
  list-style: none;
}
template {
  display: none;
}
button,
input,
select,
textarea {
  margin: 0;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  outline: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
textarea {
  resize: none;
}
::-webkit-input-placeholder {
  color: #dce2e8;
}
::-moz-placeholder {
  color: #dce2e8;
}
::-ms-input-placeholder {
  color: #dce2e8;
}

@media screen and (max-width: 640px) {
  html {
    scroll-padding-top: calc(56px + 20px);
  }
}

@keyframes showUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes showDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
