@charset "UTF-8";

/*----- ページ内リンク表示調整 -----*/
#link1 + .contents_btn01 .content_wrapper,
#link2 + .contents_btn01 .content_wrapper {
    display: grid;
    grid-template-columns: repeat(4, auto);
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding-top: 0;
}
#link2 + .contents_btn01 .content_wrapper {
    grid-template-columns: repeat(3, auto);
}
#link1 + .contents_btn01 .content_wrapper>a,
#link2 + .contents_btn01 .content_wrapper>a {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
    width: 180px !important;
    min-width: 180px;
}
@media only screen and (max-width: 900px) {
    #link1 + .contents_btn01 .content_wrapper,
    #link2 + .contents_btn01 .content_wrapper {
        grid-template-columns: repeat(2, auto);
    }
    #link1 + .contents_btn01 .content_wrapper>a,
    #link2 + .contents_btn01 .content_wrapper>a {
        max-width: 40vw;
        min-width: initial;
    }
     #link1 + .contents_btn01 a span,
     #link2 + .contents_btn01 a span {
        font-size: min(1.5rem, 4vw);
    }
}