    /* ボタンデザイン */
    .shadow-button {
      width: 100%; /* ← 横幅いっぱい */
      height: 50px;
      margin-bottom: 2px; /* ← 下に5pxの隙間 */
      border: none;
      border-radius: 8px;
      background: #f0f0f0;
      color: white;
      font-size: 18px;
      font-weight: bold;
      cursor: pointer;

      /* 影 */
      box-shadow: 0 6px 0 #2c5f99;

      /* アニメーション */
      transition: all 0.1s ease;
    }

    /* ホバー時 */
    .shadow-button:hover {
      background: #fcfcfc;
    }

    /* クリック時 */
    .shadow-button:active {
      transform: translateY(6px);
      box-shadow: 0 0 0 #2c5f99;
    }
    .button-link {
    text-decoration: none; /* アンダーライン削除 */
    color: 4d4dff;
    /*padding: 15px 30px;*/
    border-radius: 8px;
    display: inline-block;
  }