#gallery_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.gallery_item {
	border: 1px solid #F1F2F2;
	border-bottom: 2px solid #BCBEC0;
	margin-bottom: 25px;
	font-size: 17px;
	padding-bottom: 15px;
	text-align: center;
}
.gallery_item a {
	color: black;
	display: inline-block;
}
@media screen and (max-width: 900px) {
	.gallery_item img { width: 370px; }
}@media screen and (max-width: 720px) {
	#gallery_list { flex-direction: column; }
	.gallery_item {
		border: none;
		margin-bottom: 15px;
		padding-bottom: 0;
		text-align: left;
	}
	.gallery_item:before {
		content: "";
		background-image: url(/images/menu/li.menu.svg);
		display: inline-block;
		margin-left: 5px;
		margin-right: 10px;
		width: 6px;
		height: 12px;
	}
	.gallery_item img { display: none; }
}