.breadcrumb .sec_title{
	margin-top: 30px;
}
.box{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	gap: 32px 24px;
}
.box .item{
	width: calc((100% - (24px * 2)) / 3);
	box-sizing: border-box;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.16);
	border-radius: 10px;
	padding: 16px 0;
	font-weight: 500;
}
.box .item h2{
	text-align: left;
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4;
	color: #fff;
	background-color: #297d12;
	border-radius: 0 20px 20px 0;
	width: calc(100% - 16px);
    padding: 6px 6px 6px 16px;
	box-sizing: border-box;
}
.box .item .place{
	color: #707070;
	text-align: right;
	margin: 4px 8px 0 0;
}
.box .item .item_wrap{
	background-color: #fff;
	border-radius: 6px;
	padding: 8px 16px;
	box-sizing: border-box;
	overflow: hidden;
}
.box .item .item_wrap figure{
	overflow: hidden;
	text-align: center;
	border-radius: 6px;
}
.box .item .item_wrap figure img{
	width: 100%;
}
.box .item .item_wrap .txt{
	margin-top: 10px;
}
.box .item .item_wrap .txt .date{
	font-size: 15px;
	color: #707070;
	margin-top: 10px;
}
.box .item .item_wrap .txt .ttl{
	font-size: 17px;
	font-weight: 600;
	color: #297d12;
	line-height: 1.5;
	margin-bottom: 15px;
}
.box .item .txt_link{
	text-align: center;
	color: #297d12;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 24px;
}
.box .item .txt_link:after{
	content: '';
	display: inline-block;
	width: 16px;
	height: 16px;
	background-image: url('../img/arrow.png');
	background-repeat: no-repeat;
	margin-left: 8px;
}
@media (hover: hover) and (pointer: fine) {
	.box .item{
		transition: 0.3s all;
	}
	.box .item:hover{
		opacity: 0.8;
		text-decoration: none;
	}
	.box .item .item_wrap figure img{
		transition: all 0.3s;
	}
	.box .item:hover .item_wrap figure img{
		transform: scale(1.05);
	}
}

@media screen and (max-width: 768px) {
	.box .item{
		width: calc((100% - (24px * 1)) / 2);
	}
	.box .item h2{
		font-size: 17px;
		padding: 6px 6px 6px 16px;
	}
}
@media screen and (max-width: 480px) {
	.box .item{
		width: calc((100% - (24px * 0)) / 1);
	}
	.box .item .item_wrap .txt .date{
		font-size: 13px;
		margin: 10px 0 5px;
	}
	.box .item .item_wrap .txt .ttl{
		font-size: 15px;
		line-height: 1.5;
		margin-bottom: 10px;
	}
}