:root {
  --noto-selif: "Noto Serif JP", serif;
  --noto-sans: "Noto Sans JP", sans-serif;
  --oswald: "Oswald", sans-serif;
}

.selif {
  font-family: var(--noto-selif);
}

.noto {
  font-family: var(--noto-sans);
}

.oswald {
  font-family: var(--oswald);
}

.img-wrap {
  max-width: fit-content;
  width: 100%;
}
.img-wrap img {
  width: 90%;
}

.pc-b {
  display: block !important;
}
@media screen and (max-width: 767px) {
  .pc-b {
    display: none !important;
  }
}

.sp-b {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp-b {
    display: block !important;
  }
}

.pc-ib {
  display: inline-block !important;
}
@media screen and (max-width: 767px) {
  .pc-ib {
    display: none !important;
  }
}

.sp-ib {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp-ib {
    display: inline-block !important;
  }
}

.pc-f {
  display: flex !important;
}
@media screen and (max-width: 767px) {
  .pc-f {
    display: none !important;
  }
}

.sp-f {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp-f {
    display: flex !important;
  }
}

html {
  line-height: 1;
  letter-spacing: 0em;
  -webkit-tap-highlight-color: transparent;
  -webkit-text-size-adjust: 100%;
}

*,
::before,
::after {
  border-width: 0;
  border-style: solid;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-weight: 400;
  font-family: var(--noto-sans);
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: inherit;
  font-size: inherit;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

hr {
  clear: both;
  height: 0;
  overflow: visible;
  margin: 0;
  border-top-width: 1px;
  color: inherit;
  box-sizing: content-box;
}

address {
  font-style: inherit;
}

a {
  color: inherit;
  background-color: transparent;
  text-decoration: none;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 100%;
}

sub,
sup {
  position: relative;
  line-height: 0;
  vertical-align: baseline;
  font-size: 75%;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  vertical-align: middle;
  margin: 0;
  padding: 0;
  border-radius: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-align: inherit;
  text-transform: inherit;
  -webkit-appearance: none;
  appearance: none;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  appearance: radio;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  font-weight: bold;
  text-align: left;
}

*[data-scroll=fade-up] {
  transform: translateY(20px);
  opacity: 0;
}
*.fade-up {
  animation: fadeup 1.5s forwards;
}
@keyframes fadeup {
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
*[data-scroll=slide-right] {
  translate: -50px;
  opacity: 0;
}
*.slide-right {
  animation: slide-right 0.6s forwards ease;
}
@keyframes slide-right {
  100% {
    opacity: 1;
    translate: 0;
  }
}
*[data-scroll=yellow-bg] {
  scale: 1 0;
  transform-origin: left top;
}
*.yellow-bg {
  animation: yellow-bg 1s forwards ease;
}
@media screen and (max-width: 767px) {
  *.yellow-bg {
    animation: yellow-bg 0.5s forwards ease;
  }
}
@keyframes yellow-bg {
  100% {
    scale: 1 1;
  }
}
*[data-scroll=bounce-scale] {
  scale: 1 0;
  transform-origin: left bottom;
}
*.bounce-scale {
  animation: bounce-scale 0.4s forwards ease;
}
@keyframes bounce-scale {
  80% {
    scale: 1 1.2;
  }
  100% {
    scale: 1 1;
  }
}
*[data-scroll=scale-up] {
  scale: 0 0;
}
*.scale-up {
  animation: scale-up 0.4s forwards ease-in-out;
}
@keyframes scale-up {
  100% {
    scale: 1 1;
  }
}
*[data-scroll=start] {
  scale: 0 0;
  translate: -150px -150px;
  opacity: 0;
}
*.start {
  animation: start 0.6s forwards ease-in-out;
}
@keyframes start {
  100% {
    opacity: 1;
    translate: 0 0;
    scale: 1 1;
  }
}/*# sourceMappingURL=animation.css.map */