html, body {
  touch-action: none;  /* タッチ操作のズームを完全に無効化 */
  overscroll-behavior: none; /* スクロールのバウンド効果も無効化（任意） */
}
body {
  /* font-family: Arial, sans-serif; */
  background-color: black;
  color: white;
  text-align: center;
}
.wizard-step {
  touch-action: manipulation;
  display: none;
}
.active {
  touch-action: manipulation;
  display: block;
}
p {
  /* font-size: 1.1rem; */
  font-size: 1.3rem;
}
input {
  font-size: 1.1rem;
}
/* .select-text option {
  font-size: 3rem;
} */
.wizard-step select {
  margin: 10px;
  font-size: 1.1rem;
}
button {
  /* touch-action: manipulation;
  margin: 5px;
  padding: 5px; */
  /* position: fixed; */
  /* bottom: -35px; */
  /* right: 10px; */
  /* margin-top: 10px; */
  /* padding: 15px 30px; */
  /* border: solid 4px white;
  border-radius: 4px;
  background-color: black; */
  /* color: white;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer; */
}
/* button:hover {
  touch-action: manipulation;
  background-color: #0077ff;
} */
.preview {
  touch-action: manipulation;
  position: relative;
  margin-top: 20px;
  width: 200px;
  height: 400px;
  /* width: 150px;
  height: 300px; */
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.preview img {
  touch-action: manipulation;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.equipment-description {
  color: white;
}


/*===============================
パソコン画面用
=================================*/
@media print, screen and (min-width: 820px) {
  .modal {
    font-size: 3rem!important;
  }
}