@charset "UTF-8";


/**********************************************************************/
/*************************** Bulletin New ******************************/
/**********************************************************************/

#bulletinNew
{
	margin-bottom: 5rem;
}

#bulletinNew > a
{
	cursor: default;
	color: rgb(0, 0, 0);
	text-decoration: none;
	box-sizing:border-box;
	width: 100%;
	background-color: rgb(240, 240, 240);
	padding: 2rem;
	
	display:-webkit-box;
	display:-moz-box;
	display:-ms-box;
	display:-webkit-flexbox;
	display:-moz-flexbox;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:-moz-flex;
	display:-ms-flex;
	display:flex;
	
	-webkit-align-items: center;
	align-items: center;
	
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

#bulletinNew .bulletinLogoV
{
	position: relative;
	width: 5%;
	min-width: 50px;
	background-size: cover;
	background-position: 50% 50%;
}

#bulletinNew .bulletinLogoV:after
{
	content:"";
	display: block;
	position: relative;
	padding-top: 600%;
}

.svg #bulletinNew .bulletinLogoV{background-image: url(../_img/titleV.svg);}
.no-svg #bulletinNew .bulletinLogoV{background-image: url(../_img/titleV.png);}

#bulletinNew .bulletinContents
{
	position:relative;
	
	display:-webkit-box;
	display:-moz-box;
	display:-ms-box;
	display:-webkit-flexbox;
	display:-moz-flexbox;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:-moz-flex;
	display:-ms-flex;
	display:flex;
	
	-webkit-align-items: center;
	align-items: center;
	
	-webkit-justify-content: center;
	justify-content: center;
}

#bulletinNew .bulletinLogoH
{
	position: relative;
	width: 100%;
	background-size: cover;
	background-position: 50% 50%;
}

#bulletinNew .bulletinLogoH:after
{
	content:"";
	display: block;
	position: relative;
	padding-top: 30%;
	margin-bottom: 2rem;
}

.svg #bulletinNew .bulletinLogoH{background-image: url(../_img/titleH.svg);}
.no-svg #bulletinNew .bulletinLogoH{background-image: url(../_img/titleH.png);}

#bulletinNew .bulletinTitle
{
	font-family: 'GG-B';
	font-weight: 700;
	font-size: 2rem;
	margin-bottom: 1rem;
}

#bulletinNew .bulletinFeauture
{
	font-family: 'GG-B';
	font-weight: 700;
	font-size: 1rem;
}

#bulletinNew .linkBtL
{
	margin-top: 1.5rem;
	font-size: .9rem;
	width: 100%;
	text-align: center;
	font-family: 'GG-B';
	font-weight: 700;
}

#bulletinNew .bulletinCover
{
	position: relative;
	width: 50%;
	min-height: 5rem;
	overflow: hidden;
}


#bulletinNew .bulletinCover img
{
	width: 130%;
	transform: rotate(10deg) translateX(-12%) translateY(-5%);
	transform-origin: center center;
}

/*//////////////////////////////////////////////////////////////////////////////////
///////////////////////////////// MEDIA SCREEN /////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////*/

@media screen and (min-width: 1601px)
{
	#bulletinNew .bulletinCover
	{
		height: calc(100vh / 2);
	}
}
@media screen and (max-width: 1600px)
{
	#bulletinNew .bulletinCover
	{
		height: calc(100vh / 2.7);
	}
}

@media screen and (min-width: 901px)
{
	#bulletinNew .bulletinLogoV
	{
		display: block;
	}
	#bulletinNew .bulletinLogoH
	{
		display: none;
	}
}

@media screen and (max-width: 900px)
{
	#bulletinNew .bulletinLogoV
	{
		display: none;
	}
	#bulletinNew .bulletinLogoH
	{
		display: block;
	}
}

@media screen and  (max-width: 650px)
{
	#bulletinNew > a
	{
		-moz-flex-direction: column-reverse;
		-webkit-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}
	
	#bulletinNew .bulletinContents
	{
		width:100%;
	}
	#bulletinNew .bulletinContents > div
	{
		position: relative;
		width:100%;
	}
	
	#bulletinNew .bulletinCover
	{
		width: 100%;
		margin-bottom: 2rem;
	}
	
/*	#bulletinNew .bulletinCover img
	{
		width: 100%;
		transform: rotate(0deg) translateX(0) translateY(0);
		transform-origin: center center;
	}*/
}