/* font */
@import url("https://fonts.googleapis.com/css2?family=Kosugi+Maru&display=swap");
@import url("https://fonts.googleapis.com/css?family=M+PLUS+Rounded+1c:400,700&display=swap&subset=japanese");
/*==================================
 setting
===================================*/
/* @include config.fontFamily01(normal, .1rem); */
* {
  margin: 0;
  padding: 0;
  word-wrap: break-word;
}

html {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
}

body {
  position: relative;
  min-width: 320px;
  width: 100%;
  -webkit-text-size-adjust: 100%;
  _font-family: "Kosugi Maru", sans-serif;
  font-family: "M PLUS Rounded 1c", sans-serif;
  line-height: 1.6;
  color: #FFF;
  font-feature-settings: "palt";
  z-index: 0;
  background: #fdb2da;
  font-size: 1.6rem;
}
@media screen and (max-width: 800px) {
  body {
    font-size: 1.4rem;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: baseline;
}

a {
  color: #0daff2;
  text-decoration: none;
  transition: 0.3s;
}

a:hover,
a:active {
  color: #0daff2;
  text-decoration: none;
}

a:visited {
  color: none;
}

a:focus {
  outline: none;
}

ul {
  list-style: none;
}

h1,
h2,
h3 {
  margin: 0;
  padding: 0;
  word-wrap: break-word;
}

/*==================================
  animation
===================================*/
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 0.6s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
  opacity: 0;
  animation-delay: 3s;
}

@keyframes fadeInAnime {
  0% {
    transform: scale(1.4);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.fadeIn02 {
  animation-name: fadeIn02Anime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: 1s;
  opacity: 0;
}

@keyframes fadeIn02Anime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fade {
  animation-name: fade;
  animation-duration: 3s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fade {
  0% {
    opacity: 0;
    transform: scale(0.8, 0.8);
  }
  70% {
    opacity: 1;
    transform: scale(1, 1);
  }
  100% {
    opacity: 0;
  }
}
/*==================================
  common
===================================*/
.-hover01:hover {
  transform: translateY(2px);
}

img.lazyload {
  width: 100%;
}

.-onlyPc {
  display: block;
}
@media screen and (max-width: 800px) {
  .-onlyPc {
    display: none;
  }
}

.-onlySp {
  display: none;
}
@media screen and (max-width: 800px) {
  .-onlySp {
    display: block;
  }
}/*# sourceMappingURL=common.css.map */