@charset "utf-8";

.column ul.pic {
	width: 50%;
	margin: 0 auto;
}
.column ul.pic.big {
	width: 90%;
	margin: 0 auto;
}
.column ul.pic li {
	margin: 10px 0;
	list-style-type: none;
	color: #ff7800;
	font-weight: bold;
	text-align: center;
}
.column ul.pic img {
	width: 90%;
	border: 1px solid #ccc;
}

@media screen and (min-width: 600px) {

	.column ul.pic {
		display: -webkit-flex;
		display: flex;
		flex-wrap: wrap;
		align-items: stretch;
		-webkit-justify-content: space-between;
		justify-content: space-between;
	}
	.column ul.pic li {
		width: 47%;
	}

}

