/* 内部リンク */
.GridSet .Grid3 .anchor-link-block {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.GridSet .Grid3 .anchor-link-block .anchor-link-box {
    height: stretch;
    padding: 20px;
    border: 1px solid var(--color-gray2);
}

.GridSet .Grid3 .anchor-link-block .anchor-link-box .title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.GridSet .Grid3 .anchor-link-block .anchor-link-box.left > ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    row-gap: 0;
}

.GridSet .Grid3 .anchor-link-block .anchor-link-box.right > ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    row-gap: 0;
}

.GridSet .Grid3 .anchor-link-block .anchor-link-box > ul > li > a {
    font-size: 90%;
}

@media screen and (max-width: 1190px) {
    .GridSet .Grid3 .anchor-link-block .anchor-link-box.left > ul {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 965px) {
    .GridSet .Grid3 .anchor-link-block .anchor-link-box.left > ul {
        grid-template-columns: repeat(2, 1fr);
    }
    .GridSet .Grid3 .anchor-link-block .anchor-link-box.right > ul {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 530px) {
    .GridSet .Grid3 .anchor-link-block {
        grid-template-columns: 1fr;
    }
}