@charset "utf-8";

.faqBtnGr {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
    place-items: center;
    width: max-content;
    margin: 0 auto;
}

.faqBtnGr a {
    max-width: 335px;
}

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:768px) {

    .faqBtnGr {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* min-width: 768px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
@media screen and (min-width:1024px) {

    .faqBtnGr {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px 25px;
    }
}

/* min-width: 1024px ここまで */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */