@charset "utf-8";
/* CSS Document */

.c5-buttonList {
	display: flex;
	flex-wrap: wrap;
	list-style-type: none;
}

.c5-buttonList button,
.c5-buttonList a{
	display: flex;
	justify-content: center;
	flex-direction: column;
	align-items: center;
	width:280px;
	height: 11em;
	margin-bottom: 10px;
	margin-right: 15px;
	padding: 8px 10px;
	border: 1px solid #bcbcbc;
	background-color: #fff;
	border-radius: 6px;
	box-shadow: 5px 5px 5px rgba(0,0,0,0.2);
	text-align: center;
	line-height: 1.6;
}

.c5-buttonList button:hover,
.c5-buttonList a:hover{
	text-decoration: underline;
}

h2 + p,
h3 + p{
	margin-top: 1em;
}
@media (max-width: 640px){
	.c5-buttonList {
		flex-direction: column;
		align-items: center;
		padding-left: 0;
	}
	.c5-buttonList button,
	.c5-buttonList a{
		width: 100%;
		height: auto;
		max-width: 400px;
		margin-bottom: 1.2em;
		margin-right: 0;
		padding: 1.5em 10px;
	}
}