.hint-modal {
  touch-action: none;  /* タッチ操作のズームを完全に無効化 */
  overscroll-behavior: none; /* スクロールのバウンド効果も無効化 */
  touch-action: manipulation;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  overflow-y: auto;
  padding: 10px;
  z-index: 9999; /* 最前面に表示 */
  display: none;  /* 最初は非表示 */
  z-index: 5;
}

.hint-button {
touch-action: none;  /* タッチ操作のズームを完全に無効化 */
overscroll-behavior: none; /* スクロールのバウンド効果も無効化 */
touch-action: manipulation;
margin: 0 auto;
margin-top: 35px;
padding: 10px;
width: 80%;
max-width: 250px;
background-color: red;
border: solid 3px white;
border-radius: 10px;
text-align: center;
font-size: 1.15rem;
font-weight: bold;
color: white;
cursor: pointer;
}






/*===============================
パソコン画面用
=================================*/
@media print, screen and (min-width: 820px) {
  .hint-modal {
    height: 15%;
  }
  .hint-button {
    width: 50%;
    max-width: 300px;
    margin-top: 10px;
    font-size: 1.39rem;
  }
}