/* アプリ全体の背景とレイアウトに関わる設定 */
body {
    margin: 0;  /* ページの余白をゼロに */
    padding: 0;  /* 内部余白もゼロに */

    /* 背景画像を全画面に敷く */
    background-image: url("../imgs/bg01.jpg");
    background-size: cover;          /* 画面全体をカバー */
    background-repeat: no-repeat;    /* 繰り返しなし */
    background-position: center;     /* 中央に配置 */
    background-attachment: fixed;    /* スクロールに影響されず固定 */

    /* 中央配置の補助設定（equipmentでflexを使う前提） */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;

}

