/* Scss Document */
.btn-view {
  text-align: center;
}
.btn-view a {
  padding: 0.5em 0;
  border: solid 1px rgba(0, 0, 0, 0.3);
  display: inline-block;
  font-size: 1.8rem;
  font-family: "Akshar", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.2em;
  width: 19rem;
  line-height: 1.2;
  transition: 0.5s cubic-bezier(0.45, 0, 0.55, 1);
  position: relative;
  overflow: hidden;
  background: url(../img/common/arrow_k_r.png) no-repeat right 1em center;
  background-size: 2rem auto;
}
@media only screen and (max-width: 640px) {
  .btn-view a {
    width: calc(280 / 760 * 100vw);
    font-size: calc(30 / 760 * 100vw);
    background: url(../img/common/arrow_k_r.png) no-repeat right calc(20 / 760 * 100vw) center;
    background-size: calc(30 / 760 * 100vw);
  }
}
.btn-view a span {
  position: relative;
  color: #000;
  z-index: 1;
  transition: color 0.5s ease;
}
.btn-view a::after {
  content: "";
  position: absolute;
  background: #000 url(../img/common/arrow_w_r.png) no-repeat right 1em center;
  background-size: 2rem auto;
  width: 101%;
  height: 100%;
  top: 0;
  left: 0;
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: 0.5s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: 0;
}
@media only screen and (max-width: 640px) {
  .btn-view a::after {
    background: #000 url(../img/common/arrow_w_r.png) no-repeat right calc(20 / 760 * 100vw) center;
    background-size: calc(30 / 760 * 100vw);
  }
}
.btn-view a:hover {
  opacity: 1;
}
.btn-view a:hover span {
  color: #fff;
}
.btn-view a:hover::after {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.animation {
  opacity: 0;
}

.-mask {
  overflow: hidden;
}

.-fade {
  transform: translate(0, 40px);
}

.-fade02 {
  position: relative;
  overflow: hidden;
  opacity: 0;
}
.-fade02::before, .-fade02::after {
  content: "";
  background: #fff;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 1;
}

.-blur {
  filter: blur(0.25em);
  opacity: 0;
}

.isPlay.-mask {
  animation-name: play;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.8, 0, 0.5, 1);
  position: relative;
  opacity: 1 !important;
}
.isPlay.-fade {
  opacity: 1;
  transform: translate(0, 0);
  transition: 1s;
}
.isPlay.-fade02 {
  opacity: 1;
}
.isPlay.-fade02::after {
  opacity: 0;
  left: 100%;
  transition: 2s;
}
.isPlay.-fade02::before {
  opacity: 0;
  left: 100%;
  transition: 1s;
}
.isPlay.-blur {
  transition: 2s;
  filter: blur(0);
  opacity: 1;
}

.-parallax {
  overflow: hidden;
}
.-parallax > .-parallax-child {
  position: relative;
  transform: translateY(20px);
  width: auto;
  min-height: 150%;
  object-fit: cover;
  will-change: transform;
}

.eachTextAnime {
  white-space: pre-wrap;
}
.eachTextAnime.appeartext span {
  animation: text_anime_on 1s cubic-bezier(0.07, 0.64, 0.3, 0.94) forwards;
}
.eachTextAnime span {
  display: inline-block;
  position: relative;
  opacity: 0;
}

@keyframes text_anime_on {
  0% {
    top: 1em;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
@keyframes img_anime_on {
  0% {
    top: 1em;
    opacity: 0;
  }
  100% {
    top: 0;
    opacity: 1;
  }
}
.shadow {
  box-shadow: 0 0.3rem 1.2rem 0 rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 640px) {
  .shadow {
    box-shadow: 0 calc(5 / 760 * 100vw) calc(12 / 760 * 100vw) 0 rgba(0, 0, 0, 0.2);
  }
}

.mt-10 {
  margin-top: 1rem;
}
@media only screen and (max-width: 640px) {
  .mt-10 {
    margin-top: calc(10 / 760 * 100vw);
  }
}

.mt-15 {
  margin-top: 1.5rem;
}
@media only screen and (max-width: 640px) {
  .mt-15 {
    margin-top: calc(10 / 760 * 100vw);
  }
}

.mt-20 {
  margin-top: 2rem;
}
@media only screen and (max-width: 640px) {
  .mt-20 {
    margin-top: calc(15 / 760 * 100vw);
  }
}

.mt-25 {
  margin-top: 2.5rem;
}
@media only screen and (max-width: 640px) {
  .mt-25 {
    margin-top: calc(25 / 760 * 100vw);
  }
}

.mt-30 {
  margin-top: 3rem;
}
@media only screen and (max-width: 640px) {
  .mt-30 {
    margin-top: calc(30 / 760 * 100vw);
  }
}

.mt-35 {
  margin-top: 3.5rem;
}
@media only screen and (max-width: 640px) {
  .mt-35 {
    margin-top: calc(30 / 760 * 100vw);
  }
}

.mt-40 {
  margin-top: 4rem;
}
@media only screen and (max-width: 640px) {
  .mt-40 {
    margin-top: calc(30 / 760 * 100vw);
  }
}

.mt-45 {
  margin-top: 4.5rem;
}
@media only screen and (max-width: 640px) {
  .mt-45 {
    margin-top: calc(30 / 760 * 100vw);
  }
}

.mt-50 {
  margin-top: 5rem;
}
@media only screen and (max-width: 640px) {
  .mt-50 {
    margin-top: calc(40 / 760 * 100vw);
  }
}

.mt-55 {
  margin-top: 5.5rem;
}
@media only screen and (max-width: 640px) {
  .mt-55 {
    margin-top: calc(50 / 760 * 100vw);
  }
}

.mt-60 {
  margin-top: 6rem;
}
@media only screen and (max-width: 640px) {
  .mt-60 {
    margin-top: calc(65 / 760 * 100vw);
  }
}

.mt-65 {
  margin-top: 6.5rem;
}
@media only screen and (max-width: 640px) {
  .mt-65 {
    margin-top: calc(65 / 760 * 100vw);
  }
}

.mt-70 {
  margin-top: 7rem;
}
@media only screen and (max-width: 640px) {
  .mt-70 {
    margin-top: calc(70 / 760 * 100vw);
  }
}

.mt-75 {
  margin-top: 7.5rem;
}
@media only screen and (max-width: 640px) {
  .mt-75 {
    margin-top: calc(90 / 760 * 100vw);
  }
}

.mt-80 {
  margin-top: 8rem;
}
@media only screen and (max-width: 640px) {
  .mt-80 {
    margin-top: calc(80 / 760 * 100vw);
  }
}

.mt-90 {
  margin-top: 9rem;
}
@media only screen and (max-width: 640px) {
  .mt-90 {
    margin-top: calc(90 / 760 * 100vw);
  }
}

.mb-35 {
  margin-bottom: 3.5rem;
}
@media only screen and (max-width: 640px) {
  .mb-35 {
    margin-bottom: calc(20 / 760 * 100vw);
  }
}

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

.l-left {
  text-align: left !important;
}

label.error {
  color: #c00;
  font-weight: 400;
  display: none;
  margin-left: 0.5em;
}/*# sourceMappingURL=module.css.map */