@charset "UTF-8";
.js-copybtn {
  cursor: pointer;
  opacity: 1;
  will-change: opacity;
  transition: opacity 0.2;
}
.js-copybtn:hover {
  opacity: 0.5;
}
.coupon-modal {
  display: none;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000000001;
  overflow-y: auto;
}
.coupon-modal-bg {
  cursor: pointer;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.45);
  position: absolute;
  top: 0;
}
.coupon-modal-close {
  position: absolute;
  top: -10px;
  right: -10px;
}
.coupon-modal-close a {
  display: block;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: #333;
  border-radius: 50%;
  transform: scale(1);
  transform-origin: center;
}
.coupon-modal-close a:hover,
.coupon-modal-close a:focus {
  opacity: 1;
}
.coupon-modal-close a:hover {
  transform: scale(1.1);
}
.coupon-modal-close a:before, .coupon-modal-close a:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 2px;
  height: 50%;
  margin: auto;
  background: #fff;
}
.coupon-modal-close a:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: center;
          transform-origin: center;
}
.coupon-modal-close a:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: center;
          transform-origin: center;
}
.coupon-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 92%;
  max-width: 440px;
  height: 100%;
  max-height: 140px;
  padding: 20px;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 20px;
  -webkit-box-shadow: 0 0 12px #c4c4c4;
          box-shadow: 0 0 12px #c4c4c4;
}
@media print, screen and (min-width: 768px) {
  .coupon-modal-content {
    border-radius: 10px;
  }
}
@media screen and (max-width: 359px) {
  .coupon-modal-close {
    top: -30px;
  } 
}
.coupon-modal-title {
  line-height: 1.7;
}
.coupon-modal-code {
  margin-top: 5px;
  font-size: 30px;
  font-size: 3rem;
}
.coupon-modal-code:before {
  content: "「";
}
.coupon-modal-code:after {
  content: "」";
}
.invisible {
  position: absolute;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  width: 0;
  height: 0;
  margin: -1px;
  padding: 0;
  border: 0
}