.content_image .t1Box {
    position: relative;
    width: 100%;
    padding: 0 0 3rem;
    background: #FFF;
}

.t1Img {
    width: 100%;
    cursor: pointer;
}

.t1Txt {
    text-align: center;
    padding: .5rem;
    color: #333;
}

.t1Btn {
    position: absolute;
    top: 78%;
    left: 0;
    right: 0;
    width: 43%;
    height: 8%;
    margin: auto;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
}

.content_image .t1Hand {
    position: absolute;
    left: 0;
    right: 0;
    width: 3rem;
    bottom: 0;
    margin: auto;
    -webkit-animation: hand 2s ease-in-out infinite;
    animation: hand 2s ease-in-out infinite;
}

@-webkit-keyframes hand {
    0%,
    100% {
        bottom: 0;
    }
    50% {
        bottom: 3%;
    }
}

@keyframes hand {
    0%,
    100% {
        bottom: 0;
    }
    50% {
        bottom: 3%;
    }
}