  @charset "UTF-8";
/* ============================================ */
/* アニメ 動作指定
/* ============================================ */
/* ================================================== */
/* 汎用アニメーション */
/* ================================================== */
/* ===== フェードイン ===== */
.fx-fadein {
  opacity: 0;
}

.fx-fadein.active {
  animation: fadein 0.8s both;
}

.fx-bottom-fadein {
  opacity: 0;
}

.fx-bottom-fadein.active {
  animation: bottom-fadein 0.8s both;
}

.fx-top-fadein {
  opacity: 0;
}

.fx-top-fadein.active {
  animation: top-fadein 0.8s both;
}

.fx-left-fadein {
  opacity: 0;
}

.fx-left-fadein.active {
  animation: left-fadein 0.8s both;
}

.fx-right-fadein {
  opacity: 0;
}

.fx-right-fadein.active {
  animation: right-fadein 0.8s both;
}

.fx-big-fadein {
  opacity: 0;
}

.fx-big-fadein.active {
  animation: big-fadein 0.8s both;
}

.fx-small-fadein {
  opacity: 0;
}

.fx-small-fadein.active {
  animation: small-fadein 0.8s both;
}

/*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.active:nth-child(1) {
  animation-delay: 0.25s;
}
.fx-order.active:nth-child(2) {
  animation-delay: 0.5s;
}
.fx-order.active:nth-child(3) {
  animation-delay: 0.75s;
}
.fx-order.active:nth-child(4) {
  animation-delay: 1s;
}
.fx-order.active:nth-child(5) {
  animation-delay: 1.25s;
}
.fx-order.active:nth-child(6) {
  animation-delay: 1.5s;
}
.fx-order.active:nth-child(7) {
  animation-delay: 1.75s;
}
.fx-order.active:nth-child(8) {
  animation-delay: 2s;
}
.fx-order.active:nth-child(9) {
  animation-delay: 2.25s;
}
.fx-order.active:nth-child(10) {
  animation-delay: 2.5s;
}

/* ================================================== */
/* 追加 */
/* ================================================== */
/* --- 下線  ---*/
.fx-underline {
  background-image: linear-gradient(90deg, #000, #000);
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: 0 2px;
  padding-bottom: 0;
}

.fx-underline.active {
  animation: underline 1.3s both;
}

@keyframes underline {
  from {
    background-size: 0 2px;
  }
  to {
    background-size: 100% 2px;
  }
}
/* --- 1文字づつ  ---*/
.fx-text-one span {
  opacity: 0;
  display: inline-block;
}

.fx-text-one span.active {
  animation: text-one 1.3s ease both;
}

@keyframes text-one {
  from {
    opacity: 0;
    transform: scale(1) rotate(0deg) translateX(-0.2em);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg) translateX(0);
  }
}
/* --- 1文字づつ（キャッチコピー用）  ---*/
.fx-text-catch .anime-item {
  opacity: 0;
  display: inline-block;
}

.fx-text-catch .anime-item.active {
  animation: text-catch 1s ease both;
}

@keyframes text-catch {
  from {
    opacity: 0;
    transform: scale(1.05) rotate(0deg) translateX(-5%);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg) translateX(0);
  }
}
/* --- ポップアップ（人物イラスト用）  ---*/
.fx-popup {
  opacity: 0;
}

.fx-popup.active {
  animation: popup 0.8s ease-out both;
}

@keyframes popup {
  0% {
    opacity: 0;
    transform: translateY(15%);
  }
  50% {
    transform: translateY(-3%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* --- 拡大（スピード早）  ---*/
.fx-big2-fadein {
  opacity: 0;
}

.fx-big2-fadein.active {
  animation: big-fadein 0.3s ease-out both;
}

/* --- 画像ズームイン（少しずつ）  ---*/
.fx-zoomin::before {
  transform: scale(1.1);
}

.fx-zoomin.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-img-slide-left {
  position: relative;
  overflow: hidden;
}
.fx-img-slide-left::before {
  background: #fff;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  height: calc(100% + 1px); /*Firefoxバグ対策*/
  z-index: 1;
}
.fx-img-slide-left.active::before {
  animation: img-slide-left 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.fx-img-slide-left.fx-duration75.active::before {
  animation-duration: 0.75s;
}

@keyframes img-slide-left {
  100% {
    transform: translateX(100%);
  }
}
/* --- 画像徐々にオープン（右）  ---*/
.fx-img-slide-right {
  position: relative;
  overflow: hidden;
}
.fx-img-slide-right::before {
  background: #fff;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  height: calc(100% + 1px); /*Firefoxバグ対策*/
  z-index: 1;
}
.fx-img-slide-right.active::before {
  animation: img-slide-right 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes img-slide-right {
  100% {
    transform: translateX(-100%);
  }
}

/*# sourceMappingURL=anime.css.map */
