#toptittle-cont{
position: relative;
height: 625px;
}

@media screen and (max-width: 600px){
#toptittle-cont{
height: 450px;
}
}


.demo_item{
	width: 52px;
    height: 25px;
    border-radius: 10px;
    background-image: url(/wp-content/uploads/car-01.png);
    background-size: 100% 100%;
    background-position: 0 0;
    background-repeat: no-repeat;
    display: block;
    position: relative;
}
.demo_item.anime{
    animation-name: upDown;
    animation-iteration-count: infinite;
    animation-duration: 0.1s;
    animation-direction: alternate;
    animation-timing-function: steps(2);
    transition-duration: .3s;
    transition-property: transform;
}


.demo_stage{
margin: auto;
    position: absolute;
    width: 100%;
    height: 65px;
    bottom: 5%;
    display: block;
}


.demo_wrap{
	display: block;
    position: absolute;
    bottom: 0;
    animation-fill-mode: forwards;
    animation-timing-function: linear;
    animation-duration: 15s;
    animation-iteration-count: 1;
	margin-right: -25px;
}

.demo_wrap[data-order="left"] {
    animation-name: GoLeft;
}
.demo_wrap[data-order="right"] {
    animation-name: GoRight;
}

[data-order="right"] > .demo_item {
    background-image: url(/wp-content/uploads/car-02.png);
}

@keyframes GoLeft {
    0% {
        right: 10%;
    }
    100% {
        right: 90%;
    }
}

@keyframes GoRight {
    0% {
        right: 90%;
    }
    100% {
        right: 10%;
    }
}

@keyframes upDown {
    0% {
        top: 0;
    }
    100% {
        top: 3px;
    }
}


.tree{
    position: absolute;
    left: 5%;
    bottom: 0;
    z-index: -10;
}

.house{
    position: absolute;
    right: 5%;
    bottom: 0;
    z-index: -10;
}



@media screen and (max-width: 600px){
.tree{
}

.house{
}

}
