/*--------------------------------
全ページ共通
--------------------------------*/

html {
  font-size: 62.5%;
}

body {
  font-family: maru-maru-gothic-clr-stdn, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #3E3A39;
  line-height: 2;
  letter-spacing: 0.06em;
  font-size: 1.8rem;
  min-width: 350px;
}

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

.section {
  margin-top: 8rem;
}

.section-ttl{
  text-align: center;
}

.section-ttl h2, .first-ttl h2 {
  font-size: 4rem;
  text-align: center;
}

.sp-br {
  display: none;
}


@media screen and (max-width: 767px) {

  body {
    font-size: 1.6rem;
    line-height: 1.5;
  }

  .section {
    margin-top: 5rem;
  }

  .section-ttl h2, .first-ttl h2 {
    font-size: 1.6rem;
  }

  .pc-br {
    display: none;
  }

  .sp-br {
    display: block;
  }
}


/* ----------下からふわっと---------- */

.element {
  /* 最初は非表示 */
  transform: translateY(30px);
  opacity: 0;
  visibility: hidden;
  transition: transform 1s, opacity 1s, visibility 1s;
}

/* フェードイン時に入るクラス */
.is-fadein {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}



/* loading */

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #F9F8F4;
  z-index: 999;
  animation: lodanimetion1 3000ms ease-out forwards;
}

.loading .logo-loading {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 102px;
  height: 92px;
  opacity: 0;
  transform: scale(0.8);
  transform-origin: center;
  animation: lodanimetion 2000ms ease-out forwards;
}


@keyframes lodanimetion1 {
  from, to {
    opacity: 1;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}



@keyframes lodanimetion {
  from, to {
    opacity: 0;
    background-color: #F9F8F4;
  }

  50% {
    opacity: 1;
    transform: scale(1);
    background-color: #F9F8F4;

  }

  80% {
    opacity: 0;
    transform: scale(1.25);
  }
}



/*========= 1文字ずつ出現させるためのCSS ===============*/

.eachTextAnime span {
  opacity: 0;
}
.eachTextAnime1 span {
  opacity: 0;
}

.eachTextAnime.appeartext span {
  animation: text_anime_on .1s linear forwards;
}


@keyframes text_anime_on {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.eachTextAnime {
  font-size: 4.5rem;
  text-align: center;
  line-height: normal;
  letter-spacing: .1em;
}
.eachTextAnime1 {
  font-size: 2rem;
  text-align: center;
  line-height: normal;
}


@media screen and (max-width:767px) {
  .eachTextAnime {
    font-size: 2.6rem;
  }
}

