/* Start custom CSS for html, class: .elementor-element-05652e6 */<style>
.gradient-button {
  display: inline-block;
  position: relative;
  z-index: 0; /* shineエフェクトが下になるよう調整 */
  padding: 0.9em 1.2em;
  background: linear-gradient(to right, #00c3c3, #00a6a6);
  color: white;
  font-weight: bold;
  text-align: center;
  border-radius: 6px;
  text-decoration: none;
  overflow: hidden;
  transition: background 0.3s ease;
  font-size: 1.05em;
  line-height: 1.5em;
}

.gradient-button span {
  position: relative;
  z-index: 2;
  display: inline-block;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.gradient-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0.4), rgba(255,255,255,0));
  transform: skewX(-20deg);
  z-index: 1;
  pointer-events: none;
}

.gradient-button:hover::before {
  animation: shine 0.8s ease-in-out;
}

@keyframes shine {
  0% {
    left: -60%;
  }
  100% {
    left: 160%;
  }
}
</style>/* End custom CSS */