@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@700&family=Noto+Sans+TC:wght@400;800&display=swap');

.themeEventContainer{
	--theme-color:#000;
	font-family: 'Noto Sans TC', 微軟正黑體, sans-serif;
	font-weight:400;
	font-size:clamp(10px, 1.16vw, 14px);
	margin-top:5%;
	overflow: hidden;
}

/**************************** founder start *********************************/
.founder{
	position: relative;
	padding:12.5% 12.5% 4.16%;
}

.founder .obj{
	position: absolute;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	right:0;
	top:0;
	width:46.83%;
	aspect-ratio:1.7;
	background-image: url(../images/obj1.svg);
}

/************** 標題 start ****************/
.founder {
	h4{
		position: absolute;
		left:0;
		top:0;
		margin:4.16% 0 0 4.16%;
		font-size: 3.6em;
		line-height: 0.92em;
	}
	h4 strong{
		display: block;
		font-family: Lexend;
		font-weight: 700;
		color:var(--theme-color);
	}
	h4 em{
		display: block;
		font-weight: 800;
		font-style: normal;
		font-size: 0.32em;
		margin-top:0.5em;
		line-height: 1em;
		letter-spacing: 0.1em;
	}
}
/************** 標題 end ****************/

.founder ul{
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.founder li{
	width:22.22%;
}
.founder li img{
	display: block;
	width:100%;
}
.founder li h5{
	font-size: 1em;
	font-family: Lexend;
	font-weight: 700;
	margin-top:0.5em;
	color:var(--theme-color);
}
.founder li p{
	font-size: 0.85em;
	margin:0.5em 0 0;
	line-height: 1.8em;
}
/**************************** founder end *********************************/

/*********************************** productIntro start ***********************************************/
.productIntro{
	margin:5% auto 0;
	width:95%;
	overflow:hidden;
}

.productIntro > li{
	display: flex;
}
.productIntro > li+li{
	margin-top:2.5%;
}

.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 h4{
	text-align: center;
	font-size: 1em;
	font-weight: normal;
	margin-top:0.5em;
	opacity: 0;
	transition: opacity 0.5s;
}
.productIntro h4.done{
	opacity:1;
}

.productIntro li .txt{
	display: flex;
	flex-direction: column;
	justify-content: center;
	width:50%;
	padding:0 6%;
}
.productIntro li .txt h3{
	text-align: center;
	font-size: 1.2em;
	font-weight: 700;
	color:var(--theme-color);
}
.productIntro li .txt h3 span{
	font-size: 0.8em;
	font-weight: 400;
}
.productIntro li .txt p{
	margin: 1.2em 0 0;
	line-height: 1.8em;
	color:#666;
}
/*********************************** productIntro end ***********************************************/

/*********************************** eventBlock start ***********************************************/
.eventBlock{
	margin-top:5%;
	padding:4% 8%;
	font-size: 1.05em;
	background: #FAF1DF;
}

.eventBlock p{
	line-height: 1.8em;
}

.eventBlock header{
	text-align: center;
}
.eventBlock header h3{
	color:var(--theme-color);
	font-size: 1.7em;
}
.eventBlock header p{
	margin:1em 0 0;
}

/**************** group start ********************/
.eventBlock .group{
	margin-top:4%;
}

.eventBlock .group h4{
	--line-space:1em;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 1.15em;
	line-height: 1em;
	color:var(--theme-color);
}
.eventBlock .group h4:before,
.eventBlock .group h4:after{
	content:"";
	display: block;
	height:1px;
	background: currentColor;
	flex-grow:1;
}
.eventBlock .group h4:before{
	margin-right:var(--line-space);
}
.eventBlock .group h4:after{
	margin-left:var(--line-space);
}

.eventBlock .gift{
	margin:2% auto 0;
	padding-top: 1px;
	width:70%;
}
.eventBlock .gift:after{
	clear: both;
	content:"";
	display: block;
}
.eventBlock .gift .img{
	float:right;
	width:20%;
	margin:0 0 1em 2em;
	cursor:pointer;
}
.eventBlock .gift .img img{
	display: block;
	width:100%;
	border-radius:50%;
	transition: scale 0.5s;
}
.eventBlock .gift .img:hover img{
	scale:1.05;
}
.eventBlock .gift .img span{
	display: block;
	text-align: center;
	margin-top:0.5em;
}
.eventBlock .gift .img:hover span{
	color:var(--theme-color);
}
.eventBlock .gift p{
	margin:1.5em 0 0;
}
.eventBlock .gift p em{
	font-style: normal;
	text-decoration: underline;
}
.eventBlock .gift p em.showZoom{
	cursor:pointer;
}
.eventBlock .gift p em.showZoom:hover{
	text-decoration: none;
	color:var(--theme-color);
}

.eventBlock .productList{
	margin:0 auto;
	width:95%;
}
/**************** group end ********************/

.overlayCenter.img .txtBlock{
	position:absolute;
	left:0;
	bottom:0;
	width:100%;
	padding:1em;
	text-align:center;
	background:rgba(244, 244, 244, 0.8);
	line-height:1.6em;
}
/*********************************** eventBlock end ***********************************************/


@media screen and (max-width:1023px){
	
	.themeEventContainer{
		font-size: 14px;
	}

	/**************************** founder start *********************************/
	.founder{
		padding:10% 5%;
	}

	.founder .obj{
		width:45%;
	}
	
	/************** 標題 start ****************/
	.founder {
		h4{
			position: static;
			margin:0;
			font-size: 2.5em;
		}
		h4 em{
			font-size: 0.4em;
		}
	}
	/************** 標題 end ****************/

	.founder ul{
		flex-wrap:wrap;
		margin-top:10%;
		font-size: 1.1em;
	}
	.founder li{
		width:47%;
		flex-shrink: 0;
	}
	.founder li:nth-child(n+3){
		margin-top:10%;
	}
	/**************************** founder end *********************************/
	
	/*********************************** productIntro start ***********************************************/
	.productIntro{
		width:auto;
	}

	.productIntro > li{
		display: block;
	}

	.productIntro .img{
		width:auto;
	}

	.productIntro li .txt{
		display: block;
		width:auto;
		padding:8% 5%;
	}
	/*********************************** productIntro end ***********************************************/
	
	/*********************************** eventBlock start ***********************************************/
	.eventBlock{
		margin-top:10%;
		padding:10% 5%;
		font-size: 1em;
	}

	.eventBlock header h3{
		font-size: 1.4em;
	}

	/**************** group start ********************/
	.eventBlock .group{
		margin-top:10%;
	}

	.eventBlock .gift{
		width:auto;
	}
	.eventBlock .gift .img{
		width:35%;
		margin:0 0 1em 1em;
	}

	.eventBlock .productList{
		width:auto;
	}
	/**************** group end ********************/
	/*********************************** eventBlock end ***********************************************/
	
}
