@charset "utf-8";
.cc001-button {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  color: #07b92a;
  font-size: 18px;
  border-radius: 5px;
  width: 200px;
  height: 35px;
  border: 2px solid #07b92a;
  position: relative;
  transition: 0.3s;
  background-color: #ffffff;
}

.cc001-button::before {
  content: ">>";
  display: block;
  font-size: 8px;
  background-color: #07B92A;
  color: #fff;
  border-radius: 3px;
  padding: 3px 5px;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-5px, -30%);
  transition: .3s;
}

.cc001-button:hover::before {
  transform: translate(-5px, -50%);
}
/* -------------------------------------------- */
