@charset "UTF-8";
/* CSS Document */
.news-contents{
	width: 980px;
	margin: 0 auto;
	font-weight: 400;
}
@media screen and (max-width:640px) {
	.news-contents{
		width: 90%;
	}
}
.news-contents .day{
	text-align: right;
	margin-bottom: 30px;
}
.news-contents h2{
	font-size: 3rem;
	font-weight: 700;
	margin-bottom: 25px;
	text-align: center;
}
.news-contents .text_block{
	margin-bottom: 30px;
}

/*人物紹介ブロック*/
.d-flex_introduction{
	display: flex;
	justify-content: space-between;
	justify-content: center;
}
.d-flex_introduction .img{
	max-width: 15%;
	margin-right: 20px;
}
.d-flex_introduction .txt {
	position: relative;
	display: inline-block;
	margin: 0 0 0 15px;
	padding: 20px 30px;
	min-width: 120px;
	width: 80%;
	color: #555;
	font-size: 16px;
	background: #efefef;
	border-radius: 10px
}
.d-flex_introduction .txt:before {
	content: "";
	position: absolute;
	top: 50%;
	left: -30px;
	margin-top: -15px;
	border: 15px solid transparent;
	border-right: 15px solid #efefef;
}
@media screen and (max-width:640px) {
	.d-flex_introduction{
		display: block;
	}
	.d-flex_introduction .img{
		max-width: 100%;
		text-align: center;
		margin: 0 0 3%
	}
	.d-flex_introduction .txt {
		width: 100%;
		margin: 1em 0 0;
	}
	.d-flex_introduction .txt:before {
		content: "";
		position: absolute;
		top: -15px;
		left: 50%;
		margin-left: -15px;
		border: 15px solid transparent;
		border-bottom: 15px solid #efefef;
	}
}

/*汎用クラス----------------------------------*/
/*背景タイトル*/
.ttl_backline{
	background-color: #e60012;
	padding: 1em 1em;
	color: #fff!important;
	font-weight: 700;
	font-size: 1.8rem;
	margin-bottom: 1em;
}
/*下線タイトル*/
.ttl_underline {
	border-bottom: solid 3px #999999;
	position: relative;
	font-size: 1.8rem;
	font-weight: 700;
	padding-bottom: 5px;
	margin-bottom: 1em;
}
.ttl_underline:after {
	position: absolute;
	content: " ";
	display: block;
	border-bottom: solid 3px #e60012;
	bottom: -3px;
	width: 20%;
}
/*マージン*/
.mb0{margin-bottom: 0px!important;}
.mb10{margin-bottom: 10px!important;}
.mb20{margin-bottom: 20px!important;}
.mb30{margin-bottom: 30px!important;}



