@charset "utf-8";
    .bg_gradient{
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(0deg, rgba(255,255,255,0.14), rgba(255,255,255,0.14)),
        radial-gradient(85% 130% at 30% 20%,
        rgba(255,255,255,0.76) 0%,
        rgba(255,255,255,0.22) 44%,
        rgba(255,255,255,0.00) 72%
        ),
        linear-gradient(120deg,
        rgba(255,255,255,0.09) 0%,
        rgba(255,255,255,0.00) 28%,
        rgba(255,255,255,0.05) 60%,
        rgba(255,255,255,0.00) 100%
        ),
        linear-gradient(180deg,
        #EBD1FE 25%,
        #C8C0F2 95%,
        #9FA6DE 100%
        );
    background-color: #C8C0F2;
    }

    .bg_purple {
        background-color: #9A00FF;
    }
    .bg_radius_top {
        background-color: #fff;
        border-radius: 0 50px 0 0;
        box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.15);
    }
    .bg_radius_bottom {
        background-color: #fff;
        border-radius: 0 0 0 50px;
        box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.15);
    }
    article h2 {
        font-size: 60px;
        color: #9A00FF;
    }
    /* article p, article a {
        color: #9A00FF;
    } */

    @media (max-width:699px) {
        .bg_radius_top {
            border-radius: 0 25px 0 0;
        }
        .bg_radius_bottom {
            border-radius: 0 0 0 25px;
        }
        article h2 {
        font-size: 35px;
        }
        ._fs_1_55em_sp {
            font-size: 1.55em;
        }
    }