@media only screen and (min-width: 600px) {
    #p-slider #slider > div img {
        max-height: inherit;
        height: 550px;
    }
}
/* ▼ Triggers & Banners */
.side-promo-tab {
  position: fixed;
  bottom: calc(10% + 24em);
  right: 0;
  transform: rotate(-90deg);
  transform-origin: bottom right;
  z-index: 1000;
  opacity: .95;
  cursor: pointer;
}
.promo-banner {
  display: none;
  cursor: pointer;
}
.promo-text-wrapper {
  position: relative;
  display: block;
  background-color: #f0908d;
  color: #fff;
  padding: 8px 15px 3px 15px;
  white-space: nowrap;
  text-align: right;
  border-radius: 6px 6px 0 0;
  box-shadow: -2px -2px 4px rgba(0, 0, 0, 0.12);
}
.promo-line2 {
  display: block;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.1;
  letter-spacing: .2em;
  color: #fff;
  filter: drop-shadow(0px 0px 2px rgba(204, 66, 61, 0.6));
}
.promo-line1 {
  display: block;
  font-size: 11px;
  font-weight: normal;
  letter-spacing: 0.05em;
  margin-bottom: 3px;
}
.promo-tax {
  font-size: 9px;
  margin-left: 2px;
  margin-right: 2px;
}

/* ▼ Popup */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
}
.popup-overlay.is-shown {
  visibility: visible;
  opacity: 1;
}
.popup-window {
  background-color: #fff;
  padding: 25px 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  max-width: 80%;
  width: 500px;
  position: relative;
  transform: scale(0.9);
  transition: transform 0.3s;
}
.popup-overlay.is-shown .popup-window {
    transform: scale(1);
}
.popup-close {
  position: absolute;
  top: 5px;
  right: 10px;
  background: none;
  border: none;
  font-size: 28px;
  color: #888;
  cursor: pointer;
  line-height: 1;
}
.popup-close:hover {
  color: #000;
}

/* ▼ Mobile Styles (max-width: 599px) */
@media screen and (max-width: 599px) {
  .side-promo-tab {
    display: none;
  }
  .promo-banner {
    display: block;
    width: fit-content;
    margin: 1em auto;
  }
  .promo-text-wrapper {
    padding: 5px 15px 0px 20px;
    border-radius: 4px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.12);
  }
  .promo-line1, .promo-line2 {
    display: inline-block;
  }
}
.coupon-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f2f9fe;
  border: 1px dashed #89c3eb;
  border-radius: 6px;
  padding: 10px 15px;
  margin: 5px 0 5px 0;
}
.coupon-outline {
  color: #3b8ac4;
}
.coupon-code {
  font-size: 20px;
  color: #3b8ac4;
}
.copy-btn {
  background-color: #89c3eb;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 8px 15px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s;
}
.copy-btn:hover {
  background-color: #6dafdc;
}
.copy-feedback {
  display: none;
  font-size: 13px;
  color: #008000;
  text-align: right;
  margin: 0;
}
/*ピンクバージョン
.coupon-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff4f3;
  border: 1px dashed #f0908d;
  border-radius: 6px;
  padding: 10px 15px;
  margin: 5px 0 5px 0;
}
.coupon-outline {
  color: #d94f4a;
}
.coupon-code {
  font-size: 20px;
  color: #d94f4a;
}
.copy-btn {
  background-color: #f0908d;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 8px 15px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.2s;
}
.copy-btn:hover {
  background-color: #d94f4a;
}
.copy-feedback {
  display: none;
  font-size: 13px;
  color: #008000;
  text-align: right;
  margin: 0;
}
*/