@charset "utf-8";
/* CSS Document */
.arrowed{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.arrow{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height:275px;
  &::before{
    content: '';
    display: block;
    width: 4px;
    height: 100%;
    background: var(--red);
    position: relative;
    top: 5px;
  }
  &::after{
    content: '';
    display: block;
    background: url(../img/arrow.svg) no-repeat center;
    background-size: contain;
    width: 18px;
    height: 11px;
    position: relative;
    top: -5px;
  }
}

@media screen and ( max-width: 1023px ) {
}
@media screen and ( max-width: 767px ) {

}