{"version":"1.0","provider_name":"Registrar","provider_url":"https:\/\/legacy.registrarcorp.com\/jp\/","author_name":"admin","author_url":"https:\/\/legacy.registrarcorp.com\/jp\/author\/registrar\/","title":"FDA\u30b3\u30f3\u30d7\u30e9\u30a4\u30a2\u30f3\u30b9\u30e2\u30cb\u30bf\u30fc","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"cTivZsqi7g\"><a href=\"https:\/\/legacy.registrarcorp.com\/jp\/compliance-monitor\/\">FDA\u30b3\u30f3\u30d7\u30e9\u30a4\u30a2\u30f3\u30b9\u30e2\u30cb\u30bf\u30fc<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/legacy.registrarcorp.com\/jp\/compliance-monitor\/embed\/#?secret=cTivZsqi7g\" width=\"600\" height=\"338\" title=\"&#8220;FDA\u30b3\u30f3\u30d7\u30e9\u30a4\u30a2\u30f3\u30b9\u30e2\u30cb\u30bf\u30fc&#8221; &#8212; Registrar\" data-secret=\"cTivZsqi7g\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\" class=\"wp-embedded-content\"><\/iframe><script>\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:\/\/legacy.registrarcorp.com\/wp-includes\/js\/wp-embed.js\n<\/script>\n","thumbnail_url":"https:\/\/legacy.registrarcorp.com\/wp-content\/uploads\/2019\/08\/press_release.jpg","thumbnail_width":1650,"thumbnail_height":500,"description":"[vc_section el_id=&#8221;landingPageHero&#8221; css=&#8221;.vc_custom_1586373300901{background-image: url(https:\/\/regstaging.wpengine.com\/wp-content\/uploads\/2019\/12\/headerImage.jpg?id=38597) !important;background-position: center !important;background-repeat: no-repeat !important;background-size: cover !important;}&#8221;][vc_row][vc_column width=&#8221;5\/12&#8243;][\/vc_column][vc_column width=&#8221;7\/12&#8243; el_id=&#8221;monitorVideoImg&#8221;][vc_column_text] \u30ec\u30b8\u30b9\u30c8\u30e9\u30fb\u30b3\u30fc\u30d7\u306f\u4f01\u696d\u306e\u7c73\u56fdFDA\u898f\u5236\u3078\u306e\u30b3\u30f3\u30d7\u30e9\u30a4\u30a2\u30f3\u30b9\u3092\u304a\u624b\u4f1d\u3044\u3044\u305f\u3057\u307e\u3059\u3002 \u30ec\u30b8\u30b9\u30c8\u30e9\u30fb\u30b3\u30fc\u30d7\u306f\u7c73\u56fdFDA\u3068\u306f\u63d0\u643a\u95a2\u4fc2\u306b\u3042\u308a\u307e\u305b\u3093 [\/vc_column_text][\/vc_column][\/vc_row][vc_row][vc_column][vc_raw_js]JTNDc2NyaXB0JTNFJTIwdmFyJTIwcSUyMCUzRCUyMHdpbmRvdy5sb2NhdGlvbi5ocmVmLnNwbGl0JTI4JTI3JTNGJTI3JTI5JTVCMSU1RCUzQiUwQXZhciUyMGluZHMlMjAlM0QlMjAlN0IlMjBtZCUzQSUyN21lZGljYWwlMjBkZXZpY2UlMjclMkMlMjBkcnVnJTNBJTI3ZHJ1ZyUyNyUyMCU3RCUwQWlmJTI4cSUyOSU3QiUwQSUwOXElMjAlM0QlMjBxLnNwbGl0JTI4JTI3JTI2JTI3JTI5JTNCJTBBJTA5cSUyMCUzRCUyMHEuZmlsdGVyJTI4ZnVuY3Rpb24lMjhjJTI5JTdCJTBBJTA5JTA5cmV0dXJuJTIwYy5pbmRleE9mJTI4JTI3aW5kdXN0cnklMjclMjklMjAlMjElM0QlM0QlMjAtMSUzQiUwQSUyMCUyMCUyMCUyMCU3RCUyOSUzQiUwQSUwOWlmJTI4cSU1QjAlNUQlMjklN0IlMEElMDklMDlxJTIwJTNEJTIwcSU1QjAlNUQuc3BsaXQlMjglMjclM0QlMjclMjklNUIxJTVEJTNCJTBBJTA5JTA5aWYlMjhpbmRzJTVCcSU1RCUyOSU3QiUwQSUyMCUyMCUyMCUyMCUyMCUyMCUyMCUyMCUwOWpRdWVyeSUyOCUyNy5oZXJvLXRleHQlMjBoMiUyNyUyOS50ZXh0JTI4alF1ZXJ5JTI4JTI3Lmhlcm8tdGV4dCUyMGgyJTI3JTI5LnRleHQlMjglMjkucmVwbGFjZSUyOCUyN3lvdXIlMjclMkMlMjd5b3VyJTIwJTI3JTIwJTJCJTIwaW5kcyU1QnElNUQlMjklMjklM0IlMEElMjAlMjAlMjAlMjAlMjAlMjAlMjAlMjAlN0QlMEElMjAlMjAlMjAlMjAlN0QlMEElN0QlM0MlMkZzY3JpcHQlM0U=[\/vc_raw_js][\/vc_column][\/vc_row][\/vc_section][vc_section el_id=&#8221;lpFeatures&#8221; css=&#8221;.vc_custom_1546886921171{padding-top: 50px !important;padding-bottom: 50px !important;background-color: #d5dee4 !important;}&#8221;][vc_row][vc_column width=&#8221;1\/3&#8243;][vc_column_text css=&#8221;.vc_custom_1594671782604{padding-top: 50px !important;}&#8221;] FDA\u30b3\u30f3\u30d7\u30e9\u30a4\u30a2\u30f3\u30b9\u30e2\u30cb\u30bf\u30fc\u3092\u3054\u7d39\u4ecb\u3044\u305f\u3057\u307e\u3059 \u3088\u308a\u65e9\u304f\u77e5\u308a\u3001\u3088\u308a\u901f\u304f\u884c\u52d5\u3057\u3001\u30ea\u30b9\u30af\u3092\u8efd\u6e1b\u3057\u307e\u3057\u3087\u3046\u3002 \u898f\u5236\u30b3\u30f3\u30d7\u30e9\u30a4\u30a2\u30f3\u30b9\u3068\u54c1\u8cea\u4fdd\u8a3c\u3092\u7c21\u5358\u306b [\/vc_column_text][\/vc_column][vc_column width=&#8221;2\/3&#8243; css=&#8221;.vc_custom_1546624773513{background-color: #ffffff !important;}&#8221; el_class=&#8221;features-content-block&#8221;][vc_row_inner equal_height=&#8221;yes&#8221;][vc_column_inner el_class=&#8221;features-content&#8221; width=&#8221;1\/2&#8243; css=&#8221;.vc_custom_1546879544703{padding-bottom: 50px !important;}&#8221;][vc_column_text el_class=&#8221;features-text&#8221;] \u30b5\u30d7\u30e9\u30a4\u30c1\u30a7\u30fc\u30f3\u306e\u7ba1\u7406 \u7d71\u4e00\u3055\u308c\u305f\u30a4\u30f3\u30bf\u30fc\u30d5\u30a7\u30fc\u30b9\u3067\u30b5\u30d7\u30e9\u30a4\u30e4\u30fc\u3092\u8ffd\u8de1\u304a\u3088\u3073\u627f\u8a8d\u3057\u307e\u3059\u3002 [\/vc_column_text][\/vc_column_inner][vc_column_inner el_class=&#8221;features-content&#8221; width=&#8221;1\/2&#8243; css=&#8221;.vc_custom_1546879548701{padding-bottom: 50px !important;}&#8221;][vc_column_text el_class=&#8221;features-text&#8221;] \u81ea\u52d5\u30b5\u30d7\u30e9\u30a4\u30e4\u30fc\u30c1\u30a7\u30c3\u30af"}