@charset "utf-8";

/* bg_light_gray_sec
-------------------------------------------------- */
.sec_inner.bg_light_gray_sec{
	position: relative;
  padding-top: 0;
	margin-bottom: 0;
	background: none;
	z-index: 0;
}
.sec_inner.bg_light_gray_sec:after{
	content: "";
	position: absolute;
	top: 100px;
	left: 0;
	background-color: #f4f6f7;
	width: 100%;
	height: calc(100% - 160px);
	z-index: -1;
}

@media screen and (max-width:767px) {
	.sec_inner.bg_light_gray_sec{
		padding: 0;
		margin-bottom: 60px;
	}
	.sec_inner.bg_light_gray_sec:after{
		height: calc(100% - 70px);
	}
}


