@charset "utf-8";
.withdrawal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 50;
}

.withdrawal img {
    width: 100%;
}

.withdrawal .bannerWrap {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.withdrawal .banner {
    position: relative;
}
.withdrawal .closeButton {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

.withdrawal .returnButton {
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    width: 90%;
    margin: 0 auto;
    cursor: pointer;
}

/* モーダルのフェードインアウト */
.fadeinAnime {
    animation: fadeinModal .4s ease .2s 1 forwards;
    opacity: 0;
}
@keyframes fadeinModal {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.fadeoutAnime {
    animation: fadeoutAnime .4s ease .2s 1 forwards;
    opacity: 1;
}
@keyframes fadeoutAnime {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@media screen and (max-width: 767px) {
    .withdrawal .bannerWrap {
        width: 85%;
    }
}
