/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Apr 01 2025 | 17:21:51 */
.soleil-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 48px;
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
  background: #FFDA44;
  border: none;
  border-radius: 9999px;
  text-decoration: none;
  transition: transform 0.3s ease;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  position: relative;
  width: 280px;
}

.soleil-button.wb {
  color: #555555!important;
  background: #fff!important;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  }

/* テキスト中央 */
.btn-text {
  margin: 0 auto;
}

/* 矢印右端 */
.btn-arrow {
  position: absolute;
  right: 24px;
  transition: transform 0.3s ease;
}

/* ホバー時：矢印だけ動く */
.soleil-button:hover {
  transform: translateY(-2px);
}

.soleil-button:hover .btn-arrow {
  transform: translateX(4px);
}

/* ===== レスポンシブ対応 ===== */

/* タブレット以下（1024px以下） */
@media (max-width: 1024px) {
  .soleil-button {
    width: 240px;
    padding: 14px 36px;
    font-size: 1rem;
  }

  .btn-arrow {
    right: 20px;
  }
}

/* スマホ（768px以下） */
@media (max-width: 768px) {
  .soleil-button {
    width: 200px;
    padding: 12px 28px;
    font-size: 0.95rem;
  }

  .btn-arrow {
    right: 16px;
  }
}
