@charset "utf-8";
/* CSS Document */
.test_course .img-title_box  {
	background-image: url("../images/test_course/title-img.jpg");
}

.test_course .test_course_block {
	padding-bottom: 100px;
}

.pho_box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.pho_box .big {
	width: 100%;
}
.pho_box .small {
	width: 48.7%;
	margin-top: 26px;
}





@media screen and (max-width: 768px) {







}


@media screen and (max-width: 420px) {
	.test_course .test_course_block {
		padding-bottom: 14vw;
	}

	.pho_box {
		display: block;
	}
	.pho_box .big,
	.pho_box .small {
		width: 100%;
	}
	.pho_box .small {
		margin-top: 6vw;
	}

}

/*--- アニメーション用CSS ---*/
.animate {
	opacity: 1;
	transition-property: opacity;
	transition-duration:0.5s;
	transition-timing-function:ease-in-out;
}
.animate.deactive {
	transition-duration:0s;
	opacity: 0;
}

