@charset "utf-8";
.scrolldown1 {
    /*描画位置※位置は適宜調整してください*/
    position: absolute;
    left: 51%;
    bottom: -60px;
    /*全体の高さ*/
    height: 95px;
}


/*Scrollテキストの描写*/

.scrolldown1 span {
    /*描画位置*/
    position: absolute;
    right: -58px;
    top: 30px;
    /*テキストの形状*/
    color: #333;
    font-size: 1.1rem;
    letter-spacing: 3px;
    transform: rotate(90deg);
}

@media (max-width: 767px) {
    .scrolldown1 span {
        /*描画位置*/
        position: absolute;
        right: -48px;
        top: 30px;
        /*テキストの形状*/
        color: #333;
        font-size: 0.9rem;
        letter-spacing: 3px;
        transform: rotate(90deg);
    }
}


/* 線の描写 */

.scrolldown1::after {
    content: "";
    /*描画位置*/
    position: absolute;
    top: 0;
    /*線の形状*/
    width: 1px;
    height: 80px;
    background: #333;
    /*線の動き1.4秒かけて動く。永遠にループ*/
    animation: pathmove 1.4s ease-in-out infinite;
    opacity: 0;
}


/*高さ・位置・透過が変化して線が上から下に動く*/

@keyframes pathmove {
    0% {
        height: 30px;
        top: 0;
        opacity: 0;
    }
    30% {
        height: 50px;
        opacity: 1;
    }
    100% {
        height: 0;
        top: 80px;
        opacity: 0;
    }
}

.scroll {
    width: 100%;
    position: relative;
}