{"title":"ギフトセレクションー予算別 ～￥4,000","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-daily-eyeshadow-set","title":"DIDION GIFT SET.  03 “Daily Eyeshadow\" SET","description":"\u003cp\u003e\u003cstrong\u003eDIDION GIFT SET \"Daily Eyeshadow\" SET\u003cbr\u003e\u003cbr\u003e\u003c\/strong\u003e\nシングルアイカラーの人気2色をセット。ピンクベージュのラメと、肌なじみのよいマットなベージュを組み合わせた、デイリー使いしやすいセットです。\u003cbr\u003e\u003cbr\u003e\n2色を重ねて奥行きを出したり、それぞれ単品で使ってやわらかなグラデーションを作ったりと、気分やシーンに合わせてお楽しみいただけます。チークとしてもご使用いただけます。\u003cbr\u003e\u003cbr\u003e\nDIDIONのロゴ入りボックスに入れてお届けするため、ギフトにもおすすめです。\u003cbr\u003e\u003cbr\u003e\n\u003c\/p\u003e\n\n\u003cp\u003e \u003c\/p\u003e\n\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\/single-eyecolor-love-someone\" target=\"_blank\"\u003e・\u003cspan style=\"text-decoration: underline;\"\u003eDIDION SINGLE EYECOLOR : 04 Love Someone\u003c\/span\u003e\u003c\/a\u003e\u003c\/p\u003e\n\n\u003cp\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\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(190, 140, 110, 1) !important; border: 0px solid #888; margin-right: 8px; display: inline-block !important;\"\u003e\u003c\/div\u003e\n        \u003cspan id=\"selected-color-name\"\u003e03 Daily Eyeshadow SET\u003c\/span\u003e\n      \u003c\/div\u003e\n\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        .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        .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    selectedColor.addEventListener('click', function() {\n      colorList.style.display = (colorList.style.display === 'none' || colorList.style.display === '') ? 'block' : 'none';\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    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":45789779165424,"sku":"4582653233159","price":3520.0,"currency_code":"JPY","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0633\/5437\/2336\/files\/eyeshadow_65c164e4-1858-4c6f-8a50-b07140dbf6ca.jpg?v=1776689278"},{"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-gift-pink-can","title":"DIDION . 【期間限定 SPECIAL】LIP 08\/09 ORIGINAL CASE SET","description":"\u003cp\u003e\u003cstrong\u003e【DIDION公式オンラインショップ ＆ 限定SHOP販売】DIDION PLUMPING LIP 08\/09 ORIGINAL CASE SET\u003cbr\u003e\u003cbr\u003e\u003c\/strong\u003e人気のカラーリップスティック08,09の2本を、お菓子の缶を連想させるポップなピンクの限定缶ケースに収めた特別なセット。お渡し用のロゴ入りネイビーショッパーと共にお届けします。\u003cbr\u003e\u003cbr\u003e特別な方への贈り物に、自分へのご褒美としてぜひご利用ください。\u003cbr\u003e“輝きと彩りで、大切な人に想いを届ける　DIDIONからの特別な贈り物”\u003cbr\u003e\u003cbr\u003e\u003c\/p\u003e\n\u003cp\u003e 【SET内容】\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繊細なラメが煌めくブラウンカラー。単色使いはもちろん、重ねるだけで深みのある表情に。\u003c\/p\u003e\n\u003cp\u003e\u003ca style=\"text-decoration: underline;\" href=\"https:\/\/didion-beauty.com\/products\/plumping-lipstick-classy-skin\" target=\"_blank\"\u003eDIDION PLUMPING LIPSTICK : 09 Classy Skin \u003c\/a\u003e\u003cbr\u003eピンクを感じるベージュカラーで、自然な血色感と華やかさをプラス。毎日のメイクに最適。\u003cbr\u003e\u003cbr\u003e【発送について】\u003cbr\u003e缶の中に化粧箱の入ったリップスティック２本を緩衝材とともに入れてお届けします。\u003cb\u003eショッパーはつきますので、別途ご購入頂く必要はありません。\u003c\/b\u003e\u003c\/p\u003e\n\u003cp\u003e\u003cbr\u003e「08 Sparkle Neutral」「09 Classy Skin」を使用したメイクTIPSです。\u003c\/p\u003e\n\u003cp style=\"width: 109%; transform: translate(-1.5rem);\"\u003e\u003cvideo autoplay=\"autoplay\" muted=\"\" playsinline=\"\" loop=\"loop\" style=\"width: 100%;\"\u003e\n  \u003csource src=\"https:\/\/cdn.shopify.com\/videos\/c\/o\/v\/8dea8490cbdb4a938d9b86dd4bfbb75c.mp4\" type=\"video\/mp4\"\u003e\u003c\/video\u003e\u003c\/p\u003e\n\u003cp style=\"width: 109%; transform: translate(-1.5rem);\"\u003e\u003cvideo autoplay=\"autoplay\" muted=\"\" playsinline=\"\" loop=\"loop\" style=\"width: 100%;\"\u003e\n  \u003csource src=\"https:\/\/cdn.shopify.com\/videos\/c\/o\/v\/3ada5c6bc65a42219dee8a82835855a1.mp4\" type=\"video\/mp4\"\u003e\u003c\/video\u003e\u003c\/p\u003e\n\u003cp style=\"width: 109%; transform: translate(-1.5rem);\"\u003e\u003cvideo autoplay=\"autoplay\" muted=\"\" playsinline=\"\" loop=\"loop\" style=\"width: 100%;\"\u003e\n  \u003csource type=\"video\/mp4\"\u003e\u003c\/video\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(239, 211, 218, 1) !important; border: 0px solid #888; margin-right: 8px; display: inline-block !important;\"\u003e\u003c\/div\u003e\n        \u003cspan id=\"selected-color-name\"\u003eORIGINAL CASE 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":47086246330608,"sku":"sf_pkcanset","price":3520.0,"currency_code":"JPY","in_stock":false}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0633\/5437\/2336\/files\/valentine_set2.jpg?v=1737957191"},{"product_id":"didion-gift-set-10-quiet-pink-mood-set-コピー","title":"DIDION GIFT SET .  11 “Shadow Melt\"SET","description":"\n\u003cp\u003e\u003cstrong\u003eDIDION GIFT SET“Shadow Melt\"SET\u003cbr\u003e\u003c\/strong\u003e\u003c\/p\u003e\n\u003cp data-end=\"283\" data-start=\"154\"\u003eすっとまぶたになじむ微細なラメグリッター\u003cstrong\u003eNocturnal Harmony\u003c\/strong\u003e に、人気リップカラー \u003cstrong\u003eMellow Out\u003c\/strong\u003e のミルキーブラウンを重ねた、“影をそっと溶かす”ようなニュアンスセット。\u003cbr\u003eグレーの深みがまぶたに自然な奥行きと透明感を与、目元の彫りをさりげなく引き立てます。控えめなラメ感にモードなミルキーブラウンのシックなセットです。\n\u003c\/p\u003e\n\u003cp\u003e【SET内容】\u003c\/p\u003e\n\u003cp\u003e\u003ca href=\"https:\/\/didion-beauty.com\/products\/glitter-eyeshadow-nocturnal-harmony\" target=\"_blank\"\u003e・\u003cspan style=\"text-decoration: underline;\"\u003eDIDION LIQUID GLITTER : 05 Nocturnal Harmony\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 LIPSTICK : 01 Mellow Out\u003c\/span\u003e\u003c\/a\u003e\u003cbr\u003e\u003c\/p\u003e\n\u003cp\u003e\u003csmall\u003e\n※リップは、プランピング（唇をふっくらとさせる）効果のある商品です。ヒリヒリする商品を好まない方、敏感肌の方はご使用をお控えください。また、ごくわずかにメントールのような香りがあります。\u003c\/small\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(178, 146, 152, 1) !important; border: 0px solid #888; margin-right: 8px; display: inline-block !important;\"\u003e\u003c\/div\u003e\n        \u003cspan id=\"selected-color-name\"\u003e11 Shadow Melt 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":48302859714800,"sku":"SME_set","price":3850.0,"currency_code":"JPY","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0633\/5437\/2336\/files\/meltshadow.jpg?v=1774940471"},{"product_id":"melty-lip-gloss-inbox","title":"GIFT SET.  メルティリップグロス ギフトセット","description":"\u003cp\u003e\u003cstrong\u003e \"MELTY LIP GLOSS IN ART PUZZLE BOX”\u003cbr\u003e\u003cbr\u003e\u003c\/strong\u003e\"MELTY LIP GLOSS” の01と02の２色を組み合わせたスペシャルパッケージのセットです。\u003cbr\u003e\u003cbr\u003eパズルのブロックをモチーフにした全6種類のデザイン。パズルのピースが噛み合うように、あなたの唇とDIDIONのカラーが運命的な出会いを果たしてほしい、そんな思いを込めた特別なボックスセットです。メイクアップの自由な感性を表現した遊び心あふれるパッケージは、ギフトや自分へのご褒美にも最適です。\u003cbr\u003e\u003cbr\u003eお好きなカラーとシェイプをお選び頂けます。数量限定のため、ご選択できないボックスは販売終了となります。ボックスの名称と形については４番目の写真をご覧ください。\u003cbr\u003e\u003cbr\u003e\u003c\/p\u003e\n\u003cp\u003e【セット内容】\u003cbr\u003e各１\u003cbr\u003e\u003ca href=\"\/en\/products\/meltylip-gloss-luster\" target=\"_blank\"\u003eMELTY LIP GLOSS 01 Luster\u003c\/a\u003e\u003cbr\u003e\u003ca href=\"\/en\/products\/melty-lipgloss-honey-roa\" target=\"_blank\"\u003eMELTY LIP GLOSS 02 Honey Roa\u003c\/a\u003e\u003c\/p\u003e\n\u003cp\u003e\u003cbr\u003e※セットを並べた写真はイメージです。選択した１つセットをお届けします。\u003cbr\u003e※商品のセット内容を変更することはできません。\u003cbr\u003e※お渡し用のショッパーはついていません。ご希望の場合は\u003ca href=\"https:\/\/didion-beauty.com\/products\/shoppingbag\" target=\"_blank\"\u003e[こちら] \u003c\/a\u003eからカートに入れてください。\u003c\/p\u003e","brand":"didion","offers":[{"title":"05 Light blue×T形","offer_id":48362499375344,"sku":"05lblue-set","price":3740.0,"currency_code":"JPY","in_stock":true},{"title":"02 Black×ステップ形","offer_id":48362499277040,"sku":"02blacks-set","price":3740.0,"currency_code":"JPY","in_stock":true},{"title":"03 Yellow×L形","offer_id":48362499309808,"sku":"03yelllow-set","price":3740.0,"currency_code":"JPY","in_stock":true},{"title":"04 Black×L形","offer_id":48362499342576,"sku":"04blackl-set","price":3740.0,"currency_code":"JPY","in_stock":true},{"title":"06 Black×T形","offer_id":48362499408112,"sku":"06blackt-set","price":3740.0,"currency_code":"JPY","in_stock":true},{"title":"01 Orange×ステップ形","offer_id":48362499244272,"sku":"01orange-set","price":3740.0,"currency_code":"JPY","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0633\/5437\/2336\/files\/Frame_14.jpg?v=1764651707"},{"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"}],"url":"https:\/\/didion-beauty.com\/en\/collections\/%e3%82%ae%e3%83%95%e3%83%88%e3%82%bb%e3%83%ac%e3%82%af%e3%82%b7%e3%83%a7%e3%83%b3%e3%83%bc%e4%ba%88%e7%ae%97%e5%88%a5-4-000.oembed","provider":"DIDION","version":"1.0","type":"link"}