/*スクロールダウン全体の場所*/

.sec-link li{
    position: relative;
}
.scrolldown1{
    /*描画位置※位置は適宜調整*/
	position:absolute;
	left:50%;
	bottom:-30px;
    /*全体の高さ*/
	height:40px;
}
/* 線の描写 */
.scrolldown1::after{
	content: "";
    /*描画位置*/
	position: absolute;
	top: 0;
    /* left: -35px; */
    /*線の形状*/
	width: 1px;
	height: 30px;
	background: #131313;
    /*線の動き1.4秒かけて動く。永遠にループ*/
	animation: pathmove 1.4s ease-in-out infinite;
	opacity:0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
	0%{
		height:0;
		top:0;
		opacity: 0;
	}
	30%{
		height:30px;
		opacity: 1;
	}
	100%{
		height:0;
		top:50px;
		opacity: 0;
	}
}