{"version":"1.0","provider_name":"Registrar","provider_url":"https:\/\/legacy.registrarcorp.com\/jp\/","author_name":"Mason Grandusky","author_url":"https:\/\/legacy.registrarcorp.com\/jp\/author\/mgrandusky\/","title":"\u6804\u990a\u88dc\u52a9\u98df\u54c1\u30e9\u30d9\u30eb\u306b\u95a2\u3059\u308b\u7c73\u56fdFDA\u6709\u5bb3\u4e8b\u8c61\u9023\u7d61\u5148\u8981\u4ef6","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"fA5QFxeqdr\"><a href=\"https:\/\/legacy.registrarcorp.com\/jp\/fda-supplements\/adverse-event\/\">\u6804\u990a\u88dc\u52a9\u98df\u54c1\u30e9\u30d9\u30eb\u306b\u95a2\u3059\u308b\u7c73\u56fdFDA\u6709\u5bb3\u4e8b\u8c61\u9023\u7d61\u5148\u8981\u4ef6<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/legacy.registrarcorp.com\/jp\/fda-supplements\/adverse-event\/embed\/#?secret=fA5QFxeqdr\" width=\"600\" height=\"338\" title=\"&#8220;\u6804\u990a\u88dc\u52a9\u98df\u54c1\u30e9\u30d9\u30eb\u306b\u95a2\u3059\u308b\u7c73\u56fdFDA\u6709\u5bb3\u4e8b\u8c61\u9023\u7d61\u5148\u8981\u4ef6&#8221; &#8212; Registrar\" data-secret=\"fA5QFxeqdr\" 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:\/\/legacy.registrarcorp.com\/wp-includes\/js\/wp-embed.js\n\/* ]]> *\/\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 width=&#8221;1\/2&#8243;][vc_column_text] \u6804\u990a\u88dc\u52a9\u98df\u54c1\u306e\u6709\u5bb3\u4e8b\u8c61\u9023\u7d61\u5148 [\/vc_column_text][vc_column_text]\u7c73\u56fd FDA \u306f\u3001\u307b\u3068\u3093\u3069\u306e\u6804\u990a\u88dc\u52a9\u98df\u54c1\u306e\u30e9\u30d9\u30eb\u306b\u3001\u6df1\u523b\u306a\u6709\u5bb3\u4e8b\u8c61\u306b\u95a2\u3059\u308b\u6d88\u8cbb\u8005\u5831\u544a\u3092\u53d7\u3051\u53d6\u308a\u6587\u66f8\u5316\u3067\u304d\u308b\u7c73\u56fd\u5185\u306e\u4e8b\u696d\u4f53\u306e\u9023\u7d61\u5148\u60c5\u5831\u3092\u542b\u3081\u308b\u3053\u3068\u3092\u8981\u6c42\u3057\u3066\u3044\u307e\u3059\u3002\u3053\u306e\u8981\u4ef6\u3092\u6e80\u305f\u3055\u306a\u3044\u88fd\u54c1\u306f\u3001FDA \u306b\u3088\u3063\u3066\u300c\u30d6\u30e9\u30f3\u30c9\u304c\u8aa4\u3063\u3066\u3044\u308b\u300d\u3068\u898b\u306a\u3055\u308c\u3001\u62d8\u7559\u304a\u3088\u3073\u62d2\u5426\u306e\u5bfe\u8c61\u3068\u306a\u308a\u307e\u3059\u3002 \u7c73\u56fd\u306e\u9023\u7d61\u5148\u3068\u3057\u3066\u3001Registrar Corp \u306f\u91cd\u5927\u306a\u6709\u5bb3\u4e8b\u8c61\u306b\u95a2\u3059\u308b\u6d88\u8cbb\u8005\u30ec\u30dd\u30fc\u30c8\u3092\u8fc5\u901f\u306b\u304a\u5ba2\u69d8\u306e\u30d3\u30b8\u30cd\u30b9\u306b\u8ee2\u9001\u3057\u307e\u3059\u3002\u8a73\u7d30\u306b\u3064\u3044\u3066\u306f\u3001\u4ee5\u4e0b\u306e\u30d5\u30a9\u30fc\u30e0\u306b\u8a18\u5165\u3057\u3066\u304f\u3060\u3055\u3044\u3002[\/vc_column_text][vc_column_text css=&#8221;.vc_custom_1682961484374{padding-top: 25px !important;}&#8221;] \u6804\u990a\u88dc\u52a9\u98df\u54c1\u306e\u91cd\u7be4\u306a\u6709\u5bb3\u4e8b\u8c61\u5831\u544a\u8981\u4ef6 \u6804\u990a\u88dc\u52a9\u98df\u54c1\u304a\u3088\u3073\u975e\u51e6\u65b9\u85ac\u6d88\u8cbb\u8005\u4fdd\u8b77\u6cd5\u306b\u306f\u3001\u307b\u3068\u3093\u3069\u306e\u6804\u990a\u88dc\u52a9\u98df\u54c1\u88fd\u54c1\u306b\u95a2\u3059\u308b\u6df1\u523b\u306a\u6709\u5bb3\u4e8b\u8c61\u306e\u5831\u544a\u306b\u95a2\u3059\u308b\u6b21\u306e\u8981\u4ef6\u304c\u542b\u307e\u308c\u3066\u3044\u307e\u3059\u3002 \u2022 \u30ec\u30dd\u30fc\u30c8\u306b\u306f\u3001\u5c0f\u58f2\u30d1\u30c3\u30b1\u30fc\u30b8\u4e0a\u307e\u305f\u306f\u30d1\u30c3\u30b1\u30fc\u30b8\u5185\u306e\u30e9\u30d9\u30eb\u306e\u30b3\u30d4\u30fc\u3092\u542b\u3081\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059 \u2022 \u62c5\u5f53\u8005\u306f\u3001\u6700\u521d\u306e\u30ec\u30dd\u30fc\u30c8\u3092\u53d7\u3051\u53d6\u3063\u3066\u304b\u3089 15 \u55b6\u696d\u65e5\u4ee5\u5185\u306b\u30ec\u30dd\u30fc\u30c8\u3092\u63d0\u51fa\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002 \u2022 \u91cd\u5927\u306a\u6709\u5bb3\u4e8b\u8c61\u306e\u5831\u544a\u306f\u3001MedWatch \u30d5\u30a9\u30fc\u30e0\u304b\u3089\u63d0\u51fa\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002\u5831\u544a\u66f8\u306f\u3001\u7d19\u307e\u305f\u306f\u96fb\u5b50\u7684\u306b\u63d0\u51fa\u3067\u304d\u307e\u3059 (\u305d\u308c\u305e\u308c Form FDA 3500A \u307e\u305f\u306f FDA Safety Reporting Portal)\u3002 [\/vc_column_text][\/vc_column][vc_column width=&#8221;1\/2&#8243;][vc_column_text][\/vc_column_text][\/vc_column][\/vc_row]"}