.news .pege-heade-inner {
    background: url('../img/news/news-header.png') center right no-repeat;
    background-size: contain;
}
.news .news-list {
	max-width: 1180px;
	margin: 0 auto;
	padding: 80px 0;
}
.news .news-item{
	padding: 14px 0;
	border-color: #d9e7c4;
	margin: 0 16px;
}
.news .news-item time{
	font-size: 13px;
	letter-spacing: 0.5px;
}
.news .news-item a{
	flex-direction: column;
	font-size: 16px;
	padding: 0;
	gap:4px;
}
.news .news-link {
    position: relative;
    text-decoration: none;
    color: #333;
}
.news .news-link::after {
    content: 'check';
    display: inline-block;
    margin-left: 0.3em;
    opacity: 0;
	position: absolute;
	left: 200px;
    transform: translateX(0);
    transition: opacity 0.3s ease;
}
.news .news-link:hover::after {
    opacity: 1;
    animation: wiggle 1.6s ease-in-out infinite;
}
@keyframes wiggle {
    0%   { transform: translateX(0); }
    25%  { transform: translateX(3px); }
    50%  { transform: translateX(0); }
    75%  { transform: translateX(3px); }
    100% { transform: translateX(0); }
}
.news .news-item a {
    position: relative;
    text-decoration: none;
    color: #0e0e0e;
    transition: color 0.3s ease;
}
.news .news-item a span{
	transition: color 0.3s ease;
}
.news .news-item a:hover  , .news .news-item a:hover span{
	color: #3b5a0d;
}
.news .news-item a:hover::after {
    opacity: 1;
    transform: translateX(0);
    color: #3b5a0d;
}
.news .news-link:hover {
    color: #3b5a0d;
}
.news .news-link:hover .arrow {
    transform: translateX(5px); 
}
/* =================================================
  ページネーション
================================================= */
.news .pagination {
  text-align: center;
  padding-bottom: 60px;
}
.news .pagination .page-numbers {
  display: inline-block;
  margin: 0 6px;
  padding: 8px 14px;
  font-size: 14px;
  text-decoration: none;
  color: #333;
  background-color: #eaeee7;
}
.news .pagination .current {
  background: #6f8f3f;
  color: #fff;
}
.news .pagination .nav-links{
	padding-bottom: 60px;
}
/* =================================================
  singleページ
================================================= */
.news-single .news-content{
	padding: 60px 16px;
	max-width: 1100px;
	margin: 0 auto;
}
.news-content time{
	letter-spacing: 0.5px;
	font-size: 14px;
	margin-bottom: 6px;
	display: inline-block;
}
.news-content h2{
	letter-spacing: 0.5px;
	font-size: 22px;
	color: #3b5a0d;
	margin-top: 0;
	font-weight: 600;
	padding-bottom: 10px;
	border-bottom: 2px solid #688a49;
}
.news-content p{
	font-size: 16px;
	line-height: 2em;
}
.news.news-single .news-link{
	margin-top: 30px;
	font-size: 18px;
	color: #688a49;
	border: solid 1px #688a49;
	padding: 6px 40px 6px 14px;
	border-radius: 40px;
	display: inline-flex;
	align-items: center;
	transition: 0.2s;
}
.news.news-single .news-link:hover{
	color: #ffffff;
	background-color: #688a49;
}
.news.news-single .news-link::after{
	display: none;
}
.news-arrow{
	height: auto;
	width: 18px;
	margin-right: 10px;
}