#measure_page .common_box h2,
#measure_page .common_box h2 span{
    position: relative;
    overflow: hidden;
}

#measure_page .common_box h2 span::after{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    transform: translateX(0);
    display: inline-block;
    width: 500px;
    height: calc(100% + 20px);
    background: #fff;
    transition: 1.5s all;
}

#measure_page .common_box.active h2 span::after{
    transform: translateX(100%);
}

#measure_page .common_box h2 + p{
    opacity: 0;
    transition: .5s .4s all;
}

#measure_page .common_box.active h2 + p{
    opacity: 1;
}

#measure_page .common_box .list_animation li{
    position: relative;
    opacity: 0;
}

#measure_page .common_box.active .list_animation li{
    animation: fadeIn .8s ease-out .4s 1 alternate forwards;
}

@keyframes fadeIn {
    0%{
        opacity: 0;
    }

    100%{
        opacity: 1;
    }
}

@media screen and (max-width:768px) {
    #measure_page .common_box h2 + p{
        display: block;
    }
}