@charset "UTF-8";

.fwbold{
	font-weight: 700;
}


/******************Media Queries******************/
@media screen and (max-width: 767px) {
	section h2{
		font-size: 2.0rem;
	}
	section h3{
		font-size: 1.8rem;
	}
}

/*  ----------------------------------------
news-list(一覧)
-------------------------------------------*/
.news-list .news-list__item a{
	color:#464858;
	display: block;
}

.news-list__item{
	border-bottom:1px solid #ccc;
	padding: 2.0rem 0;
	
	position: relative; 
	transition: transform 0.3s ease;
}

.news-list__item a::after{
	content: "";
	display: inline-block;
	background: url(./../images/news/arrow.svg) no-repeat;
	background-position: right center;
	width:41px;
	height: 13px;
	
	position: absolute; 
	right: 10px; 
	top: 50%;
	transition: .3s;
}

.news-list__item a:hover::after {
	right: 0;
}

.news-list__item .release-date{
	margin-bottom: 0;
}
/******************Media Queries******************/
@media screen and (min-width: 768px) {
	.news-list__item .release-date{
		margin-bottom: 0;
	}	
}

/*タイトル*/
.news-list__item-title{
	color: #007B45;
	margin-top: 1.0rem;
	max-width: calc(100% - 60px);
}

.news-list__item-title img{
	vertical-align: -1px;
	margin-left: .2em;
}

/*  ----------------------------------------
news-article（詳細）
-------------------------------------------*/
.news-article h3 + p {
  margin-top: 3.0rem;
}

.news-article p:last-of-type{
	margin-top: 5.0rem;
}

.news-img img{
	filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
	will-change: filter;
	max-width: 100%;
}

/*  ----------------------------------------
release-date
-------------------------------------------*/
.release-date{
	margin-bottom: 2.0rem;
}
/******************Media Queries******************/
@media screen and (min-width: 768px) {
	.release-date{
		margin-bottom: 4.0rem;
	}	
}

.release-date span.date {
	font-family: 'Oswald';
	font-weight: 500;
	margin-right: 1.0rem;
	display: inline-block;
	width:7.0rem;
}
/******************Media Queries******************/
@media screen and (min-width: 768px) {
.release-date span.date {
	width:8.0rem;
	margin-right: 2.0rem;
	}	
}

/*カテゴリ　ニュース*/
.release-date span.type_news {
	padding: 0 10px;
	background: #0EA563;
	font-size: 1.4rem;
	color: #ffffff;
	min-width: 7.6rem;
	display: inline-block;
	text-align: center;
}


/*カテゴリ 更新情報*/
.release-date span.type_update {
	padding: 2px 10px;
	background: #464858;
	font-size: 1.4rem;
	color: #ffffff;
	min-width: 7.6rem;
	display: inline-block;
	text-align: center;
}


/*  ----------------------------------------
downloadfile
-------------------------------------------*/
.downloadfile{
	text-align: right;
	display: block;
	margin-top: 3.0rem;
}

.downloadfile::after{
	content: "";
	display: inline-block;
	background: url("../images/common/icon_download.svg") no-repeat 0 0;
	width:20px;
	height:20px;	
}