{"version":"1.0","provider_name":"MYLAPS - Japan","provider_url":"https:\/\/mylaps.com\/jp","title":"\u30d6\u30e9\u30f3\u30c9\u30b9\u30ad\u30e3\u30f3","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"9tQwO7offV\"><a href=\"https:\/\/mylaps.com\/jp\/%e3%83%96%e3%83%a9%e3%83%b3%e3%83%89%e3%82%b9%e3%82%ad%e3%83%a3%e3%83%b3\/\">\u30d6\u30e9\u30f3\u30c9\u30b9\u30ad\u30e3\u30f3<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/mylaps.com\/jp\/%e3%83%96%e3%83%a9%e3%83%b3%e3%83%89%e3%82%b9%e3%82%ad%e3%83%a3%e3%83%b3\/embed\/#?secret=9tQwO7offV\" width=\"600\" height=\"338\" title=\"&#8220;\u30d6\u30e9\u30f3\u30c9\u30b9\u30ad\u30e3\u30f3&#8221; &#8212; MYLAPS - Japan\" data-secret=\"9tQwO7offV\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" class=\"wp-embedded-content\"><\/iframe><script type=\"text\/javascript\">\n\/* <![CDATA[ *\/\n\/**\n * WordPress inline HTML embed\n *\n * @since 4.4.0\n * @output wp-includes\/js\/wp-embed.js\n *\n * Single line comments should not be used since they will break\n * the script when inlined in get_post_embed_html(), specifically\n * when the comments are not stripped out due to SCRIPT_DEBUG\n * being turned on.\n *\/\n(function ( window, document ) {\n\t'use strict';\n\n\t\/* Abort for ancient browsers. *\/\n\tif ( ! document.querySelector || ! window.addEventListener || typeof URL === 'undefined' ) {\n\t\treturn;\n\t}\n\n\t\/** @namespace wp *\/\n\twindow.wp = window.wp || {};\n\n\t\/* Abort if script was already executed. *\/\n\tif ( !! window.wp.receiveEmbedMessage ) {\n\t\treturn;\n\t}\n\n\t\/**\n\t * Receive embed message.\n\t *\n\t * @param {MessageEvent} e\n\t *\/\n\twindow.wp.receiveEmbedMessage = function( e ) {\n\t\tvar data = e.data;\n\n\t\t\/* Verify shape of message. *\/\n\t\tif (\n\t\t\t! ( data || data.secret || data.message || data.value ) ||\n\t\t\t\/[^a-zA-Z0-9]\/.test( data.secret )\n\t\t) {\n\t\t\treturn;\n\t\t}\n\n\t\tvar iframes = document.querySelectorAll( 'iframe[data-secret=\"' + data.secret + '\"]' ),\n\t\t\tblockquotes = document.querySelectorAll( 'blockquote[data-secret=\"' + data.secret + '\"]' ),\n\t\t\tallowedProtocols = new RegExp( '^https?:$', 'i' ),\n\t\t\ti, source, height, sourceURL, targetURL;\n\n\t\tfor ( i = 0; i < blockquotes.length; i++ ) {\n\t\t\tblockquotes[ i ].style.display = 'none';\n\t\t}\n\n\t\tfor ( i = 0; i < iframes.length; i++ ) {\n\t\t\tsource = iframes[ i ];\n\n\t\t\tif ( e.source !== source.contentWindow ) {\n\t\t\t\tcontinue;\n\t\t\t}\n\n\t\t\tsource.removeAttribute( 'style' );\n\n\t\t\tif ( 'height' === data.message ) {\n\t\t\t\t\/* Resize the iframe on request. *\/\n\t\t\t\theight = parseInt( data.value, 10 );\n\t\t\t\tif ( height > 1000 ) {\n\t\t\t\t\theight = 1000;\n\t\t\t\t} else if ( ~~height < 200 ) {\n\t\t\t\t\theight = 200;\n\t\t\t\t}\n\n\t\t\t\tsource.height = height;\n\t\t\t} else if ( 'link' === data.message ) {\n\t\t\t\t\/* Link to a specific URL on request. *\/\n\t\t\t\tsourceURL = new URL( source.getAttribute( 'src' ) );\n\t\t\t\ttargetURL = new URL( data.value );\n\n\t\t\t\tif (\n\t\t\t\t\tallowedProtocols.test( targetURL.protocol ) &&\n\t\t\t\t\ttargetURL.host === sourceURL.host &&\n\t\t\t\t\tdocument.activeElement === source\n\t\t\t\t) {\n\t\t\t\t\twindow.top.location.href = data.value;\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t};\n\n\tfunction onLoad() {\n\t\tvar iframes = document.querySelectorAll( 'iframe.wp-embedded-content' ),\n\t\t\ti, source, secret;\n\n\t\tfor ( i = 0; i < iframes.length; i++ ) {\n\t\t\t\/** @var {IframeElement} *\/\n\t\t\tsource = iframes[ i ];\n\n\t\t\tsecret = source.getAttribute( 'data-secret' );\n\t\t\tif ( ! secret ) {\n\t\t\t\t\/* Add secret to iframe *\/\n\t\t\t\tsecret = Math.random().toString( 36 ).substring( 2, 12 );\n\t\t\t\tsource.src += '#?secret=' + secret;\n\t\t\t\tsource.setAttribute( 'data-secret', secret );\n\t\t\t}\n\n\t\t\t\/*\n\t\t\t * Let post embed window know that the parent is ready for receiving the height message, in case the iframe\n\t\t\t * loaded before wp-embed.js was loaded. When the ready message is received by the post embed window, the\n\t\t\t * window will then (re-)send the height message right away.\n\t\t\t *\/\n\t\t\tsource.contentWindow.postMessage( {\n\t\t\t\tmessage: 'ready',\n\t\t\t\tsecret: secret\n\t\t\t}, '*' );\n\t\t}\n\t}\n\n\twindow.addEventListener( 'message', window.wp.receiveEmbedMessage, false );\n\tdocument.addEventListener( 'DOMContentLoaded', onLoad, false );\n})( window, document );\n\/\/# sourceURL=https:\/\/mylaps.com\/jp\/wp-includes\/js\/wp-embed.js\n\/* ]]> *\/\n<\/script>\n","thumbnail_url":"https:\/\/mylaps.com\/wp-content\/uploads\/2025\/05\/241117-046-1-scaled.jpg","thumbnail_width":2560,"thumbnail_height":1707,"description":"BrandScan AI\u3068\u5199\u771f\/\u30d3\u30c7\u30aa\u30bb\u30c3\u30c8\u30a2\u30c3\u30d7\u3067\u30e9\u30f3\u30cb\u30f3\u30b0\u30ae\u30a2\u3068\u30b7\u30e5\u30fc\u30ba\u306b\u95a2\u3059\u308b\u6d1e\u5bdf\u3092\u5f97\u307e\u3057\u3087\u3046\u3002Brandscan by miro \u30d6\u30e9\u30f3\u30c9\u30a4\u30f3\u30b5\u30a4\u30c8\u3067\u30b9\u30dd\u30f3\u30b5\u30fc\u306e\u4fa1\u5024\u3092\u89e3\u304d\u653e\u3064 \u30a4\u30d9\u30f3\u30c8\u3067\u306e\u30ae\u30a2\u3084\u30b7\u30e5\u30fc\u30ba\u306e\u4f7f\u7528\u72b6\u6cc1\u306b\u3064\u3044\u3066\u3001\u30d6\u30e9\u30f3\u30c9\u3084\u30b9\u30dd\u30f3\u30b5\u30fc\u306b\u8cb4\u91cd\u306a\u30a4\u30f3\u30b5\u30a4\u30c8\u3092\u63d0\u4f9b\u3057\u307e\u3057\u3087\u3046\u3002\u9769\u65b0\u7684\u306a\u6280\u8853\u306b\u3088\u308a\u3001\u53c2\u52a0\u8005\u306e\u30d6\u30e9\u30f3\u30c9\u55dc\u597d\u3092\u6e2c\u5b9a\u3067\u304d\u308b\u3088\u3046\u306b\u306a\u308a\u3001\u30b9\u30dd\u30f3\u30b5\u30fc\u306e\u4fa1\u5024\u3084\u9867\u5ba2\u52d5\u5411\u306e\u8a55\u4fa1\u306b\u5f79\u7acb\u3061\u307e\u3059\u3002\u30a4\u30d9\u30f3\u30c8\u5168\u4f53\u306e\u30d6\u30e9\u30f3\u30c9\u55dc\u597d\u3092\u7406\u89e3\u3059\u308b \u30a4\u30d9\u30f3\u30c8\u30b9\u30dd\u30f3\u30b5\u30fc\u30b7\u30c3\u30d7\u306e\u30de\u30fc\u30b1\u30c6\u30a3\u30f3\u30b0ROI\u3092\u8a55\u4fa1\u3059\u308b \u6027\u5225\u3001\u5e74\u9f62\u3001\u30b4\u30fc\u30eb\u6642\u9593\u3001\u305d\u306e\u4ed6\u306e\u53c2\u52a0\u8005\u30c7\u30fc\u30bf\u306b\u3088\u308b\u30d6\u30e9\u30f3\u30c9\u9078\u629e\u306e\u5206\u6790 \u304a\u554f\u3044\u5408\u308f\u305b \u4ed5\u7d44\u307f\u306f\uff1fBrandScan\u306fMYLAPS\u306e\u30a4\u30d9\u30f3\u30c8\u30c7\u30fc\u30bf\u3068AI\u3092\u6d3b\u7528\u3057\u3001\u6d88\u8cbb\u8005\u306e\u30a4\u30f3\u30b5\u30a4\u30c8\u3092\u660e\u3089\u304b\u306b\u3057\u307e\u3059\uff1a\u30a4\u30d9\u30f3\u30c8\u30c7\u30fc\u30bf[...]"}