@import url('https://fonts.googleapis.com/css2?family=Kaisei+Decol:wght@500&family=Shippori+Mincho&display=swap');

body{
	background: #ece8dd;
}

main{
	background: url(../images/sideBg.png) repeat-y center top/1900px;
}

/************************************** info start ***************************************/
.info{
	position: relative;
}

.info .scene{
	position: absolute;
	left:50%;
	bottom:0;
	width:115%;
	aspect-ratio:2.4722;
	translate:-50% 0;
	background: url(../images/scene.svg) no-repeat center/100%;
	overflow: hidden;
}
/************************************** info end ***************************************/

.themeExtra .videoBlock{
	position:relative;
	margin:0 auto;
	width:85%;
}

.themeExtra img{
	display:block;
	width:100%;
}

.themeExtra .videoBlock .vBtn{
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	cursor:pointer;
	display:flex;
	justify-content:center;
	align-items:center;
}
.themeExtra .videoBlock .vBtn span{
	display:block;
	width:8.5%;
	min-width:50px;
	max-width:68px;
	animation:flashVBtn 0.8s ease-in infinite alternate;
}
@keyframes flashVBtn{
	from{
		transform:scale(0.9);
		opacity:0.6;
	}
}
.themeExtra .videoBlock .vBtn span:before{
	content:"";
	display:block;
	padding-top:100%;
	background:url(https://www.nordic.com.tw/images/vBtn.png) no-repeat center;
	background-size:contain;
}
.themeExtra .videoBlock .vBtn:hover span{
	animation:none;
}

/** videoOverlay start **/
.videoOverlay{
	position:fixed;
	left:0;
	top:0;
	width:100%;
	height:100vh;
	z-index:2;
	background:rgba(255, 255, 255, 0.9);
	justify-content:center;
	align-items:center;
	display:flex;
	opacity:0;
	transition:opacity 0.3s;
	pointer-events:none;
}
.videoOverlay.show{
	opacity:1;
	pointer-events:auto;
}
.videoOverlay .videoOverlayCT{
	position:relative;
	width:95%;
	max-width:960px;
	background:#000;
	transform:scale(0.5);
	transition:transform 0.3s;
}
.videoOverlay.show .videoOverlayCT{
	transform:none;
}
.videoOverlay .videoOverlayCT:before{
	content:"";
	display:block;
	padding-top:56.25%;
}
.videoOverlay iframe{
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	border:none;
	display:block;
}

.videoOverlay .closeBtn{
	position:absolute;
	right:0;
	bottom:calc(100% + 10px);
	width:30px;
	height:30px;
	cursor:pointer;
}
.videoOverlay .closeBtn:before,
.videoOverlay .closeBtn:after{
	position:absolute;
	content:"";
	right:0;
	top:50%;
	width:90%;
	height:2px;
	background:#999;
	border-radius:1px;
}
.videoOverlay .closeBtn:before{
	transform:translateY(-50%) rotate(-45deg);
}
.videoOverlay .closeBtn:after{
	transform:translateY(-50%) rotate(-135deg);
}
.videoOverlay .closeBtn:hover:before,
.videoOverlay .closeBtn:hover:after{
	background:#666;
}
/** videoOverlay end **/

.themeEventContainer{
	font-size:14px;
	color:currentColor;
	margin-top:5%;
}

.themeEventContainer h2{
	font-size:2.5em;
	font-family: 'Kaisei Decol';
	font-weight: 500;
	text-align: center;
}

/************************************** knowledge start ***************************************/
.knowledgeWrapper{
	margin:5% auto 0;
	width:90%;
	max-width:720px;
}

.knowledgeWrapper ul{
	margin:5% auto 0;
	padding:0 2em;
	font-family: 'Shippori Mincho';
	text-align: center;
}

.knowledgeWrapper h3{
	color:#853333;
}

.knowledgeWrapper p{
	margin:0.8em 0 0;
	line-height: 1.8em;
}

.knowledgeWrapper .slickPN{
	opacity: 1;
}
.knowledgeWrapper .slickPN,
.knowledgeWrapper .slickPN:hover{
	background: transparent;
}
.knowledgeWrapper .slickPN.prev{
	left:auto;
	right:100%;
}
.knowledgeWrapper .slickPN.next{
	left:100%;
}
.knowledgeWrapper .slickPN:hover:before,
.knowledgeWrapper .slickPN:hover:after{
	background: #333;
}
/************************************** knowledge end ***************************************/

/************************************** productImg start ***************************************/
.productImgWrapper{
	margin:5% auto 0;
	width:85%;
}

.productImg{
	margin-top:2.5%;
}

.productImg > ul{
	margin-bottom:0;
}
.productImg .slick-track{
	padding: 5% 0 3%;
}
.productImg .slick-slide{
	position: relative;
	transform-origin: center 70%;
	transform: scale(0.95);
	opacity: 0.5;
	transition: all 0.2s;
}
.productImg .slick-slide:not(.slick-active){
	cursor: pointer;
}
.productImg .slick-center{
	position: relative;
	transform: scale(1.05);
	opacity: 1;
	z-index: 1;
}
.productImg img{
	display: block;
	width:100%;
}
.productImg .slick-slide em{
	position: absolute;
	right:0;
	bottom:0;
	max-width:100%;
	padding:0.5em 1em;
	font-style: normal;
	font-size: 0.9em;
	line-height: 1em;
	text-align: right;
	color:#FFF;
	background: rgba(0, 0, 0, 0.3);
}

.productImg .slickPN{
	transition: all 0.2s;
}
.productImg:hover .slickPN{
	opacity: 1;
}

.productImg h3,
.productImg p{
	width:51%;
	text-align: center;
	margin:0.5em auto 0;
	transition: opacity 0.2s;
	opacity: 0;
}
.productImg h3{
	font-size: 1.35em;
}
.productImg p{
	font-size: 1em;
}
.productImg h3.done,
.productImg p.done{
	opacity: 1;
}
/************************************** productImg end ***************************************/

/********************************** productListSection start ***************************************/
.productListSection .top{
	display: block;
	width:85%;
	margin:0 auto 2.5%;
}

.productListSection .btm{
	display: block;
	width:95%;
	margin:2.5% auto 0;
}
/********************************** productListSection end ***************************************/

/************************************** introLayer start ***************************************/
.introLayer{
	position: fixed;
	left:0;
	top:0;
	width:100%;
	height:100%;
	z-index: 1;
	pointer-events: none;
}

.introLayer img{
	position: absolute;
	left:130%;
	top:115%;
	width:40%;
	display: block;
}
/************************************** introLayer end ***************************************/


@media screen and (min-width:1024px) and (max-width:1200px){
	
	.themeEventContainer{
		font-size:1.16vw;
	}
	
}


@media screen and (max-width:1023px){
	
	/************************************** info start ***************************************/
	.info .scene{
		position: relative;
		width:auto;
		margin:10% 0 0;
	}
	/************************************** info end ***************************************/
	
	.themeExtra .videoBlock{
		width:auto;
	}
	
	.mainContainer > section.themeEventContainer{
		margin-top:10%;
	}
	
	.themeEventContainer h2{
		font-size:1.8em;
	}
	
	/************************************** knowledge start ***************************************/
	.knowledgeWrapper{
		width:auto;
	}

	.knowledgeWrapper ul{
		width:75%;
		padding:0;
	}
	/************************************** knowledge end ***************************************/
	
	/************************************** productImg start ***************************************/
	.productImgWrapper{
		width:auto;
	}
	/************************************** productImg end ***************************************/
	
	/********************************** productListSection start ***************************************/
	.productListSection .top{
		width:auto;
		aspect-ratio:4;
		object-fit: cover;
	}
	
	.productListSection .btm{
		width:auto;
	}
	/********************************** productListSection end ***************************************/
	
	/************************************** introLayer start ***************************************/
	.introLayer img{
		left:150%;
		top:70%;
		width:78%;
	}
	/************************************** introLayer end ***************************************/
	
}


@media screen and (max-width:767px){
	
	/************************************** productImg start ***************************************/
	.productImgWrapper{
		margin-top:10%;
	}
	
	.productImg .slick-slide em{
		font-size: 0.75em;
	}
	
	.productImg .slickPN{
		opacity: 1;
	}
	
	.productImg h3,
	.productImg p{
		width:90%;
	}
	.productImg h3{
		font-size: 1.2em;
	}
	/************************************** productImg end ***************************************/
	
}
