@charset "UTF-8";


/* クーポン
------------------------------------------------------------------------------------*/
#js_couponModal_wrap {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  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: calc(100% - 32px);
  height: calc(100% - 48px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  position: relative;
  margin: 24px auto 0;
  padding: 16px 0 72px;
}

#js_couponModal_scroll {
  height: 100%;
  overflow: hidden auto;
}

#js_couponModal_close {
  width: 20px;
  position: fixed;
  top: 40px;
  right: 32px;
  cursor: pointer;
}

#js_couponModal_tit {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  margin-top: 16px;
}

#js_couponModal_countdown {
  width: 204px;
  height: 34px;
  background: #E8EEF5;
  color: #134b8e;
  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% - 48px);
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
  margin: 24px 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: #134b8e;
  border-radius: 8px;
  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;
}

@media (max-width: 374px) {
  .coupon { padding: 20px 4px; }

  .coupon_l {
    width: calc(100% - 104px);
    text-align: left;
    margin-right: 8px;
  }

  .coupon_r { width: 104px; }
  .coupon_getBtn { width: 104px; }
}