/*-------------------------------------------------
|-  ttl-block
-------------------------------------------------*/
.ttl-block {
    padding: 60px 10px;
}
.ttl-block__sitemap .ttl__en {
    color: #333;
    font-size: 3.21rem;
}
.ttl-block__sitemap .ttl__jp {
    color: #333;
    text-indent: .5rem;
    letter-spacing: .5rem;
}
@media screen and (max-width: 767px){
    .ttl-block {
        padding: 30px 10px;
    }
    .ttl-block__sitemap .ttl__en {
        font-size: var(--fs26);
    }
    .ttl-block__sitemap .ttl__jp {
        font-size: var(--fs18);
        text-indent: .01rem;
        letter-spacing: .01rem;
    }
}
/*-------------------------------------------------
|-  detail-block
-------------------------------------------------*/
.detail-block {
    width: 100%;
    padding: 65px 0 95px;
    background: #f0efec;
}
.detail-wrap {
    width: 89%;
    max-width: 1400px;
    margin: auto;
    padding: 100px 30px;
    background: #fff;
    box-sizing: border-box;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 50px;
}
.sitemap > * + * {
    margin-top: 40px;
}
.sitemap__item {
    border-left: 3px solid #a28e71;
    border-bottom: 1px solid #a28e71;
}
.sitemap__link {
    width: 100%;
    padding: 10px 0 10px 10px;
    box-sizing: border-box;
    color: #2a2a2a;
    font-size: var(--fs15);
    font-weight: bold;
    letter-spacing: .1em;
    line-height: 100%;
    display: block;
    transition: all .2s;
}
.sitemap-inner__item {
    position: relative;
    margin-top: 10px;
    padding-left: 30px;
    box-sizing: border-box;
}
.sitemap-inner__item::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 12px;
    width: 6px;
    height: 6px;
    border-top: solid 2px #a28e71;
    border-right: solid 2px #a28e71;
    border-radius: 1px;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
}
.sitemap-inner__link {
    color: #2a2a2a;
    font-weight: bold;
}
@media (hover: hover){
    .sitemap__link:hover {
        color: #a28e71;
    }
    .sitemap-inner__link:hover {
        text-decoration: underline;
    }
}
@media screen and (max-width: 1001px){
    .detail-wrap {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 50px;
    }
}
@media screen and (max-width: 767px){
    .detail-wrap {
        padding: 50px 0;
        grid-template-columns: 1fr;
        gap: 20px 0;
    }
    .sitemap {
        width: 89%;
        margin: auto;
    }
    .sitemap > * + * {
        margin-top: 20px;
    }
}
.sitemap__item-mt0 {
    margin-top: 0;
}
