/* 追加CSS */
.connection{
    border-top: 1px solid #eee;
}
.cnt-item-box{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 8rem;
}
.cnt-item {
    width: 18%;
    margin: 0 2.5% 2em 0;
}
.cnt-item:nth-child(5n){
	margin-right:0;
}
.cnt-item .photo {
    margin-bottom: 1rem;
	border: 1px solid #efefef;
}
.cnt-item .photo img {
    width: 100%;
}
.cnt-item .title {
	line-height: 1.5;
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 5px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}
.cnt-item .text {
	line-height: 1.5;
	font-size: 14px;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

@media all and (max-width: 430px) {
	.cnt-item {
		width: 49%;
		margin: 0 2% 2em 0;
	}
	.cnt-item:nth-child(5n){
		margin-right:2%;
	}
	.cnt-item:nth-child(2n){
		margin-right:0;
	}
}