main{
	background: url(../images/sideBg.svg) repeat-y center top/1900px;
}

.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%;
}

/************************************** intro start ***************************************/
.intro{
	position: relative;
}

.intro .leaf{
	position: absolute;
	left:0;
	top:0;
	width:16.66%;
	margin:-8% 0 0 -23.33%;
}
/************************************** intro end ***************************************/

/************************************** info start ***************************************/
.info{
	position: relative;
}

.info .scene{
	position: absolute;
	left:0;
	bottom:0;
	width:100%;
	aspect-ratio:2.33;
	background: url(../images/scene.svg) no-repeat center/100%;
	overflow: hidden;
}

.info .scene .hand{
	position: absolute;
	left:0;
	top:0;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	animation-duration: 2.5s;
	animation-iteration-count: infinite;
}
.info .scene .hand.L{
	margin:19% 0 0 69.5%;
	width:7.5%;
	aspect-ratio:1;
	transform-origin: right bottom;
	background-image: url(../images/sceneHandL.svg);
	animation-name:waveHandL;
}
.info .scene .hand.R{
	margin:19.62% 0 0 93.25%;
	width:6.25%;
	aspect-ratio:0.89;
	transform-origin: left bottom;
	background-image: url(../images/sceneHandR.svg);
	animation-name:waveHandR;
}
@keyframes waveHandL{
	0%{	transform: rotate(5deg);}
	10%{ transform: rotate(-10deg);}
	20%{ transform: rotate(5deg);}
	30%{ transform: rotate(-10deg);}
	40%{ transform: rotate(5deg);}
	100%{ transform: rotate(5deg);}
}
@keyframes waveHandR{
	0%{	transform: rotate(-5deg);}
	10%{ transform: rotate(10deg);}
	20%{ transform: rotate(-5deg);}
	30%{ transform: rotate(10deg);}
	40%{ transform: rotate(-5deg);}
	100%{ transform: rotate(-5deg);}
}

.info .scene .o{
	position: absolute;
	width:2.5%;
	animation-name:snow;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}
.info .scene .o1{ left:10%; top:-10%;}
.info .scene .o2{ left:15%; top:-98%;}
.info .scene .o3{ left:20%; top:-35%;}
.info .scene .o4{ left:25%; top:-60%;}
.info .scene .o5{ left:95%; top:-48%;}
.info .scene .o6{ left:35%; top:-50%;}
.info .scene .o7{ left:66%; top:-90%;}
.info .scene .o8{ left:45%; top:-25%;}
.info .scene .o9{ left:50%; top:-78%;}
.info .scene .o10{ left:55%; top:-88%;}
.info .scene .o11{ left:60%; top:-32%;}
.info .scene .o12{ left:88%; top:-15%;}

.info .scene .s1{
	transform:scale(0.85);
	animation-duration:4s;
}
.info .scene .s2{
	transform:scale(0.75);
	animation-duration:7s;
}
.info .scene .s3{
	transform:scale(0.55);
	animation-duration:10s;
}
.info .scene .s4{
	transform:scale(0.45);
	animation-duration:13s;
}

.info .scene .o:before{
	content:"";
	display: block;
	aspect-ratio:1;
	background: url(../images/snow.svg) no-repeat center/100%;
	animation:snowRatate 3s infinite;
}
@keyframes snow{
	to{	top: 100%;}
}
@keyframes snowRatate{
	to{	transform: rotate(-360deg);}
}
/************************************** info end ***************************************/

/************************************** productImg start ***************************************/
.productImg{
	margin:5% auto 0;
	width:85%;
}

.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:50%;
	text-align: center;
	margin:0.5em auto 0;
	transition: opacity 0.2s;
	opacity: 0;
}
.productImg h3{
	font-size: 1.35em;
	text-decoration: underline;
}
.productImg p{
	font-size: 1em;
}
.productImg h3.done,
.productImg p.done{
	opacity: 1;
}
/************************************** productImg end ***************************************/

/********************************** productListSection start ***************************************/
.mainContainer > section.productListSection:not(:first-child){
	position: relative;
	margin-top:10%;
}

.productListSection .light{
	position: absolute;
	top:0;
	display: block;
	width:41.66%;
	margin-top:-5%;
}
.productListSection .light.L{
	left:0;
}
.productListSection .light.R{
	right:0;
}

.productListSection .btm{
	display: block;
	width:100%;
	margin-top:4em;
}
/********************************** productListSection end ***************************************/

/************************************** introLayer start ***************************************/
.introLayer{
	position: fixed;
	left:0;
	top:0;
	width:100%;
	height:100%;
	background: rgba(255, 255, 255, 0.9);
	z-index: 1;
	pointer-events: none;
}

.introLayer img{
	position: absolute;
	left:130%;
	top:115%;
	width:35%;
	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){
	
	.mainContainer{
		overflow: hidden;
	}
	
	.themeExtra .videoBlock{
		width:auto;
	}
	
	.mainContainer > section.themeEventContainer{
		margin-top:10%;
	}
	
	/************************************** info start ***************************************/
	.info .scene{
		position: relative;
		width:auto;
		margin-top:10%;
	}
	/************************************** info end ***************************************/
	
	/************************************** productImg start ***************************************/
	.productImg{
		width:auto;
	}
	/************************************** productImg end ***************************************/
	
	/********************************** productListSection start ***************************************/
	.productListSection .light{
		margin-top:-3%;
		width:50%;
	}
	.productListSection .light.L{
		left:-15%;
	}
	.productListSection .light.R{
		right:-15%;
	}

	.productListSection .btm{
		aspect-ratio:2.2;
		object-fit:cover;
		margin-top:10%;
	}
	/********************************** productListSection end ***************************************/
	
	/************************************** introLayer start ***************************************/
	.introLayer img{
		left:150%;
		top:70%;
		width:72%;
	}
	/************************************** introLayer end ***************************************/
	
}


@media screen and (max-width:767px){
	
	/************************************** productImg start ***************************************/
	.productImg{
		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 ***************************************/
	
}
