{"product_id":"tr000062","title":"ツーリングマップルオリジナル 手ぬぐい 「旧国地図」 令制国 旧国名 日本地図 青海波 和柄 綿100% 日本製","description":"\u003c!-- ===== CPブロック ===== --\u003e\r\n\r\n\u003c!-- 以下、ポップアップ本体 --\u003e\r\n\u003cdiv id=\"custom-popup-overlay\"\u003e\r\n  \u003cdiv id=\"custom-popup-content\"\u003e\r\n    \u003cspan id=\"custom-popup-close\"\u003e×\u003c\/span\u003e\r\n    \r\n    \u003ca href=\"https:\/\/ec.sp-mapple.jp\/pages\/combo500-off_202609\" style=\"display: block; text-decoration: none;\"\u003e\r\n      \u003cimg src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0680\/5454\/8709\/files\/zakkaCP202609_1200_720.jpg?v=1788617023\" alt=\"キャンペーン\" style=\"width:100%; height:auto; object-fit:contain; border-radius:8px; display:block; margin:0 auto;\" onerror=\"this.onerror=null;this.src='https:\/\/placehold.co\/600x300\/EFEFEF\/333333?text=画像読込エラー';\"\u003e\r\n    \u003c\/a\u003e\r\n    \r\n    \u003ca href=\"https:\/\/ec.sp-mapple.jp\/pages\/combo500-off_202609\" class=\"custom-popup-btn\"\u003e\r\n      詳しくはこちら ＞＞\r\n    \u003c\/a\u003e\r\n  \u003c\/div\u003e\r\n\u003c\/div\u003e\r\n\r\n\u003cstyle\u003e\n  #custom-popup-overlay { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.6); z-index: 9999; justify-content: center; align-items: center; padding: 20px; box-sizing: border-box; opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease; }\n  #custom-popup-overlay.is-visible { opacity: 1; visibility: visible; }\n  #custom-popup-content { background-color: #fff; padding: 30px 20px 20px 20px; border-radius: 12px; box-shadow: 0 10px 25px rgba(0,0,0,0.3); text-align: center; max-width: 600px; width: 100%; position: relative; box-sizing: border-box; transform: scale(0.95); transition: transform 0.3s ease; }\n  #custom-popup-overlay.is-visible #custom-popup-content { transform: scale(1); }\n  #custom-popup-close { position: absolute; top: 5px; right: 10px; font-size: 24px; font-weight: bold; color: #aaa; cursor: pointer; transition: color 0.2s; z-index: 10; }\n  #custom-popup-close:hover { color: #333; }\n  \n  .custom-popup-btn {\n    display: inline-block;\n    margin-top: 15px;\n    padding: 10px 24px;\n    background: linear-gradient(135deg, #e65c00, #ff8c00); \n    color: #ffffff !important;\n    text-decoration: none;\n    font-weight: bold;\n    font-size: 0.95em;\n    border-radius: 25px;\n    box-shadow: 0 4px 10px rgba(230, 92, 0, 0.3);\n    transition: transform 0.2s ease, box-shadow 0.2s ease;\n  }\n  .custom-popup-btn:hover {\n    transform: translateY(-2px);\n    box-shadow: 0 6px 15px rgba(230, 92, 0, 0.5);\n  }\n\u003c\/style\u003e\r\n\r\n\u003cscript\u003e\r\n    document.addEventListener('DOMContentLoaded', () =\u003e {\r\n        const popupOverlay = document.getElementById('custom-popup-overlay');\r\n        const closeBtn = document.getElementById('custom-popup-close');\r\n\r\n        \/\/ ポップアップを閉じる処理をまとめた関数（×ボタンと外側クリックの両方で使います）\r\n        const closePopup = () =\u003e {\r\n            popupOverlay.classList.remove('is-visible');\r\n            setTimeout(() =\u003e {\r\n                popupOverlay.style.display = 'none';\r\n            }, 300);\r\n        };\r\n\r\n        \/\/ 【条件1】キャンペーンページからの遷移か判定\r\n        \/\/ 修正点: ドメインが変わっても対応できるように、パス部分（\/pages\/combo500-off_202609）だけで判定します\r\n        const campaignPath = '\/pages\/combo500-off_202609';\r\n        const isFromCampaign = document.referrer.includes(campaignPath);\r\n\r\n        \/\/ 【条件2】過去にポップアップを表示したことがあるか判定\r\n        \/\/ 修正点: 保存時と取得時のキー名を統一します\r\n        const storageKey = 'popup_shown_flag_combo202609';\r\n        const hasSeenPopup = localStorage.getItem(storageKey);\r\n\r\n        \/\/ キャンペーン経由「ではなく」、かつ「初回訪問（記録がない）」場合のみ表示\r\n        if (!isFromCampaign \u0026\u0026 !hasSeenPopup) {\r\n            \/\/ まず要素をレンダリング対象にする\r\n            popupOverlay.style.display = 'flex';\r\n            \r\n            \/\/ CSSアニメーション用\r\n            setTimeout(() =\u003e {\r\n                popupOverlay.classList.add('is-visible');\r\n            }, 10);\r\n\r\n            \/\/ 表示したことを記録 (修正: 上で定義した同じキー名を使用)\r\n            localStorage.setItem(storageKey, 'true');\r\n        }\r\n\r\n        \/\/ ×ボタンが押された時の処理\r\n        closeBtn.addEventListener('click', closePopup);\r\n\r\n        \/\/ 【追加】バナーの外側（背景の黒い部分）をクリックした時に閉じる処理\r\n        popupOverlay.addEventListener('click', (event) =\u003e {\r\n            \/\/ クリックされた要素がオーバーレイ自身（バナーの中身ではない）場合のみ閉じる\r\n            if (event.target === popupOverlay) {\r\n                closePopup();\r\n            }\r\n        });\r\n    });\r\n\u003c\/script\u003e\r\n\u003c!-- 以上、ポップアップ終わり --\u003e\r\n\r\n\u003c!-- ===== CPブロック ===== --\u003e\r\n\r\n\r\n\u003ch2 style=\"text-align: center;\"\u003e\u003cspan style=\"color: rgb(0, 0, 0);\"\u003e～「武蔵」「相模」「信濃」……昔の呼び名で旅をする～\u003c\/span\u003e\u003c\/h2\u003e\n\u003ch4\u003e\u003cspan style=\"color: rgb(0, 0, 0);\"\u003e ツーリングマップルがおくる、地図好き・歴史好きのためのオリジナル手ぬぐい「旧国地図」です。\u003cimg alt=\"\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0680\/5454\/8709\/files\/TR000006_04.jpg?v=1782786206\"\u003e\u003c\/span\u003e\u003c\/h4\u003e\n\u003ch4\u003e\u003cspan style=\"color: rgb(0, 0, 0);\"\u003e日本地図の上に描かれているのは、現代の県境ではなく、明治時代以前に使われていた**「旧国名（令制国）」の境界線。「越後」「甲斐」「駿河」など、今でも特産品や地名に色濃く残る昔の呼び名を、日本古来の吉祥文様である「青海波（せいがいは）」に乗せてデザインしました。\u003cimg alt=\"\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0680\/5454\/8709\/files\/TR000006_05.jpg?v=1782786206\"\u003e\u003c\/span\u003e\u003c\/h4\u003e\n\u003ch4\u003e\u003cspan style=\"color: rgb(0, 0, 0);\"\u003e右下のロゴマークには「地図三昧・新発見」の文字。 「今走っているここは、昔で言うと〇〇国だな」と意識するだけで、いつもの風景が少し違って見えてくるはず。まさに温故知新、旅の奥行きを広げてくれる「読む手ぬぐい」です。\u003cimg alt=\"\" src=\"https:\/\/cdn.shopify.com\/s\/files\/1\/0680\/5454\/8709\/files\/TR000006_06.jpg?v=1782786206\"\u003e\u003c\/span\u003e\u003c\/h4\u003e\n\u003ch4\u003e\n\u003cspan style=\"color: rgb(0, 0, 0);\"\u003e吸水性が良く、乾きやすい綿100％の日本製。旅のお守りとして、ヘルメットの下に忍ばせたり、タペストリーとしてお部屋に飾ったりしてお楽しみください。\u003c\/span\u003e\u003cbr\u003e\n\u003c\/h4\u003e\n\u003ctable style=\"font-family: -apple-system, BlinkMacSystemFont, 'San Francisco', 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif; font-size: 0.87rem; height: 359px; width: 99.679%;\" width=\"100%\"\u003e\n\u003ctbody\u003e\n\u003ctr style=\"height: 375.8px;\"\u003e\n\u003ctd style=\"height: 375.8px; width: 100%;\"\u003e\n\u003ch4 style=\"text-align: left;\"\u003e\n\u003cspan style=\"color: rgb(0, 0, 0);\"\u003e■デザイン：旧国地図（青海波背景） \u003c\/span\u003e\u003cbr\u003e\u003cspan style=\"color: rgb(0, 0, 0);\"\u003e■素材：綿100%（日本製）\u003c\/span\u003e\n\u003c\/h4\u003e\n\u003ch4\u003e\n\u003cspan style=\"color: rgb(0, 0, 0);\"\u003e【実寸サイズ（平置き）】\u003c\/span\u003e\u003cbr\u003e\u003cspan style=\"color: rgb(0, 0, 0);\"\u003e89cm×36cm\u003c\/span\u003e\n\u003c\/h4\u003e\n\u003cp\u003e \u003c\/p\u003e\n\u003ch4\u003e\u003cspan style=\"color: rgb(0, 0, 0);\"\u003e※縫製商品のため、数センチの誤差が生じる場合がございます。\u003c\/span\u003e\u003c\/h4\u003e\n\u003c\/td\u003e\n\u003c\/tr\u003e\n\u003c\/tbody\u003e\n\u003c\/table\u003e\n\u003cp\u003e\u003cbr\u003e\u003c\/p\u003e\n\u003cp\u003e \u003c\/p\u003e","brand":"W-TRMG","offers":[{"title":"Default Title","offer_id":49912858804453,"sku":"TR000062","price":1200.0,"currency_code":"JPY","in_stock":true}],"thumbnail_url":"\/\/cdn.shopify.com\/s\/files\/1\/0680\/5454\/8709\/files\/TR000006_04.jpg?v=1782786206","url":"https:\/\/ec.sp-mapple.jp\/products\/tr000062","provider":"昭文社オンラインストア","version":"1.0","type":"link"}