@charset "UTF-8";

body {
    margin: 0;
    padding: 0;
    width: 100%;

    /* 高さの設定（スマホ対応） */
    height: 100vh;
    height: 100dvh;

    /* 中央揃えの設定 */
    display: flex;
    justify-content: center;
    align-items: center;

    /* 背景色 */
    background-color: #F3CBD3;
    /* background-color: transparent; */

    /* スクロール防止 */
    overflow: hidden;
}

img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    object-fit: contain;
}