{"formatVersion":1,"available":true,"desktop":{"available":true,"unregisterOnStop":true,"allowWebview":false,"trackingOptimizer":false,"collectCookieKeys":false,"controlGroupRate":10,"ga4MeasurementId":"G-WWEZGM0GKE","ga4MeasurementIdForClient":"","ga4SiteSpeedSampleRate":1,"cacheConfig":{"image":604800000},"cacheRevision":55,"serviceWorkerUrl":"sw.js","serviceWorkerScope":"/","pageScript":"if (typeof gtag === \"function\") {\r\n  const reproBoosterGID = \"G-WWEZGM0GKE\";\r\n  const addToCartButtonsSelector = \"div.item-list-item-btns .btn-cart, div.item-detail-recipe-cart .btn-cart, div.item-detail-cart-btn-wrapper .btn-cart\";\r\n  const purchaseButtonsSelector = \"#confirmForm .btn-cart, #myContainer .btn-cart\";\r\n  const purchaseValueSelector = \"dl.cart-grand-total .price-value\";\r\n  const purchaseQuantitySelector = \"dl.cart-total-item .cart-total-item-qty\";\r\n\r\n  // add_to_cart\r\n  document.querySelectorAll(addToCartButtonsSelector).forEach((button) => {\r\n    button.addEventListener(\"click\", function () {\r\n      gtag(\"event\", \"ReproBooster_sub_cv\", { send_to: reproBoosterGID });\r\n    });\r\n  });\r\n\r\n  // purchase\r\n  document.querySelectorAll(purchaseButtonsSelector).forEach((button) => {\r\n    button.addEventListener(\"click\", function () {\r\n      const value = Number(document.querySelector(purchaseValueSelector)?.textContent?.match(/\\d+/g)?.join('')) || null;\r\n      const quantity = Array.from(document\r\n        .querySelectorAll(purchaseQuantitySelector)).reduce((sum, node) => {\r\n        const num = Number((node.textContent || node.alt)?.match(/\\d+/g)?.join(''));\r\n        return sum + (isNaN(num) ? 0 : num);\r\n      }, 0);\r\n      // 商品点数が画面に存在しない場合、purchaseQuantitySelectorは商品明細を取得するセレクタにして実装はこちらを使う\r\n      // const quantity = Array.from(document.querySelectorAll(purchaseQuantitySelector)).length\r\n\r\n      gtag(\"event\", \"ReproBooster_main_cv\", {\r\n        send_to: reproBoosterGID,\r\n        currency: \"JPY\",\r\n        value,\r\n        quantity,\r\n      });\r\n    });\r\n  });\r\n}","smartUX":{"loader":{"type":"","logoUrl":"","color":"#FFFFFF","delayMs":300,"timeoutMs":7000}},"proxyConfig":{"imageProxy":{"active":true,"hosts":[{"host":"https://io.repro-booster.com/"}],"filters":{"includes":[{"type":"url","value":"^https://endlessmode.jp/"},{"type":"url","value":"^https://static.staff-start.com/"}],"excludes":[]},"timeout":10000,"optimization":{"formatConversion":true}},"videoProxy":{"active":false,"hosts":[{"host":"https://vo.repro-booster.com/vo/"}]},"dualProxy":{"active":true,"prefetch":true,"loadingSpinner":"","hiddenCssSelector":"","displayNoneCssSelector":".item-list-ranking-inner, .item-list-subcategory-list","trackingParamsToStrip":[],"scriptPreload":false,"scriptPreloadPriority":"","prependStyle":"/* ---- .top-mv (ファーストビューのカルーセル) ----\r\n   Swiper 初期化前 (.swiper-initialized 付与前) だけ適用する。\r\n   Swiper 8 は init() 内で addClasses() -> updateSlides() の順に走るため、\r\n   :not(.swiper-initialized) で括ると寸法計測時にはこの CSS が外れており、\r\n   slidesPerView:'auto' の計測を汚さない。 */\r\n.top-mv:not(.swiper-initialized) {\r\n  opacity: 1 !important;\r\n  transition: none !important;\r\n  position: relative !important;\r\n}\r\n\r\n.top-mv:not(.swiper-initialized) .top-mv-slider-list {\r\n  transform: none !important;\r\n  margin: 0 !important;\r\n  height: 500px !important;\r\n}\r\n\r\n/* DOM 並び順で 2 枚目以降を隠す */\r\n.top-mv:not(.swiper-initialized) .top-mv-slider-list > .top-mv-slider-list-item:nth-child(n+2) {\r\n  display: none !important;\r\n}\r\n\r\n/* 1 枚目を .top-mv の水平中央に固定 */\r\n.top-mv:not(.swiper-initialized) .top-mv-slider-list > .top-mv-slider-list-item:first-child {\r\n  position: absolute !important;\r\n  top: 0 !important;\r\n  left: 50% !important;\r\n  transform: translateX(-50%) !important;\r\n  margin: 0 !important;\r\n}\r\n\r\n/* ページネーション / 矢印は初期化までの間だけ非表示 */\r\n.top-mv:not(.swiper-initialized) .swiper-dots,\r\n.top-mv:not(.swiper-initialized) .swiper-prev,\r\n.top-mv:not(.swiper-initialized) .swiper-next {\r\n  visibility: hidden !important;\r\n}","beforeMergeScript":"console.log('before merge script');\r\n\r\n// 商品詳細ページ スライダー2枚目以降を非表示\r\nlet cssStyle = document.createElement('style');\r\ncssStyle.textContent = `\r\n.item-detail-img-slider-item:nth-child(n+2) {\r\n  display: none !important;\r\n}\r\n`;\r\ndocument.head.appendChild(cssStyle);\r\n\r\nwindow.addEventListener('load', function () {\r\n  setTimeout(function () {\r\n    cssStyle.remove();\r\n  }, 1000);\r\n});\r\n\r\n// 商品詳細ページswiper\r\n  function recoverDetailSwiper() {\r\n  document.querySelectorAll('.swiper-initialized').forEach(function(el) {\r\n    if (el.swiper) {\r\n      try {\r\n        el.swiper.update();\r\n      } catch (e) {}\r\n    }\r\n  });\r\n}\r\nwindow.addEventListener('load', function () {\r\n  setTimeout(recoverDetailSwiper, 1100);\r\n}, { once: true });","afterMergeScript":"console.log('after merge script');\r\n\r\n// 商品詳細ページ スライダー2枚目以降を非表示\r\nlet cssStyle = document.createElement('style');\r\ncssStyle.textContent = `\r\n.item-detail-img-slider-item:nth-child(n+2) {\r\n  display: none !important;\r\n}\r\n`;\r\ndocument.head.appendChild(cssStyle);\r\n\r\nwindow.addEventListener('load', function () {\r\n  setTimeout(function () {\r\n    cssStyle.remove();\r\n  }, 1000);\r\n});\r\n\r\n// 商品詳細ページswiper\r\n  function recoverDetailSwiper() {\r\n  document.querySelectorAll('.swiper-initialized').forEach(function(el) {\r\n    if (el.swiper) {\r\n      try {\r\n        el.swiper.update();\r\n      } catch (e) {}\r\n    }\r\n  });\r\n}\r\nwindow.addEventListener('load', function () {\r\n  setTimeout(recoverDetailSwiper, 1100);\r\n}, { once: true });","disableBfcache":false,"disableAcceptLanguage":true,"resolveLazyLoad":false,"adaptiveCachePurge":true,"cachePurgeList":"{\"buckets\":\"YFgcO5aAVziYQF9/JvEJV30WUHnOdL8myEb24OzLPwM/h4pvuR5q7yJUc3pVnt3MncUCozqzsBPfRTcl612lSh7f03dUBncxaZcvS0Frd++/SK54YnBdfR3J+ThRozxDX2T3//Bti/8Fsr3X1XfwSz5cX61IF8Uh8cii9aiVUVf1PN6OCTdd6XWT8mYnUxQChYurB4mWRhe60hvc9MRVVmWXy+arQ80b4PFmt2Yt124/IIqDVDGSAYUf6GiyaVru6UjWqihXNCCyJ8NkXR1DrXHdI3r3TTJPro+PXo9p/5B02KH1gGKWXBcd1anGtaKSZHrGDpXCLyc/CAABB1TH52vJGFc8UwUwsWw2ftluQ6flkqcDV0h1XbYWselgYjy773fIi+MdRQPCX++2w365aHypA5R9GAAaZRz2yustgxB3kRZQIB5Qyquk/Tv/nsOdmnWkRN8c3l38At7ZaJGskpF1y3Zz/jvOBNPzA8FulOz7LvVhhvEQlAsEPjB5t1eopnO4VhzrqalwQVC/Du7N0XvvTfxNfeuV6HD2QRBp58AMILXK\",\"hashFunctions\":14,\"serializeFormat\":\"v2-bloomfilter-0.0\"}"}},"prefetchConfig":{"viewportStayTimeThreshold":1000,"mouseoverTimeout":100,"viewportRootMargins":[],"filters":{"includes":[{"type":"url","value":"^https://endlessmode.jp/?($|\\?)"},{"type":"url","value":"^https://endlessmode.jp/category/"},{"type":"url","value":"^https://endlessmode.jp/coordinate_detail.html"},{"type":"url","value":"^https://endlessmode.jp/coordinate_list.html"},{"type":"url","value":"^https://endlessmode.jp/ext/"},{"type":"url","value":"^https://endlessmode.jp/item/"},{"type":"url","value":"^https://endlessmode.jp/item_list.html"},{"type":"url","value":"^https://endlessmode.jp/lunaearth"},{"type":"url","value":"^https://endlessmode.jp/miralabo/"},{"type":"url","value":"^https://endlessmode.jp/partsclub/"},{"type":"url","value":"^https://endlessmode.jp/staff_list.html"},{"type":"url","value":"^https://endlessmode.jp/store_list.html"},{"type":"url","value":"^https://endlessmode.jp/topics"}],"excludes":[{"type":"url","value":"^https://endlessmode.jp/address_"},{"type":"url","value":"^https://endlessmode.jp/apply"},{"type":"url","value":"^https://endlessmode.jp/ext/amazon_pay"},{"type":"url","value":"^https://endlessmode.jp/item_nyuka_notice.html"},{"type":"url","value":"^https://endlessmode.jp/kessai_gmopgpaypay_return.html"},{"type":"url","value":"^https://endlessmode.jp/login.html"},{"type":"url","value":"^https://endlessmode.jp/member"},{"type":"url","value":"^https://endlessmode.jp/password"},{"type":"url","value":"^https://endlessmode.jp/top_login.html"},{"type":"url","value":"^https://endlessmode.jp/wishlist.html"},{"type":"url","value":"^https://endlessmode.jp/cart_"}]},"prioritizedExclusionFilters":[],"prerender":true},"testName":"prerender AB","variants":[{"name":"ON","weight":1,"configOverride":{"prefetchConfig":{"prerender":true}}},{"name":"OFF","weight":1,"configOverride":{"prefetchConfig":{"prerender":false}}}],"addOnSetting":{"enabled":true,"scriptDeferEnabled":true,"imageProxyRewriteEnabled":true,"criticalCssEnabled":false,"pageFilters":{"includes":[{"type":"url","value":".*"}],"excludes":[]}}},"mobile":{"available":true,"unregisterOnStop":true,"allowWebview":false,"trackingOptimizer":false,"collectCookieKeys":false,"controlGroupRate":10,"ga4MeasurementId":"G-WWEZGM0GKE","ga4MeasurementIdForClient":"","ga4SiteSpeedSampleRate":1,"cacheConfig":{"image":604800000},"cacheRevision":55,"serviceWorkerUrl":"sw.js","serviceWorkerScope":"/","pageScript":"if (typeof gtag === \"function\") {\r\n  const reproBoosterGID = \"G-WWEZGM0GKE\";\r\n  const addToCartButtonsSelector = \"div.item-list-item-btns .btn-cart, div.item-detail-recipe-cart .btn-cart, div.item-detail-cart-btn-wrapper .btn-cart\";\r\n  const purchaseButtonsSelector = \"#confirmForm .btn-cart, #myContainer .btn-cart\";\r\n  const purchaseValueSelector = \"dl.cart-grand-total .price-value\";\r\n  const purchaseQuantitySelector = \"dl.cart-total-item .cart-total-item-qty\";\r\n\r\n  // add_to_cart\r\n  document.querySelectorAll(addToCartButtonsSelector).forEach((button) => {\r\n    button.addEventListener(\"click\", function () {\r\n      gtag(\"event\", \"ReproBooster_sub_cv\", { send_to: reproBoosterGID });\r\n    });\r\n  });\r\n\r\n  // purchase\r\n  document.querySelectorAll(purchaseButtonsSelector).forEach((button) => {\r\n    button.addEventListener(\"click\", function () {\r\n      const value = Number(document.querySelector(purchaseValueSelector)?.textContent?.match(/\\d+/g)?.join('')) || null;\r\n      const quantity = Array.from(document\r\n        .querySelectorAll(purchaseQuantitySelector)).reduce((sum, node) => {\r\n        const num = Number((node.textContent || node.alt)?.match(/\\d+/g)?.join(''));\r\n        return sum + (isNaN(num) ? 0 : num);\r\n      }, 0);\r\n      // 商品点数が画面に存在しない場合、purchaseQuantitySelectorは商品明細を取得するセレクタにして実装はこちらを使う\r\n      // const quantity = Array.from(document.querySelectorAll(purchaseQuantitySelector)).length\r\n\r\n      gtag(\"event\", \"ReproBooster_main_cv\", {\r\n        send_to: reproBoosterGID,\r\n        currency: \"JPY\",\r\n        value,\r\n        quantity,\r\n      });\r\n    });\r\n  });\r\n}","smartUX":{"loader":{"type":"","logoUrl":"","color":"#FFFFFF","delayMs":300,"timeoutMs":7000}},"proxyConfig":{"imageProxy":{"active":true,"hosts":[{"host":"https://io.repro-booster.com/"}],"filters":{"includes":[{"type":"url","value":"^https://endlessmode.jp/"},{"type":"url","value":"^https://static.staff-start.com/"}],"excludes":[]},"timeout":10000,"optimization":{"formatConversion":true}},"videoProxy":{"active":false,"hosts":[{"host":"https://vo.repro-booster.com/vo/"}]},"dualProxy":{"active":true,"prefetch":true,"loadingSpinner":"","hiddenCssSelector":"","displayNoneCssSelector":".item-list-ranking-inner, .top-pickup-list-item-text","trackingParamsToStrip":[],"scriptPreload":false,"scriptPreloadPriority":"","prependStyle":"@media screen and (max-width: 767px) {\r\n  /* ---- .top-mv (ファーストビューのカルーセル) ----\r\n     Swiper 初期化前 (.swiper-initialized 付与前) だけ適用する。\r\n     Swiper 8 は init() 内で addClasses() -> updateSlides() の順に走るため、\r\n     :not(.swiper-initialized) で括ると寸法計測時にはこの CSS が外れており、\r\n     slidesPerView:'auto' の計測を汚さない。 */\r\n  .top-mv:not(.swiper-initialized) {\r\n    opacity: 1 !important;\r\n    transition: none !important;\r\n    position: relative !important;\r\n  }\r\n\r\n  .top-mv:not(.swiper-initialized) .top-mv-slider-list {\r\n    transform: none !important;\r\n    margin: 0 !important;\r\n    height: 300px !important;\r\n  }\r\n\r\n  /* DOM 並び順で 2 枚目以降を隠す */\r\n  .top-mv:not(.swiper-initialized) .top-mv-slider-list > .top-mv-slider-list-item:nth-child(n+2) {\r\n    display: none !important;\r\n  }\r\n\r\n  /* 1 枚目を .top-mv の水平中央に固定 */\r\n  .top-mv:not(.swiper-initialized) .top-mv-slider-list > .top-mv-slider-list-item:first-child {\r\n    position: absolute !important;\r\n    top: 0 !important;\r\n    left: 50% !important;\r\n    transform: translateX(-50%) !important;\r\n    margin: 0 !important;\r\n  }\r\n\r\n  /* ---- .top-pickup-list (新着) ---- */\r\n  .top-pickup-list-wrapper {\r\n    opacity: 1 !important;\r\n  }\r\n  .top-pickup-list-item-img {\r\n    height: 189px !important;\r\n    width: 189px !important;\r\n    margin: 0 10px 0 10px !important;\r\n  }\r\n  .top-pickup-list {\r\n    display: flex !important;\r\n  }\r\n\r\n  /* ページネーション / 矢印は初期化までの間だけ非表示 */\r\n  .top-mv:not(.swiper-initialized) .swiper-dots,\r\n  .top-mv:not(.swiper-initialized) .swiper-prev,\r\n  .top-mv:not(.swiper-initialized) .swiper-next {\r\n    visibility: hidden !important;\r\n  }\r\n}","beforeMergeScript":"console.log('before merge script');\r\n\r\nvar cssStyle = document.createElement('style');\r\ncssStyle.textContent = `\r\n  .top-pickup-list-wrapper {\r\n    opacity: 1 !important;\r\n  }\r\n  .top-pickup-list-item-img {\r\n    height: 189px !important;\r\n    width: 189px !important;\r\n  }\r\n  .top-pickup-list {\r\n    display: flex !important;\r\n  }\r\n  .item-detail-img-slider-item:nth-child(n+2) {\r\n    display: none !important;\r\n  }\r\n`;\r\ndocument.head.appendChild(cssStyle);\r\n\r\nwindow.addEventListener('load', function () {\r\n  setTimeout(function () {\r\n    cssStyle.remove();\r\n  }, 500);\r\n});\r\n\r\n// 商品詳細ページswiper\r\nfunction recoverDetailSwiper() {\r\n  document.querySelectorAll('.swiper-initialized').forEach(function(el) {\r\n    if (el.swiper) {\r\n      try {\r\n        el.swiper.update();\r\n      } catch (e) {}\r\n    }\r\n  });\r\n}\r\nwindow.addEventListener('load', function () {\r\n  setTimeout(recoverDetailSwiper, 1100);\r\n}, { once: true });","afterMergeScript":"console.log('after merge script');\r\n\r\nvar cssStyle = document.createElement('style');\r\ncssStyle.textContent = `\r\n  .top-pickup-list-wrapper {\r\n    opacity: 1 !important;\r\n  }\r\n  .top-pickup-list-item-img {\r\n    height: 189px !important;\r\n    width: 189px !important;\r\n  }\r\n  .top-pickup-list {\r\n    display: flex !important;\r\n  }\r\n  .item-detail-img-slider-item:nth-child(n+2) {\r\n    display: none !important;\r\n  }\r\n`;\r\ndocument.head.appendChild(cssStyle);\r\n\r\nwindow.addEventListener('load', function () {\r\n  setTimeout(function () {\r\n    cssStyle.remove();\r\n  }, 500);\r\n});\r\n\r\n// 商品詳細ページswiper\r\nfunction recoverDetailSwiper() {\r\n  document.querySelectorAll('.swiper-initialized').forEach(function(el) {\r\n    if (el.swiper) {\r\n      try {\r\n        el.swiper.update();\r\n      } catch (e) {}\r\n    }\r\n  });\r\n}\r\nwindow.addEventListener('load', function () {\r\n  setTimeout(recoverDetailSwiper, 1100);\r\n}, { once: true });","disableBfcache":false,"disableAcceptLanguage":true,"resolveLazyLoad":false,"adaptiveCachePurge":true,"cachePurgeList":"{\"buckets\":\"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\",\"hashFunctions\":14,\"serializeFormat\":\"v2-bloomfilter-0.0\"}"}},"prefetchConfig":{"viewportStayTimeThreshold":500,"mouseoverTimeout":500,"viewportRootMargins":["0px 0px -30% 0px"],"filters":{"includes":[{"type":"url","value":"^https://endlessmode.jp/?($|\\?)"},{"type":"url","value":"^https://endlessmode.jp/category/"},{"type":"url","value":"^https://endlessmode.jp/coordinate_detail.html"},{"type":"url","value":"^https://endlessmode.jp/coordinate_list.html"},{"type":"url","value":"^https://endlessmode.jp/ext/"},{"type":"url","value":"^https://endlessmode.jp/item/"},{"type":"url","value":"^https://endlessmode.jp/item_list.html"},{"type":"url","value":"^https://endlessmode.jp/lunaearth"},{"type":"url","value":"^https://endlessmode.jp/miralabo/"},{"type":"url","value":"^https://endlessmode.jp/partsclub/"},{"type":"url","value":"^https://endlessmode.jp/staff_list.html"},{"type":"url","value":"^https://endlessmode.jp/store_list.html"},{"type":"url","value":"^https://endlessmode.jp/topics"}],"excludes":[{"type":"url","value":"^https://endlessmode.jp/address_"},{"type":"url","value":"^https://endlessmode.jp/apply"},{"type":"url","value":"^https://endlessmode.jp/ext/amazon_pay"},{"type":"url","value":"^https://endlessmode.jp/item_nyuka_notice.html"},{"type":"url","value":"^https://endlessmode.jp/kessai_gmopgpaypay_return.html"},{"type":"url","value":"^https://endlessmode.jp/login.html"},{"type":"url","value":"^https://endlessmode.jp/member"},{"type":"url","value":"^https://endlessmode.jp/password"},{"type":"url","value":"^https://endlessmode.jp/top_login.html"},{"type":"url","value":"^https://endlessmode.jp/wishlist.html"},{"type":"url","value":"^https://endlessmode.jp/cart_"}]},"prioritizedExclusionFilters":[],"prerender":true},"testName":"prerender AB","variants":[{"name":"ON","weight":1,"configOverride":{"prefetchConfig":{"prerender":true}}},{"name":"OFF","weight":1,"configOverride":{"prefetchConfig":{"prerender":false}}}],"addOnSetting":{"enabled":true,"scriptDeferEnabled":true,"imageProxyRewriteEnabled":true,"criticalCssEnabled":false,"pageFilters":{"includes":[{"type":"url","value":".*"}],"excludes":[]}}}}