/* jp_index_bs5_v11_hero_cta_links_clickable.css
 * Scope: Japanese homepage B1 HERO only.
 * Goal: preserve all 13 original CTA href/text and guarantee they remain clickable
 *       after BS3 -> BS5 conversion, without changing layout geometry.
 * Frozen: B1 DOM, img src, text, href, images; desktop/mobile navbar/footer.
 */

/* Descriptive caption must never intercept clicks intended for the CTA below. */
#mycarousel .carousel-item > .carousel-caption {
  pointer-events: none !important;
}

/* CTA caption remains geometrically unchanged; only its stacking/click layer is fixed. */
#mycarousel .carousel-item > .container > .carousel-caption {
  z-index: 30 !important;
  pointer-events: none !important;
}

/* The 13 existing text buttons keep their original href and become the active click targets. */
#mycarousel .carousel-item > .container > .carousel-caption a.btn.btn-primary[href] {
  position: relative !important;
  z-index: 31 !important;
  pointer-events: auto !important;
  cursor: pointer !important;
}
