@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: 999;
}


.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;
    padding-top: 62%;
}
ul.contents-slider {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
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: 9999;
  }
  
  #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: 999;
	background: #f2f2f2;
	animation-duration: 0.4s;
	animation-delay:0.6s;
	animation-fill-mode: forwards;
	animation-name: top-op;
  }
  .top-op2{
	z-index: 1000;
	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: 999;
  }
   
  #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:9999;
  }
  .shutter::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	margin: auto;
	background-color: #fff;
	width: 0;
	height: 1px;
  }
  .shutter {
	-webkit-animation: byeShutter 2.6s forwards;
			animation: byeShutter 2.6s forwards;
  }
  .shutter::before {
	-webkit-animation: shutterOpen 2.6s forwards;
			animation: shutterOpen 2.6s forwards;
  }
  .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: 10000;
  }
  .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: 999;
	  text-align:center;
	  color:#fff;
	  background-color: #333;
  }
  
  /* Loading画像中央配置　*/
  #splash_text {
	  position: absolute;
	  top: 50%;
	  left: 50%;
	  z-index: 999;
	  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;
}

@media screen and (max-width: 767px) {
    .c-video .main-image-text {
        top: 125%;
    }
    .c-video .main-image-text-main {
        font-size: 1.8rem;
    }
    .c-video .main-image-text-sub {
        font-size: 1.2rem;
    }
    .c-video .main-image-text-box {
        padding: 15px;
    }
    .c-video .c-video__frame {
        margin-bottom: 100px;
    }
}
@media screen and (min-width: 768px) {
    .main-iamge-hero .c-video {
        top: -160px;
        margin-bottom: -160px;
        z-index: -1;
    }
}
@media screen and (max-width: 767px) {
    .main-iamge-hero .c-video {
        top: -60px;
        margin-bottom: 0;
    }
    #google_language_translator {
        position: relative;
        top: 200px;
    }
}