.b-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  opacity: 0;
  pointer-events: none;
}
.b-modal.is-active {
  opacity: 1;
  pointer-events: auto;
}
@media only screen and (min-width: 768px) {
  .b-modal {
    padding: 0 40px;
  }
}
.b-modal ._close {
  background: #f18b00;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-bottom: 18px;
  border-radius: 6px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: opacity 0.4s ease;
}
@media (hover: hover) {
  .b-modal ._close:hover, .b-modal ._close:active {
    opacity: 0.8;
  }
}
@media only screen and (min-width: 768px) {
  .b-modal ._close {
    margin-bottom: 12px;
  }
}
.b-modal ._close ._bar {
  width: 24px;
  height: 24px;
  background: url(../../img/common/modal/close.svg) no-repeat center/24px;
  transform: rotate(45deg);
}
.b-modal__bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.4);
}
.b-modal__main {
  background: #fff;
  border-radius: 10px;
  z-index: 2;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media only screen and (min-width: 768px) {
  .b-modal__main {
    padding: 16px;
    padding-bottom: 40px;
  }
}
.b-modal__txt {
  font-size: 14px;
  line-height: 1.7142857143;
  margin-bottom: 16px;
}
@media only screen and (min-width: 768px) {
  .b-modal__txt {
    max-width: 503px;
    margin: 0 auto 20px;
  }
}
.b-modal__txt ._orange {
  font-weight: bold;
  color: #f18b00;
}
.b-modal__txt ._green {
  color: #3aae36;
  font-weight: bold;
}
.b-modal__btn {
  font-weight: bold;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3aae36;
  color: #fff;
  border-radius: 4px;
  height: 59px;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .b-modal__btn {
    display: none;
  }
}
.b-modal__qr {
  display: none;
}
@media only screen and (min-width: 768px) {
  .b-modal__qr {
    display: block;
  }
}
.b-modal__qr--ttl {
  width: 250px;
  height: 30px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3aae36;
  color: #fff;
  margin: 0 auto 20px;
}
.b-modal__qr--img {
  max-width: 150px;
  overflow: hidden;
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.b-modal__qr--img::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.b-modal__qr--img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.4s ease;
}
.b-modal__checkbox {
  display: flex;
  align-items: center;
  padding-top: 20px;
  font-size: 12px;
  line-height: 1.5833333333;
}
.b-modal__privacy {
  word-break: break-all;
  max-width: 100%;
  font-size: 14px;
  margin-top: 20px;
  max-height: 100px;
  overflow: auto;
  padding: 16px;
  border-radius: 10px;
  border: 1px solid #ddd;
}/*# sourceMappingURL=modal.css.map */