/* --------------- */
/* モーダル */

main .modal_yoyaku {
  display: none;
  position: fixed;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100vh;
  overflow-y: scroll;
  z-index: 200;
  width: 100%;
}
main .modal_yoyaku .cont {
  width: 550px;
  margin: 3% auto 3%;
  padding: 30px 0 81px;
  position: relative;
  background-color: #fff;
  position: absolute;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 240px;
  text-align: center;
  border-radius: 5px;
}
main .modal_yoyaku .cont p {
  color: #4d4d4d;
  font-size: 16px;
  padding-bottom: 4px;
}

main .modal_yoyaku .cont img {
  width: 30%;
  padding: 0 4%;
}
main .modal_yoyaku .close {
  position: absolute;
  top: 6%;
  right: 20px;
  width: 20px;
  cursor: pointer;
}
main .modal_yoyaku .close img {
  width: 100%;
}

main .modal_yoyaku .wrap .close_btn {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  cursor: pointer;
}
/* モーダル */
