/*
 Theme Name:   Astra Child
 Template:     astra
 Version:      1.0.0
*/

/* 1. 外側の枠を画面いっぱいの高さにする */
.pdf-document {
    display: flex;           /* Flexboxを有効化 */
    justify-content: center; /* 左右中央 */
    align-items: center;     /* 上下中央（これが重要） */
    width: 100%;
    height: 100vh;          /* 画面の高さ100%分を確保 */
    margin: 0;
    padding: 0;
    background-color: transparent;
}

/* 2. 画像を囲むセクション */
.coming-soon {
    width: 100%;            /* 横幅をブラウザに合わせる */
    display: flex;
    justify-content: center;
}

/* 3. 画像の調整 */
.coming-soon img {
    width: 100%;            /* ブラウザの横幅に合わせる */
    max-width: 100%;        /* 親要素からはみ出さない */
    height: auto;           /* 比率を維持 */
    display: block;
}