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

#news
{
	padding-top: max(5vw, 5rem);
	padding-bottom: max(10vw, 10rem);
}

#news div.news_wrapper
{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.title_category
{
	position:sticky;
	top: 5rem;
}

.title_category h1,
.title_category h2
{
	font-size: clamp(1.1rem, 5vw, 1.75rem);
}

.title_category h1 a,
.title_category h2 a
{
	border-bottom: none;
	color:rgb(168, 27, 75);
}

#caterories
{
	margin-top: 1rem;
	margin-bottom: 1rem;
}

#caterories > div
{
	display:flex;
	flex-direction: column;
}

#caterories a.cat
{
	display: flex;
	flex-wrap: nowrap;
	white-space: nowrap;
	align-items: center;
	font-family: serif, "A1 Mincho", 'YuMin_36pKn-Medium';
	font-weight: 400;
	margin-bottom: .5em;
	color:rgb(168, 27, 75);
	font-size: .9rem;
}

#caterories a.cat .ch
{
	flex-grow:0;
	flex-shrink:0;
	width: .75rem;
	height: .75rem;
	border: 1px solid rgb(168, 27, 75);
	margin-right: .5em;
}

#caterories a.cat._n .ch:before
{
	content:"";
	display:block;
	position: absolute;
	border-color: rgb(168, 27, 75);
	border-style: solid;
	width: .2em;
	height: .3em;
	border-width: 0px 1px 1px 0;
	transform: rotate(45deg) translateX(.15em) translateY(-.1em);
}

#news .cont
{
	padding-top: 1.5em;
	width:calc(100% - 10rem);
	font-size: 1rem;
}

#news .cont > h3
{
	font-family: R-R, GG-R, sans-serif;
	font-size: .8rem;
	margin-bottom: 1em;
}

#news .cont > a.news
{
	color:rgb(0, 62, 52);
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap:wrap;
	padding: .5em 0;
	border-bottom: 1px solid rgb(255, 255, 255);
	
	-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:nth-of-type(1)
{
	border-top: 1px solid rgb(255, 255, 255);
}
#news .cont .date
{
	margin-right: 1em;
}
#news .cont .tag
{
	margin-right: 2em;
	font-size: .7em;
	border-color: rgb(0, 62, 52);
	border-style: solid;
	border-width: 1px;
	border-radius: .5em;
	color: rgb(0, 62, 52);
	line-height: 1;
	padding: .5em .5em;
	display: flex;
	align-items: center;
	justify-content:center;
}

#news .cont .title
{
	flex-grow: 1;
	display:flex;
	justify-content: space-between;
	align-items:flex-end;
	flex-wrap:nowrap;
}

#news .cont .news .title:after
{
	font-family: f-icons;
	font-weight: 400;
	font-size: 1.1em;
	content: "\f198";
	transform: translateX(-.5em);
	transition: all .3s ease;
	margin-left: 1em;
}

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


/*//////////////////////////////////////////////////////////////////////////////////
///////////////////////////////// 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;
	}
	
}