@charset "UTF-8";

.sitemap_list{
	display: flex;
	max-width: 940px;
	margin: 0 auto;
	flex-wrap: wrap;
	justify-content: space-between;
}

.sitemap_list li {
    min-width: 460px;
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.sitemap_list li a{
	position: relative;
	display: block;
	height: 45px;
	line-height: 45px;
	background: #EFF7E1;
	color: #000;
	padding: 0 40px;	
}

.sitemap_list li a::before {
    content: "";
    position: absolute;
    display: inline-block;
    width: 6px;
    height: 6px;
    border-top: 2px solid #2A6343;
    border-right: 2px solid #2A6343;
    transform: rotate(45deg);
    margin: auto;
    left: 16px;
    top: 0;
    bottom: 0;
}


@media screen and (max-width: 962px) {
	.sitemap_list li {
	    min-width: 46%;
	}

}

@media screen and (max-width: 800px) {
	.sitemap_list{
		display: block;
	}

}

@media screen and (max-width: 414px) {



}	