  /* 基本（スマホ）は縦並び */
  #jumpbtn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
  }
  
  #jumpbtn .custom-btn {
    width: 300px;           /* スマホでは300px固定 */
    box-sizing: border-box;
    text-align: center;
  }

  /* PC向けの設定：画面幅が1001px以上の時 */
  @media screen and (min-width: 1001px) {
    #jumpbtn {
      flex-direction: row;  /* 横に並べる */
      justify-content: center;
    }
    
    #jumpbtn .custom-btn {
      width: calc(50% - 12px);
      max-width: 500px;        /* 大きくなりすぎないための制限*/
    }
  }

  .custom-btn {
    display: inline-block;
    width: calc(50% - 6px);
    text-align: center;
    color: #ffffff;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    position: relative;
    transition: background-color 0.3s; /* ホバー時の色変化を滑らかにする */
  }

  /* アンケート用スタイル */
  .btn-survey {
    background-color: #4CAF50;
  }
  .btn-survey:hover {
    background-color: #45a049;
  }

  /* IS予約用スタイル */
  .btn-reserve {
    background-color: #007BFF;
  }
  .btn-reserve:hover {
    background-color: #0069d9;
  }
  /* 無効化されたボタンのスタイル */
  .btn-disabled {
    pointer-events: none; /* マウス操作無効 */
    opacity: 0.6;         /* 半透明に */
    cursor: default;
  }

  /* 上に被せるテキスト（受付前/終了）のスタイル */
  .status-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    font-size: 18px;
    font-weight: bold;
    border-radius: 6px; /* ボタンの角丸に合わせる */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
  }

  /* 非表示用ユーティリティ */
  .hidden {
    display: none !important;
  }

#jumpbtn {
  scroll-margin-top: 100px;
}
