/**********************************************************************/
/******************************* Text ********************************/
/**********************************************************************/

.max_page_width
{
	max-width: 1120px;
}

#news
{
	padding-top: 3em;
	padding-bottom: 5em;
}

#news .cont
{
	background-color: rgb(255, 255, 255);
	padding:clamp(.5rem, 1vw, 1rem);
}

#news .cont > a.news
{
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap:wrap;
	padding: .5em 0;
	
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

#news .cont > a.news + a.news
{
	border-top: 1px solid rgb(240, 240, 240);
}
#news .cont .date_tag
{
	display: flex;
	flex-direction:column;
	align-items:center;
	margin-right: 1em;
	font-size: .9em;
}
#news .cont .tag
{
	font-family:  'R-M', 'GG-M', 'YU Gothic UI', 'Hiragino Sans', sans-serif;
	font-weight: 500;
	min-width: 10em;
	font-size: .9em;
	background-color: rgb(170, 170, 170);
	color: rgb(255, 255, 255);
	border-radius: .5em;
	line-height: 1;
	padding: .5em .5em;
	display: flex;
	align-items: center;
	justify-content:center;
}

#news .cont .title
{
	font-family:  'R-M', 'GG-M', 'YU Gothic UI', 'Hiragino Sans', sans-serif;
	font-weight: 500;
	flex-grow: 1;
	display:flex;
	justify-content: space-between;
	align-items:flex-end;
	flex-wrap:nowrap;
}

#news .cont .news .title:after
{
	content: "\f061";
	font-family: "awesome";
	font-size: 1.5em;
	display:block;
	transform: rotate(-45deg);
	transition: all .3s ease;
	margin-left: 1em;
}

body:not(.touch) #news .cont > a.news:hover .title:after
{
	transform: rotate(0deg);
}


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

@media screen and (max-width: 650px)
{
	#news > div
	{
		flex-direction: column;
	}
	#news .cont
	{
		width: 100%;
	}
	
	.title_category
	{
		position: static;
		width: 100%;
		border-bottom: 2px solid rgb(255, 255, 255);
		padding-bottom: 1rem;
	}
	
	#caterories
	{
		overflow-x: auto;
		overflow-y: hidden;
		width: calc(100% + 1rem);
		margin-left: -.5rem;
		margin-bottom: 0;
	}
	
	#caterories > div
	{
		flex-direction: row;
	}
	#caterories a.cat
	{
		margin: .5rem;
	}
	
}