.sdemo-button-container {
  text-align: center; /* ボタンを中央揃え */
  margin-top: 20px; /* 上に少し余白を追加 */
}

.sdemo-button {
  display: inline-block;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  color: #ffffff; /* 白抜き風の文字 */
background: linear-gradient(135deg, #6e0f0f, #a01818);
/* 濃いえんじとダークレッドで統一感と重厚感 */



  border-radius: 8px;
  border: 2px solid #ffffff;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.sdemo-button:hover {
  background: linear-gradient(135deg, #8a1a1a, #c12c2c);
  transform: translateY(-2px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.3);
}<