{"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-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"}],"url":"https:\/\/didion-beauty.com\/zh\/collections\/gift-eyecolor-glitter.oembed","provider":"DIDION","version":"1.0","type":"link"}