@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Noto+Sans+JP:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
/*全共通*/
.red {
  color: #cf5757 !important;
}

.slide-in {
  overflow: hidden;
  display: inline-block;
}

.slide-in_inner {
  display: inline-block;
}

/*左右のアニメーション*/
.leftAnime {
  opacity: 0;
  /*事前に透過0にして消しておく*/
}

.slideAnimeLeftRight {
  animation-name: slideTextX100;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX100 {
  from {
    transform: translateX(-100%);
    /*要素を左の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}
.slideAnimeRightLeft {
  animation-name: slideTextX-100;
  animation-duration: 1.2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes slideTextX-100 {
  from {
    transform: translateX(100%);
    /*要素を右の枠外に移動*/
    opacity: 0;
  }
  to {
    transform: translateX(0);
    /*要素を元の位置に移動*/
    opacity: 1;
  }
}
@keyframes bgchange {
  0% {
    background: #dae2e3;
  }
  /*変化させたい色*/
  15% {
    background: rgb(180, 208, 210);
  }
  /*変化させたい色*/
  35% {
    background: rgb(192, 180, 210);
  }
  /*変化させたい色*/
  45% {
    background: rgb(214, 193, 211);
  }
  /*変化させたい色*/
  65% {
    background: rgb(214, 193, 193);
  }
  80% {
    background: rgb(250, 228, 202);
  }
  90% {
    background: rgb(202, 230, 218);
  }
  /*変化させたい色*/
  100% {
    background: rgb(180, 208, 210);
  }
  /*変化させたい色*/
}
@keyframes fluidrotate {
  0%, 100% {
    border-radius: 63% 37% 54% 46%/55% 48% 52% 45%;
  }
  14% {
    border-radius: 40% 60% 54% 46%/49% 60% 40% 51%;
  }
  28% {
    border-radius: 54% 46% 38% 62%/49% 70% 30% 51%;
  }
  42% {
    border-radius: 61% 39% 55% 45%/61% 38% 62% 39%;
  }
  56% {
    border-radius: 61% 39% 67% 33%/70% 50% 50% 30%;
  }
  70% {
    border-radius: 50% 50% 34% 66%/56% 68% 32% 44%;
  }
  84% {
    border-radius: 46% 54% 50% 50%/35% 61% 39% 65%;
  }
}
@media screen and (max-width: 870px) {
  .openbtn {
    position: relative;
    /*ボタン内側の基点となるためrelativeを指定*/
    width: 50px;
    height: 50px;
    border-radius: 5px;
  }
  /*ボタン内側*/
  .openbtn span {
    display: inline-block;
    transition: all 0.4s;
    /*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background: rgba(0, 0, 0, 0.84);
    width: 48%;
  }
  .openbtn span:nth-of-type(1) {
    top: 18px;
  }
  .openbtn span:nth-of-type(2) {
    top: 25px;
  }
  .openbtn span:nth-of-type(3) {
    top: 32px;
  }
  /*activeクラスが付与されると線が回転して×に*/
  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
    /*真ん中の線は透過*/
  }
  .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
  #mobileMenu {
    display: none;
    margin-top: 90px;
    height: calc(100vh - 90px);
    color: rgba(0, 0, 0, 0.84);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #f8f8f8;
    z-index: 999;
    overflow: hidden;
  }
  #mobileMenu .container {
    width: 90%;
    margin: 0 auto;
  }
  #mobileMenu ul li {
    margin: 30px 0;
    text-align: left;
  }
  #mobileMenu ul li a {
    color: rgba(0, 0, 0, 0.84);
    font-size: 1.4rem;
    font-weight: 800;
  }
  #mobileMenu .btn {
    display: inline-block;
  }
  #mobileMenu.active {
    display: block;
  }
}/*# sourceMappingURL=menu.css.map */