@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;700&family=Kiwi+Maru&family=Outfit&family=Quicksand:wght@400&display=swap');

.themeImage .tabBtn{
	display: none;
}

.mainContainer{
	max-width: none;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.midBlock{
	width:100%;
	max-width:1140px;
}

.themeMain{
	display: none;
}

.themeEventContainer{
	--color:#666;
	--theme-color:#663300;
	color:var(--color);
	font-family: 'Noto Sans TC';
	font-size: clamp(10px, 1.16vw, 14px);
	width:100%;
	max-width:1920px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.themeEventContainer ~ section{
	width:100%;
	max-width:1200px;
}

/*********************************** aboutBlock start ***********************************************/
.aboutBlock{
	display: flex;
	flex-direction: column;
	align-items: center;
	width:100%;
	max-width:1200px;
	text-align: center;
}

.aboutBlock h2{
	font-size: 2em;
	font-family: Outfit;
	font-weight: normal;
}
.aboutBlock h2 span{
	font-family: 'Kiwi Maru';
}

.aboutBlock blockquote{
	font-size: 1.2em;
	font-family: Quicksand;
	line-height: 1.8em;
	margin:1.5em 0 0;
}
/*********************************** aboutBlock end ***********************************************/

/*********************************** sceneBlock start ***********************************************/
.sceneBlock{
	margin-top:5%;
	max-width: 1200px;
	background: #edecea;
	display: flex;
}

.sceneBlock img{
	width:50%;
	display: block;
}

.sceneBlock .txt{
	width:50%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding:0 4em;
}
.sceneBlock .txt h3{
	font-size: 1.5em;
	line-height: 1em;
	margin:0;
	font-family: Quicksand;
	color:var(--theme-color);
}
.sceneBlock .txt p{
	margin:1.5em 0 0;
	line-height: 2em;
	text-align: justify;
}
/*********************************** sceneBlock end ***********************************************/

/*********************************** galleryBlock start ***********************************************/
.galleryBlock{
	position: relative;
	margin-top:5%;
	width:100%;
	aspect-ratio:4.5;
	overflow:hidden;
}

.galleryBlock:before{
	position: absolute;
	top:0;
	content:"";
	display: block;
	height:100%;
	background-repeat: repeat-x;
	background-position: left center;
	background-size: contain;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}
.gb1:before{
	left:0;
	aspect-ratio:17.85;
	background-image: url(../images/gallery1.jpg);
	animation-name: toLeft;
	animation-duration: 80s;
}
@keyframes toLeft{
	to{
		transform:translateX(-50%);
	}
}
@keyframes toRight{
	to{
		transform:translateX(50%);
	}
}
/*********************************** galleryBlock end ***********************************************/

/*********************************** productIntro start ***********************************************/
.productIntro{
	margin-top:5%;
	width:95%;
	max-width:1200px;
	overflow:hidden;
}

.productIntro > li{
	display: flex;
}

.productIntro .img{
	width:50%;
}
.productIntro > li:nth-child(even) .img{
	order:1;
}
.productIntro .slick{
	margin:0;
}
.productIntro .img li{
	position: relative;
}
.productIntro img{
	display: block;
	width:100%;
}
.productIntro .img li em{
	position: absolute;
	right:0;
	bottom:0;
	max-width:100%;
	padding:0.5em 1em;
	font-style: normal;
	font-size: 0.7em;
	line-height: 1em;
	text-align: right;
	color:#FFF;
	background: rgba(0, 0, 0, 0.3);
}

.productIntro .slickPN{
	opacity: 0;
	transition: opacity 0.2s;
}
.productIntro .slick:hover .slickPN{
	opacity: 1;
}

.productIntro li .txt{
	display: flex;
	flex-direction: column;
	justify-content: center;
	width:50%;
	padding:0 5.5%;
}
.productIntro li .txt h3{
	text-align: center;
	font-size: 1.2em;
	font-weight: 700;
	color:var(--theme-color);
}
.productIntro li .txt p{
	margin: 1.2em 0 0;
	line-height: 1.8em;
	text-align: justify;
}
/*********************************** productIntro end ***********************************************/


@media screen and (max-width:1023px){
	
	.themeImage .tabBlock .tabCT > section > h3{
		display: none;
	}
	
	.midBlock{
		width:calc(100% - 20px);
	}
	
	.themeEventContainer{
		font-size: 13px;
	}
	
	/*********************************** aboutBlock start ***********************************************/
	.aboutBlock{
		width:90%;
	}
	.aboutBlock blockquote{
		font-size: 1.1em;
	}
	/*********************************** aboutBlock end ***********************************************/
	
	/*********************************** sceneBlock start ***********************************************/
	.sceneBlock{
		margin-top:10%;
		display: block;
	}

	.sceneBlock img{
		width:100%;
	}

	.sceneBlock .txt{
		width:auto;
		display: block;
		padding:3em;
	}
	/*********************************** sceneBlock end ***********************************************/
	
	/*********************************** galleryBlock start ***********************************************/
	.galleryBlock{
		margin-top:10%;
		aspect-ratio:2;
	}
	/*********************************** galleryBlock end ***********************************************/
	
	/*********************************** productIntro start ***********************************************/
	.productIntro{
		width:100%;
		margin-top:10%;
	}

	.productIntro > li{
		display: block;
	}

	.productIntro .img{
		width:auto;
	}

	.productIntro li .txt{
		display: block;
		width:auto;
		padding:8% 5%;
	}
	/*********************************** productIntro end ***********************************************/
	
}
