.pc.back-send_buttons {
  display: flex;
  justify-content: space-between;
  width: 746px;
  margin: 60px auto;
}

.transparent_button, .black_button {
  position: relative;
  width: 318px;
  height: 66px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 23px;
  border-radius: 5px;
}
.transparent_button::before, .black_button::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
}

.transparent_button {
  border: 1px solid #000;
  color: #000;
}
.transparent_button::before {
  transform: translateY(-50%) rotate(-45deg);
  left: 40px;
  border-top: 6px solid #484848;
  border-left: 6px solid #484848;
}

.black_button {
  background-color: #000;
  color: #fff;
}
.black_button::before {
  transform: translateY(-50%) rotate(135deg);
  right: 40px;
  border-top: 6px solid #fff;
  border-left: 6px solid #fff;
}

@media screen and (max-width: 1024px) {
  .pc.back-send_buttons {
    display: none;
  }
  .sp.back-send_buttons {
    display: flex;
    justify-content: space-between;
    width: 274px;
    margin: 30px auto;
  }
  .a_black_button.black_button {
    width: 166px;
    height: 34px;
  }
  .transparent_button, .black_button {
    width: 128px;
    height: 30px;
    font-size: 14px;
  }
  .transparent_button::before, .black_button::before {
    width: 8px;
    height: 8px;
  }
  .transparent_button::before {
    left: 20px;
    border-top: 2px solid #484848;
    border-left: 2px solid #484848;
  }
  .black_button::before {
    transform: translateY(-50%) rotate(135deg);
    right: 20px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
  }
}/*# sourceMappingURL=button.css.map */