@charset "utf-8";





/* -----------------------
	Grobal Menu */
#header-height-spacser{
	position: relative;
	width: 100%;
	height: 58px;
}
#header-wrap{
	position: relative;
}
#header-wrap.is-fixed{
	position: fixed;
	top: 0;
}



/* -------------------
	News Section */
#news-wrap{
	max-width: var(--wide-wrap);
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 87px;
}
a.news-link {
	position: relative;
	clear: both;
	display: block;
	width: 100%;
	max-width: var(--wide-wrap);
	margin: 0 auto 7.8em;
	color: var(--txt-color);
	transition: 0.3s ease-in-out;
}
a.short-news{
	margin-bottom: 2em;
}
a:hover.news-link {
	display: block;
	color:#999;
}

/* -----------------------
	news links Mousehover */

.news-image{
	position: relative;
	display: block;
}

a.news-link .news-image img{
	display: block;
	width: 100%;
	height:auto;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}
a:hover.news-link .news-image img{
	opacity:0.3;
	-moz-opacity:0.3;
	filter:alpha(opacity = 30);
}

a.news-link .caption{
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	color: white;
	font-size: 2.4em;
	line-height: 1.6;
	text-align: center;
	opacity: 0;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	z-index: 99;
}
a:hover.news-link .caption{
	opacity: 1;
}

/* -----------------------
	production tile */
a.news-link .news-slide-caption{
	width: 100%;
	max-width: var(--wide-wrap);
	margin-left: auto;
	margin-right: auto;
	margin-top: 1.3em;
	text-align: left;
}
.news-slide-caption h3{
	font-size: 1.34em;
	padding-left: 0;
	line-height:1.5;
	letter-spacing: 0em;
	margin-bottom: 0.2em;
}
.news-slide-caption .category{
	display: block;
	padding-left: 0;
	font-size: 0.89em;
	line-height:1.5;
}
@media (width <=1420px) {
	a.news-link .news-slide-caption{
		width: 95%;
	}
}
@media (width <=768px) {
	
	/* Grobal Menu (iPhone)*/
	#header-height-spacser{
		position: absolute;
		width: 100%;
		height: 58px;
	}
	
	#header-wrap{
		position: fixed;
	}
	#header-wrap.is-fixed{
		position: static;
		top: auto;
	}
	

	/* -----------------------
		News Section (iPhone)*/	
	.news-slide-caption h3{
		font-size: 1.1em;
	}
	.news-slide-caption .category{
		font-size: 1em;
	}
	a.news-link .caption{
		font-size: 1.2em;
	}

}