@charset "UTF-8";

.entry-title
{
	font-size: clamp(1.0rem, 1.75vw, 1.5rem);
	display: flex;
	max-width: 100%;
	justify-content: center;
	align-items: flex-end;
	border-bottom: 1px solid;
	padding: 4rem 2rem 5rem;
	margin-bottom: 5rem;
}

.title-image
{
	display:flex;
	justify-content: center;
	border-bottom: 1px solid rgb(240, 240, 240);
	overflow:hidden;
}
.title-image .bg
{
	position:absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size:cover;
	background-position: 50% 50%;
	-webkit-filter: blur(10px);
	filter: blur(10px);
	transform: scale(1.2);
}
.title-image .cv
{
	position:absolute;
	width:100%;
	height:100%;
	top:0;
	left:0;
	background-color:rgba(0,0,0,.3);
}

.title-image figure
{
	max-width: 1240px;
	line-height: 0;
}

.entry-title h1
{
	font-size: 1.25em;
	line-height: 1.5;
}

.entry-title h1 > span
{
	display:block;
}

.entry-title h1 > span + span
{
	margin-top: .25em;
}

.entry-title h1 > span.sub_title,
.entry-title h1 > span.catch
{
	font-size: .75em;
}

.entry-title .date_status
{
	display: flex;
	flex-wrap:wrap;
	align-items:center;
	margin-bottom: .5em;
}

.entry-title .date
{
	margin-left: 1em;
	font-family: 'EG-M', serif;
	font-weight: 500;
}

.entry-title .status
{
	font-size: max(.9rem,.75em);
	font-family: 'Roboto-M', 'GG-M', sans-serif;
	font-weight: 550;
	color:rgb(255, 255, 255);
	background-color:rgb(46, 91, 48);
	padding: .5em 1em;
	line-height: 1;
	border-radius:1em;
}

.entry-title .status.open
{
	background-color:rgb(180, 50, 50);
}
.entry-title .status.close
{
	background-color: rgb(50, 50, 50);
}

.entry-title .thumb
{
	line-height: 0;
	margin-right: 2rem;
}


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

@media screen and (max-width: 600px)
{
	.entry-title
	{
		flex-direction: column;
		align-items: center;
	}
	.entry-title .thumb
	{
		margin-right:0;
		margin-bottom: 3rem;
	}
}

@media screen and (max-width: 767px)
{
	#primary #content div.entry-content table table th,
	#primary #content div.entry-content table table td
	{
		display: block;
	}
}