html, body {
  touch-action: none;  /* タッチ操作のズームを完全に無効化 */
  overscroll-behavior: none; /* スクロールのバウンド効果も無効化（任意） */
}
body.modal-open {
  overflow: hidden;
  height: 100vh;
}

/* モーダルのスタイル */
#merchantModal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: black;
  color: white;
  padding: 0 15px;
  border: 3px solid white;
  border-radius: 10px;
  z-index: 1000;
  text-align: center;
  width: 300px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}
#merchantModal h2{
  margin: 15px 15px 5px 15px;
  font-size: 1.7rem;
}

/* モーダルの背景（オーバーレイ） */
#modalOverlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh; /* スクロール防止 */
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

/* 商品ボタンのスタイル */
#itemList {
  touch-action: manipulation;
  display: flex;
  flex-direction: column;
  align-items: center; /* ボタンを中央揃え */
  /* border: 2px solid white; */
  border-radius: 10px;
  background-color: white;
  font-weight: bold;
}

.item-button {
  touch-action: manipulation;
  display: block;
  margin: 7px auto; /* 中央揃え */
  padding: 5px;
  /* width: 200px; */
  width: 90%;
  background-color: lightblue;
  /* border: none; */
  border: 2px solid white;
  font-size: 1.3rem!important;
  cursor: pointer;
  text-align: center;
  white-space: pre-line; /* /nで改行 */
}
.item-button:hover {
  touch-action: manipulation;
  background-color: #0077ff;
}
.itemList_close {
  /* background-color: black; */
  background-color: #0077ff;
  color: white;
  margin: 10px 10px 15px 10px!important;
  border: 3px solid white;
  font-weight: 1.15rem;
  font-weight: bold;
}
.itemList_close:hover {
  background-color: red;
}





  /*===============================
パソコン画面用
=================================*/
/* @media print, screen and (min-width: 820px) {
  .modal {
    width: 33%;
  }
} */