@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;700&display=swap");
body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2vw;
  line-height: 2.4vw;
  letter-spacing: 1.5px;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.d-block {
  display: block;
}

.t-underline {
  text-decoration: underline;
}

.t-center {
  text-align: center;
}

.t-right {
  text-align: right;
}

.f-min {
  font-family: "Noto Serif JP", serif;
}

.f-italic {
  font-style: italic;
}

.f-xs {
  font-size: 0.8vw;
  line-height: 1.8vw;
}

.f-s {
  font-size: 1vw;
  line-height: 2vw;
}

.f-m {
  font-size: 1.2vw;
  line-height: 2.4vw;
}

.f-l {
  font-size: 2.8vw;
  line-height: 3.8vw;
}

.f-xl {
  font-size: 3.4vw;
  line-height: 4.4vw;
}

.f-700 {
  font-weight: 700;
}

.f-500 {
  font-weight: 500;
}

.f-300 {
  font-weight: 300;
}

.m-lr {
  margin-left: auto;
  margin-right: auto;
}

.m-b15 {
  margin-bottom: 1.5%;
}

.m-b25 {
  margin-bottom: 2.5%;
}

.m-b5 {
  margin-bottom: 5%;
}

.m-b75 {
  margin-bottom: 7.5%;
}

.m-b10 {
  margin-bottom: 10%;
}

.m-t15 {
  margin-top: 1.5%;
}

.m-t25 {
  margin-top: 2.5%;
}

.m-t5 {
  margin-top: 5%;
}

.m-t75 {
  margin-top: 7.5%;
}

.m-t10 {
  margin-top: 10%;
}

.p-25 {
  padding: 2.5%;
}

.p-5 {
  padding: 5%;
}

.p-10 {
  padding: 10%;
}

.p-b25 {
  padding-bottom: 2.5%;
}

.p-b5 {
  padding-bottom: 5%;
}

.p-b10 {
  padding-bottom: 10%;
}

.p-b15 {
  padding-bottom: 15%;
}

.p-t25 {
  padding-top: 2.5%;
}

.p-t5 {
  padding-top: 5%;
}

.p-t10 {
  padding-top: 10%;
}

.p-t15 {
  padding-top: 15%;
}

.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.img-blur {
  opacity: 0;
  -webkit-transition: -webkit-transform 0.5s linear;
  transition: -webkit-transform 0.5s linear;
  transition: transform 0.5s linear;
  transition: transform 0.5s linear, -webkit-transform 0.5s linear;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.img-blur-on {
  -webkit-animation-name: imageBlur;
  animation-name: imageBlur;
  opacity: 1;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}

@-webkit-keyframes imageBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    -o-filter: blur(15px);
    filter: blur(15px);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}
@keyframes imageBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    -o-filter: blur(15px);
    filter: blur(15px);
  }
  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}
.fadein {
  opacity: 0;
  -webkit-transform: translate(0, 50px);
          transform: translate(0, 50px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.fadein.scrollin {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

/* fadeUp */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger {
  opacity: 0;
}

@media (max-width: 739px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  body {
    font-size: 3.8vw;
    line-height: 5.8vw;
  }
  .f-xs {
    font-size: 2.6vw;
    line-height: 4.6vw;
  }
  .f-s {
    font-size: 3.2vw;
    line-height: 5.2vw;
  }
  .f-m {
    font-size: 3.8vw;
    line-height: 5.8vw;
  }
  .f-l {
    font-size: 6vw;
    line-height: 8vw;
  }
  .f-xl {
    font-size: 7vw;
    line-height: 9vw;
  }
  .m-b15 {
    margin-bottom: 2.5%;
  }
  .m-b25 {
    margin-bottom: 5%;
  }
  .m-b5 {
    margin-bottom: 7.5%;
  }
  .m-b75 {
    margin-bottom: 10%;
  }
  .m-b10 {
    margin-bottom: 12.5%;
  }
  .m-t15 {
    margin-top: 2.5%;
  }
  .m-t25 {
    margin-top: 5%;
  }
  .m-t5 {
    margin-top: 7.5%;
  }
  .m-t75 {
    margin-top: 10%;
  }
  .m-t10 {
    margin-top: 12.5%;
  }
  .p-b25 {
    padding-bottom: 5%;
  }
  .p-b5 {
    padding-bottom: 7.5%;
  }
  .p-b10 {
    padding-bottom: 12.5%;
  }
  .p-b15 {
    padding-bottom: 17.5%;
  }
  .p-t25 {
    padding-top: 5%;
  }
  .p-t5 {
    padding-top: 7.5%;
  }
  .p-t10 {
    padding-top: 12.5%;
  }
  .p-t15 {
    padding-top: 17.5%;
  }
}/*# sourceMappingURL=style-base.css.map */