/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 29 2026 | 07:08:52 */
.wave-divider {
  width: 100%;
  height: 90px;
  overflow: hidden;
}

/* ★ここが核 */
.wave-track {
  display: flex;
  width: 2600px;
  height: 100%;
  animation: waveScroll 34s linear infinite;
}

/* ★1枚＝1000px固定 */
.wave {
  width: 1300px;
  height: 100%;
  flex-shrink: 0;

  background-image: url("https://3a-inc.com/wp-content/uploads/2026/04/waveFoot03.svg");
  background-repeat: no-repeat;
  background-size: 1300px 100%;
  background-position: left bottom;
}

@keyframes waveScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-1300px); } /* ←完全一致 */
}

/* スマホ */
@media (max-width: 800px) {
  .wave-divider {
    height: 140px;
    margin-top:3%;
  }
  .wave-track {
  display: flex;
  width: 2600px;
  height: 100%;
    margin-top:4%;
  animation: waveScroll 34s linear infinite;
}
}    