@charset "utf-8";
/* CSS Document */

.disable{
   pointer-events: none;
}

.m-img > img {
    width: 60%;
}

.m-box-example {
	margin-top: 30px;
	display: flex;
	flex-wrap: nowrap;
	align-content: center;
	justify-content: center;
	align-items: stretch;
}
.m-box-example-box {
	display: flex;
	justify-content: center;
	align-items:center;
	text-align:center;
	width: 25%;
	margin-right: 15px;
	border: #333 solid 1px;
	border-radius: 7px;
	background: #eee;
	padding: 5px;
}
.m-box-example-box p {
	margin:10px 0;
}

.m-box-example-box:last-child {
	margin-right: 0;
}

@media screen and (max-width: 767px) {
	.m-box-example {
		display: block;
	}
	.m-box-example-box {
		width: 100%;
		margin-right: 0;
		margin-top: 10px;
	}
}