@charset "UTF-8";


/* クーポン
------------------------------------------------------------------------------------*/
#js_couponModal_wrap {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: grid;
  place-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: hidden;
  opacity: 0;
  transition: opacity 250ms;
  pointer-events: none;
}

#js_couponModal_wrap.js_couponModal_wrap_open {
  opacity: 1;
  pointer-events: auto;
}

#js_couponModal_inner {
  width: 520px;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  position: relative;
  /* margin-top: 40px; */
  padding: 16px 0 72px;
}
#js_couponModal_inner.js_couponModal_inner_fixed {
  height: calc(100vh - 80px);
  height: calc(100dvh - 80px);
}

.js_couponModal_inner_fixed #js_couponModal_scroll {
  height: 100%;
  overflow: hidden auto;
}

#js_couponModal_close {
  width: 20px;
  position: absolute;
  top: 24px;
  right: 24px;
  cursor: pointer;
}

#js_couponModal_tit {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  margin-top: 16px;
}

#js_couponModal_countdown {
  width: calc(100% - 128px);
  height: 34px;
  background: rgb(253 213 228 / .9);
  color: #f85993;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 16px auto -8px;
  padding: 8px;
}
#js_couponModal_countdown span {
  font-size: 2.2rem;
  font-weight: bold;
  padding-left: 8px;
}

#js_couponModal_coupon {
  width: calc(100% - 64px);
  filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.2));
  transform: translateZ(0);
  margin: 32px auto 0;
}

#js_couponModal_freeHTML { margin: 24px 24px 0; }

#js_couponModal_freeHTML p {
  --fs: 1.4rem;
  --fh: 1.8rem;
  font-size: var(--fs);
  line-height: var(--fh);
  margin: calc(20px + ((var(--fs) - var(--fh)) / 2)) 0 calc(0px + ((var(--fs) - var(--fh)) / 2));
}

#js_couponModal_getBtn {
  width: calc(100% - 80px);
  height: 38px;
  background: #f85993;
  border-radius: 5px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  display: grid;
  place-items: center;
  position: absolute;
  bottom: 16px;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
  cursor: pointer;
  transition: opacity 300ms;
}
#js_couponModal_getBtn:hover { opacity: 0.5; }