@charset "UTF-8";
/*-----------------------------------

	mainvisual_block

-----------------------------------*/
#mainvisual_block {
	background: url(../img/sitemap/mainvisual.jpg) no-repeat bottom center / cover;  
}

#mainvisual_block .title {
	width: 90%;
}
/*-----------------------------------

	sitemap_block

-----------------------------------*/
#sitemap_block{
	margin-top: 100px;
}
.map_box{
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: flex-start;
	align-items: flex-start;
	font-family: "Zen Maru Gothic", sans-serif;
	color: #202020;
	margin-bottom: 100px;
	column-gap: 50px;
}
.upper_layer{
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-align-items: flex-start;
	align-items: flex-start;
	font-weight: 700;
	line-height: 4.6;
	font-size: 18px;
}
.upper_layer > li > a > span{
	position: relative;
	padding-left: 7.2px;
}
.upper_layer .contact a,
.upper_layer .recruit a  {
	pointer-events: none;
	opacity: 0.5;
}
.upper_layer > li > a > span::before{
	content: "";
	width: 9px;
	height: 13px;
    background: url(../img/sitemap/blue_arrow.svg) no-repeat center center / contain;
	position: absolute;
	top: 50%; /* 上下中央の基準 */
	transform: translateY(-50%);
	left: -7.2px;
}
.lower_layer{
	display: -webkit-flex;
	display: flex;
	-webkit-flex-direction: column;
	flex-direction: column;
	-webkit-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-align-items: flex-start;
	align-items: flex-start;
	font-weight: 500;
	line-height: 3.1;
	font-size: 16px;
	margin-left: 30px;
}
.upper_layer li a{
	display: inline-block;
}

.upper_layer li a:hover{
	color: #1E90FE;
}

@media screen and (max-width: 840px) {
	#sitemap_block{
		margin-top: 50px;
	}
	.upper_layer{
		line-height: 3;
		font-size: 18px;
	}
	.lower_layer{
		line-height: 2.4;
	}
	.map_box{
		margin-bottom: 50px;
	}
}

@media screen and (max-width: 640px) {
	#sitemap_block{
		margin-top: 30px;
	}
	.upper_layer{
		line-height: 2.4;
		font-size: 16px;
	}
	.lower_layer{
		line-height: 2;
		font-size: 15px;
	}
}
@media screen and (max-width: 400px){
	
}

