h4.tag_title {
    text-align: center;
    color: #B81423;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 40px;
}

.activity_col {
	float: left;
	box-sizing: border-box;
	margin: 0 2% 40px 0;
	width: 32%;
	border-radius: 30px;
	box-shadow:0px 0px 8px 1px rgba(0,0,0,0.1);
	cursor: pointer;
}
.top_activity_flex .activity_col:nth-child(3n) {
	margin-right: 0;	
}
.activity_col:hover .activity_col_thumb {
	opacity: 0.8;	
}
.activity_col_thumb {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 200px;
	border-radius: 20px 20px 0px 0px;
	box-sizing: border-box;
	padding: 15px;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}
.page_toppage .activity_col_thumb {
	height: 300px;
}

.activity_col_caption {
	background: #FFF;
	padding: 20px;
	border-radius: 0px 0px 20px 20px;
}
.activity_col_caption h5 {
	font-size: 100%;
	margin: 0 0 5px;
}
.activity_col_caption p {
	font-size: 85%;
}
.activity_col_caption h5  a {
	color: #B81423;
	text-decoration: none;	
}


@media(max-width: 767px) {
.activity_col {
	width: 49%;
	margin: 0 0 25px;
	border-radius: 20px;
}
.top_activity_flex .activity_col:nth-child(odd) {
	clear: both;
	float: left;	
}
.top_activity_flex .activity_col:nth-child(even) {
	float: right;
}
.activity_col_thumb {
	height: 40vw;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
	border-radius: 16px 16px 0px 0px;
	padding: 10px;
}
.page_toppage .activity_col_thumb {
	height: 35vw;
}

.activity_col_caption {
	padding: 10px;
	border-radius: 0px 0px 16px 16px;
}
.activity_col_caption p {
	font-size: 12px;	
}

} 