{"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":"\u30dc\u30c8\u30eb\u5165\u308a\u98f2\u6599\u6c34\u95a2\u3059\u308b\u7c73\u56fd\u306e\u5dde\u56fa\u6709\u306e\u8981\u4ef6","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"nFoMIiQWXh\"><a href=\"https:\/\/legacy.registrarcorp.com\/jp\/fda-food\/state-bottled-water-requirements\/\">\u30dc\u30c8\u30eb\u5165\u308a\u98f2\u6599\u6c34\u95a2\u3059\u308b\u7c73\u56fd\u306e\u5dde\u56fa\u6709\u306e\u8981\u4ef6<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/legacy.registrarcorp.com\/jp\/fda-food\/state-bottled-water-requirements\/embed\/#?secret=nFoMIiQWXh\" width=\"600\" height=\"338\" title=\"&#8220;\u30dc\u30c8\u30eb\u5165\u308a\u98f2\u6599\u6c34\u95a2\u3059\u308b\u7c73\u56fd\u306e\u5dde\u56fa\u6709\u306e\u8981\u4ef6&#8221; &#8212; Registrar\" data-secret=\"nFoMIiQWXh\" 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_row][vc_column][vc_column_text] \u30dc\u30c8\u30eb\u5165\u308a\u98f2\u6599\u6c34\u95a2\u3059\u308b\u7c73\u56fd\u306e\u5dde\u56fa\u6709\u306e\u8981\u4ef6 [\/vc_column_text][vc_column_text] FDA\u306f\u7c73\u56fd\u3067\u8ca9\u58f2\u3055\u308c\u308b\u30dc\u30c8\u30eb\u5165\u308a\u98f2\u6599\u6c34\u3092\u898f\u5236\u3057\u3066\u3044\u307e\u3059\u304c\u3001\u591a\u304f\u306e\u5dde\u653f\u5e9c\u306f\u3001\u7ba1\u8f44\u533a\u57df\u5185\u3067\u8ca9\u58f2\u3055\u308c\u308b\u30dc\u30c8\u30eb\u5165\u98f2\u6599\u6c34\u306b\u8ffd\u52a0\u306e\u8981\u4ef6\u3092\u8ab2\u3057\u3066\u3044\u307e\u3059\u3002 \u305f\u3068\u3048\u3070\u3001\u4e00\u90e8\u306e\u5dde\u3067\u306f\u3001\u9023\u90a6\u898f\u5236\u3067\u6307\u5b9a\u3055\u308c\u3066\u3044\u306a\u3044\u30e9\u30a4\u30bb\u30f3\u30b9\u3001\u8a8d\u8a3c\u3001\u307e\u305f\u306f\u8ffd\u52a0\u306e\u901a\u9054\u30e9\u30d9\u30eb\u304c\u5fc5\u8981\u3067\u3059\u3002 \u3053\u308c\u3089\u306e\u8981\u4ef6\u306f\u3001\u898f\u5236\u9069\u7528\u5dde\u5185\u5916\u3069\u3061\u3089\u3067\u88fd\u9020\u3055\u308c\u305f\u304b\u306b\u4fc2\u308f\u3089\u305a\u95a2\u308f\u3089\u305a\u30dc\u30c8\u30eb\u5165\u308a\u98f2\u6599\u6c34\u4e00\u822c\u306b\u306b\u9069\u7528\u3055\u308c\u307e\u3059\u3002 \u5dde\u306e\u8981\u4ef6\u306f\u305d\u308c\u305e\u308c\u7570\u306a\u308b\u305f\u3081\u3001\u30dc\u30c8\u30eb\u5165\u308a\u306e\u6c34\u3092\u8907\u6570\u306e\u5834\u6240\u3067\u8ca9\u58f2\u3059\u308b\u3053\u3068\u306f\u7279\u306b\u96e3\u3057\u3044\u5834\u5408\u304c\u3042\u308a\u307e\u3059\u3002 Registrar Corp\u306f\u3001\u30dc\u30c8\u30eb\u30a6\u30a9\u30fc\u30bf\u30fc\u306e\u6cd5\u5f8b\u3092\u8aac\u660e\u3059\u308b\u30ec\u30dd\u30fc\u30c8\u3092\u5404\u5dde\u306b\u63d0\u4f9b\u3057\u3001\u8981\u4ef6\u3092\u7c21\u5358\u306b\u7406\u89e3\u3067\u304d\u308b\u3088\u3046\u306b\u3057\u307e\u3059\u3002 \u30ec\u30dd\u30fc\u30c8\uff08\u8907\u6570\u53ef\uff09\u306e\u3092\u30ec\u30dd\u30fc\u30c8\u3092\u53d7\u3051\u53d6\u308b\u306b\u306f\u3001\u4ee5\u4e0b\u306e\u30d5\u30a9\u30fc\u30e0\u306b\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\u3002 [\/vc_column_text][vc_raw_js]JTNDc2NyaXB0JTNFJTIwJTBBalF1ZXJ5JTI4ZG9jdW1lbnQlMjkucmVhZHklMjhmdW5jdGlvbiUyOCUyNCUyOSU3QiUwQSUwOSUwQSUwOXZhciUyMHVwZGF0ZVF1YW50aXR5JTIwJTNEJTIwZnVuY3Rpb24lMjglMjklN0IlMEElMDklMDlzZXRUaW1lb3V0JTI4ZnVuY3Rpb24lMjglMjklN0IlMEElMDklMDklMDklMjQlMjglMjcucHJvZHVjdC13YXRlci1ndWlkZSUyMC5naW5wdXRfcXVhbnRpdHklMjclMjkudmFsJTI4JTI0JTI4JTI3LnN0YXRlLXNlbGVjdCUyMHNlbGVjdCUyNyUyOS52YWwlMjglMjklMjAlM0YlMjAlMjQlMjglMjcuc3RhdGUtc2VsZWN0JTIwc2VsZWN0JTI3JTI5LnZhbCUyOCUyOS5sZW5ndGglMjAlM0ElMjAwJTI5JTNCJTBBJTA5JTA5JTA5JTI0JTI4JTI3LnByb2R1Y3Qtd2F0ZXItZ3VpZGUlMjAuZ2lucHV0X3F1YW50aXR5JTI3JTI5LnRyaWdnZXIlMjglMjdjaGFuZ2UlMjclMjkudHJpZ2dlciUyOCUyN2NoYW5nZSUyNyUyOSUzQiUwQSUwOSUwOSUwOSUyNCUyOCUyNy5wcm9kdWN0LXdhdGVyLWd1aWRlJTIwLmdpbnB1dF9xdWFudGl0eV9sYWJlbCUyNyUyOS50ZXh0JTI4JTI3UXVhbnRpdHklM0ElMjAlMjclMjAlMkIlMjAlMjQlMjglMjcucHJvZHVjdC13YXRlci1ndWlkZSUyMC5naW5wdXRfcXVhbnRpdHklMjclMjkudmFsJTI4JTI5JTI5LnNob3clMjglMjklM0IlMEElMDklMDklN0QlMkM1MDAlMjklM0IlMDklMDklMDklMDklMDklMDklMDklMDklMDklMDklMDklMDklMjAlMEElMDklMDklMEElMDklN0QlMEElMDklMEElMDklMjQlMjglMjcuc3RhdGUtc2VsZWN0JTI3JTI5Lm9uJTI4JTI3Y2hhbmdlJTI3JTJDZnVuY3Rpb24lMjglMjklN0IlMEElMDklMDl1cGRhdGVRdWFudGl0eSUyOCUyOSUzQiUwOSUwQSUwOSU3RCUyOSUzQiUwQSUwOSUwQSUwOSUyNCUyOGRvY3VtZW50JTI5Lm9uJTI4JTI3Z2Zvcm1fcG9zdF9yZW5kZXIlMjclMkNmdW5jdGlvbiUyOCUyOSU3QiUwQSUwOSUwOXVwZGF0ZVF1YW50aXR5JTI4JTI5JTNCJTBBJTA5JTdEJTI5JTNCJTBBJTA5JTBBJTdEJTI5JTNCJTBBJTBBJTNDJTJGc2NyaXB0JTNF[\/vc_raw_js][\/vc_column][\/vc_row]"}