@charset "utf-8";
/* サイトマップのcss */

#sitemap h5 { margin-bottom: 1.5rem; }
#sitemap ul li ul li {
    margin-bottom: 1.5rem;
    border-bottom: 1px dashed #ddd;
}
#sitemap li a p {
    margin: 0;
}
#sitemap a {
    color: inherit;
    font-weight: 500;
    line-height: 1;
	width: auto;
}

section#sitemap > ul {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

@media screen and (min-width: 1000px) {
#sitemap .col h5:not(:first-of-type) {
    margin-top: 3rem;
}
}

@media screen and (max-width: 999px) {
	section#sitemap > ul {
    display: block;
}
	#sitemap .col-1_pad .col {
		width: 100%;
		margin-bottom: 0;
	}
	#sitemap li {
		width: 48%;
		float: left;
		margin-left: 0;
	}
	#sitemap .col ul {
    clear: both;
    overflow: hidden;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: flex;
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    justify-content: space-between;
}
	#sitemap h5 {
		margin-top: 3rem;
		border-bottom: 1px solid #E4E4D4;
		padding-bottom: 0.5rem;
	}
}