.y-modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
}

.y-modal .y-modal-overlay {
    background: rgba(0, 0, 0, 0.50);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.y-modal .y-modal-body {
    margin: auto;
    max-width: 576px;
    width: 100%;
    z-index: 2;
    padding: 48px 36px 40px;
    border-radius: var(--space-12, 12px);
    background: var(--White, #FFF);
}

.y-modal .y-modal-header {
    display: flex;
    gap: 8px;
    align-items: center;

    margin-bottom: 36px;

    color: var(--Black, #101010);

    /* pc/H4 */
    font-size: 28px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.y-modal .y-modal-header svg {
    margin-left: auto;
    cursor: pointer;
}

@media screen and (max-width: 1024px) {
    .y-modal {
        align-items: end;
    }

    .y-modal .y-modal-body {
        margin: unset;
        max-width: unset;
        padding: 24px 16px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        position: absolute;
        bottom: -100%;
        transition: 0.3s;
    }

    .y-modal .y-modal-header {
        margin-bottom: 20px;
        font-size: 18px;
    }

    #store-search .div30 img {
        width: 16px;
        height: 16px;
    }
}