.sitemap-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
    padding: 0;
    border: 1px solid var(--color-line);
    list-style: none;
}

.sitemap-list li {
    min-width: 0;
    border-bottom: 1px solid var(--color-line);
}

.sitemap-list li:nth-child(odd) {
    border-right: 1px solid var(--color-line);
}

.sitemap-list li:last-child {
    border-bottom: 0;
}

.sitemap-list li:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    border-right: 0;
}

.sitemap-list a {
    min-height: 126px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 24px 30px;
    text-decoration: none;
    transition: background-color .16s ease;
}

.sitemap-list__title,
.sitemap-list__description {
    display: block;
}

.sitemap-list__title {
    font-family: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: .025em;
}

.sitemap-list__description {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.8;
}

@media (hover: hover) {
    .sitemap-list a:hover {
        background: #f4f7f8;
    }
}

.sitemap-list a:focus-visible {
    background: #f4f7f8;
}

.sitemap-list a:active {
    background: #edf1f2;
}

@media (min-width: 640px) {
    .sitemap-list li:nth-last-child(2):nth-child(odd) {
        border-bottom: 0;
    }
}

@media (max-width: 639.98px) {
    .sitemap-list {
        grid-template-columns: minmax(0, 1fr);
    }

    .sitemap-list li:nth-child(odd) {
        border-right: 0;
    }

    .sitemap-list a {
        min-height: 0;
        padding: 20px;
    }

    .sitemap-list__title {
        font-size: 18px;
    }
}
