@charset "UTF-8";


/*-----------------------------------

	sitemap_block

-----------------------------------*/
#sitemap_block {
	padding-bottom: 100px;
}
#sitemap_block h2 {
	font-size: 14px;
	font-weight: 700;
	color: #858585;
	line-height: 1;
	margin-bottom: 50px;
}
#sitemap_block h2::before {
	content: "SITE MAP";
	font-size: 42px;
	font-family: 'Montserrat', sans-serif;
	color: #fa6a8c;
	display: block;
	margin-bottom: 30px;
}
#sitemap_block h3::before {
	content: "";
	width: 30px;
	height: 2px;
	background: #ff85a2;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
}
#sitemap_block ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	gap: 30px;
	margin-top: 90px;
}
#sitemap_block ul li {
	width: 31%;
	margin-bottom: 50px;
	position: relative;
}
#sitemap_block ul li::before {
	content: "";
    width: 17px;
    height: 17px;
    border: 4px solid #858585;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto 0;
}
#sitemap_block ul li a {
    font-weight: 600;
	padding-left: 22px;
}
@media screen and (max-width: 840px) {
	#sitemap_block ul {
		gap: 0;
		justify-content: space-between;
	}
	#sitemap_block ul li {
		width: 48%;
	}
}
@media screen and (max-width: 640px) {
	#sitemap_block {
		padding-bottom: 50px;
	}
	#sitemap_block h2 {
		font-size: 12px;
		margin-bottom: 30px;
	}
	#sitemap_block h2::before {
		font-size: 34px;
		margin-bottom: 20px;
	}
	#sitemap_block ul li::before {
		content: "";
		width: 15px;
		height: 15px;
		border: 4px solid #7c7c7c;
		position: absolute;
		top: 0;
		bottom: 0;
		margin: auto 0;
	}
	
}
@media screen and (max-width: 500px) {
	#sitemap_block ul li {
		width:100%;
		margin-bottom: 20px;
	}
}