.fleeceItem_link{
  width: 100%;
  height: 70px;
  background-color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  color: #333;
  border: 4px solid #DBCAB1;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 20px;
}
.fleeceItem_link span{
  display: block;
  font-size: 12px;
  margin-bottom: 10px;
}

.fleeceItem_link::after{
  display: block;
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-left: 18px solid #000;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  .fleeceItem_link::after{
    border: 5px solid transparent;
    border-left: 9px solid #000;
}

}