@charset "UTF-8";
/* common */

body {
  -webkit-text-size-adjust: none;
  background-color: #faf9f4;
  color: #333;
  line-height: 1.7;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 500;
  width: 100%;
  height: 100%;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #333;
}

@media screen and (max-width:767px) {
  body {
    font-size: 4.266666666666667vw;
  }
}

* {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  tap-highlight-color: rgba(0, 0, 0, 0);
  outline: none;
}

img {
  /* width: 100%; */
  image-rendering: -moz-crisp-edges;
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  -ms-interpolation-mode: nearest-neighbor;
}

.is-bold {
  font-weight: 800;
}

.is-hide {
  display: none;
}

/* ----------------------------------------------------------アニメーション*/
/* fadeup */
.fadeup {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translate(0, 30px);
  -webkit-transform-style: preserve-3d;
  backface-visibility: hidden;
  filter: alpha(opacity=0);
  opacity: 0;
  transform: translate(0, 30px);
  transform-style: preserve-3d;
  -webkit-transition: all .8s linear 0s;
  -ms-transition: all .8s linear 0s;
  -moz-transition: all .8s linear 0s;
  transition: all .8s linear 0s;
}

.fadeup.is-active {
  -webkit-transform: translate(0, 0);
  filter: alpha(opacity=100);
  opacity: 1;
  transform: translate(0, 0);
}


/* fadein */
.fadein {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  -webkit-transition: all .8s linear 0s;
  -ms-transition: all .8s linear 0s;
  -moz-transition: all .8s linear 0s;
  transition: all .8s linear 0s;
}

.fadein.is-active {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=1);
  opacity: 1;
}
