@charset "utf-8";
/* CSS Document */

/*-----------------------------------------------------------------

    index サイトマップ

-----------------------------------------------------------------*/

.sitemap-list-main {
	margin-bottom: 4rem;
    row-gap: 1rem;
}

.sitemap-list-main li {
	width: 32%;
	text-align: center;
}

.sitemap-list-main li a {
    border: 1px solid #191919;
    border-radius: 10px;
	padding: 1.5rem 2rem;
	font-size: 1.7rem;
	font-weight: bold;
    height: 100%;
    box-sizing: border-box;
    display:flex;
	justify-content: center;
	align-items: center;
}
.sitemap-list-main li a:hover {
	border-color: var(--main-color);
    color: var(--main-color);
    box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
	opacity: 1;
}

.sitemap-list-main li a span {
    position: relative;
    padding-right: 30px;
}

.sitemap-list-main li a span:after {
    content: "";
    -webkit-mask: url(../../../_images/common/icon/arrow.svg);
	mask: url(../../../_images/common/icon/arrow.svg);
    width: 14px;
    height: 14px;
    display: inline-block;
    background-color: var(--main-color);
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    position: absolute;
}


.sitemap-list {
	/*border-top: 1px dotted #353535;*/
	border-left: 1px dotted #353535;
    margin-bottom: 5rem;
}

.sitemap-list dl {
	width: 50%;
    border-top: 1px dotted #353535;
	border-right: 1px dotted #353535;
	border-bottom: 1px dotted #353535;
	padding: 3rem;
	box-sizing: border-box;
}

.sitemap-list dt {
    padding: 5px;
    margin-bottom: 2rem;
    font-size: 1.7rem;
    text-align: center;
    font-weight: bold;
    border-bottom: 1px solid #191919;
}

.sitemap-list dd li:not(:last-child) {
    margin-bottom: 8px;
}

.sitemap-list dd li a {
    font-size: 13px;
    position: relative;
    padding-left: 2.8rem;
    display: block;
    width: fit-content;
}

.sitemap-list dd li a:before {
    content: "";
    width: 13px;
    height: 13px;
    display: block;
    background: #343244;
    border-radius: 3px;
    position: absolute;
    top: 2px;
    left: 0;
}

.sitemap-list dd li a:after {
    content: "";
    display: block;
    position: absolute;
    left: 3px;
    top: 6px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    width: 4px;
    height: 4px;
    border-top: 1.8px solid #FFF;
    border-right: 1.8px solid #FFF;
}

.sitemap-list dd li a:hover {
	opacity: 1;
	text-decoration: underline;
}

@media screen and (max-width: 480px) {
    .sitemap-list-main li {
        width: 100%;
        text-align: center;
    }
    
	.sitemap-list dl {
		width: 100%;
	}
}

