@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,
  #loader-wrap01 {
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  flex-direction: column;
	  width: 100vw;
	  height: 100vh;
	  background-color: #333;
	  position: fixed;
	  top: 0;
	  left: 0;
	  z-index: 10000;
  }
  #loading div.logo_w {
	  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-wrap01 {
	transition: opacity 0.5s ease-in-out;
	z-index: 10001;
  }
  .loader03 {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	perspective: 800px;
	margin-top: 25px;
  }
  
  .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 #fff;
  }
  
  .inner.two {
	right: 0%;
	top: 0%;
	animation: rotate-two 1s linear infinite;
	border-right: 3px solid #fff;
  }
  
  .inner.three {
	right: 0%;
	bottom: 0%;
	animation: rotate-three 1s linear infinite;
	border-top: 3px solid #fff;
	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%;
  }
  }
  
  .top-wrap.hidden {
	  display: none;
  }
  
  /* パターン02 */
  .loader02 {
	color: #ffffff;
	font-size: 10px;
	margin-top: 75px;
	width: 1em;
	height: 1em;
	border-radius: 50%;
	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);
  }
  @-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;
	}
  }


  /* パターン02 オープニングシャッター */
  div.top-wrap:not(.hidden) .shutter{
	position:fixed;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background-color:#333;
    z-index:10000;
  }
  div.top-wrap:not(.hidden) .shutter::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background-color:#fff;
	margin: auto;
	width: 0;
	height: 1px;
    z-index:10000;
  }
  div.top-wrap:not(.hidden) .shutter {
	-webkit-animation: byeShutter 1.0s forwards;
	animation: byeShutter 1.0s forwards;
    z-index:10000;
  }
  div.top-wrap:not(.hidden) .shutter::before {
	-webkit-animation: shutterOpen 1.0s forwards;
	animation: shutterOpen 1.0s forwards;
    z-index:10000;
  }
  div.top-wrap:not(.hidden) .content {
	-webkit-animation: contentScale 1.0s forwards;
	animation: contentScale 1.0s 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%;
	}
  }
  
  /* パターン03 */
#loading_barWrap {
	margin-top: 50px;
}
  #loading {
	  width: 100vw;
	  height: 100vh;
	  background: #333;
	  position: fixed;
	  top: 0;
	  left: 0;
	  z-index: 9999;
	  display: flex;
	  flex-direction: column;
	  justify-content: center;
	  transition: opacity 0.5s ease-in-out;
  }
  .text {
	  text-align: center;
	  color: #fff;
  }
  .logo_w {
	  text-align: center;
	  color: #fff;
  }
  #bar{
	margin: 15px auto;
	max-width: 400px;
}
.loading-bar {
  background: #ccc;
  height: 5px;
  position: relative;
  margin-bottom: 20px;
}
.loading-bar::before { 
  -webkit-animation: width-0to100 1s infinite ease-out;
  -moz-animation: width-0to100 1s infinite ease-out;
  -o-animation: width-0to100 1s infinite ease-out;
  -ms-animation: width-0to100 1s infinite ease-out;
  animation: width-0to100 1s infinite ease-out;
	background: #222222;
  content: '';
  height: 5px;
  left: 0;
  position: absolute;
  top: 0;
}
@keyframes width-0to100 {
	0% {
    width: 0;
  }
	100% {
    width: 100%;
  }
}

  
  /* パターン04 */
  #splash {
	  /*fixedで全面に固定*/
	  position: fixed;
	  top: 0;
	  left: 0;
	  width: 100vw;
	  height: 100vh;
	  z-index: 9999;
	  text-align:center;
	  color:#fff;
	  background-color: #333;
  }
  
  /* Loading画像中央配置　*/
  #splash_text {
	  position: relative;
	  z-index: 9999;
	  color: #fff;
	  width: 100%;
	  display: flex;
	  flex-direction: column;
	  justify-content: center;
	  height: 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);
  }

  .progressbar-text {
	position: unset !important;
	top: unset !important;
	left: unset !important;
	transform: unset !important;
  }
  
  /*========= レイアウトのためのCSS ===============*/
  
  #splash #splash_text .logo_w {
	  margin-bottom: 50px;
  }
  @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;
    }
}

/*========= コンテンツスライダー下のドット表示のcss ===============*/
.contents-slider-wrap .slick-dots {
	position: unset;
	bottom: 0;
}
.slick-dots {
	bottom: 2%;
}

/*========= 画像横スライドの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.char-span {
    font-weight: bold;
    margin: 0;
}
.sef-01.split-text.is-active01 span.char-span {
    margin: 0;
}
/* JavaScriptで設定した変数(--delay)を使うように変更 */
.ef-01.split-text.is-active span.char-span,
.sef-01.split-text.is-active01 span.char-span {
    /* ... 他のスタイルはそのまま ... */
    transform: translateY(2em);
    /* animation-delay に JavaScriptでセットした --delay 変数を適用 */
    animation: textanimation 0.5s forwards var(--delay);
}
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .ef-01.split-text.is-active.no-repeat span.char-span,
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .ef-01.split-text.is-active.no-repeat02 span.char-span,
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .ef-01.split-text.is-active.no-repeat03 span.char-span,
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .sef-01.split-text.is-active01.no-repeat-sub span.char-span {
	animation: textanimation 0.5s forwards calc(var(--delay) + 1.0s);
}
@keyframes textanimation {
    0% {
        transform: translateY(2em);
    }

    100% {
        transform: translateY(0);
    }
}


/*-----------------------
 メインテキストエフェクト（パターン2）
-------------------------*/
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .ef-02.no-repeat,
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .ef-02.no-repeat02,
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .ef-02.no-repeat03,
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .sef-02.no-repeat-sub {
  opacity: 0;
}
.ef-02.is-active,
.sef-02.is-active01 {
  animation: slideIn02 1.5s ease-out;
}
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .ef-02.is-active.no-repeat,
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .ef-02.is-active.no-repeat02,
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .ef-02.is-active.no-repeat03,
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .sef-02.is-active01.no-repeat-sub {
	animation: slideIn02 1.5s 1.0s ease-out forwards;
}
@keyframes slideIn02 {
  0% {
    transform: translateX(-20%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/*-----------------------
 メインテキストエフェクト（パターン3）
-------------------------*/
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .ef-03.no-repeat,
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .ef-03.no-repeat02,
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .ef-03.no-repeat03,
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .sef-03.no-repeat-sub {
  opacity: 0;
}
.ef-03.is-active,
.sef-03.is-active01 {
  animation: slideIn03 1.5s ease-out;
}
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .ef-03.is-active.no-repeat,
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .ef-03.is-active.no-repeat02,
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .ef-03.is-active.no-repeat03,
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .sef-03.is-active01.no-repeat-sub {
	animation: slideIn03 1.5s 1.0s ease-out forwards;
}
@keyframes slideIn03 {
  0% {
    transform: translateX(20%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/*-----------------------
 メインテキストエフェクト（パターン4）
-------------------------*/
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .ef-04.no-repeat,
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .ef-04.no-repeat02,
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .ef-04.no-repeat03,
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .sef-04.no-repeat-sub {
  opacity: 0;
}
.ef-04.is-active,
.sef-04.is-active01 {
  animation: slideIn04 1.5s ease-out;
}
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .ef-04.is-active.no-repeat,
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .ef-04.is-active.no-repeat02,
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .ef-04.is-active.no-repeat03,
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .sef-04.is-active01.no-repeat-sub {
	animation: slideIn04 1.5s 1.0s ease-out forwards;
}
@keyframes slideIn04 {
  0% {
    transform: translateY(-50%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/*-----------------------
 メインテキストエフェクト（パターン5）
-------------------------*/
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .ef-05.no-repeat,
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .ef-05.no-repeat02,
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .ef-05.no-repeat03,
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .sef-05.no-repeat-sub {
  opacity: 0;
}
.ef-05.is-active,
.sef-05.is-active01 {
  animation: slideIn05 1.5s ease-out;
}
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .ef-05.is-active.no-repeat,
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .ef-05.is-active.no-repeat02,
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .ef-05.is-active.no-repeat03,
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .sef-05.is-active01.no-repeat-sub {
	animation: slideIn05 1.5s 1.0s ease-out forwards;
}
@keyframes slideIn05 {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/*-----------------------
 メインテキストエフェクト（パターン6）
-------------------------*/
/* 親要素のデフォルト状態 */
.ef-06,
.sef-06 {
  text-transform: uppercase;
  --base-delay: 0s;
  --opacity: 0;
  --scale: 0;
}
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .ef-06.no-repeat,
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .ef-06.no-repeat02,
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .ef-06.no-repeat03,
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .sef-06.no-repeat-sub {
  --base-delay: 1.0s;
}
.ef-06.is-active,
.sef-06.is-active01 {
  --opacity: 1;
  --scale: 1;
  transition-delay: 0s !important; 
}
/* 各文字（span）のアニメーション設定 */
.ef-06 span,
.sef-06 span {
  display: inline-block;
  transform: scale(var(--scale));
  opacity: var(--opacity);
  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(var(--base-delay, 0s) + (0.02s * var(--char-index)));
}

/*-----------------------
 メインテキストエフェクト（パターン7）
-------------------------*/ 
.ef-07.is-active span,
.sef-07.is-active01 span {
  display: inline-block;
  opacity: 0;
  transform: translate(-150px, 0) scale(.3);
  /* JavaScriptで設定した --delay 変数を animation-delay に適用 */
  animation: leftRight .5s forwards var(--delay);
}
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .ef-07.is-active.no-repeat span,
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .ef-07.is-active.no-repeat02 span,
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .ef-07.is-active.no-repeat03 span,
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .sef-07.is-active01.no-repeat-sub span {
	animation-delay: calc(var(--delay) + 1.0s);
}
@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 {
animation-name: appear;
animation-duration: 0s;
animation-fill-mode: both;
/* ここを修正: JavaScriptで設定した --calculated-delay 変数を animation-delay に適用 */
animation-delay: var(--calculated-delay);
}
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .ef-08.is-active.no-repeat span,
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .ef-08.is-active.no-repeat02 span,
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .ef-08.is-active.no-repeat03 span,
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .sef-08.is-active01.no-repeat-sub span {
	animation-delay: calc(var(--calculated-delay) + 1.0s);
}
.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 {
animation-name: appear01;
animation-duration: 1.0s;
animation-fill-mode: both;
/* ここを修正: JavaScriptで設定した --calculated-delay 変数を animation-delay に適用 */
animation-delay: var(--calculated-delay);
}
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .ef-09.is-active.no-repeat span,
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .ef-09.is-active.no-repeat02 span,
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .ef-09.is-active.no-repeat03 span,
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .sef-09.is-active01.no-repeat-sub span {
animation-delay: calc(var(--calculated-delay) + 1.0s);
}
@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-main {
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 0s;
}
.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.6s cubic-bezier(0.22, 1, 0.36, 1) forwards, 
             fade-out02 0.6s 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;
}
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .no-repeat00.other01:has(.is-active),
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .no-repeat00.other01:has(.is-active01) {
    opacity: 0; 
    animation: text-reveal02 0.6s 1s forwards;
}
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .no-repeat00.other01:has(.is-active)::before,
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .no-repeat00.other01:has(.is-active01)::before {
  opacity: 0;
  transform: scaleX(0) translateX(-5%);
  animation: dynamic-bg-animation02 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards 1s, fade-out02 0.6s 1s forwards;
}
@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);
	opacity: 1;
  }
  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;
  }
}
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
html.translated-ltr .visually-hidden {
	position: unset;
	width: auto;
	height: auto;
}
html.translated-ltr .char-span {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/*-----------------------
 メインテキストエフェクト（微調整のため追加）
-------------------------*/ 
.main-image-text.hidden {
	display: none;
}
.main-image-text.visible {
	display: block;
}
.visible div div div.main-image-text-main:not(.is-active):not(.ef-06) {
	opacity: 0;
}
.visible div div div.main-image-text-sub:not(.is-active01):not(.sef-06) {
	opacity: 0;
}
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .main-image-text.hidden:has(.ef-06.no-repeat01),
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .main-image-text.hidden:has(.ef-06.no-repeat02),
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .main-image-text.hidden:has(.ef-06.no-repeat03),
body:has(#loader-wrap, #loading, #splash, #loader-wrap01) .main-image-text.hidden:has(.sef-06.no-repeat-sub) {
	display: block;
}
.translated-ltr .ef-01,
.translated-ltr .ef-06,
.translated-ltr .ef-07,
.translated-ltr .ef-08,
.translated-ltr .ef-09,
.translated-ltr .sef-01,
.translated-ltr .sef-06,
.translated-ltr .sef-07,
.translated-ltr .sef-08,
.translated-ltr .sef-09 {
	opacity: 1 !important;
}