@charset "UTF-8";
/* ================================================== */
/* delay/duration設定 */
/* ================================================== */
.fx-delay25 {
  transition-delay: 0.25s !important;
  animation-delay: 0.25s !important;
}

.fx-delay50 {
  transition-delay: 0.5s !important;
  animation-delay: 0.5s !important;
}

.fx-delay75 {
  transition-delay: 0.75s !important;
  animation-delay: 0.75s !important;
}

.fx-delay100 {
  transition-delay: 1s !important;
  animation-delay: 1s !important;
}

.fx-delay150 {
  transition-delay: 1.5s !important;
  animation-delay: 1.5s !important;
}

.fx-delay200 {
  transition-delay: 2s !important;
  animation-delay: 2s !important;
}

.fx-delay250 {
  transition-delay: 2.5s !important;
  animation-delay: 2.5s !important;
}

.fx-delay300 {
  transition-delay: 3s !important;
  animation-delay: 3s !important;
}

.fx-duration25 {
  animation-duration: 0.25s !important;
}

.fx-duration50 {
  animation-duration: 0.5s !important;
}

.fx-duration75 {
  animation-duration: 0.75s !important;
}

.fx-duration100 {
  animation-duration: 1s !important;
}

.fx-duration150 {
  animation-duration: 1.5s !important;
}

.fx-duration200 {
  animation-duration: 2s !important;
}

.fx-duration250 {
  animation-duration: 2.5s !important;
}

.fx-duration300 {
  animation-duration: 3s !important;
}

/* ================================================== */
/* 汎用アニメーション */
/* ================================================== */
/* ===== フェードイン ===== */
.fx-fadein {
  opacity: 0;
}

.fx-fadein.active {
  opacity: 1;
  animation: fadein 1s both;
}

.fx-bottom-fadein {
  opacity: 0;
}

.fx-bottom-fadein.active {
  animation: bottom-fadein 1s both;
}

.fx-left-fadein {
  opacity: 0;
}

.fx-left-fadein.active {
  animation: left-fadein 1s both;
}

.fx-right-fadein {
  opacity: 0;
}

.fx-right-fadein.active {
  animation: right-fadein 1s both;
}

/*keyframes*/
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes bottom-fadein {
  from {
    opacity: 0;
    transform: translateY(50px);
    transition: 0.5s ease;
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes left-fadein {
  from {
    opacity: 0;
    transform: translateX(-50px);
    transition: 0.5s ease;
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes right-fadein {
  from {
    opacity: 0;
    transform: translateX(50px);
    transition: 0.5s ease;
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* ===== ロールイン ===== */
.fx-rollin-wrap {
  overflow: hidden;
}

.fx-rollin {
  opacity: 0;
}

.fx-rollin.active {
  position: relative;
  opacity: 1 !important;
  transition: var(--transition);
}
.fx-rollin.active::after {
  animation-name: rollOut;
  animation-duration: 0.8s;
  animation-delay: 0;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
}

@keyframes rollOut {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(100%);
  }
}
/* ===== ズームイン ===== */
.fx-bg-focus {
  overflow: hidden;
}
.fx-bg-focus::before {
  transition: 1s;
  transform: scale(1.1);
  opacity: 0;
}

.fx-bg-focus.active::before {
  transform: scale(1);
  opacity: 1;
}

/* ================================================== */
/* ホバーエフェクト */
/* ================================================== */
/* ===== ホーバーズーム ===== */
@media screen and (min-width: 1025px) {
  .fx-bg-zoom {
    overflow: hidden;
  }
  .fx-bg-zoom::before {
    transition: var(--transition);
  }
  .fx-bg-zoom:hover::before {
    transform: scale(1.1);
  }
  a .fx-bg-zoom {
    overflow: hidden;
  }
  a .fx-bg-zoom::before {
    transition: var(--transition);
  }
  a:hover .fx-bg-zoom::before {
    transform: scale(1.1);
  }
}
/* ================================================== */
/* 見出し用 */
/* ================================================== */
.fx-title span {
  transform: translateX(-20px);
  opacity: 0;
}

.fx-title.active span {
  display: inline-block;
  animation: title 1.2s ease-out forwards;
}
.fx-title.active span:nth-child(1) {
  animation-delay: 0.1s;
  -webkit-animation-delay: 0.1s;
}
.fx-title.active span:nth-child(2) {
  animation-delay: 0.2s;
  -webkit-animation-delay: 0.2s;
}
.fx-title.active span:nth-child(3) {
  animation-delay: 0.3s;
  -webkit-animation-delay: 0.3s;
}
.fx-title.active span:nth-child(4) {
  animation-delay: 0.4s;
  -webkit-animation-delay: 0.4s;
}
.fx-title.active span:nth-child(5) {
  animation-delay: 0.5s;
  -webkit-animation-delay: 0.5s;
}
.fx-title.active span:nth-child(6) {
  animation-delay: 0.6s;
  -webkit-animation-delay: 0.6s;
}
.fx-title.active span:nth-child(7) {
  animation-delay: 0.7s;
  -webkit-animation-delay: 0.7s;
}
.fx-title.active span:nth-child(8) {
  animation-delay: 0.8s;
  -webkit-animation-delay: 0.8s;
}
.fx-title.active span:nth-child(9) {
  animation-delay: 0.9s;
  -webkit-animation-delay: 0.9s;
}
.fx-title.active span:nth-child(10) {
  animation-delay: 1s;
  -webkit-animation-delay: 1s;
}
.fx-title.active span:nth-child(11) {
  animation-delay: 1.1s;
  -webkit-animation-delay: 1.1s;
}
.fx-title.active span:nth-child(12) {
  animation-delay: 1.2s;
  -webkit-animation-delay: 1.2s;
}
.fx-title.active span:nth-child(13) {
  animation-delay: 1.3s;
  -webkit-animation-delay: 1.3s;
}
.fx-title.active span:nth-child(14) {
  animation-delay: 1.4s;
  -webkit-animation-delay: 1.4s;
}
.fx-title.active span:nth-child(15) {
  animation-delay: 1.5s;
  -webkit-animation-delay: 1.5s;
}
.fx-title.active span:nth-child(16) {
  animation-delay: 1.6s;
  -webkit-animation-delay: 1.6s;
}
.fx-title.active span:nth-child(17) {
  animation-delay: 1.7s;
  -webkit-animation-delay: 1.7s;
}
.fx-title.active span:nth-child(18) {
  animation-delay: 1.8s;
  -webkit-animation-delay: 1.8s;
}
.fx-title.active span:nth-child(19) {
  animation-delay: 1.9s;
  -webkit-animation-delay: 1.9s;
}
.fx-title.active span:nth-child(20) {
  animation-delay: 2s;
  -webkit-animation-delay: 2s;
}
.fx-title.active span:nth-child(21) {
  animation-delay: 2.1s;
  -webkit-animation-delay: 2.1s;
}
.fx-title.active span:nth-child(22) {
  animation-delay: 2.2s;
  -webkit-animation-delay: 2.2s;
}
.fx-title.active span:nth-child(23) {
  animation-delay: 2.3s;
  -webkit-animation-delay: 2.3s;
}
.fx-title.active span:nth-child(24) {
  animation-delay: 2.4s;
  -webkit-animation-delay: 2.4s;
}
.fx-title.active span:nth-child(25) {
  animation-delay: 2.5s;
  -webkit-animation-delay: 2.5s;
}
.fx-title.active span:nth-child(26) {
  animation-delay: 2.6s;
  -webkit-animation-delay: 2.6s;
}
.fx-title.active span:nth-child(27) {
  animation-delay: 2.7s;
  -webkit-animation-delay: 2.7s;
}
.fx-title.active span:nth-child(28) {
  animation-delay: 2.8s;
  -webkit-animation-delay: 2.8s;
}
.fx-title.active span:nth-child(29) {
  animation-delay: 2.9s;
  -webkit-animation-delay: 2.9s;
}
.fx-title.active span:nth-child(30) {
  animation-delay: 3s;
  -webkit-animation-delay: 3s;
}

@keyframes title {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/*# sourceMappingURL=anime.css.map */
