/*----------------------------------------
	wp
----------------------------------------*/
body{
font-family: "Zen Kaku Gothic New", sans-serif;
}
#news-area{
	margin-top: 30px
}
.news_events__list{
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	margin-top: 40px;
	padding: 0;
}
@media screen and (max-width: 667px) {
	.news_events__list{
		gap: 20px;
	}
}
.news_events__list li{
	position:relative;
	flex: 0 0 calc((100% - 2 * 40px) / 3);
	box-sizing: border-box;
}
@media screen and (max-width: 667px) {
	.news_events__list li{
		flex: 0 0 calc((100% - 1 * 20px) / 2);
	}
}
.news_events__list li p.item__new{
	position: absolute;
	top: 8px;
	left: -8px;
	width:64px;
	margin-top: 0;
	z-index: 997;
}
@media screen and (max-width: 667px) {
	.news_events__list li p.item__new{
		width:40px;
		top: 4px;
		left: -5px;
	}
}
.news_events__list li p.item__new img{
	width:100%;
}
.news_events__list li a:hover{
	text-decoration: none;
}
.news_events__list .item__img {
	height: 0;
	padding-top: 100%;
	margin-top: 0;
	position: relative;
	overflow: hidden;
	border: 1px solid #ccc;
}
.news_events__list .item__img img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	top: 0;
	left: 0;
	position: absolute;
	transition: transform .5s;
}
@media screen and (min-width: 668px) {
	.news_events__list > li:hover .item__img img{
		transform: scale(1.09);
	}
}
.news_events__list p.item__info{
	display: flex;
	align-items: center;
	margin-top: 1em;
}
@media screen and (max-width: 667px) {
	.news_events__list p.item__info{
		font-size:12px;
	}
}
.news_events__list .item__info .item__tag{
	padding: 0.3em 0.6em;
	margin-left: 1em;
	background: #ccc;
	font-size: 0.8em;
}
.news_events__list .item__info .item__tag.info--cat-news{
	background: #b2daa6;
}
.news_events__list .item__info .item__tag.info--cat-event{
	background: #ffe768;
}
.news_events__list p.item__title{
	margin-top: 0.4em;
	font-size: 20px;
	font-weight: 800;
}
@media screen and (max-width: 667px) {
	.news_events__list p.item__title{
		font-size: 16px;
	}
}
/*@media screen and (max-width: 667px) {
	#news.m-box-section {
		padding-bottom: 90px;
	}
}*/
/* single */
.news-single {
	margin: 40px auto !important; 
}
.news-single .info{
	display: flex;
	align-items: center;
	margin-bottom:12px;
}
.news-single .info p{
	margin-top: 0;
	font-size: 12px;
}
.news-single .info p.t-cat{
	margin-left: 1em;
	padding: 0.2em 0.4em;
	background: #ccc;
	font-size: 0.8em;
}
.news-single h2{
	color: #181818;
	font-size: 24px;
	font-weight: 800;
	letter-spacing: 0.06em
}
.news-single .info p.t-cat.info--cat-event{	background: #ffe768;}
.news-single .info p.t-cat.info--cat-news{	background: #b2daa6;}
.news-single .row-info {
	display: flex;
	flex-wrap: wrap;
	border-top: 1px solid #DBDBDB;
  margin-top: 40px;
}
.news-single .row-info *{
	box-sizing: border-box;
}
.news-single .row-info dt,
.news-single .row-info dd {
	border-bottom: 1px solid #DBDBDB;
}
.news-single .row-info dt {
	width: 154px;
	background-color: #f2f9f0;
	font-weight: bold;
	padding: 18px;
}
.news-single .row-info dd {
	width: calc(100% - 154px);
	padding: 18px;
}

@media screen and (max-width: 667px) {
	.news-single .row-info dt {
		width: 100%;
		padding: 16px;
	}
}
@media screen and (max-width: 667px) {
	.news-single .row-info dd {
		width: 100%;
		padding: 16px;
	}
}
.news-single .img{
  margin-top: 40px;
	text-align: center;
}
.news-single .img img{
	display: block;
	margin: auto;
}
.news-single a.btn-back{
	position: relative;
	display: block;
	max-width: 400px;
	padding: 0.8em 0.8em 0.8em calc(0.8em + 20px);
	margin: 40px auto 0;
	border-radius: 50px;
	background: #395da9;
	color: #fff;
	text-align: center;
	transition: .3s;
}
.news-single a.btn-back:after{
	content: "";
	display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-right: 7px solid #ffffff;
  border-left: 0;
	position: absolute;
	top: 50%;
	left: 20px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
}
.news-single a.btn-back:hover{
	text-decoration: none;
	opacity: .8;
}
.img img{
	max-width: 100%;
}