button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled,
.hs-button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}

.feature_cta_button {
  font-family: 'Chakra Petch', sans-serif;
  display: block;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  width: 120px;
  margin: auto;
  padding: 1.8rem 4rem;
  font-weight: bold;
  border: 2px solid white;
  color: white;
  border-radius: 100vh;
  background-color: transparent;
  letter-spacing:3px;
  /*   transition: 0.5s; */
}
.feature_cta_button:after {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 165px; /* 要素の左からの距離 */
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 10px solid white;
}
.feature_cta_button:hover {
  background: black;
  color: #FFF;
  font-family: 'Chakra Petch', sans-serif;
  font-weight: bold;
  border: 2px solid black;
}
}