@charset "utf-8";

/* bgGray */
.bgGray {
	position: relative;
	padding-bottom: 10rem;
}
.bgGray::after {
	content: '';
	width: 100%;
	height: 100%;
	background: #f5f5f5;
	transform: skewY(-11deg);
	position: absolute;
	left:0;
	top: 0;
	z-index: -1;
}

/* mv */
.mv {
	margin-bottom: 11rem;
}
.mv img {
	width: 100%;
}
@media (max-width: 768px) {
	.mv {
		margin-bottom: 14rem;
	}
}

/* anchor */
.anchor {
	margin-top: 9rem;
	font-size: 2.2rem;
	font-weight: 700;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.anchor li {
	border-left: solid 2px #000;
}
.anchor li:last-child {
	border-right: solid 2px #000;
}
.anchor li a {
	display: block;
	padding: 0 3rem;
	line-height: 1.2;
}
.anchor li a:hover {
	color: #13a4bc;
}
.anchor li.cur span {
	background: #13a4bc;
	color: #fff;
}
@media (max-width: 768px) {
	.anchor {
		font-size: 3rem;
		row-gap: 3rem;
	}
	.anchor li:nth-child(2) {
		border-right: solid 2px #000;
	}
}

/* subTtl02 */
.subTtl02 {
	margin-top: 9rem;
	text-align: center;
}
.subTtl02 + .txt {
	margin-top: 4rem;
	line-height: 2.2;
}
@media (max-width: 768px) {
	.subTtl02 + .txt {
		margin-top: 7rem;
		line-height: 1.87;
	}
}

/* wrap */
.wrap {
	margin-top: 8rem;
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
}
.wrap.wrap02 {
	flex-direction: row;
}
.wrap + .wrap {
	padding-top: 8rem;
	border-top: 1px solid #000;
}
.wrap .pic {
	width: 45.5rem;
}
.wrap .txt {
	width: 51rem;
}
.wrap .txt dt {
	font-size: 2.4rem;
	font-weight: 800;
}
.wrap .txt dd {
	margin-top: 2rem;
	line-height: 2.2;
}
@media (max-width: 768px) {
	.wrap,
	.wrap.wrap02 {
		margin-top: 7rem;
		flex-direction: column;
	}
	.wrap + .wrap {
		padding-top: 10rem;
	}
	.wrap .pic {
		width: 100%;
	}
	.wrap .txt {
		margin-top: 9rem;
		width: 100%;
	}
	.wrap .txt dt {
		font-size: 3.8rem;
		text-align: center;
	}
	.wrap .txt dd {
		margin-top: 5rem;
		line-height: 1.87;
	}
}



