@charset "UTF-8";
.modal_wrap input {
  display: none;
}
.modal_wrap .modal_overlay {
  display: flex;
  justify-content: center;
  overflow: auto;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.5s, transform 0s 0.5s;
  transform: scale(0);
}
.modal_wrap .modal_trigger {
  position: absolute;
  width: 100%;
  height: 100%;
}
.modal_wrap .modal_content {
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(700px, 90%);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: auto;
  padding: 24px 16px;
  border-radius: 10px;
  box-sizing: border-box;
  background: #FFDE00;
  line-height: 1.4em;
  transition: 0.5s;
}
.modal_wrap .close_button {
  display: block;
  position: absolute;
  top: 18px;
  right: 18px;
  width: 30px;
  height: 30px;
  border: 2px solid #000;
  border-radius: 100vw;
}
.modal_wrap .batsu::before, .modal_wrap .batsu::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 16px;
  border-radius: 4px;
  background: #000;
}
.modal_wrap .batsu::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal_wrap .batsu::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.modal_wrap input:checked ~ .modal_overlay {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s;
}
.modal_wrap input:checked ~ .modal_overlay .modal_content {
  transform: translateY(20px);
}
.modal_wrap .modal_container {
  width: 100%;
  margin: 24px 0 0;
  padding: 24px;
  border-radius: 10px;
  background: #fff;
}
.modal_wrap .modal_title {
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, メイリオ, Osaka, "MS PGothic", arial, sans-serif;
  font-size: 24px;
  text-align: center;
}
.modal_wrap .modal_inner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
}
.modal_wrap .modal_shopname {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  align-items: center;
  font-size: 20px;
  text-align: center;
  margin: 0 0 16px;
}
.modal_wrap .modal_content img {
  display: block;
  margin: 24px auto 0;
}
@media screen and (min-width: 992px) {
  .modal_wrap .modal_shopname {
    width: 55%;
    display: flex;
    margin: 0 16px 0 0;
  }
}
.modal_wrap .modal_shopname::before,
.modal_wrap .modal_shopname::after {
  content: "";
  position: absolute;
  bottom: 0;
}
.modal_wrap .modal_content p {
  padding-top: 0;
}
.modal_wrap .modal_content a {
  display: block;
  color: #fff;
  padding: 12px;
}
.modal_wrap .modal_button {
  width: 40%;
  margin-right: 16px;
  border-radius: 10px;
  background: #000;
  text-align: center;
}
@media screen and (min-width: 992px) {
  .modal_wrap .modal_button {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.modal_wrap .modal_button.reserve {
  margin: 0;
  background: #e50012;
}/*# sourceMappingURL=modal.css.map */