/* <img class="btn_tri"> を内包する <a> のみ対象 */
a:has(> img.btn_tri) {
  position: relative;      /* 擬似要素重ね位置の基準 */
  pointer-events: none;    /* クリック無効 */
  cursor: default;
}

/* overlay（透過グレー） */
a:has(> img.btn_tri)::before {
  content: "";
  position: absolute;
  inset: 0;                /* 上下左右0 */
  background: rgba(0,0,0,0.45);
  z-index: 2;
}

/* 欠品テキスト */
a:has(> img.btn_tri)::after {
  content: "欠品";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 24px;          /* 任意調整 */
  font-weight: bold;
  z-index: 3;
  pointer-events: none;
}

/* ブロック化（隙間余計な表示回避） */
a:has(> img.btn_tri) img {
  display: block;
}

#lpbox2 h3 {
  display: none;
}

div#_cart_checkout_form {
    padding: 20px 0 20px;
}