/* 縦横全て中央整列させるためのコンテナ */
/* スクロールが発生しない前提で使用する */
.CenterAllContainer {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 横方向に中央整列させるためのコンテナ */
/* 縦スクロールが発生しても大丈夫 */
.CenterInContainer {
    width: 100%;
    position: relative;
    display: flex;
    gap: 30px;
    padding: 2vmin;
    flex-direction: column;
    justify-content: start;
    align-items: center;

    container-type: inline-size;
    /* background-color: #fafaff; */
}

/* ボタンを中央に並べ、同じサイズで表示、等間隔に配置する */
.ButtonSection {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(auto, 200px));
    gap: 20px;
    justify-content: center;
    padding: 2em 0;
}