.info-button-wrapper {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap; /* 横幅に収まらないときは折り返す */
  margin: 30px 0;
}

.info-button {
  display: inline-block;
  padding: 14px 24px;
  font-size: 18px;
  font-weight: bold;
  color: #fff !important;
  text-align: center;
  text-decoration: none !important;
  border-radius: 10px;
  background-color: #555;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease, transform 0.2s ease;
  min-width: 120px;
  max-width: 200px;
  white-space: nowrap;
}

/* ボタンの色ごとのクラス */
.btn-request {
  background-color: #0074D9;
}
.btn-trial {
  background-color: #2ECC40;
}
.btn-access {
  background-color: #FF851B;
}

/* ホバー効果 */
.btn-request:hover {
  background-color: #005fa3;
}
.btn-trial:hover {
  background-color: #25a032;
}
.btn-access:hover {
  background-color: #e36d00;
}

/* モバイルでは縦並び */
@media (max-width: 568px) {
  .info-button-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .info-button {
    width: 70%;
    font-size: 16px;
    padding: 16px 20px;
    min-width: 0;
    max-width: 100%;
  }
}