@charset "UTF-8";

.page_top .container {
    background: url("../img/sitemap/topback.jpg") no-repeat;
    background-size: cover;
    background-position-x: 50%;
}

.sitemap {
    padding: 40px 0;
}

.sitemap .container {
    max-width: 1060px;
    margin: 0 auto;
}

.sitemap .container .inner {
    max-width: 500px;
    width: 100%;
    border: 1px solid #C9CACA;
    margin: 50px auto;
    padding: 5px 30px;
    position: relative;
}

.sitemap .container .inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-right: 5px solid #006837;
    height: 100%;
}

.sitemap .container .inner .tit {
    font-size: 16px;
    line-height: 1.5em;
    border-bottom: 1px solid #000;
    padding: 15px 0 5px;
    margin-bottom: 10px;
}

.sitemap .container .inner .box {
    padding: 10px 0;
}

.sitemap .container .inner a.sitelink {
    position: relative;
    font-size: 20px;
    line-height: 1.5em;
    text-decoration: none;
    color: #000;
}

.sitemap .container .inner a.sitelink:hover {
    text-decoration: underline;
    color: #006837;
}

.sitemap .container .inner a.sitelink::after {
    content: "";
	position: absolute;
	top: 0;
	right: -30px;
	width: 15px;
	height: 15px;
	margin: 6px 0;
	border-top: 3px solid #006837;
	border-right: 3px solid #006837;
	transform: rotate(45deg);
}



/* スマートフォン用 */
@media screen and (max-width: 768px) {

    .sitemap .container {
        padding: 0 20px;
    }

    .sitemap .container .inner a.sitelink::after {
        top: auto;
        bottom: 0;
    }

}








