@charset "UTF-8";

/*------------------アンカーリンクボタン調整------------------*/
[id*="anchor"] + div .content_wrapper {
    display: grid;
    justify-items: center;
    grid-template-columns: repeat(4, 1fr);
}
[id*="anchor"] + div .content_wrapper a {
    min-width: 80%;
    width: 80% !important;
}
@media screen and (max-width: 900px) {
    [id*="anchor"] + div .content_wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    [id*="anchor"] + div .content_wrapper a {
    min-width: calc(100% - 32px);
        width: calc(100% - 32px) !important;
    }
    [id*="anchor"] + div .content_wrapper a span {
        padding: 14px 15px 12px !important;
    }
}