  
    #main {
  padding-top: 0 !important;
}
    /* ========== このブロック内だけに適用（idスコープ） ========== */

    /* SPは背景非表示、PCのみ表示 */
    @media (max-width:767px){
      #zakuro-bg .bg-full, #zakuro-bg .left-bg, #zakuro-bg .right-bg { display:none !important; }
    }
    @media (min-width:768px){
      #zakuro-bg .bg-full, #zakuro-bg .left-bg, #zakuro-bg .right-bg { display:block !important; }
    }

    /* PCの表示/非表示とは別に、レイヤーの見た目定義（トランジション維持） */
    #zakuro-bg .bg-full, #zakuro-bg .left-bg, #zakuro-bg .right-bg {
      position: fixed;
      top: 0;
      height: 100vh;
      background-size: cover;
      background-position: center;
      transition: background-image 1s ease, opacity 1s ease;
      pointer-events: none;
      opacity: 0;     /* IOで切替 */
      z-index: 0;     /* コンテンツ(#zakuro-bg .section)より後ろ */
    }
    #zakuro-bg .bg-full  { left: 0; width: 100vw; }
    #zakuro-bg .left-bg  { left: 0; width: 50vw; }
    #zakuro-bg .right-bg { right: 0; width: 50vw; }

    /* 左右分割時の表示 */
    #zakuro-bg.show-split .left-bg,
    #zakuro-bg.show-split .right-bg { opacity: 1; }

    /* 万が一の全隠し */
    #zakuro-bg.hide-all .bg-full,
    #zakuro-bg.hide-all .left-bg,
    #zakuro-bg.hide-all .right-bg { opacity: 0; }

    /* コンテンツ（このブロック内だけ） */
    #zakuro-bg .section {
      max-width: 650px;
      margin: 0 auto;
      padding: 0 10px;  /* 全角→半角に修正済み */
      position: relative;
      z-index: 1;
    }
    #zakuro-bg .section img { width: 100%; display: block; }

    /* 表示切替用のユーティリティ（このブロック内だけ） */
    @media screen and (min-width:650px) {
      #zakuro-bg .showpc { display: block !important; }
      #zakuro-bg .showsp { display: none !important; }
    }
    @media screen and (max-width:650px) {
      #zakuro-bg .showpc { display: none !important; }
      #zakuro-bg .showsp { display: block !important; }
      #zakuro-bg .spfont{ font-size:11px !important; }
    }

    /* コピーUI（ネストをフラット化） */
    #zakuro-bg .copy-link {
      position: relative;
      background: #fff;
      border: 1px solid #ddd;
      display: flex;
      margin-top: 0;
    }
    #zakuro-bg .copy-link input {
      padding: 10px;
      font-size: 150%;
      color: #c4153e;
      border: none;
      outline: none;
      width: 100%;
      font-weight: bold;
      text-align: center;
    }
    #zakuro-bg .copy-link button {
      padding: 10px;
      background: #ccc;
      font-size: 18px;
      color: #555;
      outline: none;
      border: none;
      cursor: pointer;
      width: 20%;
    }
    #zakuro-bg .copy-link.active button::before {
      content: "コピーしました！決済時にご入力ください";
      position: absolute;
      top: -48px;
      right: 0;
      background: #ccc;
      border-radius: 10px;
      padding: 9px 15px;
      font-size: 14px;
      display: block;
    }
    #zakuro-bg .copy-link.active button::after {
      content: "";
      position: absolute;
      top: -20px;
      right: 25px;
      width: 10px;
      height: 10px;
      background: #ccc;
      transform: rotate(45deg);
      display: block;
    }

    /* 任意：セクションを完全に隠すフラグ（使っていないが残す） */
    #zakuro-bg .section[data-bg-clear]{
      height: 0 !important;
      min-height: 0 !important;
      padding: 0 !important;
      margin: 0 !important;
      overflow: hidden;
    }
	  
	  /* クリック対策：背景レイヤーは絶対にイベントを取らない */
#zakuro-bg .bg-full,
#zakuro-bg .left-bg,
#zakuro-bg .right-bg {
  pointer-events: none !important;
  z-index: -2 !important;  /* すでに解決したとおり -2 を維持 */
}

/* 念のため：背景レイヤーの疑似要素があっても拾わない */
#zakuro-bg .bg-full::before, #zakuro-bg .bg-full::after,
#zakuro-bg .left-bg::before, #zakuro-bg .left-bg::after,
#zakuro-bg .right-bg::before, #zakuro-bg .right-bg::after {
  pointer-events: none !important;
}

/* コンテンツは常にクリック可能 */
#zakuro-bg .section, 
#zakuro-bg .section * {
  pointer-events: auto;
}

/* コピーUIの吹き出しが全画面に被るのを防止（局所化） */
#zakuro-bg .copy-link.active button::before,
#zakuro-bg .copy-link.active button::after {
  z-index: 5;      /* ローカルにだけ重ねる */
  pointer-events: none;
}
	  
/*冒頭のタイトル*/
	    :root {
        --hb-deep-green: #0b4536;  /* タイトル・見出し用の深いグリーン */
        --hb-text-main:  #394841;  /* 本文用の落ち着いたグリーン系グレー */
        --hb-bg-cream:   #fff;  /* バナーになじむクリーム色 */
        --hb-line:       #d6e1d6;  /* 枠線・仕切り用の淡いグリーン */
    }

    .happybag-intro {
        max-width: 900px;
        margin: 0px auto 0;
        padding: 32px 22px 30px;
        background: var(--hb-bg-cream);
        border-radius: px;
        text-align: center;
        box-sizing: border-box;
    }


	  
    .happybag-intro__kicker {
        display: inline-block;
        margin: 0 0 8px;
        padding: 3px 14px 4px;
        font-size: 1.2em;
        letter-spacing: 0.18em;
        color: var(--hb-deep-green);
        border-radius: 999px;
        border: 1px solid var(--hb-deep-green);
        text-transform: uppercase;
    }

    .happybag-intro__title {
        margin: 0 0 14px;
        font-size: 2em;
        letter-spacing: 0.1em;
        color: var(--hb-deep-green);
    }

    .happybag-intro__title span {
        display: block;
        font-size: 0.84em;
        letter-spacing: 0.32em;
        margin-top: 3px;
    }

    .happybag-intro__rule {
        width: 72px;
        height: 2px;
        margin: 0 auto 18px;
        background: var(--hb-deep-green);
    }

    .happybag-intro__text {
        margin: 0 auto;
        max-width: 680px;
        font-size: 1em;
        line-height: 1.9;
        color: var(--hb-text-main);
        text-align: left;
    }

    @media screen and (max-width: 640px) {
        .happybag-intro {
            margin-top: 28px;
            padding: 24px 18px 26px;
        }
        .happybag-intro__title {
            font-size: 1.35rem;
            letter-spacing: 0.16em;
        }
        .happybag-intro__title span {
            font-size: 0.82em;
            letter-spacing: 0.22em;
        }
        .happybag-intro__text {
            font-size: 0.94rem;
        }
    }
	  

:root {
--card-w: 420px;
--bg: #ffffff;
--text: #3e3a39;
--muted: #6f6a69;
--purple: #6c4a6a;
--purple-ink: #5a3a58;
--gold: #a97f4d;
--gold-ink: #8b6a40;
--line: #e8e3e2;
--shadow: 0 10px 25px rgba(0,0,0,.08);
}
.gift-card {
    width: 100%;
	padding-top:50px;
    margin: 0px auto;
    background: var(--bg);
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, system-ui, sans-serif;
    color: var(--text);
}
.gift-lead {
    margin: 0;
    padding: 18px 18px 12px;
    text-align: center;
    font-size: 150%; /* 全体を120% */
    line-height: 1.6;
    font-weight: bold;
    letter-spacing: .04em;
    color: #8b6a40; /* 既存トーンに合わせたゴールド系 */
}
.off-wrap 
	  {  display: inline-flex;
    align-items: baseline;
    gap: 4px;
		  white-space: nowrap;
}
.off-rate {

    font-size: 1.2em;
    font-weight: 600;
}
.off-text {
    font-size: 0.75em;
    letter-spacing: .08em;
    padding: 2px 6px;

    background: #A40002;
    color: #fff;
}
.gift-hero {
    padding: 0 14px 10px;
}
.gift-hero img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
}
.gift-body {
    padding: 10px 18px 18px;
}
.gift-title {
    margin: 6px 0 8px;
    font-size: 20px;
    line-height: 1.3;
    color: var(--purple);
    letter-spacing: .02em;
}
.gift-text {
    margin: 0 0 14px;
    font-size: 1em;
    line-height: 1.9;
    color: var(--muted);
}
.gift-price {
    margin: 0 0 14px;
    text-align: center;
    letter-spacing: .04em;
}
.gift-price-note {
    display: inline-block;
    margin-right: 10px;
    font-size: 14px;
    color: var(--muted);
}
.gift-price-value {
    font-size: 20px;
    color: var(--text);
}
.gift-price-tax {
    margin-left: 2px;
    font-size: 12px;
    color: var(--muted);
}
.gift-section {
    margin: 10px -18px 0;
    padding: 10px 18px;
    background: #8b6a40;
    color: #fff;
    font-size: 14px;
    letter-spacing: .08em;
    margin-top: 30px;
}
.gift-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 0;
}
.gift-table tr {
    background: #fff;
}
.gift-table th, .gift-table td {
    padding: 10px 0;
    vertical-align: top;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
    line-height: 1.6;
}
.gift-table th {
    width: 98px;
    padding-right: 10px;
}
.pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    padding: 0 10px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: .02em;
    border: 1px solid #d7d1cf;
    color: #6a6362;
    background: #f6f3f2;
    white-space: nowrap;
}
.pill-oil {
    background: #f6f3f2;
}
.pill-bath {
    background: #f3f1f6;
    border-color: #d8d2da;
    color: #6b5a6a;
}
.gift-cta {
	margin-top:-20px;
    padding: 16px 0 6px;
    display: flex;
    justify-content: center;
	color:#fff!important;
}
.gift-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 240px;
    height: 52px;
    padding: 0 20px;
    border-radius: 999px;
    background: var(--gold);
    color: #fff!important;
    text-decoration: none;
    border: 3px solid rgba(255,255,255,.55);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
    font-size: 16px;
    letter-spacing: .06em;
}
.gift-button-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(255,255,255,.22);
    line-height: 1;
}
.gift-button:hover {
    filter: brightness(.98);
}
.gift-button:active {
    transform: translateY(1px);
}

@media (max-width: 360px) {
.gift-table th {
    width: 86px;
}
.gift-button {
    min-width: 220px;
}
}
	  .price-before{color:#A40002;text-decoration: line-through;}