#loadingOverlay {
    position: fixed; /* 画面全体を覆う */
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5); /* 背景を暗くする */
    z-index: 9999; /* 他の要素の上に表示 */
    display: flex;
    justify-content: center; /* 中央に表示 */
    align-items: center;
}

.center {
    display: block; /* 画像を中央に配置 */
}

h1.top-h1 {
    position: absolute;
    top: 20%;
    left: 5%;
    z-index: 1;
    font-size: 1rem;
    color: #fff;
    letter-spacing: 1px;
    line-height: 20px;
    text-shadow: 2px  2px 6px rgba(153, 0, 0, 0.51),
    -2px  2px 6px rgba(153, 0, 0, 0.51),
    2px -2px 6px rgba(153, 0, 0, 0.51),
    -2px -2px 6px rgba(153, 0, 0, 0.51),
    2px  0px 6px rgba(153, 0, 0, 0.51),
    0px  2px 6px rgba(153, 0, 0, 0.51),
    -2px  0px 6px rgba(153, 0, 0, 0.51),
    0px -2px 6px rgba(153, 0, 0, 0.51);
}

p.top-p {
    position: absolute;
    top: 56%;
    left: 5%;
    font-size: 0.7rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 1px  1px 4px rgba(0, 0, 0, 0.51),
    -1px  1px 4px rgba(0, 0, 0, 0.51),
    1px -1px 4px rgba(0, 0, 0, 0.51),
    -1px -1px 4px rgba(0, 0, 0, 0.51),
    1px  0px 4px rgba(0, 0, 0, 0.51),
    0px  1px 4px rgba(0, 0, 0, 0.51),
    -1px  0px 4px rgba(0, 0, 0, 0.51),
    0px -1px 4px rgba(0, 0, 0, 0.51);
}

.top .form-scouter {
    height: 218px;
    background-image: url(/assets/img/front/cat_scouter.png);
    background-repeat: no-repeat;
    background-size: 210% 135%;
    background-position: 60% 52%;
}

.form-scouter .cart-body {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-wrap: wrap;
}

.form-scouter .cart-body label {
    text-align: center;
}

.form-scouter .cart-body label p {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 2px #8b0000, -2px -2px 2px #8b0000, -2px 2px 2px #8b0000, 2px -2px 2px #8b0000, 2px 0 2px #8b0000, -2px 0 2px #8b0000, 0 2px 2px #8b0000, 0 -2px 2px #8b0000;
}

@media screen and (min-width: 500px) {
    .form-scouter .cart-body label p {
        font-size: 2.5rem;
    }
}

@media screen and (min-width: 700px) {
    .top .form-scouter {
        background-size: 168% 193%;
        background-position: 49% 52%;
    }
    h1.top-h1 {
        font-size: 2rem;
        line-height: inherit;
    }
    p.top-p {
        font-size: 1.3rem;
    }
}