@charset "UTF-8";
/* ============================================ */
/* アニメ 動作指定
/* ============================================ */
/* ================================================== */
/* 汎用アニメーション */
/* ================================================== */
/* ===== フェードイン ===== */
.fx-fadein {
  opacity: 0;
}

.fx-fadein.is-active {
  animation: fadein 0.8s both cubic-bezier(0.4, 0, 0.2, 1);
}

.fx-bottom-fadein {
  opacity: 0;
}

.fx-bottom-fadein.is-active {
  animation: bottom-fadein 0.8s both cubic-bezier(0.4, 0, 0.2, 1);
}

.fx-top-fadein {
  opacity: 0;
}

.fx-top-fadein.is-active {
  animation: top-fadein 0.8s both cubic-bezier(0.4, 0, 0.2, 1);
}

.fx-left-fadein {
  opacity: 0;
}

.fx-left-fadein.is-active {
  animation: left-fadein 0.8s both cubic-bezier(0.4, 0, 0.2, 1);
}

.fx-right-fadein {
  opacity: 0;
}

.fx-right-fadein.is-active {
  animation: right-fadein 0.8s both cubic-bezier(0.4, 0, 0.2, 1);
}

.fx-big-fadein {
  opacity: 0;
}

.fx-big-fadein.is-active {
  animation: big-fadein 0.8s both cubic-bezier(0.4, 0, 0.2, 1);
}

.fx-small-fadein {
  opacity: 0;
}

.fx-small-fadein.is-active {
  animation: small-fadein 0.8s both cubic-bezier(0.4, 0, 0.2, 1);
}

/*keyframes*/
@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes bottom-fadein {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes top-fadein {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes left-fadein {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes right-fadein {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes big-fadein {
  from {
    opacity: 0;
    transform: scale(0.9) rotate(0deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}
@keyframes small-fadein {
  from {
    opacity: 0;
    transform: scale(1.1) rotate(0deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}
/* ================================================== */
/* 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-delay125 {
  transition-delay: 1.25s !important;
  animation-delay: 1.25s !important;
}

.fx-delay150 {
  transition-delay: 1.5s !important;
  animation-delay: 1.5s !important;
}

.fx-delay175 {
  transition-delay: 1.75s !important;
  animation-delay: 1.75s !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-order.is-active:nth-child(1) {
  animation-delay: 0.25s;
}
.fx-order.is-active:nth-child(2) {
  animation-delay: 0.5s;
}
.fx-order.is-active:nth-child(3) {
  animation-delay: 0.75s;
}
.fx-order.is-active:nth-child(4) {
  animation-delay: 1s;
}
.fx-order.is-active:nth-child(5) {
  animation-delay: 1.25s;
}
.fx-order.is-active:nth-child(6) {
  animation-delay: 1.5s;
}
.fx-order.is-active:nth-child(7) {
  animation-delay: 1.75s;
}
.fx-order.is-active:nth-child(8) {
  animation-delay: 2s;
}
.fx-order.is-active:nth-child(9) {
  animation-delay: 2.25s;
}
.fx-order.is-active:nth-child(10) {
  animation-delay: 2.5s;
}

/* ================================================== */
/* 追加
/* ================================================== */
/* --- index キャッチエフェクト ---*/
.fx-text-catch::before {
  transform: scaleX(0);
  transform-origin: left center;
}
.fx-text-catch.is-active::before {
  animation: catch-band 0.6s ease-out both;
}
.fx-text-catch .anime-item {
  opacity: 0;
  display: inline-block;
  transform-origin: center bottom;
}
.fx-text-catch .anime-item.is-active {
  animation: catch-text 0.8s ease-out both 0.3s;
}

@keyframes catch-text {
  from {
    opacity: 0;
    transform: scale(1) rotateX(-180deg) translateY(0);
  }
  to {
    opacity: 1;
    transform: scale(1) rotateX(0deg) translateY(0);
  }
}
@keyframes catch-band {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
/* --- ぽよんと弾む  ---*/
.fx-bounce.is-active {
  animation: bounce 0.8s;
}

@keyframes bounce {
  0% {
    transform: scale(1, 1) translate(0%, 0%);
  }
  15% {
    transform: scale(0.9, 0.9) translate(0%, 5%);
  }
  30% {
    transform: scale(1.3, 0.8) translate(0%, 10%);
  }
  50% {
    transform: scale(0.8, 1.3) translate(0%, -10%);
  }
  70% {
    transform: scale(1.1, 0.9) translate(0%, 5%);
  }
  100% {
    transform: scale(1, 1) translate(0%, 0%);
  }
}
/* --- ふわふわ上下 (常時)   ---*/
.fx-fuwafuwa {
  animation: fuwafuwa 1.2s ease-in-out infinite alternate-reverse;
}

@keyframes fuwafuwa {
  0% {
    transform: translateY(-10%);
  }
  100% {
    transform: translateY(10%);
  }
}
/* --- ゆらゆら揺れる (常時)  ---*/
.fx-swing01 {
  transform-origin: center bottom;
  animation: swing01 4s infinite;
}

@keyframes swing01 {
  0%, 100% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(-10deg);
  }
}
.fx-swing02 {
  transform-origin: center bottom;
  animation: swing02 4s infinite;
}

@keyframes swing02 {
  0%, 100% {
    transform: rotate(-10deg);
  }
  50% {
    transform: rotate(10deg);
  }
}
/* ---  傾く（左） --- */
.fx-slope-left:after {
  opacity: 0;
}

.fx-slope-left.is-active:after {
  animation: slope-left 0.3s ease 0.4s both;
  opacity: 1;
}

@keyframes slope-left {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-4deg);
  }
}
/* --- 傾く（右） --- */
.fx-slope-right:after {
  opacity: 0;
}

.fx-slope-right.is-active:after {
  animation: slope-right 0.3s ease 0.4s both;
  opacity: 1;
}

@keyframes slope-right {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(4deg);
  }
}
/* --- 背景画像ズームイン（少しずつ）  ---*/
.fx-zoomin::before {
  transform: scale(1.1);
}

.fx-zoomin.is-active::before {
  transform: scale(1.1);
  animation: zoomin 2s ease-out 0s 1 normal both;
}

@keyframes zoomin {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
/* --- スピード変更  --- */
.fx-big-fadein2 {
  opacity: 0;
}

.fx-big-fadein2.is-active {
  animation: big-fadein 0.3s both;
}

/* --- 角度変更（個別インタビュー） --- */
.fx-left-fadein2 {
  opacity: 0;
}

.fx-left-fadein2.is-active {
  animation: left-fadein2 0.8s both cubic-bezier(0.4, 0, 0.2, 1);
}

.fx-right-fadein2 {
  opacity: 0;
}

.fx-right-fadein2.is-active {
  animation: right-fadein2 0.8s both cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes left-fadein2 {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0) rotate(-5deg);
  }
}
@keyframes right-fadein2 {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0) rotate(3deg);
  }
}

/*# sourceMappingURL=anime.css.map */
