@charset "utf-8";



/* ==================================

上下左右にフェードイン

================================== */

/* 左から右へ速く */
.fade-right-fast {
	opacity: 0;
	transform: translate(-100px, 0);
	transition: all 500ms;
}

.scroll-right-fast {
	opacity: 1;
	transform: translate(0, 0);
}


/* 右から左へ速く */
.fade-left-fast {
	opacity: 0;
	transform: translate(100px, 0);
	transition: all 500ms;
}

.scroll-left-fast {
	opacity: 1;
	transform: translate(0, 0);
}


/* 上から下へ速く */
.fade-bottom-fast {
	opacity: 0;
	transform: translate(0, -100px);
	transition: all 500ms;
}

.scroll-bottom-fast {
	opacity: 1;
	transform: translate(0, 0);
}


/* 下から上へ速く */
.fade-top-fast {
	opacity: 0;
	transform: translate(0, 100px);
	transition: all 500ms;
}

.scroll-top-fast {
	opacity: 1;
	transform: translate(0, 0);
}


/* 左から右へ遅く */
.fade-right-slow {
	opacity: 0;
	transform: translate(-100px, 0);
	transition: all 1000ms;
}

.scroll-right-slow {
	opacity: 1;
	transform: translate(0, 0);
}


/* 右から左へ遅く */
.fade-left-slow {
	opacity: 0;
	transform: translate(100px, 0);
	transition: all 1000ms;
}

.scroll-left-slow {
	opacity: 1;
	transform: translate(0, 0);
}


/* 上から下へ遅く */
.fade-bottom-slow {
	opacity: 0;
	transform: translate(0, -100px);
	transition: all 1000ms;
}

.scroll-bottom-slow {
	opacity: 1;
	transform: translate(0, 0);
}


/* 下から上へ遅く */
.fade-top-slow {
	opacity: 0;
	transform: translate(0, 100px);
	transition: all 1000ms;
}

.scroll-top-slow {
	opacity: 1;
	transform: translate(0, 0);
}





/* ==================================

時間差でアニメーション

================================== */

/* 時間差でアニメーションさせる */
.del_01 {
	transition-delay: 600ms;
}

.del_02 {
	transition-delay: 900ms;
}

.del_03 {
	transition-delay: 1200ms;
}

.del_04 {
	transition-delay: 1500ms;
}

/* スマホの時は時間差をなくす */
@media only screen and (max-width: 767px) {
	.del_01 {
		transition-delay: 500ms;
	}

	.del_02 {
		transition-delay: 500ms;
	}

	.del_03 {
		transition-delay: 500ms;
	}

	.del_04 {
		transition-delay: 50ms;
	}
}





/* ==================================

カルーセルのアニメーション

================================== */
#carousel .slick-slider {
	overflow: visible;
}

#carousel button {
	z-index: 999;
}

#carousel .slick-prev:before,
#carousel .slick-next:before {
	color: #333;
}


#carousel li.slick-slide {
	box-shadow: none;
	margin: 5px;
	padding: 0px;
	height: 280px;
	position: relative;
}

#carousel li.slick-slide p {
	padding: 0;
}


#carousel .img-carousel {
	height: 200px;
	overflow: hidden;
}

#carousel li.slick-slide img {
	margin: 0;
	width: 100%;
	height: auto;
}


#carousel .cal_wrap {
	background-color: #fff;
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	bottom: 10px;
	z-index: 999;
	width: 90%;
	padding: 5% 5%;
	box-shadow: 0px 4px 10px rgba(100, 100, 100, 0.2);
	/*	border-top: 4px solid #F00;*/
}


#carousel .day-carousel {
	font-weight: bold;
	font-size: 1rem;
	margin-bottom: -2%;
}

#carousel .ttl-carousel a {
	font-size: 2rem;
	text-decoration: none;
}

#carousel .cat-carousel a {
	text-decoration: none;
	background-color: #666;
	color: #fff;
	padding: 3px;
}


@media only screen and (max-width: 767px) {
	#carousel .slick-prev {
		left: 0;
	}

	#carousel .slick-next {
		right: 0;
	}

	#carousel .img-carousel {
		height: 400;
		overflow: hidden;
	}

	#carousel li.slick-slide img {
		margin: 0;
		width: 100%;
		height: 100%;
		object-fit: cover
	}
}



/* ==================================

マウスオーバーでキャプション表示

================================== */
.mouseover_txt01 {
	overflow: hidden;
	position: relative;
}

.mouseover_txt01 .caption {
	font-size: 130%;
	text-align: center;
	color: #fff;
}

.mouseover_txt01 .mask {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	background-color: rgba(0, 0, 0, 0.4);
	-webkit-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.mouseover_txt01:hover .mask {
	opacity: 1;
}

.mouseover_txt01 .mask .caption {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}





/* ==================================

画像をモーダル表示

================================== */
.lum-lightbox.lum-open {
	z-index: 10000;
}


.modal01 {
	position: relative;
}

.modal01 a::after {
	content: url(/wp-content/themes/Template/assets/img/modal_plus.png);
	position:absolute;
	bottom: -7px;
	right: 0;
}


.lum-lightbox-inner img {
	object-fit: contain;
}



/* ==================================

コンテンツスライドのアニメーション

================================== */
div.contents-slider-wrap {
    overflow: hidden;
    position: relative;
}
ul.contents-slider li img {
    width: 100%;
}


/* ==================================

ローディングアニメーション

================================== */

.loaded {
	opacity: 0;
	visibility: hidden;
  }
  
  #loader-wrap {
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  width: 100vw;
	  height: 100vh;
	  background-color: #fff;
	  transition: all 1s;
	  position: fixed;
	  top: 0;
	  left: 0;
	  z-index: 10000;
  }
  
  #loader-wrap div.logo_w {
  position: absolute;
  top: 35%;
  text-align: center;
  }
  #loading div.logo_w {
	  position: absolute;
	  top: 35%;
	  text-align: center;
	  width: 100%;
  }
  div.logo_w img {
	  width: max-content;
	  max-width: 100%;
  }
  @media only screen and (max-width: 767px) {
	  #loading div.logo_w {
		  top: 30%;
	  }
  }
  
  /* パターン01 */
  .loader,
  .loader:after {
	border-radius: 50%;
	width: 7em;
	height: 7em;
  }
  .loader {
	margin: 60px auto;
	font-size: 8px;
	position: relative;
  top:3%;
	text-indent: -9999em;
	border-top: 1.1em solid rgba(82,165,255, 0.2);
	border-right: 1.1em solid rgba(82,165,255, 0.2);
	border-bottom: 1.1em solid rgba(82,165,255, 0.2);
	border-left: 1.1em solid #52a5ff;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
	-webkit-animation: load8 1.1s infinite linear;
	animation: load8 1.5s infinite linear;
  }
  @-webkit-keyframes load8 {
	0% {
	  -webkit-transform: rotate(0deg);
	  transform: rotate(0deg);
	}
	100% {
	  -webkit-transform: rotate(360deg);
	  transform: rotate(360deg);
	}
  }
  @keyframes load8 {
	0% {
	  -webkit-transform: rotate(0deg);
	  transform: rotate(0deg);
	}
	100% {
	  -webkit-transform: rotate(360deg);
	  transform: rotate(360deg);
	}
  }
  
  /* パターン02 */
  .loader02 {
	color: #ffffff;
	font-size: 10px;
	margin: 100px auto;
	width: 1em;
	height: 1em;
	border-radius: 50%;
	position: relative;
	text-indent: -9999em;
	-webkit-animation: load4 1.3s infinite linear;
	animation: load4 1.3s infinite linear;
	-webkit-transform: translateZ(0);
	-ms-transform: translateZ(0);
	transform: translateZ(0);
  top: 5%;
  }
  @-webkit-keyframes load4 {
	0%,
	100% {
	  box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
	}
	12.5% {
	  box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
	}
	25% {
	  box-shadow: 0 -3em 0 -0.5em, 2em -2em 0 0, 3em 0 0 0.2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
	}
	37.5% {
	  box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
	}
	50% {
	  box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
	}
	62.5% {
	  box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
	}
	75% {
	  box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
	}
	87.5% {
	  box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
	}
  }
  @keyframes load4 {
	0%,
	100% {
	  box-shadow: 0 -3em 0 0.2em, 2em -2em 0 0em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 0;
	}
	12.5% {
	  box-shadow: 0 -3em 0 0, 2em -2em 0 0.2em, 3em 0 0 0, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
	}
	25% {
	  box-shadow: 0 -3em 0 -0.5em, 2em -2em 0 0, 3em 0 0 0.2em, 2em 2em 0 0, 0 3em 0 -1em, -2em 2em 0 -1em, -3em 0 0 -1em, -2em -2em 0 -1em;
	}
	37.5% {
	  box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 0, 2em 2em 0 0.2em, 0 3em 0 0em, -2em 2em 0 -1em, -3em 0em 0 -1em, -2em -2em 0 -1em;
	}
	50% {
	  box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 0em, 0 3em 0 0.2em, -2em 2em 0 0, -3em 0em 0 -1em, -2em -2em 0 -1em;
	}
	62.5% {
	  box-shadow: 0 -3em 0 -1em, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 0, -2em 2em 0 0.2em, -3em 0 0 0, -2em -2em 0 -1em;
	}
	75% {
	  box-shadow: 0em -3em 0 -1em, 2em -2em 0 -1em, 3em 0em 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0.2em, -2em -2em 0 0;
	}
	87.5% {
	  box-shadow: 0em -3em 0 0, 2em -2em 0 -1em, 3em 0 0 -1em, 2em 2em 0 -1em, 0 3em 0 -1em, -2em 2em 0 0, -3em 0em 0 0, -2em -2em 0 0.2em;
	}
  }
  
  /* パターン03 */
  .loader03 {
	position: absolute;
	top: calc(53% - 32px);
	left: calc(50% - 32px);
	width: 64px;
	height: 64px;
	border-radius: 50%;
	perspective: 800px;
  }
  
  .inner {
	position: absolute;
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	border-radius: 50%;  
  }
  
  .inner.one {
	left: 0%;
	top: 0%;
	animation: rotate-one 1s linear infinite;
	border-bottom: 3px solid #333;
  }
  
  .inner.two {
	right: 0%;
	top: 0%;
	animation: rotate-two 1s linear infinite;
	border-right: 3px solid #333;
  }
  
  .inner.three {
	right: 0%;
	bottom: 0%;
	animation: rotate-three 1s linear infinite;
	border-top: 3px solid #333;
	opacity: 0.3;
  }
  
  @keyframes rotate-one {
	0% {
	  transform: rotateX(35deg) rotateY(-45deg) rotateZ(0deg);
	}
	100% {
	  transform: rotateX(35deg) rotateY(-45deg) rotateZ(360deg);
	}
  }
  
  @keyframes rotate-two {
	0% {
	  transform: rotateX(50deg) rotateY(10deg) rotateZ(0deg);
	}
	100% {
	  transform: rotateX(50deg) rotateY(10deg) rotateZ(360deg);
	}
  }
  
  @keyframes rotate-three {
	0% {
	  transform: rotateX(35deg) rotateY(55deg) rotateZ(0deg);
	}
	100% {
	  transform: rotateX(35deg) rotateY(55deg) rotateZ(360deg);
	}
  }
  
  .top-wrap {
	  background-color: #fff;
  }
  .top-op,.top-op2{
	position: fixed;
	top: 0;
	left: 0;
	margin: 0 auto;
	width: 100%;
	height: 100vh;
  }
  .top-op{
	z-index: 9999;
	background: #f2f2f2;
	animation-duration: 0.4s;
	animation-delay:0.6s;
	animation-fill-mode: forwards;
	animation-name: top-op;
  }
  .top-op2{
	z-index: 10000;
	background: #e2e2e2;
	animation-duration: 0.3s;
	animation-delay: 0.2s;
	animation-fill-mode: forwards;
	animation-name: top-op2;
  }
   
  @keyframes top-op{
  0% {
	width: 100%;
	left:0;
  }
  50% {
	width: 100%;
  }
  100% {
	width: 0%;
	left: 100%;
  }
  }
  @keyframes top-op2{
  0% {
	width: 100%;
	left:0;
  }
  50% {
	width: 100%;
  }
  100% {
	width: 0%;
	left: 100%;
  }
  }
  
  .hidden {
	  display: none;
  }
  
  #loading {
	  width: 100vw;
	  height: 100vh;
	  background: #000;
	  position: fixed;
	  top: 0;
	  left: 0;
	  z-index: 9999;
  }
   
  #loading_barWrap {
	  width: 30vw;
	  height: calc(1rem + 5px);
	  position: fixed;
	  top: 0;
	  right: 0;
	  bottom: 0;
	  left: 0;
	  margin: auto;
  }
   
  #loading_bar {
	  width: 0;
	  height: 5px;
	  background: #fff;
	  transition-duration: 1s;
  }
   
  .text {
	  text-align: center;
	  color: #fff;
  }
   
  .loadingNone {
	  animation: loadingAnime 1s forwards;
	  display: none;
  }
   
  @keyframes loadingAnime {
	  0% {
		  opacity: 1;
	  }
	  99% {
		  opacity: 0;
	  }
	  100% {
		  opacity: 0;
		  display: none;
	  }
  }
  #loading p.logo-txt {
	  color: #fff;
	  font-size: 2.5em;
	  position: absolute;
	  top: 46%;
	  left: 50%;
	  transform: translate(-50%, -50%);
	  -webkit-transform: translate(-50%, -50%);
	  -ms-transform: translate(-50%, -50%);
  }
  @media only screen and (max-width: 767px) {
  #loading p.logo-txt {
	  top: 40%;
  }
  }
  
  
  /* オープニングシャッター */
  .shutter{
	position:fixed;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background-color:#1e1e1e;
      z-index:10000;
  }
  .shutter::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	margin: auto;
	background-color: #fff;
	width: 0;
	height: 1px;
    z-index:10000;
  }
  .shutter {
	-webkit-animation: byeShutter 2.6s forwards;
	animation: byeShutter 2.6s forwards;
    z-index:10000;
  }
  .shutter::before {
	-webkit-animation: shutterOpen 2.6s forwards;
	animation: shutterOpen 2.6s forwards;
    z-index:10000;
  }
  .content {
	-webkit-animation: contentScale 2.6s forwards;
	animation: contentScale 2.6s forwards;
  }
  @keyframes byeShutter {
	70% {
	  opacity: 1;
	}
	100% {
	  opacity: 0;
	  display: none;
	  z-index: -1;
	}
  }
  @keyframes shutterOpen {
	0% {
	  width: 0;
	  height: 1px;
	}
	50% {
	  width: 100%;
	  height: 1px;
	}
	90% {
	  width: 100%;
	  height: 100%;
	}
	100% {
	  width: 100%;
	  height: 100%;
	}
  }
  
  
  .js-loader {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	visibility: visible;
	opacity: 1;
	background: #fff;
	transition: opacity 0.8s, visibility 0.8s;
	z-index: 10001;
  }
  .is-loaded .js-loader {
	visibility: hidden;
	opacity: 0;
  }
  
  .js-loader-progress {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 100%;
	height: 1px;
  }
  .is-loaded .js-loader-progress {
	visibility: hidden;
	opacity: 0;
  }
  
  .js-loader-progress-bar {
	background: #000;
	height: 100%;
	width: 0;
	transition: width 0.4s;
  }
  
  .js-loader-progress-number {
	text-align: center;
	font-size: 10px;
	width: 100%;
	margin-top: 10px;
  }
  
  /* パターン04 */
  #splash {
	  /*fixedで全面に固定*/
	  position: fixed;
	  top: 0;
	  width: 100%;
	  height: 100%;
	  z-index: 9999;
	  text-align:center;
	  color:#fff;
	  background-color: #333;
  }
  
  /* Loading画像中央配置　*/
  #splash_text {
	  position: absolute;
	  top: 50%;
	  left: 50%;
	  z-index: 9999;
	  transform: translate(-50%, -50%);
	  color: #fff;
	  width: 100%;
  }
  
  /*IE11対策用バーの線の高さ※対応しなければ削除してください*/
  #splash_text svg{
	  height: 2px;
  }
  
  /*割れる画面のアニメーション*/
  .loader_cover {
	  width: 100%;
	  height: 50%;
	  background-color: #333;
	  transition: all .2s cubic-bezier(.04, .435, .315, .9);
	  transform: scaleY(1);
  }
  /*上の画面*/
  .loader_cover-up {
	  transform-origin: center top;
  }
  
  /*下の画面*/
  .loader_cover-down {
	  position: absolute;
	  bottom: 0;
	  transform-origin: center bottom;
  }
  /*クラス名がついたらY軸方向に0*/
  .coveranime {
	  transform: scaleY(0);
  }
  
  /*========= レイアウトのためのCSS ===============*/
  
  #splash #splash_text .logo_w {
	  margin-bottom: 55px;
  }
  @media only screen and (min-width: 768px) {
	  #splash #splash_text .logo_w img {
		  width: max-content;
	  }
  }
  @media only screen and (max-width: 767px) {
	  #splash #splash_text .logo_w {
	  margin-bottom: 75px;
  }
  }

/*========= メイン動画のcss ===============*/

.c-video {
    position: relative;
    width: 100%;
}
.c-video__title {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10;
    text-align: center;
    padding: 30px;
    font-size: 5.2vw;
    font-weight: 300;
    line-height: 1.6;
    white-space: nowrap;
    color: #fff;
    background: rgba(0,0,0,.3);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}
.c-video__frame {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 44.25%;
    background: #000;
}
.c-video__frame.is-loaded iframe {
    opacity: 1;
    visibility: visible;
}
.c-video iframe {
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: calc(100% + 120px);
    -webkit-transition: .3s cubic-bezier(.39,.575,.565,1);
    transition: .3s cubic-bezier(.39,.575,.565,1);
    -webkit-transition-property: opacity,visibility;
    transition-property: opacity,visibility;
}
@media screen and (min-width: 768px) {
    .c-video iframe {
        top: -110px;
        height: calc(110% + 145px);
    }
}
@media screen and (max-width: 1200px) and (min-width: 768px) {
    .c-video__frame {
        padding-top: 40%;
    }
}
.c-video {
    background-color: #666;
	z-index: -1;
}

@media screen and (max-width: 767px) {
    .c-video .c-video__frame {
        margin-bottom: 100px;
    }
}
@media screen and (min-width: 768px) {
    .main-image-hero .c-video {
        z-index: -1;
    }
}
@media screen and (max-width: 767px) {
    .main-image-hero .c-video {
        margin-bottom: 0;
    }
    #google_language_translator {
        position: relative;
        top: 200px;
    }
}

/*========= コンテンツスライダー下のドット表示のcss ===============*/
.contents-slider-wrap .slick-dots {
	position: unset;
	bottom: 0;
}
.slick-dots {
	bottom: 2%;
}

ul.contents-slider li img {
	object-fit: cover;
	aspect-ratio: 16 / 10.5;
}

/*========= 画像横スライドのcss ===============*/
.scrollImg {
	border-radius: 20px;
	overflow: hidden;
}
.scrollImg .specialBg {
	width: 150%;
	height: auto;
	display: block;
}
.scrollImg .specialBg img {
	width: 100%;
	height: auto;
	border-radius: 20px;
}
.specialImg {
	overflow-clip-margin: content-box;
	overflow: clip;
}
.specialImg.view{
	height: 100%;animation: specialImg 14.95s linear infinite;
}
@keyframes specialImg{
	0%{
		transform: translate3d(0,0,0);
		opacity: 0;
	}
	20%{
		opacity: 1;
	}
	80%{
		opacity: 1;
	}
	100%{
		transform: translate3d(-25%,0,0);
		opacity: 0;
	}
}
/*-----------------------
 メインテキストエフェクト（パターン1）
-------------------------*/
.main-image-text-main,
.main-image-text-sub {
  display: flex;
	flex-wrap: wrap;
  overflow: hidden;
	align-items: baseline;
}
.ef-01.split-text.is-active,
.sef-01.split-text.is-active01 {
    display: flex;
		flex-wrap: wrap;
    overflow: hidden;
		align-items: baseline;
}
.main-image-text-main,
.main-image-text-sub {
	letter-spacing: .1em;
}
.ef-01.split-text.is-active span.chars {
    font-weight: bold;
    margin: 0;
    transform: translateY(2em);
    animation: textanimation 0.5s forwards;
}
.sef-01.split-text.is-active01 span.chars {
    margin: 0;
    transform: translateY(2em);
    animation: textanimation 0.5s forwards;
}
/* 1文字目 */
.ef-01.split-text.is-active span.chars:nth-child(1),
.sef-01.split-text.is-active01 span.chars:nth-child(1) {
animation-delay: 0.00s;
}
/* 2文字目 */
.ef-01.split-text.is-active span.chars:nth-child(2),
.sef-01.split-text.is-active01 span.chars:nth-child(2) {
animation-delay: 0.03s;
}
/* 3文字目 */
.ef-01.split-text.is-active span.chars:nth-child(3),
.sef-01.split-text.is-active01 span.chars:nth-child(3) {
animation-delay: 0.06s;
}
/* 4文字目 */
.ef-01.split-text.is-active span.chars:nth-child(4),
.sef-01.split-text.is-active01 span.chars:nth-child(4)  {
animation-delay: 0.09s;
}
/* 5文字目 */
.ef-01.split-text.is-active span.chars:nth-child(5),
.sef-01.split-text.is-active01 span.chars:nth-child(5) {
animation-delay: 0.12s;
}
/* 6文字目 */
.ef-01.split-text.is-active span.chars:nth-child(6),
.sef-01.split-text.is-active01 span.chars:nth-child(6) {
animation-delay: 0.15s;
}
/* 7文字目 */
.ef-01.split-text.is-active span.chars:nth-child(7),
.sef-01.split-text.is-active01 span.chars:nth-child(7) {
animation-delay: 0.18s;
}
/* 8文字目 */
.ef-01.split-text.is-active span.chars:nth-child(8),
.sef-01.split-text.is-active01 span.chars:nth-child(8) {
animation-delay: 0.21s;
}
/* 9文字目 */
.ef-01.split-text.is-active span.chars:nth-child(9),
.sef-01.split-text.is-active01 span.chars:nth-child(9) {
animation-delay: 0.24s;
}
/* 10文字目 */
.ef-01.split-text.is-active span.chars:nth-child(10),
.sef-01.split-text.is-active01 span.chars:nth-child(10) {
animation-delay: 0.27s;
}
/* 11文字目 */
.ef-01.split-text.is-active span.chars:nth-child(11),
.sef-01.split-text.is-active01 span.chars:nth-child(11) {
animation-delay: 0.30s;
}
/* 12文字目 */
.ef-01.split-text.is-active span.chars:nth-child(12),
.sef-01.split-text.is-active01 span.chars:nth-child(12) {
animation-delay: 0.33s;
}
/* 13文字目 */
.ef-01.split-text.is-active span.chars:nth-child(13),
.sef-01.split-text.is-active01 span.chars:nth-child(13) {
animation-delay: 0.36s;
}
/* 14文字目 */
.ef-01.split-text.is-active span.chars:nth-child(14),
.sef-01.split-text.is-active01 span.chars:nth-child(14) {
animation-delay: 0.39s;
}
/* 15文字目 */
.ef-01.split-text.is-active span.chars:nth-child(15),
.sef-01.split-text.is-active01 span.chars:nth-child(15) {
animation-delay: 0.42s;
}
/* 16文字目 */
.ef-01.split-text.is-active span.chars:nth-child(16),
.sef-01.split-text.is-active01 span.chars:nth-child(16) {
animation-delay: 0.45s;
}
/* 17文字目 */
.ef-01.split-text.is-active span.chars:nth-child(17),
.sef-01.split-text.is-active01 span.chars:nth-child(17) {
animation-delay: 0.48s;
}
/* 18文字目 */
.ef-01.split-text.is-active span.chars:nth-child(18),
.sef-01.split-text.is-active01 span.chars:nth-child(18) {
animation-delay: 0.51s;
}
/* 19文字目 */
.ef-01.split-text.is-active span.chars:nth-child(19),
.sef-01.split-text.is-active01 span.chars:nth-child(19) {
animation-delay: 0.54s;
}
/* 20文字目 */
.ef-01.split-text.is-active span.chars:nth-child(20),
.sef-01.split-text.is-active01 span.chars:nth-child(20) {
animation-delay: 0.57s;
}
/* 21文字目 */
.ef-01.split-text.is-active span.chars:nth-child(21),
.sef-01.split-text.is-active01 span.chars:nth-child(21) {
animation-delay: 0.60s;
}
/* 22文字目 */
.ef-01.split-text.is-active span.chars:nth-child(22),
.sef-01.split-text.is-active01 span.chars:nth-child(22) {
animation-delay: 0.63s;
}
/* 23文字目 */
.ef-01.split-text.is-active span.chars:nth-child(23),
.sef-01.split-text.is-active01 span.chars:nth-child(23) {
animation-delay: 0.66s;
}
/* 24文字目 */
.ef-01.split-text.is-active span.chars:nth-child(24),
.sef-01.split-text.is-active01 span.chars:nth-child(24) {
animation-delay: 0.69s;
}
/* 25文字目 */
.ef-01.split-text.is-active span.chars:nth-child(25),
.sef-01.split-text.is-active01 span.chars:nth-child(25) {
animation-delay: 0.72s;
}
/* 26文字目 */
.ef-01.split-text.is-active span.chars:nth-child(26),
.sef-01.split-text.is-active01 span.chars:nth-child(26) {
animation-delay: 0.75s;
}
/* 27文字目 */
.ef-01.split-text.is-active span.chars:nth-child(27),
.sef-01.split-text.is-active01 span.chars:nth-child(27) {
animation-delay: 0.78s;
}
/* 28文字目 */
.ef-01.split-text.is-active span.chars:nth-child(28),
.sef-01.split-text.is-active01 span.chars:nth-child(28) {
animation-delay: 0.81s;
}
/* 29文字目 */
.ef-01.split-text.is-active span.chars:nth-child(29),
.sef-01.split-text.is-active01 span.chars:nth-child(29) {
animation-delay: 0.84s;
}
/* 30文字目 */
.ef-01.split-text.is-active span.chars:nth-child(30),
.sef-01.split-text.is-active01 span.chars:nth-child(30) {
animation-delay: 0.87s;
}
@keyframes textanimation {
    0% {
        transform: translateY(2em);
    }

    100% {
        transform: translateY(0);
    }
}


/*-----------------------
 メインテキストエフェクト（パターン2）
-------------------------*/
.ef-02.is-active,
.sef-02.is-active01 {
  animation: slideIn02 1.5s ease-out;
}
@keyframes slideIn02 {
  0% {
    transform: translateX(-20%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/*-----------------------
 メインテキストエフェクト（パターン3）
-------------------------*/
.ef-03.is-active,
.sef-03.is-active01 {
  animation: slideIn03 1.5s ease-out;
}
@keyframes slideIn03 {
  0% {
    transform: translateX(20%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/*-----------------------
 メインテキストエフェクト（パターン4）
-------------------------*/
.ef-04.is-active,
.sef-04.is-active01 {
  animation: slideIn04 1.5s ease-out;
}
@keyframes slideIn04 {
  0% {
    transform: translateY(-50%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/*-----------------------
 メインテキストエフェクト（パターン5）
-------------------------*/
.ef-05.is-active,
.sef-05.is-active01 {
  animation: slideIn05 1.5s ease-out;
}
@keyframes slideIn05 {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/*-----------------------
 メインテキストエフェクト（パターン6）
-------------------------*/
.ef-06,
.sef-06 {
  text-transform: uppercase;
}

.ef-06 .chars:first-child,
.sef-06 .chars:first-child {
  --char-index: 0;
}
.ef-06 .chars:nth-child(2),
.sef-06 .chars:nth-child(2) {
  --char-index: 1;
}
.ef-06 .chars:nth-child(3),
.sef-06 .chars:nth-child(3) {
  --char-index: 2;
}
.ef-06 .chars:nth-child(4),
.sef-06 .chars:nth-child(4) {
  --char-index: 3;
}
.ef-06 .chars:nth-child(5),
.sef-06 .chars:nth-child(5) {
  --char-index: 4;
}
.ef-06 .chars:nth-child(6),
.sef-06 .chars:nth-child(6) {
  --char-index: 5;
}
.ef-06 .chars:nth-child(7),
.sef-06 .chars:nth-child(7) {
  --char-index: 6;
}
.ef-06 .chars:nth-child(8),
.sef-06 .chars:nth-child(8) {
  --char-index: 7;
}
.ef-06 .chars:nth-child(9),
.sef-06 .chars:nth-child(9) {
  --char-index: 8;
}
.ef-06 .chars:nth-child(10),
.sef-06 .chars:nth-child(10) {
  --char-index: 9;
}
.ef-06 .chars:nth-child(11),
.sef-06 .chars:nth-child(11) {
  --char-index: 10;
}
.ef-06 .chars:nth-child(12),
.sef-06 .chars:nth-child(12) {
  --char-index: 11;
}
.ef-06 .chars:nth-child(13),
.sef-06 .chars:nth-child(13) {
  --char-index: 12;
}
.ef-06 .chars:nth-child(14),
.sef-06 .chars:nth-child(14) {
  --char-index: 13;
}
.ef-06 .chars:nth-child(15),
.sef-06 .chars:nth-child(15) {
  --char-index: 14;
}
.ef-06 .chars:nth-child(16),
.sef-06 .chars:nth-child(16) {
  --char-index: 15;
}
.ef-06 .chars:nth-child(17),
.sef-06 .chars:nth-child(17) {
  --char-index: 16;
}
.ef-06 .chars:nth-child(18),
.sef-06 .chars:nth-child(18) {
  --char-index: 17;
}
.ef-06 .chars:nth-child(19),
.sef-06 .chars:nth-child(19) {
  --char-index: 18;
}
.ef-06 .chars:nth-child(20),
.sef-06 .chars:nth-child(20) {
  --char-index: 19;
}
.ef-06 .chars:nth-child(21),
.sef-06 .chars:nth-child(21) {
  --char-index: 20;
}
.ef-06 .chars:nth-child(22),
.sef-06 .chars:nth-child(22) {
  --char-index: 21;
}
.ef-06 .chars:nth-child(23),
.sef-06 .chars:nth-child(23) {
  --char-index: 22;
}
.ef-06 .chars:nth-child(24),
.sef-06 .chars:nth-child(24) {
  --char-index: 23;
}
.ef-06 .chars:nth-child(25),
.sef-06 .chars:nth-child(25) {
  --char-index: 24;
}
.ef-06 .chars:nth-child(26),
.sef-06 .chars:nth-child(26) {
  --char-index: 25;
}
.ef-06 .chars:nth-child(27),
.sef-06 .chars:nth-child(27) {
  --char-index: 26;
}
.ef-06 .chars:nth-child(28),
.sef-06 .chars:nth-child(28) {
  --char-index: 27;
}
.ef-06 .chars:nth-child(29),
.sef-06 .chars:nth-child(29) {
  --char-index: 28;
}
.ef-06 .chars:nth-child(30),
.sef-06 .chars:nth-child(30) {
  --char-index: 29;
}
.ef-06.is-active,
.sef-06.is-active01 {
  --opacity: 1;
  --scale: 1;
}
.ef-06 .chars,
.sef-06 .chars {
  display: inline-block;
  transform: scale(var(--scale, 0));
  opacity: var(--opacity, 0);
  transition: opacity 0.6s cubic-bezier(0.77, 0, 0.175, 1), transform 0.6s cubic-bezier(0.39, 0.575, 0.565, 1);
  transition-delay: calc(0.02s * var(--char-index));
}

/*-----------------------
 メインテキストエフェクト（パターン7）
-------------------------*/ 
.ef-07.is-active span,
.sef-07.is-active01 span {
  display: inline-block;
}

.ef-07.is-active span:nth-of-type(2),
.sef-07.is-active01 span:nth-of-type(2) {
  animation-delay: .05s;
}
.ef-07.is-active span:nth-of-type(3),
.sef-07.is-active01 span:nth-of-type(3) {
  animation-delay: .1s;
}
.ef-07.is-active span:nth-of-type(4),
.sef-07.is-active01 span:nth-of-type(4) {
  animation-delay: .15s;
}
.ef-07.is-active span:nth-of-type(5),
.sef-07.is-active01 span:nth-of-type(5) {
  animation-delay: .2s;
}
.ef-07.is-active span:nth-of-type(6),
.sef-07.is-active01 span:nth-of-type(6) {
  animation-delay: .25s;
}
.ef-07.is-active span:nth-of-type(7),
.sef-07.is-active01 span:nth-of-type(7) {
  animation-delay: .3s;
}
.ef-07.is-active span:nth-of-type(8),
.sef-07.is-active01 span:nth-of-type(8) {
  animation-delay: .35s;
}
.ef-07.is-active span:nth-of-type(9),
.sef-07.is-active01 span:nth-of-type(9) {
  animation-delay: .4s;
}
.ef-07.is-active span:nth-of-type(10),
.sef-07.is-active01 span:nth-of-type(10) {
  animation-delay: .45s;
}
.ef-07.is-active span:nth-of-type(11),
.sef-07.is-active01 span:nth-of-type(11) {
  animation-delay: .5s;
}
.ef-07.is-active span:nth-of-type(12),
.sef-07.is-active01 span:nth-of-type(12) {
  animation-delay: .55s;
}
.ef-07.is-active span:nth-of-type(13),
.sef-07.is-active01 span:nth-of-type(13) {
  animation-delay: .6s;
}
.ef-07.is-active span:nth-of-type(14),
.sef-07.is-active01 span:nth-of-type(14) {
  animation-delay: .65s;
}
.ef-07.is-active span:nth-of-type(15),
.sef-07.is-active01 span:nth-of-type(15) {
  animation-delay: .7s;
}
.ef-07.is-active span:nth-of-type(16),
.sef-07.is-active01 span:nth-of-type(16) {
  animation-delay: .75s;
}
.ef-07.is-active span:nth-of-type(17),
.sef-07.is-active01 span:nth-of-type(17) {
  animation-delay: .8s;
}
.ef-07.is-active span:nth-of-type(18),
.sef-07.is-active01 span:nth-of-type(18) {
  animation-delay: .85s;
}
.ef-07.is-active span:nth-of-type(19),
.sef-07.is-active01 span:nth-of-type(19) {
  animation-delay: .9s;
}
.ef-07.is-active span:nth-of-type(20),
.sef-07.is-active01 span:nth-of-type(20) {
  animation-delay: .95s;
}
.ef-07.is-active span:nth-of-type(21),
.sef-07.is-active01 span:nth-of-type(21) {
  animation-delay: 1.0s;
}
.ef-07.is-active span:nth-of-type(22),
.sef-07.is-active01 span:nth-of-type(22) {
  animation-delay: 1.05s;
}
.ef-07.is-active span:nth-of-type(23),
.sef-07.is-active01 span:nth-of-type(23) {
  animation-delay: 1.10s;
}
.ef-07.is-active span,
.sef-07.is-active01 span {
  opacity: 0;
  transform: translate(-150px, 0) scale(.3);
  animation: leftRight .5s forwards;
}


@keyframes leftRight {
  40% {
    transform: translate(50px, 0) scale(.8);
    opacity: 1;
    color: #fff;
  }
  60% {
    color: #fff;
  }
  80% {
    transform: translate(0) scale(3);
    opacity: 0;
  }
  100% {
    transform: translate(0) scale(1);
    opacity: 1;
  }
}

/*-----------------------
 メインテキストエフェクト（パターン8）
-------------------------*/ 
.ef-08.is-active span,
.sef-08.is-active01 span {
--start01: 0.01s; /* アニメーションの開始時刻 */
--delay01: 0.05s; /* アニメーションの時間差 */
animation-name: appear;
animation-duration: 0s;
animation-fill-mode: both;
}
.ef-08.is-active span:nth-of-type( 1 ),
.sef-08.is-active01 span:nth-of-type( 1 ) { animation-delay: calc( var( --start01 ) + 1 * var( --delay01 ) ) }
.ef-08.is-active span:nth-of-type( 2 ),
.sef-08.is-active01 span:nth-of-type( 2 ) { animation-delay: calc( var( --start01 ) + 2 * var( --delay01 ) ) }
.ef-08.is-active span:nth-of-type( 3 ),
.sef-08.is-active01 span:nth-of-type( 3 ) { animation-delay: calc( var( --start01 ) + 3 * var( --delay01 ) ) }
.ef-08.is-active span:nth-of-type( 4 ),
.sef-08.is-active01 span:nth-of-type( 4 ) { animation-delay: calc( var( --start01 ) + 4 * var( --delay01 ) ) }
.ef-08.is-active span:nth-of-type( 5 ),
.sef-08.is-active01 span:nth-of-type( 5 ) { animation-delay: calc( var( --start01 ) + 5 * var( --delay01 ) ) }
.ef-08.is-active span:nth-of-type( 6 ),
.sef-08.is-active01 span:nth-of-type( 6 ) { animation-delay: calc( var( --start01 ) + 6 * var( --delay01 ) ) }
.ef-08.is-active span:nth-of-type( 7 ),
.sef-08.is-active01 span:nth-of-type( 7 ) { animation-delay: calc( var( --start01 ) + 7 * var( --delay01 ) ) }
.ef-08.is-active span:nth-of-type( 8 ),
.sef-08.is-active01 span:nth-of-type( 8 ) { animation-delay: calc( var( --start01 ) + 8 * var( --delay01 ) ) }
.ef-08.is-active  span:nth-of-type( 9 ),
.sef-08.is-active01 span:nth-of-type( 9 ) { animation-delay: calc( var( --start01 ) + 9 * var( --delay01 ) ) }
.ef-08.is-active span:nth-of-type( 10 ),
.sef-08.is-active01 span:nth-of-type( 10 ) { animation-delay: calc( var( --start01 ) + 10 * var( --delay01 ) ) }
.ef-08.is-active span:nth-of-type( 11 ),
.sef-08.is-active01 span:nth-of-type( 11 ) { animation-delay: calc( var( --start01 ) + 11 * var( --delay01 ) ) }
.ef-08.is-active span:nth-of-type( 12 ),
.sef-08.is-active01 span:nth-of-type( 12 ) { animation-delay: calc( var( --start01 ) + 12 * var( --delay01 ) ) }
.ef-08.is-active span:nth-of-type( 13 ),
.sef-08.is-active01 span:nth-of-type( 13 ) { animation-delay: calc( var( --start01 ) + 13 * var( --delay01 ) ) }
.ef-08.is-active span:nth-of-type( 14 ),
.sef-08.is-active01 span:nth-of-type( 14 ) { animation-delay: calc( var( --start01 ) + 14 * var( --delay01 ) ) }
.ef-08.is-active span:nth-of-type( 15 ),
.sef-08.is-active01 span:nth-of-type( 15 ) { animation-delay: calc( var( --start01 ) + 15 * var( --delay01 ) ) }
.ef-08.is-active span:nth-of-type( 16 ),
.sef-08.is-active01 span:nth-of-type( 16 ) { animation-delay: calc( var( --start01 ) + 16 * var( --delay01 ) ) }
.ef-08.is-active span:nth-of-type( 17 ),
.sef-08.is-active01 span:nth-of-type( 17 ) { animation-delay: calc( var( --start01 ) + 17 * var( --delay01 ) ) }
.ef-08.is-active span:nth-of-type( 18 ),
.sef-08.is-active01 span:nth-of-type( 18 ) { animation-delay: calc( var( --start01 ) + 18 * var( --delay01 ) ) }
.ef-08.is-active span:nth-of-type( 19 ),
.sef-08.is-active01 span:nth-of-type( 19 ) { animation-delay: calc( var( --start01 ) + 19 * var( --delay01 ) ) }
.ef-08.is-active span:nth-of-type( 20 ),
.sef-08.is-active01 span:nth-of-type( 20 ) { animation-delay: calc( var( --start01 ) + 20 * var( --delay01 ) ) }
.ef-08.is-active span:nth-of-type( 21 ),
.sef-08.is-active01 span:nth-of-type( 21 ) { animation-delay: calc( var( --start01 ) + 21 * var( --delay01 ) ) }
.ef-08.is-active span:nth-of-type( 22 ),
.sef-08.is-active01 span:nth-of-type( 22 ) { animation-delay: calc( var( --start01 ) + 22 * var( --delay01 ) ) }
.ef-08.is-active span:nth-of-type( 23 ),
.sef-08.is-active01 span:nth-of-type( 23 ) { animation-delay: calc( var( --start01 ) + 23 * var( --delay01 ) ) }
.ef-08.is-active span:nth-of-type( 24 ),
.sef-08.is-active01 span:nth-of-type( 24 ) { animation-delay: calc( var( --start01 ) + 24 * var( --delay01 ) ) }
.ef-08.is-active span:nth-of-type( 25 ),
.sef-08.is-active01 span:nth-of-type( 25 ) { animation-delay: calc( var( --start01 ) + 25 * var( --delay01 ) ) }
.ef-08.is-active span:nth-of-type( 26 ),
.sef-08.is-active01 span:nth-of-type( 26 ) { animation-delay: calc( var( --start01 ) + 26 * var( --delay01 ) ) }
.ef-08.is-active span:nth-of-type( 27 ),
.sef-08.is-active01 span:nth-of-type( 27 ) { animation-delay: calc( var( --start01 ) + 27 * var( --delay01 ) ) }
.ef-08.is-active span:nth-of-type( 28 ),
.sef-08.is-active01 span:nth-of-type( 28 ) { animation-delay: calc( var( --start01 ) + 28 * var( --delay01 ) ) }
.ef-08.is-active span:nth-of-type( 29 ),
.sef-08.is-active01 span:nth-of-type( 29 ) { animation-delay: calc( var( --start01 ) + 29 * var( --delay01 ) ) }
.ef-08.is-active span:nth-of-type( 30 ),
.sef-08.is-active01 span:nth-of-type( 30 ) { animation-delay: calc( var( --start01 ) + 30 * var( --delay01 ) ) }

.ef-08.is-active span:last-child::after,
.sef-08.is-active01 span:last-child::after {
content: '';
border-right: solid 3px;
animation: tikatika 1s step-end infinite;
}
@keyframes appear {
from { opacity: 0 }
99% { opacity: 1 }
to { opacity: unset }
}
@keyframes tikatika {
0% { opacity: 1; }
25% { opacity: 0; }
50% { opacity: 1; }
75% { opacity: 0; }
100% { opacity: 1; }
}

/*-----------------------
 メインテキストエフェクト（パターン9）
-------------------------*/ 
.ef-09.is-active span,
.sef-09.is-active01 span {
--start01: 0.01s; /* アニメーションの開始時刻 */
--delay01: 0.1s; /* アニメーションの時間差 */
animation-name: appear01;
animation-duration: 1.0s;
animation-fill-mode: both;
}
.ef-09.is-active span:nth-of-type( 1 ),
.sef-09.is-active01 span:nth-of-type( 1 ) { animation-delay: calc( var( --start01 ) + 5 * var( --delay01 ) ) }
.ef-09.is-active span:nth-of-type( 2 ),
.sef-09.is-active01 span:nth-of-type( 2 ) { animation-delay: calc( var( --start01 ) + 3 * var( --delay01 ) ) }
.ef-09.is-active span:nth-of-type( 3 ),
.sef-09.is-active01 span:nth-of-type( 3 ) { animation-delay: calc( var( --start01 ) + 8 * var( --delay01 ) ) }
.ef-09.is-active span:nth-of-type( 4 ),
.sef-09.is-active01 span:nth-of-type( 4 ) { animation-delay: calc( var( --start01 ) + 2 * var( --delay01 ) ) }
.ef-09.is-active span:nth-of-type( 5 ),
.sef-09.is-active01 span:nth-of-type( 5 ) { animation-delay: calc( var( --start01 ) + 6 * var( --delay01 ) ) }
.ef-09.is-active span:nth-of-type( 6 ),
.sef-09.is-active01 span:nth-of-type( 6 ) { animation-delay: calc( var( --start01 ) + 1 * var( --delay01 ) ) }
.ef-09.is-active span:nth-of-type( 7 ),
.sef-09.is-active01 span:nth-of-type( 7 ) { animation-delay: calc( var( --start01 ) + 4 * var( --delay01 ) ) }
.ef-09.is-active span:nth-of-type( 8 ),
.sef-09.is-active01 span:nth-of-type( 8 ) { animation-delay: calc( var( --start01 ) + 7 * var( --delay01 ) ) }
.ef-09.is-active  span:nth-of-type( 9 ),
.sef-09.is-active01  span:nth-of-type( 9 ) { animation-delay: calc( var( --start01 ) + 10 * var( --delay01 ) ) }
.ef-09.is-active span:nth-of-type( 10 ),
.sef-09.is-active01 span:nth-of-type( 10 ) { animation-delay: calc( var( --start01 ) + 9 * var( --delay01 ) ) }
.ef-09.is-active span:nth-of-type( 11 ),
.sef-09.is-active01 span:nth-of-type( 11 ) { animation-delay: calc( var( --start01 ) + 2 * var( --delay01 ) ) }
.ef-09.is-active span:nth-of-type( 12 ),
.sef-09.is-active01 span:nth-of-type( 12 ) { animation-delay: calc( var( --start01 ) + 4 * var( --delay01 ) ) }
.ef-09.is-active span:nth-of-type( 13 ),
.sef-09.is-active01 span:nth-of-type( 13 ) { animation-delay: calc( var( --start01 ) + 1 * var( --delay01 ) ) }
.ef-09.is-active span:nth-of-type( 14 ),
.sef-09.is-active01 span:nth-of-type( 14 ) { animation-delay: calc( var( --start01 ) + 6 * var( --delay01 ) ) }
.ef-09.is-active span:nth-of-type( 15 ),
.sef-09.is-active01 span:nth-of-type( 15 ) { animation-delay: calc( var( --start01 ) + 8 * var( --delay01 ) ) }
.ef-09.is-active span:nth-of-type( 16 ),
.sef-09.is-active01 span:nth-of-type( 16 ) { animation-delay: calc( var( --start01 ) + 7 * var( --delay01 ) ) }
.ef-09.is-active span:nth-of-type( 17 ),
.sef-09.is-active01 span:nth-of-type( 17 ) { animation-delay: calc( var( --start01 ) + 10 * var( --delay01 ) ) }
.ef-09.is-active span:nth-of-type( 18 ),
.sef-09.is-active01 span:nth-of-type( 18 ) { animation-delay: calc( var( --start01 ) + 9 * var( --delay01 ) ) }
.ef-09.is-active span:nth-of-type( 19 ),
.sef-09.is-active01 span:nth-of-type( 19 ) { animation-delay: calc( var( --start01 ) + 4 * var( --delay01 ) ) }
.ef-09.is-active span:nth-of-type( 20 ),
.sef-09.is-active01 span:nth-of-type( 20 ) { animation-delay: calc( var( --start01 ) + 10 * var( --delay01 ) ) }
.ef-09.is-active span:nth-of-type( 21 ),
.sef-09.is-active01 span:nth-of-type( 21 ) { animation-delay: calc( var( --start01 ) + 7 * var( --delay01 ) ) }
.ef-09.is-active span:nth-of-type( 22 ),
.sef-09.is-active01 span:nth-of-type( 22 ) { animation-delay: calc( var( --start01 ) + 5 * var( --delay01 ) ) }
.ef-09.is-active span:nth-of-type( 23 ),
.sef-09.is-active01 span:nth-of-type( 23 ) { animation-delay: calc( var( --start01 ) + 2 * var( --delay01 ) ) }
.ef-09.is-active span:nth-of-type( 24 ),
.sef-09.is-active01 span:nth-of-type( 24 ) { animation-delay: calc( var( --start01 ) + 3 * var( --delay01 ) ) }
.ef-09.is-active span:nth-of-type( 25 ),
.sef-09.is-active01 span:nth-of-type( 25 ) { animation-delay: calc( var( --start01 ) + 8 * var( --delay01 ) ) }
.ef-09.is-active span:nth-of-type( 26 ),
.sef-09.is-active01 span:nth-of-type( 26 ) { animation-delay: calc( var( --start01 ) + 6 * var( --delay01 ) ) }
.ef-09.is-active span:nth-of-type( 27 ),
.sef-09.is-active01 span:nth-of-type( 27 ) { animation-delay: calc( var( --start01 ) + 10 * var( --delay01 ) ) }
.ef-09.is-active span:nth-of-type( 28 ),
.sef-09.is-active01 span:nth-of-type( 28 ) { animation-delay: calc( var( --start01 ) + 1 * var( --delay01 ) ) }
.ef-09.is-active span:nth-of-type( 29 ),
.sef-09.is-active01 span:nth-of-type( 29 ) { animation-delay: calc( var( --start01 ) + 4 * var( --delay01 ) ) }
.ef-09.is-active span:nth-of-type( 30 ),
.sef-09.is-active01 span:nth-of-type( 30 ) { animation-delay: calc( var( --start01 ) + 9 * var( --delay01 ) ) }
@keyframes appear01 {
from { opacity: 0;transform: translate(0) scale(.3); }
to { opacity: unset;transform: translate(0) scale(1); }
}


/*-----------------------
 メインテキストエフェクト（パターン10）
-------------------------*/ 
.main-image-text-box:has(.ef-10),
.main-image-text-box:has(.sef-10) {
padding: 0;
}
.ef-10,
.main-image-text-box:has(.ef-10) .main-image-text-sub,
.sef-10,
.main-image-text-box:has(.sef-10) .main-image-text-sub {
padding: 0 10px 10px;
}
.main-image-text-box .ef-10.is-active,
.main-image-text-box .sef-10.is-active01 {
  position: relative;
  animation: text-reveal 0.5s 3s;
}
.main-image-text-box .ef-10.is-active::before,
.main-image-text-box .sef-10.is-active01::before {
  animation: dynamic-bg-animation 1.0s cubic-bezier(0.22, 1, 0.36, 1) forwards, fade-out01 1s 0.25s forwards;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: left center;
  z-index: 1;
}

@keyframes dynamic-bg-animation {
  0% {
    opacity: 0;
    transform: scaleX(0) translateX(-5%);
  }
  30% {
    transform: scaleX(1) translateX(0);
  }
  100% {
    transform: scaleX(1) translateX(0);
  }
  30%, 100% {
    opacity: 1;
  }
}
@keyframes fade-out01 {
  0% {
    opacity: 1;
  }
  99% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(-105%);
  }
}
@keyframes text-reveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*-----------------------
 メインテキストエフェクト（全体）
-------------------------*/ 
.other01:has(.is-active)::before,
.other01:has(.is-active01)::before {
  animation: dynamic-bg-animation02 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards, fade-out02 0.8s 0.25s forwards;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: left center;
	z-index: 1;
}
.other01:has(.is-active),
.other01:has(.is-active01) {
  position: relative;
	animation: text-reveal02 0.5s 3s;
}
@keyframes dynamic-bg-animation02 {
  0% {
    opacity: 0;
    transform: scaleX(0) translateX(-5%);
  }
  30% {
    transform: scaleX(1) translateX(0);
  }
  100% {
    transform: scaleX(1) translateX(0);
  }
  30%, 100% {
    opacity: 1;
  }
}
@keyframes fade-out02 {
  0% {
    transform: scaleX(1) translateX(0);
  }
  30% {
    transform: scaleX(1) translateX(0);
  }
  100% {
		opacity: 0;
    transform: scaleX(0) translateX(-5%);
  }
  30%, 100% {
    opacity: 1;
  }
}
@keyframes text-reveal02 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}