{"title":"ギフトセレクションースペシャル","description":"","products":[{"product_id":"didion-the-perfect-set","title":"DIDION GIFT SET.  01 “The Perfect\" SET","description":"\n\u003cp\u003e\u003cstrong\u003eDIDION GIFT SET　\"The Perfect\" SET\u003cbr\u003e\u003cbr\u003e\u003c\/strong\u003eリキッドグリッター人気No.1「TGIF」と、シェーディングにも使える人気のマットベージュアイシャドウ「THE MUST」のセット。\u003cbr\u003e\u003cbr\u003e“真のベージュ”で自然な陰影をつくり、シルバーラメの強い輝きを重ねることで、シンプルなのに印象的な目元に仕上がります。デイリーにも特別な日にも使いやすい、人気定番セットです。\u003c\/p\u003e\n\u003cp\u003e 【SET内容】\u003c\/p\u003e\n\u003cp\u003e\u003ca href=\"https:\/\/didion-beauty.com\/products\/single-eyecolor-the-must\" target=\"_blank\"\u003e・\u003cspan style=\"text-decoration: underline;\"\u003eDIDION SINGLE EYECOLOR : 01 THE MUST \u003c\/span\u003e\u003c\/a\u003e\u003c\/p\u003e\n\u003cp\u003e\u003ca href=\"https:\/\/didion-beauty.com\/products\/liquid-glitter-eyeshadow-tgif\" target=\"_blank\"\u003e・\u003cspan style=\"text-decoration: underline;\"\u003eDIDION LIQUID GLITTER : 02 TGIF \u003c\/span\u003e\u003c\/a\u003e\u003cbr\u003e\u003c\/p\u003e\n\n\n\u003cscript\u003e\n  window.addEventListener('DOMContentLoaded', function() {\n    var colorSelectorContainer = document.createElement('div');\n    colorSelectorContainer.id = \"color-selector-container\";\n    colorSelectorContainer.innerHTML = `\n  \u003cdiv style=\"display: flex; align-items: center; margin-bottom: 10px; position: relative;\"\u003e\n    \u003cspan style=\"font-size: 10px; font-weight: bold; color: #333; background: #F4F2ED;\"\u003eカラーを選択する\u003c\/span\u003e\n  \u003c\/div\u003e\n      \u003c!-- 選択中のカラー --\u003e\n      \u003cdiv id=\"selected-color\" style=\"display: flex; align-items: center; cursor: pointer; padding: 8px; border: 1px solid #ccc; border-radius: 0px;\"\u003e\n        \u003cdiv id=\"selected-color-chip\" class=\"swatch\" style=\"width: 25px; height: 25px; border-radius: 0%; background-color: rgba(153, 151, 150, 1) !important; border: 0px solid #888; margin-right: 8px; display: inline-block !important;\"\u003e\u003c\/div\u003e\n        \u003cspan id=\"selected-color-name\"\u003e01 The Perfect SET\u003c\/span\u003e\n      \u003c\/div\u003e\n\n\u003c!-- カラーリスト --\u003e\n\u003cul id=\"color-list\" style=\"display: none; padding: 0; list-style: none; margin-top: 10px; border: 1px solid #ccc; border-radius: 0px;\"\u003e\n  \u003cli class=\"color-item\" data-name=\"GIFT SET\" data-color=\"rgba(78, 78, 97, 1)\" data-url=\"\/pages\/gift-collection\"\u003e\n    \u003cdiv class=\"swatch\" style=\"background-color: rgba(78, 78, 97, 1) !important;\"\u003e\u003c\/div\u003e他のギフトセットをチェックする \n  \u003c\/li\u003e\n\u003c\/ul\u003e\n\n\u003cbr\u003e\n\n      \u003cstyle\u003e\n        \/* カラーアイテムのスタイル *\/\n        .color-item {\n          display: flex;\n          align-items: center;\n          padding: 8px 12px;\n          cursor: pointer;\n          font-size: 14px;\n          transition: background-color 0.3s;\n          border-bottom: 1px solid #e0e0e0;\n        }\n\n        .color-item:last-child {\n          border-bottom: none;\n        }\n\n        .color-item:hover {\n          background-color: #f5f5f5;\n        }\n\n        \/* カラーチップを強制表示 (Shopify競合回避) *\/\n        .swatch {\n          width: 20px !important;\n          height: 20px !important;\n          margin-right: 10px !important;\n          display: inline-block !important;\n          background-color: transparent !important;\n          background-clip: content-box !important;\n        }\n\n        #selected-color:hover {\n          background-color: #f7f7f7;\n        }\n\n        #color-list {\n          box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);\n          max-height: 240px;\n          overflow-y: auto;\n        }\n      \u003c\/style\u003e\n    `;\n\n    var targetElement = document.querySelector('.product__tax');\n    if (targetElement) {\n      targetElement.parentNode.insertBefore(colorSelectorContainer, targetElement);\n    }\n\n    var selectedColor = document.getElementById('selected-color');\n    var colorList = document.getElementById('color-list');\n    var selectedColorChip = document.getElementById('selected-color-chip');\n    var selectedColorName = document.getElementById('selected-color-name');\n\n    \/\/ カラー選択の開閉\n    selectedColor.addEventListener('click', function() {\n      colorList.style.display = (colorList.style.display === 'none' || colorList.style.display === '') ? 'block' : 'none';\n    });\n\n    \/\/ カラーアイテムの処理\n    var colorItems = document.querySelectorAll('.color-item');\n    colorItems.forEach(function(item) {\n      var swatch = item.querySelector('.swatch');\n      swatch.style.backgroundColor = item.dataset.color;\n      swatch.style.setProperty('background-color', item.dataset.color, 'important'); \/\/ 最終的な保険\n\n      item.addEventListener('click', function() {\n        selectedColorChip.style.backgroundColor = item.dataset.color;\n        selectedColorName.textContent = item.dataset.name;\n        colorList.style.display = 'none';\n        window.location.href = item.dataset.url;\n      });\n    });\n\n    \/\/ 外部クリックで閉じる\n    document.addEventListener('click', function(e) {\n      if (!colorSelectorContainer.contains(e.target)) {\n        colorList.style.display = 'none';\n      }\n    });\n  });\n\u003c\/script\u003e\n","brand":"didion","offers":[{"title":"Default Title","offer_id":45699497001200,"sku":"4582653239984","price":3630.0,"currency_code":"JPY","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0633\/5437\/2336\/files\/basic_set.jpg?v=1774493083"},{"product_id":"didion-healthy-orange-set","title":"DIDION GIFT SET.  02 Healthy Orange SET","description":"\u003cp\u003e\u003cstrong\u003eDIDION GIFT SET \"Healthy Orange\" SET\u003cbr\u003e\u003cbr\u003e\u003c\/strong\u003eオレンジリップとブリックカラーアイシャドウの同系色セット。鮮やかなオレンジに深みのあるブリックを重ね、ひと塗りでこなれた印象的なメイクが完成します。\u003cbr\u003e\u003cbr\u003eシンプルなのに洒落感のある、バランスの良い組み合わせです。\u003cbr\u003e\u003cbr\u003e【SET内容】\u003c\/p\u003e\n\u003cp\u003e\u003ca href=\"https:\/\/didion-beauty.com\/products\/single-eyecolor-say-myname\" target=\"_blank\" data-mce-href=\"https:\/\/didion-beauty.com\/products\/single-eyecolor-say-myname\"\u003e・\u003cspan style=\"text-decoration: underline;\" data-mce-style=\"text-decoration: underline;\"\u003eDIDION SINGLE EYECOLOR : 02 Say My Name\u003c\/span\u003e\u003c\/a\u003e\u003c\/p\u003e\n\u003cp\u003e\u003ca href=\"https:\/\/didion-beauty.com\/products\/plumping-lipstick-day-dreaming\" target=\"_blank\" data-mce-href=\"https:\/\/didion-beauty.com\/products\/plumping-lipstick-day-dreaming\"\u003e・\u003cspan style=\"text-decoration: underline;\" data-mce-style=\"text-decoration: underline;\"\u003eDIDION PLUMPING LIPSTICK : 05 Day Dreaming\u003c\/span\u003e\u003c\/a\u003e\u003cbr\u003e\u003cbr\u003e\u003c\/p\u003e\u003cp\u003e\u003csmall\u003e\n※リップは、プランピング（唇をふっくらとさせる）効果のある商品です。ヒリヒリする商品を好まない方、敏感肌の方はご使用をお控えください。また、ごくわずかにメントールのような香りがあります。\u003c\/small\u003e\u003c\/p\u003e\n\u003cbr\u003e\n\u003cp style=\"width: 109%; transform: translate(-1.5rem);\" data-mce-style=\"width: 109%; transform: translate(-1.5rem);\"\u003e\u003cvideo autoplay=\"autoplay\" muted=\"\" playsinline=\"\" loop=\"loop\" style=\"width: 100%;\" data-mce-style=\"width: 100%;\"\u003e\n  \u003csource src=\"https:\/\/cdn.shopify.com\/videos\/c\/o\/v\/fb2e6c13c7a043d98d5e0dd55a82a23b.mov\" type=\"video\/mp4\" data-mce-src=\"https:\/\/cdn.shopify.com\/videos\/c\/o\/v\/fb2e6c13c7a043d98d5e0dd55a82a23b.mov\"\u003e\nYour browser does not support our video.\u003c\/source\u003e\u003c\/video\u003e\u003c\/p\u003e\n\u003cp style=\"width: 109%; transform: translate(-1.5rem);\" data-mce-style=\"width: 109%; transform: translate(-1.5rem);\"\u003e\u003cvideo style=\"width: 100%;\" loop=\"loop\" playsinline=\"\" muted=\"\" autoplay=\"autoplay\" data-mce-style=\"width: 100%;\"\u003e\n  \u003csource type=\"video\/mp4\" src=\"https:\/\/cdn.shopify.com\/videos\/c\/o\/v\/93c647606f4e43fdb53c6f230d161788.mp4\" data-mce-src=\"https:\/\/cdn.shopify.com\/videos\/c\/o\/v\/93c647606f4e43fdb53c6f230d161788.mp4\"\u003e\nYour browser does not support our video.\u003c\/source\u003e\u003c\/video\u003e\u003c\/p\u003e\n\n\n\u003cscript\u003e\n  window.addEventListener('DOMContentLoaded', function() {\n    var colorSelectorContainer = document.createElement('div');\n    colorSelectorContainer.id = \"color-selector-container\";\n    colorSelectorContainer.innerHTML = `\n  \u003cdiv style=\"display: flex; align-items: center; margin-bottom: 10px; position: relative;\"\u003e\n    \u003cspan style=\"font-size: 10px; font-weight: bold; color: #333; background: #F4F2ED;\"\u003eカラーを選択する\u003c\/span\u003e\n  \u003c\/div\u003e\n      \u003c!-- 選択中のカラー --\u003e\n      \u003cdiv id=\"selected-color\" style=\"display: flex; align-items: center; cursor: pointer; padding: 8px; border: 1px solid #ccc; border-radius: 0px;\"\u003e\n        \u003cdiv id=\"selected-color-chip\" class=\"swatch\" style=\"width: 25px; height: 25px; border-radius: 0%; background-color: rgba(255, 165, 100, 1) !important; border: 0px solid #888; margin-right: 8px; display: inline-block !important;\"\u003e\u003c\/div\u003e\n        \u003cspan id=\"selected-color-name\"\u003e02 Healthy Orange SET\u003c\/span\u003e\n      \u003c\/div\u003e\n\n\u003c!-- カラーリスト --\u003e\n\u003cul id=\"color-list\" style=\"display: none; padding: 0; list-style: none; margin-top: 10px; border: 1px solid #ccc; border-radius: 0px;\"\u003e\n  \u003cli class=\"color-item\" data-name=\"GIFT SET\" data-color=\"rgba(78, 78, 97, 1)\" data-url=\"\/pages\/gift-collection\"\u003e\n    \u003cdiv class=\"swatch\" style=\"background-color: rgba(78, 78, 97, 1) !important;\"\u003e\u003c\/div\u003e他のギフトセットをチェックする \n  \u003c\/li\u003e\n\u003c\/ul\u003e\n\n\u003cbr\u003e\n\n      \u003cstyle\u003e\n        \/* カラーアイテムのスタイル *\/\n        .color-item {\n          display: flex;\n          align-items: center;\n          padding: 8px 12px;\n          cursor: pointer;\n          font-size: 14px;\n          transition: background-color 0.3s;\n          border-bottom: 1px solid #e0e0e0;\n        }\n\n        .color-item:last-child {\n          border-bottom: none;\n        }\n\n        .color-item:hover {\n          background-color: #f5f5f5;\n        }\n\n        \/* カラーチップを強制表示 (Shopify競合回避) *\/\n        .swatch {\n          width: 20px !important;\n          height: 20px !important;\n          margin-right: 10px !important;\n          display: inline-block !important;\n          background-color: transparent !important;\n          background-clip: content-box !important;\n        }\n\n        #selected-color:hover {\n          background-color: #f7f7f7;\n        }\n\n        #color-list {\n          box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);\n          max-height: 240px;\n          overflow-y: auto;\n        }\n      \u003c\/style\u003e\n    `;\n\n    var targetElement = document.querySelector('.product__tax');\n    if (targetElement) {\n      targetElement.parentNode.insertBefore(colorSelectorContainer, targetElement);\n    }\n\n    var selectedColor = document.getElementById('selected-color');\n    var colorList = document.getElementById('color-list');\n    var selectedColorChip = document.getElementById('selected-color-chip');\n    var selectedColorName = document.getElementById('selected-color-name');\n\n    \/\/ カラー選択の開閉\n    selectedColor.addEventListener('click', function() {\n      colorList.style.display = (colorList.style.display === 'none' || colorList.style.display === '') ? 'block' : 'none';\n    });\n\n    \/\/ カラーアイテムの処理\n    var colorItems = document.querySelectorAll('.color-item');\n    colorItems.forEach(function(item) {\n      var swatch = item.querySelector('.swatch');\n      swatch.style.backgroundColor = item.dataset.color;\n      swatch.style.setProperty('background-color', item.dataset.color, 'important'); \/\/ 最終的な保険\n\n      item.addEventListener('click', function() {\n        selectedColorChip.style.backgroundColor = item.dataset.color;\n        selectedColorName.textContent = item.dataset.name;\n        colorList.style.display = 'none';\n        window.location.href = item.dataset.url;\n      });\n    });\n\n    \/\/ 外部クリックで閉じる\n    document.addEventListener('click', function(e) {\n      if (!colorSelectorContainer.contains(e.target)) {\n        colorList.style.display = 'none';\n      }\n    });\n  });\n\u003c\/script\u003e","brand":"didion","offers":[{"title":"Default Title","offer_id":45785800638704,"sku":"4582653233142","price":3740.0,"currency_code":"JPY","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0633\/5437\/2336\/files\/helthy_orange_set.jpg?v=1774498805"},{"product_id":"didion-pink-glow-set","title":"DIDION GIFT SET. 04 “Pink Glow\" SET","description":"\n\u003cp\u003e\u003cstrong\u003eDIDION GIFT SET“Pink Glow\" SET\u003c\/strong\u003e\u003cbr\u003e\u003cbr\u003eピンクベースのグリッター「Sparkling Day」と多彩なラメが濡れたようなツヤを生む「Dancing Queen」のセット。\n重ねるだけで、華やかなピンクのきらめきメイクが完成します。\u003cbr\u003e\u003cbr\u003e\u003c\/p\u003e\n\u003cp\u003e【SET内容】\u003c\/p\u003e\n\u003cp\u003e\u003ca href=\"https:\/\/didion-beauty.com\/products\/single-eyecolor-dancing-queen\" target=\"_blank\" data-mce-href=\"https:\/\/didion-beauty.com\/products\/single-eyecolor-dancing-queen\"\u003e・\u003cspan style=\"text-decoration: underline;\" data-mce-style=\"text-decoration: underline;\"\u003eDIDION SINGLE EYECOLOR : 03 Dancing Queen \u003c\/span\u003e\u003c\/a\u003e\u003c\/p\u003e\n\u003cp\u003e\u003ca href=\"https:\/\/didion-beauty.com\/products\/didion-glitter-eyeshadow-sparklingday\" target=\"_blank\" data-mce-href=\"https:\/\/didion-beauty.com\/products\/didion-glitter-eyeshadow-sparklingday\"\u003e・\u003cspan style=\"text-decoration: underline;\" data-mce-style=\"text-decoration: underline;\"\u003eDIDION LIQUID GLITTER : 04 Sparkling Day \u003c\/span\u003e\u003c\/a\u003e\u003cbr\u003e\u003cbr\u003e\u003c\/p\u003e\n\u003cp style=\"width: 109%; transform: translate(-1.5rem);\" data-mce-style=\"width: 109%; transform: translate(-1.5rem);\"\u003e\u003cvideo autoplay=\"autoplay\" muted=\"\" playsinline=\"\" loop=\"loop\" style=\"width: 100%;\" data-mce-style=\"width: 100%;\"\u003e\n  \u003csource src=\"https:\/\/cdn.shopify.com\/videos\/c\/o\/v\/8def70e8176f462eaf2b891fc338f627.mp4\" type=\"video\/mp4\" data-mce-src=\"https:\/\/cdn.shopify.com\/videos\/c\/o\/v\/8def70e8176f462eaf2b891fc338f627.mp4\"\u003e\nYour browser does not support our video.\u003c\/source\u003e\u003c\/video\u003e\u003c\/p\u003e\n\u003cp style=\"width: 109%; transform: translate(-1.5rem);\" data-mce-style=\"width: 109%; transform: translate(-1.5rem);\"\u003e\u003cvideo autoplay=\"autoplay\" muted=\"\" playsinline=\"\" loop=\"loop\" style=\"width: 100%;\" data-mce-style=\"width: 100%;\"\u003e\n  \u003csource src=\"https:\/\/cdn.shopify.com\/videos\/c\/o\/v\/0b6f2b65e90747d4bb06b3a9af1f0b46.mov\" type=\"video\/mp4\" data-mce-src=\"https:\/\/cdn.shopify.com\/videos\/c\/o\/v\/0b6f2b65e90747d4bb06b3a9af1f0b46.mov\"\u003e\nYour browser does not support our video.\u003c\/source\u003e\u003c\/video\u003e\u003c\/p\u003e\n\n\u003cscript\u003e\n  window.addEventListener('DOMContentLoaded', function() {\n    var colorSelectorContainer = document.createElement('div');\n    colorSelectorContainer.id = \"color-selector-container\";\n    colorSelectorContainer.innerHTML = `\n  \u003cdiv style=\"display: flex; align-items: center; margin-bottom: 10px; position: relative;\"\u003e\n    \u003cspan style=\"font-size: 10px; font-weight: bold; color: #333; background: #F4F2ED;\"\u003eカラーを選択する\u003c\/span\u003e\n  \u003c\/div\u003e\n      \u003c!-- 選択中のカラー --\u003e\n      \u003cdiv id=\"selected-color\" style=\"display: flex; align-items: center; cursor: pointer; padding: 8px; border: 1px solid #ccc; border-radius: 0px;\"\u003e\n        \u003cdiv id=\"selected-color-chip\" class=\"swatch\" style=\"width: 25px; height: 25px; border-radius: 0%; background-color: rgba(250, 170, 180, 1) !important; border: 0px solid #888; margin-right: 8px; display: inline-block !important;\"\u003e\u003c\/div\u003e\n        \u003cspan id=\"selected-color-name\"\u003e04 Pink Glow SET\u003c\/span\u003e\n      \u003c\/div\u003e\n\n\u003c!-- カラーリスト --\u003e\n\u003cul id=\"color-list\" style=\"display: none; padding: 0; list-style: none; margin-top: 10px; border: 1px solid #ccc; border-radius: 0px;\"\u003e\n  \u003cli class=\"color-item\" data-name=\"GIFT SET\" data-color=\"rgba(78, 78, 97, 1)\" data-url=\"\/pages\/gift-collection\"\u003e\n    \u003cdiv class=\"swatch\" style=\"background-color: rgba(78, 78, 97, 1) !important;\"\u003e\u003c\/div\u003e他のギフトセットをチェックする \n  \u003c\/li\u003e\n\u003c\/ul\u003e\n\n\u003cbr\u003e\n\n      \u003cstyle\u003e\n        \/* カラーアイテムのスタイル *\/\n        .color-item {\n          display: flex;\n          align-items: center;\n          padding: 8px 12px;\n          cursor: pointer;\n          font-size: 14px;\n          transition: background-color 0.3s;\n          border-bottom: 1px solid #e0e0e0;\n        }\n\n        .color-item:last-child {\n          border-bottom: none;\n        }\n\n        .color-item:hover {\n          background-color: #f5f5f5;\n        }\n\n        \/* カラーチップを強制表示 (Shopify競合回避) *\/\n        .swatch {\n          width: 20px !important;\n          height: 20px !important;\n          margin-right: 10px !important;\n          display: inline-block !important;\n          background-color: transparent !important;\n          background-clip: content-box !important;\n        }\n\n        #selected-color:hover {\n          background-color: #f7f7f7;\n        }\n\n        #color-list {\n          box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);\n          max-height: 240px;\n          overflow-y: auto;\n        }\n      \u003c\/style\u003e\n    `;\n\n    var targetElement = document.querySelector('.product__tax');\n    if (targetElement) {\n      targetElement.parentNode.insertBefore(colorSelectorContainer, targetElement);\n    }\n\n    var selectedColor = document.getElementById('selected-color');\n    var colorList = document.getElementById('color-list');\n    var selectedColorChip = document.getElementById('selected-color-chip');\n    var selectedColorName = document.getElementById('selected-color-name');\n\n    \/\/ カラー選択の開閉\n    selectedColor.addEventListener('click', function() {\n      colorList.style.display = (colorList.style.display === 'none' || colorList.style.display === '') ? 'block' : 'none';\n    });\n\n    \/\/ カラーアイテムの処理\n    var colorItems = document.querySelectorAll('.color-item');\n    colorItems.forEach(function(item) {\n      var swatch = item.querySelector('.swatch');\n      swatch.style.backgroundColor = item.dataset.color;\n      swatch.style.setProperty('background-color', item.dataset.color, 'important'); \/\/ 最終的な保険\n\n      item.addEventListener('click', function() {\n        selectedColorChip.style.backgroundColor = item.dataset.color;\n        selectedColorName.textContent = item.dataset.name;\n        colorList.style.display = 'none';\n        window.location.href = item.dataset.url;\n      });\n    });\n\n    \/\/ 外部クリックで閉じる\n    document.addEventListener('click', function(e) {\n      if (!colorSelectorContainer.contains(e.target)) {\n        colorList.style.display = 'none';\n      }\n    });\n  });\n\u003c\/script\u003e","brand":"didion","offers":[{"title":"Default Title","offer_id":45790137155824,"sku":"4582653239991","price":3630.0,"currency_code":"JPY","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0633\/5437\/2336\/files\/pinkglow_set.jpg?v=1774584061"},{"product_id":"didion-timeless-amber-set","title":"DIDION GIFT SET .  06 “Timeless Amber\" SET","description":"\n\u003cp\u003e\u003cstrong\u003eDIDION GIFT SET“Timeless Amber\" SET\u003c\/strong\u003e\u003cbr\u003e\u003cbr\u003e柔らかさとモードを両立する、大人のワントーンメイクセット。マットなコーラルにコッパーブラウンを重ね、ブラウンレッドのリップで深みをプラス。上品で印象的な仕上がりに。\u003cbr\u003e\u003cbr\u003e\n\u003csmall\u003e\nリップはプランピング機能があります。「ご注文前に確認ください」をご了承の上、注文ください。\u003c\/small\u003e\n\u003c\/p\u003e\n\u003cp\u003e【SET内容】\u003c\/p\u003e\n\u003cp\u003e\u003ca href=\"https:\/\/didion-beauty.com\/products\/single-eyecolor-say-myname\" target=\"_blank\"\u003e・\u003cspan style=\"text-decoration: underline;\"\u003eDIDION SINGLE EYECOLOR : 02 Say My Name\u003c\/span\u003e\u003c\/a\u003e\u003c\/p\u003e\n\u003cp\u003e\u003ca href=\"https:\/\/didion-beauty.com\/products\/liquid-eyeshadow-the-salmon-dance\" target=\"_blank\"\u003e・\u003cspan style=\"text-decoration: underline;\"\u003eLIQUID EYESHADOW : 02 The Salmon Dance \u003c\/span\u003e\u003c\/a\u003e\u003c\/p\u003e\n\u003cp\u003e\u003ca href=\"https:\/\/didion-beauty.com\/products\/plumping-lipstick-sparkle-neutral\" target=\"_blank\"\u003e・\u003cspan style=\"text-decoration: underline;\"\u003eDIDION PLUMPING LIPSTICK : 08 Sparkle Neutral \u003c\/span\u003e\u003c\/a\u003e\u003cbr\u003e\u003cbr\u003e\u003c\/p\u003e\n\u003cscript\u003e\n  window.addEventListener('DOMContentLoaded', function() {\n    var colorSelectorContainer = document.createElement('div');\n    colorSelectorContainer.id = \"color-selector-container\";\n    colorSelectorContainer.innerHTML = `\n  \u003cdiv style=\"display: flex; align-items: center; margin-bottom: 10px; position: relative;\"\u003e\n    \u003cspan style=\"font-size: 10px; font-weight: bold; color: #333; background: #F4F2ED;\"\u003eカラーを選択する\u003c\/span\u003e\n  \u003c\/div\u003e\n      \u003c!-- 選択中のカラー --\u003e\n      \u003cdiv id=\"selected-color\" style=\"display: flex; align-items: center; cursor: pointer; padding: 8px; border: 1px solid #ccc; border-radius: 0px;\"\u003e\n        \u003cdiv id=\"selected-color-chip\" class=\"swatch\" style=\"width: 25px; height: 25px; border-radius: 0%; background-color: rgba(173, 95, 75, 1) !important; border: 0px solid #888; margin-right: 8px; display: inline-block !important;\"\u003e\u003c\/div\u003e\n        \u003cspan id=\"selected-color-name\"\u003e06 Timeless Amber SET\u003c\/span\u003e\n      \u003c\/div\u003e\n\n\u003c!-- カラーリスト --\u003e\n\u003cul id=\"color-list\" style=\"display: none; padding: 0; list-style: none; margin-top: 10px; border: 1px solid #ccc; border-radius: 0px;\"\u003e\n  \u003cli class=\"color-item\" data-name=\"GIFT SET\" data-color=\"rgba(78, 78, 97, 1)\" data-url=\"\/pages\/gift-collection\"\u003e\n    \u003cdiv class=\"swatch\" style=\"background-color: rgba(78, 78, 97, 1) !important;\"\u003e\u003c\/div\u003e他のギフトセットをチェックする \n  \u003c\/li\u003e\n\u003c\/ul\u003e\n\n\u003cbr\u003e\n\n      \u003cstyle\u003e\n        \/* カラーアイテムのスタイル *\/\n        .color-item {\n          display: flex;\n          align-items: center;\n          padding: 8px 12px;\n          cursor: pointer;\n          font-size: 14px;\n          transition: background-color 0.3s;\n          border-bottom: 1px solid #e0e0e0;\n        }\n\n        .color-item:last-child {\n          border-bottom: none;\n        }\n\n        .color-item:hover {\n          background-color: #f5f5f5;\n        }\n\n        \/* カラーチップを強制表示 (Shopify競合回避) *\/\n        .swatch {\n          width: 20px !important;\n          height: 20px !important;\n          margin-right: 10px !important;\n          display: inline-block !important;\n          background-color: transparent !important;\n          background-clip: content-box !important;\n        }\n\n        #selected-color:hover {\n          background-color: #f7f7f7;\n        }\n\n        #color-list {\n          box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);\n          max-height: 240px;\n          overflow-y: auto;\n        }\n      \u003c\/style\u003e\n    `;\n\n    var targetElement = document.querySelector('.product__tax');\n    if (targetElement) {\n      targetElement.parentNode.insertBefore(colorSelectorContainer, targetElement);\n    }\n\n    var selectedColor = document.getElementById('selected-color');\n    var colorList = document.getElementById('color-list');\n    var selectedColorChip = document.getElementById('selected-color-chip');\n    var selectedColorName = document.getElementById('selected-color-name');\n\n    \/\/ カラー選択の開閉\n    selectedColor.addEventListener('click', function() {\n      colorList.style.display = (colorList.style.display === 'none' || colorList.style.display === '') ? 'block' : 'none';\n    });\n\n    \/\/ カラーアイテムの処理\n    var colorItems = document.querySelectorAll('.color-item');\n    colorItems.forEach(function(item) {\n      var swatch = item.querySelector('.swatch');\n      swatch.style.backgroundColor = item.dataset.color;\n      swatch.style.setProperty('background-color', item.dataset.color, 'important'); \/\/ 最終的な保険\n\n      item.addEventListener('click', function() {\n        selectedColorChip.style.backgroundColor = item.dataset.color;\n        selectedColorName.textContent = item.dataset.name;\n        colorList.style.display = 'none';\n        window.location.href = item.dataset.url;\n      });\n    });\n\n    \/\/ 外部クリックで閉じる\n    document.addEventListener('click', function(e) {\n      if (!colorSelectorContainer.contains(e.target)) {\n        colorList.style.display = 'none';\n      }\n    });\n  });\n\u003c\/script\u003e","brand":"didion","offers":[{"title":"Default Title","offer_id":47306682106096,"sku":"4582653239908","price":5390.0,"currency_code":"JPY","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0633\/5437\/2336\/files\/timeless_set.jpg?v=1774585758"},{"product_id":"didion-every-day-pink-set","title":"DIDION GIFT SET .  14 Every day Pink SET","description":"\u003cp\u003e\u003cstrong\u003e【公式オンラインショップ限定】DIDION GIFT SET\u003cbr\u003e“Every day Pink\" SET\u003c\/strong\u003e\u003c\/p\u003e\n\u003cp\u003e肌になじむ血色感ベージュの「Here」と、ピンクのきらめき「Sparkling Day」のセット。\nやわらかなベージュに光を重ね、さりげなくも印象的な目元に仕上がります。\u003cbr\u003e\n“抜け感”と“ときめき”を楽しめる、人気カラーの組み合わせです。\u003cbr\u003e\n\u003c\/p\u003e\u003cp\u003e【SET内容】\u003c\/p\u003e\n\u003cp\u003e\u003ca href=\"https:\/\/didion-beauty.com\/products\/glitter-eyeshadow-sparklingday\" target=\"_blank\"\u003e・\u003cspan style=\"text-decoration: underline;\"\u003eDIDION LIQUID GLITTER : 04 Sparkling Day\u003c\/span\u003e\u003c\/a\u003e\u003c\/p\u003e\n\u003cp\u003e\u003ca href=\"https:\/\/didion-beauty.com\/products\/single-eyecolor-here\" target=\"_blank\"\u003e・\u003cspan style=\"text-decoration: underline;\"\u003eDIDION SINGLE EYE COLOR : Here\u003c\/span\u003e\u003c\/a\u003e\u003c\/p\u003e\n\u003cbr\u003e\u003csmall\u003e※リップは、プランピング（唇をふっくらとさせる）効果のある商品です。ヒリヒリする商品を好まない方、敏感肌の方はご使用をお控えください。また、ごくわずかにメントールのような香りがあります。\u003c\/small\u003e\n\u003cscript\u003e\n  window.addEventListener('DOMContentLoaded', function() {\n    var colorSelectorContainer = document.createElement('div');\n    colorSelectorContainer.id = \"color-selector-container\";\n    colorSelectorContainer.innerHTML = `\n  \u003cdiv style=\"display: flex; align-items: center; margin-bottom: 10px; position: relative;\"\u003e\n    \u003cspan style=\"font-size: 10px; font-weight: bold; color: #333; background: #F4F2ED;\"\u003eカラーを選択する\u003c\/span\u003e\n  \u003c\/div\u003e\n      \u003c!-- 選択中のカラー --\u003e\n      \u003cdiv id=\"selected-color\" style=\"display: flex; align-items: center; cursor: pointer; padding: 8px; border: 1px solid #ccc; border-radius: 0px;\"\u003e\n        \u003cdiv id=\"selected-color-chip\" class=\"swatch\" style=\"width: 25px; height: 25px; border-radius: 0%; background-color: rgba(137, 77, 45, 1) !important; border: 0px solid #888; margin-right: 8px; display: inline-block !important;\"\u003e\u003c\/div\u003e\n        \u003cspan id=\"selected-color-name\"\u003e14 Every day Pink SET\u003c\/span\u003e\n      \u003c\/div\u003e\n\n\u003c!-- カラーリスト --\u003e\n\u003cul id=\"color-list\" style=\"display: none; padding: 0; list-style: none; margin-top: 10px; border: 1px solid #ccc; border-radius: 0px;\"\u003e\n  \u003cli class=\"color-item\" data-name=\"GIFT SET\" data-color=\"rgba(78, 78, 97, 1)\" data-url=\"\/pages\/gift-collection\"\u003e\n    \u003cdiv class=\"swatch\" style=\"background-color: rgba(78, 78, 97, 1) !important;\"\u003e\u003c\/div\u003e他のギフトセットをチェックする \n  \u003c\/li\u003e\n\u003c\/ul\u003e\n\n\u003cbr\u003e\n\n      \u003cstyle\u003e\n        \/* カラーアイテムのスタイル *\/\n        .color-item {\n          display: flex;\n          align-items: center;\n          padding: 8px 12px;\n          cursor: pointer;\n          font-size: 14px;\n          transition: background-color 0.3s;\n          border-bottom: 1px solid #e0e0e0;\n        }\n\n        .color-item:last-child {\n          border-bottom: none;\n        }\n\n        .color-item:hover {\n          background-color: #f5f5f5;\n        }\n\n        \/* カラーチップを強制表示 (Shopify競合回避) *\/\n        .swatch {\n          width: 20px !important;\n          height: 20px !important;\n          margin-right: 10px !important;\n          display: inline-block !important;\n          background-color: transparent !important;\n          background-clip: content-box !important;\n        }\n\n        #selected-color:hover {\n          background-color: #f7f7f7;\n        }\n\n        #color-list {\n          box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);\n          max-height: 240px;\n          overflow-y: auto;\n        }\n      \u003c\/style\u003e\n    `;\n\n    var targetElement = document.querySelector('.product__tax');\n    if (targetElement) {\n      targetElement.parentNode.insertBefore(colorSelectorContainer, targetElement);\n    }\n\n    var selectedColor = document.getElementById('selected-color');\n    var colorList = document.getElementById('color-list');\n    var selectedColorChip = document.getElementById('selected-color-chip');\n    var selectedColorName = document.getElementById('selected-color-name');\n\n    \/\/ カラー選択の開閉\n    selectedColor.addEventListener('click', function() {\n      colorList.style.display = (colorList.style.display === 'none' || colorList.style.display === '') ? 'block' : 'none';\n    });\n\n    \/\/ カラーアイテムの処理\n    var colorItems = document.querySelectorAll('.color-item');\n    colorItems.forEach(function(item) {\n      var swatch = item.querySelector('.swatch');\n      swatch.style.backgroundColor = item.dataset.color;\n      swatch.style.setProperty('background-color', item.dataset.color, 'important'); \/\/ 最終的な保険\n\n      item.addEventListener('click', function() {\n        selectedColorChip.style.backgroundColor = item.dataset.color;\n        selectedColorName.textContent = item.dataset.name;\n        colorList.style.display = 'none';\n        window.location.href = item.dataset.url;\n      });\n    });\n\n    \/\/ 外部クリックで閉じる\n    document.addEventListener('click', function(e) {\n      if (!colorSelectorContainer.contains(e.target)) {\n        colorList.style.display = 'none';\n      }\n    });\n  });\n\u003c\/script\u003e","brand":"didion","offers":[{"title":"Default Title","offer_id":48753165566192,"sku":"EP_set","price":3630.0,"currency_code":"JPY","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0633\/5437\/2336\/files\/everyday_pink.jpg?v=1774490734"},{"product_id":"didion-chocolate-pink-set","title":"DIDION GIFT SET .  15 Chocolate Pink SET","description":"\u003cp\u003e\u003cstrong\u003e【公式オンラインショップ限定】DIDION GIFT SET“Chocolate Pink\" SET\u003c\/strong\u003e\u003c\/p\u003e\n\u003cp\u003e\n深みのあるブラウンが印象的な \u003cstrong\u003eAudrey Brown\u003c\/strong\u003e のアイカラーデュオに、表情の異なるリップ2色を組み合わせたセット。\u003cbr\u003e\u003cbr\u003eリップの\u003cstrong\u003e01 Mellow Out\u003c\/strong\u003e と \u003cstrong\u003e06 Pretty Woman\u003c\/strong\u003e は、単色でも重ねても楽しめるカラー設計。アイカラーとも美しく調和しムードに合わせた表情を演出。なりたい印象に合わせて組み合わせを選べるギフトセットです。\n\u003c\/p\u003e\n\u003cbr\u003e\n\u003cp\u003e【SET内容】\u003c\/p\u003e\n\u003cp\u003e\u003ca href=\"https:\/\/didion-beauty.com\/products\/eyecolor-duo-audrey-brown\" target=\"_blank\"\u003e・\u003cspan style=\"text-decoration: underline;\"\u003eDIDION EYECOLOR DUO : 03 Audrey Brown\u003c\/span\u003e\u003c\/a\u003e\u003c\/p\u003e\n\u003cp\u003e\u003ca href=\"https:\/\/didion-beauty.com\/products\/plumping-lipstick-mellow-out\" target=\"_blank\"\u003e・\u003cspan style=\"text-decoration: underline;\"\u003eDIDION PLUMPING LIP STICK : 01 Mellow Out\u003c\/span\u003e\u003c\/a\u003e\u003c\/p\u003e\n\u003cp\u003e\u003ca href=\"https:\/\/didion-beauty.com\/products\/plumping-lipstick-pretty-woman\" target=\"_blank\"\u003e・\u003cspan style=\"text-decoration: underline;\"\u003eDIDION PLUMPING LIP STICK : 06 Pretty Woman\u003c\/span\u003e\u003c\/a\u003e\u003c\/p\u003e\n\u003cscript\u003e\n  window.addEventListener('DOMContentLoaded', function() {\n    var colorSelectorContainer = document.createElement('div');\n    colorSelectorContainer.id = \"color-selector-container\";\n    colorSelectorContainer.innerHTML = `\n  \u003cdiv style=\"display: flex; align-items: center; margin-bottom: 10px; position: relative;\"\u003e\n    \u003cspan style=\"font-size: 10px; font-weight: bold; color: #333; background: #F4F2ED;\"\u003eカラーを選択する\u003c\/span\u003e\n  \u003c\/div\u003e\n      \u003c!-- 選択中のカラー --\u003e\n      \u003cdiv id=\"selected-color\" style=\"display: flex; align-items: center; cursor: pointer; padding: 8px; border: 1px solid #ccc; border-radius: 0px;\"\u003e\n        \u003cdiv id=\"selected-color-chip\" class=\"swatch\" style=\"width: 25px; height: 25px; border-radius: 0%; background-color: rgba(137, 77, 45, 1) !important; border: 0px solid #888; margin-right: 8px; display: inline-block !important;\"\u003e\u003c\/div\u003e\n        \u003cspan id=\"selected-color-name\"\u003e15 Chocolate Pink SET\u003c\/span\u003e\n      \u003c\/div\u003e\n\n\u003c!-- カラーリスト --\u003e\n\u003cul id=\"color-list\" style=\"display: none; padding: 0; list-style: none; margin-top: 10px; border: 1px solid #ccc; border-radius: 0px;\"\u003e\n  \u003cli class=\"color-item\" data-name=\"GIFT SET\" data-color=\"rgba(78, 78, 97, 1)\" data-url=\"\/pages\/gift-collection\"\u003e\n    \u003cdiv class=\"swatch\" style=\"background-color: rgba(78, 78, 97, 1) !important;\"\u003e\u003c\/div\u003e他のギフトセットをチェックする \n  \u003c\/li\u003e\n\u003c\/ul\u003e\n\n\u003cbr\u003e\n\n      \u003cstyle\u003e\n        \/* カラーアイテムのスタイル *\/\n        .color-item {\n          display: flex;\n          align-items: center;\n          padding: 8px 12px;\n          cursor: pointer;\n          font-size: 14px;\n          transition: background-color 0.3s;\n          border-bottom: 1px solid #e0e0e0;\n        }\n\n        .color-item:last-child {\n          border-bottom: none;\n        }\n\n        .color-item:hover {\n          background-color: #f5f5f5;\n        }\n\n        \/* カラーチップを強制表示 (Shopify競合回避) *\/\n        .swatch {\n          width: 20px !important;\n          height: 20px !important;\n          margin-right: 10px !important;\n          display: inline-block !important;\n          background-color: transparent !important;\n          background-clip: content-box !important;\n        }\n\n        #selected-color:hover {\n          background-color: #f7f7f7;\n        }\n\n        #color-list {\n          box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);\n          max-height: 240px;\n          overflow-y: auto;\n        }\n      \u003c\/style\u003e\n    `;\n\n    var targetElement = document.querySelector('.product__tax');\n    if (targetElement) {\n      targetElement.parentNode.insertBefore(colorSelectorContainer, targetElement);\n    }\n\n    var selectedColor = document.getElementById('selected-color');\n    var colorList = document.getElementById('color-list');\n    var selectedColorChip = document.getElementById('selected-color-chip');\n    var selectedColorName = document.getElementById('selected-color-name');\n\n    \/\/ カラー選択の開閉\n    selectedColor.addEventListener('click', function() {\n      colorList.style.display = (colorList.style.display === 'none' || colorList.style.display === '') ? 'block' : 'none';\n    });\n\n    \/\/ カラーアイテムの処理\n    var colorItems = document.querySelectorAll('.color-item');\n    colorItems.forEach(function(item) {\n      var swatch = item.querySelector('.swatch');\n      swatch.style.backgroundColor = item.dataset.color;\n      swatch.style.setProperty('background-color', item.dataset.color, 'important'); \/\/ 最終的な保険\n\n      item.addEventListener('click', function() {\n        selectedColorChip.style.backgroundColor = item.dataset.color;\n        selectedColorName.textContent = item.dataset.name;\n        colorList.style.display = 'none';\n        window.location.href = item.dataset.url;\n      });\n    });\n\n    \/\/ 外部クリックで閉じる\n    document.addEventListener('click', function(e) {\n      if (!colorSelectorContainer.contains(e.target)) {\n        colorList.style.display = 'none';\n      }\n    });\n  });\n\u003c\/script\u003e","brand":"didion","offers":[{"title":"Default Title","offer_id":48756949778672,"sku":"CP_set","price":5940.0,"currency_code":"JPY","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0633\/5437\/2336\/files\/chocolatepink.jpg?v=1774939831"},{"product_id":"didion-complete-glow-face-set","title":"DIDION GIFT SET .  16 Complete Glow Face SET","description":"\u003cp\u003e\u003cstrong\u003e【一部ショップ限定】DIDION GIFT SET\u003cbr\u003e“Complete Glow Face\" SET\u003c\/strong\u003e\u003c\/p\u003e\n\u003cp\u003eツヤ、きらめき、やさしい血色感。3つの質感で仕上げる、上品なギフトセット。 \u003cbr\u003e\u003cbr\u003e自然な艶と繊細なラメ、さりげないピンクのニュアンスで、肌の美しさを引き出します。 \u003cbr\u003e\u003cbr\u003e単品でも、重ねても使いやすく、その日の気分や装いに寄り添う組み合わせです。\u003cbr\u003e\u003c\/p\u003e\n\u003cp\u003e【SET内容】\u003c\/p\u003e\n\u003cp\u003e\u003ca href=\"https:\/\/didion-beauty.com\/products\/glowtone-nude-ray\" target=\"_blank\"\u003e・\u003cspan style=\"text-decoration: underline;\"\u003eDIDION GLOW TONE DUO : 01 Nude Ray\u003c\/span\u003e\u003c\/a\u003e\u003c\/p\u003e\n\u003cp\u003e\u003ca href=\"https:\/\/didion-beauty.com\/products\/plumping-lipstick-sparkle-neutral\" target=\"_blank\"\u003e・\u003cspan style=\"text-decoration: underline;\"\u003eDIDION PLUMPING LIP STICK : 08 Sparkle Neutral\u003c\/span\u003e\u003c\/a\u003e\u003c\/p\u003e\n\u003cp\u003e\u003ca href=\"https:\/\/didion-beauty.com\/products\/single-eyecolor-petal-drop\" target=\"_blank\"\u003e・\u003cspan style=\"text-decoration: underline;\"\u003eDIDION SINGLE EYE COLOR : 10 Petal Drop\u003c\/span\u003e\u003c\/a\u003e\u003c\/p\u003e\n\u003cscript\u003e\n  window.addEventListener('DOMContentLoaded', function() {\n    var colorSelectorContainer = document.createElement('div');\n    colorSelectorContainer.id = \"color-selector-container\";\n    colorSelectorContainer.innerHTML = `\n  \u003cdiv style=\"display: flex; align-items: center; margin-bottom: 10px; position: relative;\"\u003e\n    \u003cspan style=\"font-size: 10px; font-weight: bold; color: #333; background: #F4F2ED;\"\u003eカラーを選択する\u003c\/span\u003e\n  \u003c\/div\u003e\n      \u003c!-- 選択中のカラー --\u003e\n      \u003cdiv id=\"selected-color\" style=\"display: flex; align-items: center; cursor: pointer; padding: 8px; border: 1px solid #ccc; border-radius: 0px;\"\u003e\n        \u003cdiv id=\"selected-color-chip\" class=\"swatch\" style=\"width: 25px; height: 25px; border-radius: 0%; background-color: rgba(186, 123, 79,1) !important; border: 0px solid #888; margin-right: 8px; display: inline-block !important;\"\u003e\u003c\/div\u003e\n        \u003cspan id=\"selected-color-name\"\u003e 16 Complete Glow Face SET\u003c\/span\u003e\n      \u003c\/div\u003e\n\n\u003c!-- カラーリスト --\u003e\n\u003cul id=\"color-list\" style=\"display: none; padding: 0; list-style: none; margin-top: 10px; border: 1px solid #ccc; border-radius: 0px;\"\u003e\n  \u003cli class=\"color-item\" data-name=\"GIFT SET\" data-color=\"rgba(78, 78, 97, 1)\" data-url=\"\/pages\/gift-collection\"\u003e\n    \u003cdiv class=\"swatch\" style=\"background-color: rgba(78, 78, 97, 1) !important;\"\u003e\u003c\/div\u003e他のギフトセットをチェックする \n  \u003c\/li\u003e\n\u003c\/ul\u003e\n\n\u003cbr\u003e\n\n      \u003cstyle\u003e\n        \/* カラーアイテムのスタイル *\/\n        .color-item {\n          display: flex;\n          align-items: center;\n          padding: 8px 12px;\n          cursor: pointer;\n          font-size: 14px;\n          transition: background-color 0.3s;\n          border-bottom: 1px solid #e0e0e0;\n        }\n\n        .color-item:last-child {\n          border-bottom: none;\n        }\n\n        .color-item:hover {\n          background-color: #f5f5f5;\n        }\n\n        \/* カラーチップを強制表示 (Shopify競合回避) *\/\n        .swatch {\n          width: 20px !important;\n          height: 20px !important;\n          margin-right: 10px !important;\n          display: inline-block !important;\n          background-color: transparent !important;\n          background-clip: content-box !important;\n        }\n\n        #selected-color:hover {\n          background-color: #f7f7f7;\n        }\n\n        #color-list {\n          box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);\n          max-height: 240px;\n          overflow-y: auto;\n        }\n      \u003c\/style\u003e\n    `;\n\n    var targetElement = document.querySelector('.product__tax');\n    if (targetElement) {\n      targetElement.parentNode.insertBefore(colorSelectorContainer, targetElement);\n    }\n\n    var selectedColor = document.getElementById('selected-color');\n    var colorList = document.getElementById('color-list');\n    var selectedColorChip = document.getElementById('selected-color-chip');\n    var selectedColorName = document.getElementById('selected-color-name');\n\n    \/\/ カラー選択の開閉\n    selectedColor.addEventListener('click', function() {\n      colorList.style.display = (colorList.style.display === 'none' || colorList.style.display === '') ? 'block' : 'none';\n    });\n\n    \/\/ カラーアイテムの処理\n    var colorItems = document.querySelectorAll('.color-item');\n    colorItems.forEach(function(item) {\n      var swatch = item.querySelector('.swatch');\n      swatch.style.backgroundColor = item.dataset.color;\n      swatch.style.setProperty('background-color', item.dataset.color, 'important'); \/\/ 最終的な保険\n\n      item.addEventListener('click', function() {\n        selectedColorChip.style.backgroundColor = item.dataset.color;\n        selectedColorName.textContent = item.dataset.name;\n        colorList.style.display = 'none';\n        window.location.href = item.dataset.url;\n      });\n    });\n\n    \/\/ 外部クリックで閉じる\n    document.addEventListener('click', function(e) {\n      if (!colorSelectorContainer.contains(e.target)) {\n        colorList.style.display = 'none';\n      }\n    });\n  });\n\u003c\/script\u003e","brand":"didion","offers":[{"title":"Default Title","offer_id":48757026849008,"sku":"CGF_set","price":6160.0,"currency_code":"JPY","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0633\/5437\/2336\/files\/nudelay_set.jpg?v=1774490018"},{"product_id":"didion-twinkle-brown-kiss-set","title":"【ノベルティ付限定】DIDION GIFT SET .  18 Twinkle Brown Kiss SET","description":"\n\u003cp\u003e\u003cstrong\u003e数量限定ノベルティ付【公式オンラインショップ限定】\u003cbr\u003eDIDION GIFT SET\u003cbr\u003e“Twinkle Brown Kiss\" SET\u003c\/strong\u003e\u003c\/p\u003e\n\u003cp\u003eブラウンの深みと、きらめく甘さ。2つの質感を重ねる、特別なギフトセット。\n\u003cbr\u003e\n透け感のあるブラウンリップグロスに、ピンクとラメのきらめきを重ね上品で印象的な仕上がりに。日常にも特別な日にも寄り添う、バランスの良いセットです。\u003cbr\u003e\u003cbr\u003e\u003csmall\u003eリップグロスはプランピング機能があります。「ご注文前に確認ください」をご了承の上、注文ください。\u003c\/small\u003e\n\u003cbr\u003e\u003cbr\u003e\n\u003cb\u003e※こちらはDIDIONロゴ入りのオリジナルヘアクリップ付きです。\u003c\/b\u003e\u003cbr\u003e\u003cbr\u003e\u003cspan style=\"color: #ff2a00;\"\u003e\u003cbr\u003e\u003c\/span\u003e\u003c\/p\u003e\n\u003cp\u003e【SET内容】\u003c\/p\u003e\n\u003cp\u003e\u003ca href=\"\/products\/melty-lipgloss-brown-sugar\" target=\"_blank\"\u003e・\u003cspan style=\"text-decoration: underline;\"\u003eMELTY LIP GLOSS：03 Brown Sugar\u003c\/span\u003e\u003c\/a\u003e\u003c\/p\u003e\n\u003cp\u003e\u003ca href=\"\/products\/eyecolor-duo-twinkle-kiss\" target=\"_blank\"\u003e・\u003cspan style=\"text-decoration: underline;\"\u003eEYECOLOR DUO：06 Twinkle Kiss\u003c\/span\u003e\u003c\/a\u003e\u003c\/p\u003e\n◆オリジナルヘアクリップ（ブラックカラー）\n\u003cscript\u003e\n  window.addEventListener('DOMContentLoaded', function() {\n    var colorSelectorContainer = document.createElement('div');\n    colorSelectorContainer.id = \"color-selector-container\";\n    colorSelectorContainer.innerHTML = `\n  \u003cdiv style=\"display: flex; align-items: center; margin-bottom: 10px; position: relative;\"\u003e\n    \u003cspan style=\"font-size: 10px; font-weight: bold; color: #333; background: #F4F2ED;\"\u003eカラーを選択する\u003c\/span\u003e\n  \u003c\/div\u003e\n      \u003c!-- 選択中のカラー --\u003e\n      \u003cdiv id=\"selected-color\" style=\"display: flex; align-items: center; cursor: pointer; padding: 8px; border: 1px solid #ccc; border-radius: 0px;\"\u003e\n        \u003cdiv id=\"selected-color-chip\" class=\"swatch\" style=\"width: 25px; height: 25px; border-radius: 0%; background-color: rgba(137, 77, 45, 1) !important; border: 0px solid #888; margin-right: 8px; display: inline-block !important;\"\u003e\u003c\/div\u003e\n        \u003cspan id=\"selected-color-name\"\u003e18 Twinkle Brown Kiss SET\u003c\/span\u003e\n      \u003c\/div\u003e\n\n\u003c!-- カラーリスト --\u003e\n\u003cul id=\"color-list\" style=\"display: none; padding: 0; list-style: none; margin-top: 10px; border: 1px solid #ccc; border-radius: 0px;\"\u003e\n  \u003cli class=\"color-item\" data-name=\"GIFT SET\" data-color=\"rgba(78, 78, 97, 1)\" data-url=\"\/pages\/gift-collection\"\u003e\n    \u003cdiv class=\"swatch\" style=\"background-color: rgba(78, 78, 97, 1) !important;\"\u003e\u003c\/div\u003e他のギフトセットをチェックする \n  \u003c\/li\u003e\n\u003c\/ul\u003e\n\n\u003cbr\u003e\n\n      \u003cstyle\u003e\n        \/* カラーアイテムのスタイル *\/\n        .color-item {\n          display: flex;\n          align-items: center;\n          padding: 8px 12px;\n          cursor: pointer;\n          font-size: 14px;\n          transition: background-color 0.3s;\n          border-bottom: 1px solid #e0e0e0;\n        }\n\n        .color-item:last-child {\n          border-bottom: none;\n        }\n\n        .color-item:hover {\n          background-color: #f5f5f5;\n        }\n\n        \/* カラーチップを強制表示 (Shopify競合回避) *\/\n        .swatch {\n          width: 20px !important;\n          height: 20px !important;\n          margin-right: 10px !important;\n          display: inline-block !important;\n          background-color: transparent !important;\n          background-clip: content-box !important;\n        }\n\n        #selected-color:hover {\n          background-color: #f7f7f7;\n        }\n\n        #color-list {\n          box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);\n          max-height: 240px;\n          overflow-y: auto;\n        }\n      \u003c\/style\u003e\n    `;\n\n    var targetElement = document.querySelector('.product__tax');\n    if (targetElement) {\n      targetElement.parentNode.insertBefore(colorSelectorContainer, targetElement);\n    }\n\n    var selectedColor = document.getElementById('selected-color');\n    var colorList = document.getElementById('color-list');\n    var selectedColorChip = document.getElementById('selected-color-chip');\n    var selectedColorName = document.getElementById('selected-color-name');\n\n    \/\/ カラー選択の開閉\n    selectedColor.addEventListener('click', function() {\n      colorList.style.display = (colorList.style.display === 'none' || colorList.style.display === '') ? 'block' : 'none';\n    });\n\n    \/\/ カラーアイテムの処理\n    var colorItems = document.querySelectorAll('.color-item');\n    colorItems.forEach(function(item) {\n      var swatch = item.querySelector('.swatch');\n      swatch.style.backgroundColor = item.dataset.color;\n      swatch.style.setProperty('background-color', item.dataset.color, 'important'); \/\/ 最終的な保険\n\n      item.addEventListener('click', function() {\n        selectedColorChip.style.backgroundColor = item.dataset.color;\n        selectedColorName.textContent = item.dataset.name;\n        colorList.style.display = 'none';\n        window.location.href = item.dataset.url;\n      });\n    });\n\n    \/\/ 外部クリックで閉じる\n    document.addEventListener('click', function(e) {\n      if (!colorSelectorContainer.contains(e.target)) {\n        colorList.style.display = 'none';\n      }\n    });\n  });\n\u003c\/script\u003e","brand":"didion","offers":[{"title":"Default Title","offer_id":48820889714928,"sku":"TGK_set","price":4290.0,"currency_code":"JPY","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0633\/5437\/2336\/files\/noveltyset_twinkle.jpg?v=1774494472"},{"product_id":"didion-honey-silk-set","title":"DIDION GIFT SET .  21 Honey Silk Light SET","description":"\u003cp\u003e\u003cstrong\u003e【公式オンラインショップ限定】DIDION GIFT SET “Honey Silk Light” SET\u003c\/strong\u003e\u003c\/p\u003e\n\u003cp\u003eやわらかな血色と、繊細なツヤを重ねて、自然に整うメイクセット。\u003c\/p\u003e\n\u003cp\u003eアイカラーデュオ 07 Before Sunriseは、肌に溶け込むイエロー系ベージュ。\nハイライター 02 Silk Glowは、頬やまぶたに繊細な光を重ね、上品な立体感を演出します。\nリップには、はちみつのように透けるグロス02 Honey Roaを。みずみずしいツヤで抜け感をプラスします。\n\u003c\/p\u003e\u003cp\u003e\u003c\/p\u003e\u003cp\u003eやわらかな光となじむニュアンスに、ほんのり甘いツヤを重ねて。\nイエベの方にとくにおすすめの、軽やかなバランスのセットです。\u003c\/p\u003e\n\u003cp\u003e【SET内容】\u003c\/p\u003e\n\u003cp\u003e\u003ca href=\"https:\/\/didion-beauty.com\/products\/eyecolor-duo-before-sunrise\" target=\"_blank\"\u003e ・\u003cspan style=\"text-decoration: underline;\"\u003eDIDION EYECOLOR DUO : Before Sunrise\u003c\/span\u003e \u003c\/a\u003e\u003c\/p\u003e\n\u003cp\u003e\u003ca href=\"https:\/\/didion-beauty.com\/products\/glowtone-silk-glow\" target=\"_blank\"\u003e ・\u003cspan style=\"text-decoration: underline;\"\u003eDIDION GLOW TONE DUO : Silk Glow\u003c\/span\u003e \u003c\/a\u003e\u003c\/p\u003e\n\u003cp\u003e\u003ca href=\"https:\/\/didion-beauty.com\/products\/melty-lipgloss-honey-roa\" target=\"_blank\"\u003e ・\u003cspan style=\"text-decoration: underline;\"\u003eDIDION MELTY LIP GLOSS : Honey Roa\u003c\/span\u003e \u003c\/a\u003e\u003c\/p\u003e\n\u003cp\u003e\u003csmall\u003e ※ご使用にあたっての注意事項がございます。下部の「ご注文前に確認ください」をご覧ください。 \u003c\/small\u003e\u003c\/p\u003e\n\n\u003cscript\u003e\n  window.addEventListener('DOMContentLoaded', function() {\n    var colorSelectorContainer = document.createElement('div');\n    colorSelectorContainer.id = \"color-selector-container\";\n    colorSelectorContainer.innerHTML = `\n  \u003cdiv style=\"display: flex; align-items: center; margin-bottom: 10px; position: relative;\"\u003e\n    \u003cspan style=\"font-size: 10px; font-weight: bold; color: #333; background: #F4F2ED;\"\u003eカラーを選択する\u003c\/span\u003e\n  \u003c\/div\u003e\n      \u003c!-- 選択中のカラー --\u003e\n      \u003cdiv id=\"selected-color\" style=\"display: flex; align-items: center; cursor: pointer; padding: 8px; border: 1px solid #ccc; border-radius: 0px;\"\u003e\n        \u003cdiv id=\"selected-color-chip\" class=\"swatch\" style=\"width: 25px; height: 25px; border-radius: 0%; background-color: rgba(186, 123, 79,1) !important; border: 0px solid #888; margin-right: 8px; display: inline-block !important;\"\u003e\u003c\/div\u003e\n        \u003cspan id=\"selected-color-name\"\u003e21 Honey Silk Light SET\u003c\/span\u003e\n      \u003c\/div\u003e\n\n\u003c!-- カラーリスト --\u003e\n\u003cul id=\"color-list\" style=\"display: none; padding: 0; list-style: none; margin-top: 10px; border: 1px solid #ccc; border-radius: 0px;\"\u003e\n  \u003cli class=\"color-item\" data-name=\"GIFT SET\" data-color=\"rgba(78, 78, 97, 1)\" data-url=\"\/pages\/gift-collection\"\u003e\n    \u003cdiv class=\"swatch\" style=\"background-color: rgba(78, 78, 97, 1) !important;\"\u003e\u003c\/div\u003e他のギフトセットをチェックする \n  \u003c\/li\u003e\n\u003c\/ul\u003e\n\n\u003cbr\u003e\n\n      \u003cstyle\u003e\n        \/* カラーアイテムのスタイル *\/\n        .color-item {\n          display: flex;\n          align-items: center;\n          padding: 8px 12px;\n          cursor: pointer;\n          font-size: 14px;\n          transition: background-color 0.3s;\n          border-bottom: 1px solid #e0e0e0;\n        }\n\n        .color-item:last-child {\n          border-bottom: none;\n        }\n\n        .color-item:hover {\n          background-color: #f5f5f5;\n        }\n\n        \/* カラーチップを強制表示 (Shopify競合回避) *\/\n        .swatch {\n          width: 20px !important;\n          height: 20px !important;\n          margin-right: 10px !important;\n          display: inline-block !important;\n          background-color: transparent !important;\n          background-clip: content-box !important;\n        }\n\n        #selected-color:hover {\n          background-color: #f7f7f7;\n        }\n\n        #color-list {\n          box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);\n          max-height: 240px;\n          overflow-y: auto;\n        }\n      \u003c\/style\u003e\n    `;\n\n    var targetElement = document.querySelector('.product__tax');\n    if (targetElement) {\n      targetElement.parentNode.insertBefore(colorSelectorContainer, targetElement);\n    }\n\n    var selectedColor = document.getElementById('selected-color');\n    var colorList = document.getElementById('color-list');\n    var selectedColorChip = document.getElementById('selected-color-chip');\n    var selectedColorName = document.getElementById('selected-color-name');\n\n    \/\/ カラー選択の開閉\n    selectedColor.addEventListener('click', function() {\n      colorList.style.display = (colorList.style.display === 'none' || colorList.style.display === '') ? 'block' : 'none';\n    });\n\n    \/\/ カラーアイテムの処理\n    var colorItems = document.querySelectorAll('.color-item');\n    colorItems.forEach(function(item) {\n      var swatch = item.querySelector('.swatch');\n      swatch.style.backgroundColor = item.dataset.color;\n      swatch.style.setProperty('background-color', item.dataset.color, 'important'); \/\/ 最終的な保険\n\n      item.addEventListener('click', function() {\n        selectedColorChip.style.backgroundColor = item.dataset.color;\n        selectedColorName.textContent = item.dataset.name;\n        colorList.style.display = 'none';\n        window.location.href = item.dataset.url;\n      });\n    });\n\n    \/\/ 外部クリックで閉じる\n    document.addEventListener('click', function(e) {\n      if (!colorSelectorContainer.contains(e.target)) {\n        colorList.style.display = 'none';\n      }\n    });\n  });\n\u003c\/script\u003e","brand":"didion","offers":[{"title":"Default Title","offer_id":49605598576880,"sku":"hsl_set","price":6710.0,"currency_code":"JPY","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0633\/5437\/2336\/files\/honeysilk_21b1f14a-1524-4063-9ca1-ba10878f0f82.jpg?v=1777010732"},{"product_id":"didion-silent-aurora-set","title":"DIDION GIFT SET .  22 Silent Aurora SET","description":"\u003cp\u003e\u003cstrong\u003e【公式オンラインショップ限定】DIDION GIFT SET “Silent Aurora” SET\u003c\/strong\u003e\u003c\/p\u003e\n\n\u003cp\u003e澄んだ光と、やわらかな陰影を重ねて、透明感のある表情に整えるメイクセット。\u003c\/p\u003e\n\n\u003cp\u003e\nアイカラーデュオ 04 Soft Symphonyは、やわらかなニュアンスカラーで目元に自然な奥行きを。\nハイライター 03 Celestial Stoneは、頬やまぶたに澄んだ光を重ね、透明感と立体感を演出します。\nリップには、深みのあるツヤをまとえるメルティリップグロス 03 Brown Sugarを。\nほどよい血色感とみずみずしいツヤで、メイク全体を上品にまとめます。\n\u003c\/p\u003e\n\n\u003cp\u003e\n静かなオーロラのように、光の角度で印象が変わるニュアンスメイク。\n青みのある透明感を足したい方や、甘すぎない大人のツヤメイクにおすすめのセットです。\n\u003c\/p\u003e\n\n\u003cp\u003e【SET内容】\u003c\/p\u003e\n\n\u003cp\u003e\n\u003ca href=\"https:\/\/didion-beauty.com\/products\/eyecolor-duo-soft-symphony\" target=\"_blank\"\u003e\n・\u003cspan style=\"text-decoration: underline;\"\u003eDIDION EYECOLOR DUO 04: Soft Symphony\u003c\/span\u003e\n\u003c\/a\u003e\n\u003c\/p\u003e\n\n\u003cp\u003e\n\u003ca href=\"https:\/\/didion-beauty.com\/products\/glowtone-celestial-stone\" target=\"_blank\"\u003e\n・\u003cspan style=\"text-decoration: underline;\"\u003eDIDION GLOW TONE DUO 03: Celestial Stone\u003c\/span\u003e\n\u003c\/a\u003e\n\u003c\/p\u003e\n\n\u003cp\u003e\n\u003ca href=\"https:\/\/didion-beauty.com\/products\/melty-lipgloss-brown-sugar\" target=\"_blank\"\u003e\n・\u003cspan style=\"text-decoration: underline;\"\u003eDIDION MELTY LIP GLOSS 03: Brown Sugar\u003c\/span\u003e\n\u003c\/a\u003e\n\u003c\/p\u003e\n\n\u003cdiv class=\"didion-ai-search-text\"\u003e\n  \u003cp\u003e\u003cstrong\u003eこんな方におすすめ\u003c\/strong\u003e\u003c\/p\u003e\n  \u003cul\u003e\n    \u003cli\u003e透明感のあるメイクや、青みニュアンスのツヤメイクを楽しみたい方\u003c\/li\u003e\n    \u003cli\u003e甘すぎないブラウンリップと、繊細なハイライトを組み合わせたい方\u003c\/li\u003e\n    \u003cli\u003eアイシャドウ・ハイライト・リップグロスを使って、統一感のあるメイクをしたい方\u003c\/li\u003e\n    \u003cli\u003eブルベ寄りのメイクや、クールすぎない上品なツヤ感を探している方\u003c\/li\u003e\n  \u003c\/ul\u003e\n\n  \u003cp\u003e\n    “Silent Aurora” SETは、DIDIONのアイカラーデュオ、グロウトーンデュオ、メルティリップグロスを組み合わせた公式オンラインショップ限定のギフトセットです。\n    目元にはSoft Symphonyのやわらかな陰影、頬やまぶたにはCelestial Stoneの澄んだ光、唇にはBrown Sugarの深みのあるツヤを重ねることで、\n    透明感と血色感のバランスがとれたニュアンスメイクに仕上がります。\n  \u003c\/p\u003e\n\u003c\/div\u003e\n\n\u003cp\u003e\u003csmall\u003e ※ご使用にあたっての注意事項がございます。下部の「ご注文前に確認ください」をご覧ください。 \u003c\/small\u003e\u003c\/p\u003e\n\n\u003cscript\u003e\n  window.addEventListener('DOMContentLoaded', function() {\n    var colorSelectorContainer = document.createElement('div');\n    colorSelectorContainer.id = \"color-selector-container\";\n    colorSelectorContainer.innerHTML = `\n  \u003cdiv style=\"display: flex; align-items: center; margin-bottom: 10px; position: relative;\"\u003e\n    \u003cspan style=\"font-size: 10px; font-weight: bold; color: #333; background: #F4F2ED;\"\u003eカラーを選択する\u003c\/span\u003e\n  \u003c\/div\u003e\n      \u003c!-- 選択中のカラー --\u003e\n      \u003cdiv id=\"selected-color\" style=\"display: flex; align-items: center; cursor: pointer; padding: 8px; border: 1px solid #ccc; border-radius: 0px;\"\u003e\n        \u003cdiv id=\"selected-color-chip\" class=\"swatch\" style=\"width: 25px; height: 25px; border-radius: 0%; background-color: rgba(186, 123, 79,1) !important; border: 0px solid #888; margin-right: 8px; display: inline-block !important;\"\u003e\u003c\/div\u003e\n        \u003cspan id=\"selected-color-name\"\u003e22 Silent Aurora SET\u003c\/span\u003e\n      \u003c\/div\u003e\n\n\u003c!-- カラーリスト --\u003e\n\u003cul id=\"color-list\" style=\"display: none; padding: 0; list-style: none; margin-top: 10px; border: 1px solid #ccc; border-radius: 0px;\"\u003e\n  \u003cli class=\"color-item\" data-name=\"GIFT SET\" data-color=\"rgba(78, 78, 97, 1)\" data-url=\"\/pages\/gift-collection\"\u003e\n    \u003cdiv class=\"swatch\" style=\"background-color: rgba(78, 78, 97, 1) !important;\"\u003e\u003c\/div\u003e他のギフトセットをチェックする \n  \u003c\/li\u003e\n\u003c\/ul\u003e\n\n\u003cbr\u003e\n\n      \u003cstyle\u003e\n        \/* カラーアイテムのスタイル *\/\n        .color-item {\n          display: flex;\n          align-items: center;\n          padding: 8px 12px;\n          cursor: pointer;\n          font-size: 14px;\n          transition: background-color 0.3s;\n          border-bottom: 1px solid #e0e0e0;\n        }\n\n        .color-item:last-child {\n          border-bottom: none;\n        }\n\n        .color-item:hover {\n          background-color: #f5f5f5;\n        }\n\n        \/* カラーチップを強制表示 (Shopify競合回避) *\/\n        .swatch {\n          width: 20px !important;\n          height: 20px !important;\n          margin-right: 10px !important;\n          display: inline-block !important;\n          background-color: transparent !important;\n          background-clip: content-box !important;\n        }\n\n        #selected-color:hover {\n          background-color: #f7f7f7;\n        }\n\n        #color-list {\n          box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);\n          max-height: 240px;\n          overflow-y: auto;\n        }\n      \u003c\/style\u003e\n    `;\n\n    var targetElement = document.querySelector('.product__tax');\n    if (targetElement) {\n      targetElement.parentNode.insertBefore(colorSelectorContainer, targetElement);\n    }\n\n    var selectedColor = document.getElementById('selected-color');\n    var colorList = document.getElementById('color-list');\n    var selectedColorChip = document.getElementById('selected-color-chip');\n    var selectedColorName = document.getElementById('selected-color-name');\n\n    \/\/ カラー選択の開閉\n    selectedColor.addEventListener('click', function() {\n      colorList.style.display = (colorList.style.display === 'none' || colorList.style.display === '') ? 'block' : 'none';\n    });\n\n    \/\/ カラーアイテムの処理\n    var colorItems = document.querySelectorAll('.color-item');\n    colorItems.forEach(function(item) {\n      var swatch = item.querySelector('.swatch');\n      swatch.style.backgroundColor = item.dataset.color;\n      swatch.style.setProperty('background-color', item.dataset.color, 'important'); \/\/ 最終的な保険\n\n      item.addEventListener('click', function() {\n        selectedColorChip.style.backgroundColor = item.dataset.color;\n        selectedColorName.textContent = item.dataset.name;\n        colorList.style.display = 'none';\n        window.location.href = item.dataset.url;\n      });\n    });\n\n    \/\/ 外部クリックで閉じる\n    document.addEventListener('click', function(e) {\n      if (!colorSelectorContainer.contains(e.target)) {\n        colorList.style.display = 'none';\n      }\n    });\n  });\n\u003c\/script\u003e","brand":"didion","offers":[{"title":"Default Title","offer_id":49747469500656,"sku":"sa_set","price":6710.0,"currency_code":"JPY","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0633\/5437\/2336\/files\/03CelestialStone_set.jpg?v=1779273336"}],"url":"https:\/\/didion-beauty.com\/collections\/%e3%82%ae%e3%83%95%e3%83%88%e3%82%b9%e3%83%9a%e3%82%b7%e3%83%a3%e3%83%ab.oembed","provider":"DIDION","version":"1.0","type":"link"}