@charset "utf-8";

.example_box{
	display: flex;
	justify-content: space-between;
	text-align: left;
	flex-wrap: wrap;
}
.example_box .example_contents{
	border: 1px solid #999999;
	padding: 30px!important;
	width: 31%;
	margin-bottom: 30px!important;
	box-sizing: border-box;
}
.example_box::after{
	content:"";
	display: block;
	width:30%;
}
.example_box .example_contents p{
	margin-bottom: 20px!important;
}
.example_box .example_contents p span{
	font-weight: 700;
}

@media screen and (max-width: 767px) {
	.example_box{
		flex-direction: column;
	}
	.example_box .example_contents{
	width: 100%!important;
	}
}