@charset "utf-8";

/* ------------------------------
 サイトマップ（PC）
------------------------------ */
.cms_block.sitemap ul > li {
	padding: 35px 0;
    border-bottom: dotted 1px var(--gray-color);
}
.cms_block.sitemap ul > li:first-child {
	border-top: dotted 1px var(--gray-color);
}
.cms_block.sitemap ul > li::before {
	content: none;
}
.sitemap ul > li > a {
	font-size: 2rem;
	font-weight: 500;
    color: var(--main-font-color);
    text-decoration: none;
	position: relative;
}
.sitemap ul > li > a::after {
	content: "";
    display: inline-block;
    width: 26px;
    height: 26px;
    background: #2ab3b1 url(../img/icon_arrow_r.svg) no-repeat 10px center / 7px auto;
    vertical-align: middle;
    border-radius: 100%;
    margin: 0 0 0.2em 15px;
}
.sitemap ul > li > a[target="_blank"]::after {
    background-image: url(../img/icon_blank_w.svg);
    background-size: 10px auto;
    background-position: center center;
    mask-image: none;
}
/* ------------------------------
 サイトマップ（SP）
------------------------------ */
@media screen and (max-width: 767px) {
	.cms_block.sitemap ul > li {
        padding: 20px 0;
    }
    .sitemap ul > li > a {
        font-size: 1.7rem;
    }
    .sitemap ul > li > a::after {
        width: 20px;
        height: 20px;
        background-position: 8px center;
        background-size: 5px auto;
    }
    .sitemap ul > li > a[target="_blank"]::after {
        background-size: 8px auto;
    }
}