/* アニメーション設定 */

.arrowWrap {
    position: absolute;
    right: 27px;
    bottom: 0;
    height: 144px;

  }
   
  .arrowInner p {
    font-size: 28px;
    color: #000;
    text-align: end;
    -webkit-transform: rotate(269deg);
    -moz-transform: rotate(269deg);
    transform: rotate(269deg);
    font-family: 'Alegreya Sans SC', sans-serif;
    font-weight: 700;
    letter-spacing: 0.2em;
  
  }
  
  .arrow {
    width: 1px;
    height: 150px;
    margin: 70px auto 0;
    /* background-color: #eee; */
    position: relative;
    overflow: hidden;
  }
  


  .arrow::before {
    content: '';
    width: 1px;
    height: 150px;
    margin: 50px auto 0;
    background-color: #000;
    position: absolute;
    top: -150px;
    left: 0;
    -webkit-animation: arrow 2.5s ease 0s infinite normal;
    -moz-animation: arrow 2.5s ease 0s infinite normal;
    animation: arrow 2.5s ease 0s infinite normal;
  }

    /* Firefox */
@-moz-document url-prefix() {
  .arrow::before {
    width: 2px;
}
}
  
  @keyframes arrow {
    0% {
      -webkit-transform: translate3d(-50%, 0, 0);
      -moz-transform: translate3d(-50%, 0, 0);
      transform: translate3d(-50%, 0, 0);
    }
  
    60% {
      -webkit-transform: translate3d(-50%, 100px, 0);
      -moz-transform: translate3d(-50%, 100px, 0);
      transform: translate3d(-50%, 100px, 0);
    }
  
    99.9%,to {
      -webkit-transform: translate3d(-50%, 100px, 0);
      -moz-transform: translate3d(-50%, 100px, 0);
      transform: translate3d(-50%, 100px, 0);
    }
  }
  
  @media screen and (max-width:800px) {

    .arrowInner p {
      font-size: 20px;
    }
    
    .arrowInner {
      width: 30px;
    }
    .arrow {
      margin: 30px auto 0;
    }

  }
  @media screen and (max-width:500px) {
  
    .arrowInner p {
      font-size: 13px;
    }
  
    .arrowWrap {
      right: 0;
      height: auto;
      bottom: -50px;
    }
    .arrow {
      height: 50px;
    }

    .arrow::before {
      height: 50px;
    }


  }
  @media screen and (max-width:350px) {
  
    /* .arrowInner p {
      font-size: 13px;
    }
  
    .arrowWrap {
      height: 100px;
  
    }
    .arrow {
      height: 100px;
    } */
  }
