<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@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%;
}</pre></body></html>