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

/* モーダルのスタイル */
.modal_party {
  display: none;
  position: fixed;
  /* z-index: 1000; */
  z-index: 999999;
  left: 0;
  top: 0;
  /* width: 100%;
  height: 100%; */
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
}

.modal-content_party {
  background-color: black;
  color: white;
  margin: 15% auto;
  /* padding: 20px; */
  padding: 10px;
  border: 3px solid white;
  border-radius: 10px;
  width: 80%;
  /* max-width: 400px; */
  max-width: 350px;
  text-align: center;

}

.button-party_flex {
  display: flex;
}
.button-party1 {
  touch-action: manipulation;
  display: block;
  margin: 7px auto; /* 中央揃え */
  margin-top: -5px;
  margin-bottom: 19px;
  padding: 10px 20px;
  /* background-color: black; */
  background-color: #0077ff;
  color: white;
  border: 3px solid white;
  border-radius: 5px;
  font-size: 1.19rem!important;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
}
.button-party1:hover {
  touch-action: manipulation;
  /* background-color: #0077ff; */
}


.button-party2 {
  background-color: white;
  color: black;
  margin-top: 5px;
  padding: 5px 7px;
  font-size: 0.9rem!important;
}


.close-btn_party {
  touch-action: manipulation;
  margin: 20px;
  padding: 10px 30px;
  background-color: black;
  color: white;
  border: 3px solid white;
  border-radius: 10px;
  font-size: 1.15rem;
  font-weight: bold;
  cursor: pointer;
}
.close-btn_party:hover {
  background-color: red;
}


.importedData_party {
  font-size: 0;
}



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

.button-party {
  padding: 10px 20px;
  font-size: 1.39rem!important;
}
.button-party {
  padding: 5px 10px;
  font-size: 1.1rem!important;
}

}