/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 10 2025 | 13:22:00 */
.reveal-image {
  position: relative;
  overflow: hidden;
  border-top-left-radius: 90px;
  border-top-right-radius: 0;
}

.reveal-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(
    135deg,
    #009A9F 0%,
    #00b4ba 40%,
    #a8ecee 60%,
    #009A9F 100%
  );
  opacity: 0.95;
  transform: translateX(0);
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1) 0.3s;
  box-shadow: 0 0 30px rgba(0, 154, 159, 0.4);
  background-size: 300% 300%;
  animation: shimmer 2s ease-in-out infinite;

  border-top-left-radius: 90px;
  border-top-right-radius: 0;
}

.reveal-image.revealed::before {
  transform: translateX(100%);
}

.reveal-image img {
  display: block;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
  filter: brightness(1.05) contrast(1.1);
  transition: filter 1s ease;

  border-top-left-radius: 90px;
  border-top-right-radius: 0;
}

/* アニメーション（shimmer） */
@keyframes shimmer {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* ▼ タブレット（1024px以下） */
@media (max-width: 1024px) {
  .reveal-image,
  .reveal-image::before,
  .reveal-image img {
    border-top-left-radius: 40px;
    border-top-right-radius: 0;
  }
}

/* ▼ スマホ（767px以下） */
@media (max-width: 767px) {
  .reveal-image,
  .reveal-image::before,
  .reveal-image img {
    border-top-left-radius: 32px;
    border-top-right-radius: 0;
  }
}
