@charset "utf-8";
/* CSS Document */
.box-btn {
    text-align: center;
    margin: 2rem 0 3rem;
}
.box-btn a {
	border: 1px solid #333;
	padding: 1rem 2rem;
}
.box-btn a:hover {
	text-decoration: none;
	background: #333;
	color: #fff;
	transition: all 0.4s ease-out;
}
@media screen and (max-width: 767px) {
.box-btn a {
    min-width: 100%;
    display: inline-block;
}
}