<style>
  .custom-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
  }
  .custom-button {
    display: inline-block;
    padding: 20px 40px; /* ボタンサイズを大きく */
    font-size: 24px; /* フォントサイズを大きく */
    border-radius: 50px; /* 丸い枠 */
    cursor: pointer;
    text-decoration: none;
    color: white; /* 文字の色を白に設定 */
    transition: background-color 0.3s ease;
  }
</style>

