@charset "utf-8";

/*========= スクロールダウンのためのCSS ===============*/

/*====== 9-1-1 縦線が動いてスクロールを促す =======*/

/*スクロールダウン全体の場所*/
.scrolldown1{
    /*描画位置※位置は適宜調整してください*/
  position:absolute;
  left:50%;
  bottom:-20px;
    /*全体の高さ*/
  height:50px;
}
.p-about_mv{
  position: relative;
}
.scroll_box{
  position: relative;
}
.scrolldown2{
  /*描画位置※位置は適宜調整してください*/
display: block;
position:absolute;
left:50%;
top: -10px;
  /*全体の高さ*/
height:50px;
z-index: 10;
}
.scrolldown3{
  top: -80px;
}
.scrolldown4{
  top: 20px;
}

.p-ddm_mv{
  position: relative;
}

/*Scrollテキストの描写*/
.scrolldown1 span{
    /*描画位置*/
  position: absolute;
  left:-15px;
  top: -15px;
    /*テキストの形状*/
  color: #eee;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}
.scrolldown2 span{
  position: absolute;
  left:-15px;
  top: -15px;
    /*テキストの形状*/
  color:#333;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

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

/* max-width:768px */
@media screen and (max-width:768px){
.scrolldown4{
  top: -16px;
}
}