{"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":"\u30de\u30b9\u30bf\u30fc\u30d5\u30a1\u30a4\u30eb\u306e\u63d0\u51fa\u3067\u72ec\u81ea\u88fd\u54c1\u30c7\u30fc\u30bf\u3092\u4fdd\u8b77\u3057\u307e\u3057\u3087\u3046","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"xpcxBUCTf2\"><a href=\"https:\/\/legacy.registrarcorp.com\/jp\/master-files\/\">\u30de\u30b9\u30bf\u30fc\u30d5\u30a1\u30a4\u30eb\u306e\u63d0\u51fa\u3067\u72ec\u81ea\u88fd\u54c1\u30c7\u30fc\u30bf\u3092\u4fdd\u8b77\u3057\u307e\u3057\u3087\u3046<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/legacy.registrarcorp.com\/jp\/master-files\/embed\/#?secret=xpcxBUCTf2\" width=\"600\" height=\"338\" title=\"&#8220;\u30de\u30b9\u30bf\u30fc\u30d5\u30a1\u30a4\u30eb\u306e\u63d0\u51fa\u3067\u72ec\u81ea\u88fd\u54c1\u30c7\u30fc\u30bf\u3092\u4fdd\u8b77\u3057\u307e\u3057\u3087\u3046&#8221; &#8212; Registrar\" data-secret=\"xpcxBUCTf2\" 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;sectionHero&#8221;][vc_row][vc_column][vc_row_inner el_class=&#8221;tile-box&#8221;][vc_column_inner][vc_column_text] \u30de\u30b9\u30bf\u30fc\u30d5\u30a1\u30a4\u30eb\u306e\u63d0\u51fa\u3067\u72ec\u81ea\u88fd\u54c1\u30c7\u30fc\u30bf\u3092\u4fdd\u8b77\u3057\u307e\u3057\u3087\u3046 [\/vc_column_text][vc_single_image image=&#8221;49570&#8243;][vc_column_text] \u30de\u30b9\u30bf\u30fc\u30d5\u30a1\u30a4\u30eb\u306f\u3001\u7c73\u56fd\u98df\u54c1\u533b\u85ac\u54c1\u5c40\uff08FDA\uff09\u3001\u30ab\u30ca\u30c0\u4fdd\u5065\u7701\u3001\u4e2d\u83ef\u4eba\u6c11\u5171\u548c\u56fd\u56fd\u5bb6\u98df\u54c1\u85ac\u54c1\u76e3\u7763\u7ba1\u7406\u5c40\uff08NMPA\uff09\u306a\u3069\u306e\u898f\u5236\u5f53\u5c40\u3078\u306e\u5c02\u6709\u88fd\u54c1\u30c7\u30fc\u30bf\u306e\u5b89\u5168\u3067\u6a5f\u5bc6\u6027\u306e\u9ad8\u3044\u63d0\u51fa\u3067\u3059\u3002 Registrar Corp\u306f\u85ac\u54c1\u3001\u533b\u7642\u6a5f\u5668\u3001\u304a\u3088\u3073\u7363\u533b\u7528\u306e\u30de\u30b9\u30bf\u30fc\u30d5\u30a1\u30a4\u30eb\u3092\u3001\u4e16\u754c\u306e18\u306e\u898f\u5236\u6a5f\u95a2\u306b\u4f5c\u6210\u3057\u3001\u63d0\u51fa\u3057\u307e\u3059\u3002 [\/vc_column_text][vc_raw_html]JTNDZGl2JTIwY2xhc3MlM0QlMjJidG4tY29udGFpbmVyJTIyJTNFJTBBJTNDYSUyMGNsYXNzJTNEJTIyYnRuJTIwYnRuLXJlZC13aGl0ZSUyMHNjcm9sbFRvRm9ybSUyMiUyMGhyZWYlM0QlMjIlMjMlMjIlM0UlRTUlQjAlODIlRTklOTYlODAlRTUlQUUlQjYlRTMlODElQUUlRTYlOTQlQUYlRTYlOEYlQjQlRTMlODIlOTIlRTUlOEYlOTclRTMlODElOTElRTMlODIlOEIlM0MlMkZhJTNFJTBBJTNDJTJGZGl2JTNF[\/vc_raw_html][\/vc_column_inner][\/vc_row_inner][\/vc_column][\/vc_row][\/vc_section][vc_section el_id=&#8221;sectionOverview&#8221;][vc_row el_id=&#8221;whySubmit&#8221;][vc_column][vc_column_text] \u30de\u30b9\u30bf\u30fc\u30d5\u30a1\u30a4\u30eb\u3068\u306f\u4f55\uff1f \u898f\u5236\u5f53\u5c40\u3078\u306e\u7279\u5b9a\u306e\u85ac\u54c1\u304a\u3088\u3073\u533b\u7642\u6a5f\u5668\u306e\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u306e\u4e00\u90e8\u3068\u3057\u3066\u3001\u4f01\u696d\u306f\u3001\u30d1\u30c3\u30b1\u30fc\u30b8\u3001\u6210\u5206\u3001\u307e\u305f\u306f\u4ed8\u5c5e\u54c1\u306a\u3069\u81ea\u793e\u306e\u88fd\u9020\u306b\u4f7f\u7528\u3055\u308c\u308b\u5225\u306e\u88fd\u54c1\u304b\u3089\u306e\u30c7\u30fc\u30bf\u3092\u53c2\u7167\u3059\u308b\u5fc5\u8981\u304c\u3042\u308b\u5834\u5408\u304c\u3042\u308a\u307e\u3059\u3002\u3053\u306e\u30c7\u30fc\u30bf\u306e\u6240\u6709\u8005\u306f\u3001\u30de\u30b9\u30bf\u30fc\u30d5\u30a1\u30a4\u30eb\u3092\u63d0\u51fa\u3057\u3001\u88fd\u54c1\u306b\u95a2\u3059\u308b\u5c02\u6709\u60c5\u5831\u307e\u305f\u306f\u6a5f\u5bc6\u60c5\u5831\u3092\u3001\u53c2\u7167\u3059\u308b\u5fc5\u8981\u306e\u3042\u308b\u5f53\u4e8b\u8005\u306b\u63d0\u4f9b\u3059\u308b\u3053\u3068\u306a\u304f\u3001\u898f\u5236\u5f53\u5c40\u306b\u958b\u793a\u3059\u308b\u9078\u629e\u304c\u3067\u304d\u307e\u3059\u3002 \u591a\u304f\u306e\u6a5f\u95a2\u306f\u3001\u96fb\u5b50\u5316\u30b3\u30e2\u30f3\u30fb\u30c6\u30af\u30cb\u30ab\u30eb\u30fb\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\uff08eCTD\uff09\u5f62\u5f0f\u3067\u30de\u30b9\u30bf\u30fc\u30d5\u30a1\u30a4\u30eb\u306e\u63d0\u51fa\u3092\u8981\u6c42\u3057\u307e\u3059\u3002[\/vc_column_text][\/vc_column][\/vc_row][vc_row el_id=&#8221;masterFileTypes&#8221;][vc_column][vc_row_inner][vc_column_inner][vc_column_text] \u30de\u30b9\u30bf\u30fc\u30d5\u30a1\u30a4\u30eb\u306e\u4e00\u822c\u7684\u306a\u7a2e\u985e [\/vc_column_text][\/vc_column_inner][\/vc_row_inner][vc_row_inner equal_height=&#8221;yes&#8221;][vc_column_inner offset=&#8221;vc_col-lg-4 vc_col-md-4&#8243;][vc_column_text el_class=&#8221;tile-box&#8221;] \u85ac\u54c1\u30de\u30b9\u30bf\u30fc\u30d5\u30a1\u30a4\u30eb\uff08DMF\uff09\u304a\u3088\u3073\u6709\u52b9\u6210\u5206\u30de\u30b9\u30bf\u30fc\u30d5\u30a1\u30a4\u30eb\uff08ASMF\uff09 \u30d2\u30c8\u3078\u306e\u85ac\u54c1\u304a\u3088\u3073\u6750\u6599\u95a2\u3059\u308b\u5c02\u6709\u60c5\u5831\u306e\u63d0\u51fa\u306b\u306f\u3001\u4ee5\u4e0b\u306e\u60c5\u5831\u3092\u542b\u3080\uff1a \u85ac\u54c1\u6750\u6599\u304a\u3088\u3073\u88fd\u54c1 \u5305\u88c5\u6750\u6599 \u6dfb\u52a0\u5264\u304a\u3088\u3073\u6e96\u5099\u6750\u6599 \u8a2d\u5099\u304a\u3088\u3073\u305d\u306e\u624b\u9806 \u4ed6 [\/vc_column_text][\/vc_column_inner][vc_column_inner offset=&#8221;vc_col-lg-4 vc_col-md-4&#8243;][vc_column_text el_class=&#8221;tile-box&#8221;] \u533b\u7642\u6a5f\u5668\u30de\u30b9\u30bf\u30fc\u30d5\u30a1\u30a4\u30eb\uff08MAF\uff09 \u533b\u7642\u6a5f\u5668\u306b\u95a2\u3059\u308b\u5c02\u6709\u60c5\u5831\u306e\u63d0\u51fa\u306b\u306f\u3001\u4ee5\u4e0b\u306e\u60c5\u5831\u3092\u542b\u3080\uff1a \u8a2d\u5099\u304a\u3088\u3073\u305d\u306e\u624b\u9806 \u6a5f\u5668\u306e\u7b56\u5b9a \u5305\u88c5\u6750\u6599 \u81e8\u5e8a\u304a\u3088\u3073\u975e\u81e8\u5e8a\u7814\u7a76\u30c7\u30fc\u30bf \u4ed6 [\/vc_column_text][\/vc_column_inner][vc_column_inner offset=&#8221;vc_col-lg-4 vc_col-md-4&#8243;][vc_column_text el_class=&#8221;tile-box&#8221;] \u7363\u533b\u7528\u30de\u30b9\u30bf\u30fc\u30d5\u30a1\u30a4\u30eb\uff08VMF\uff09 \u7363\u533b\u7528\u306e\u85ac\u54c1\u304a\u3088\u3073\u6750\u6599\u306b\u95a2\u3059\u308b\u5c02\u6709\u60c5\u5831\u306e\u63d0\u51fa\u306b\u306f\u3001\u4ee5\u4e0b\u306e\u60c5\u5831\u3092\u542b\u3080\uff1a \u5305\u88c5\u6750\u6599 \u6dfb\u52a0\u5264\u304a\u3088\u3073\u6e96\u5099\u6750\u6599 \u8a2d\u5099\u304a\u3088\u3073\u305d\u306e\u624b\u9806 \u691c\u67fb\u65b9\u6cd5 \u4ed6 [\/vc_column_text][\/vc_column_inner][\/vc_row_inner][\/vc_column][\/vc_row][\/vc_section][vc_section el_id=&#8221;sectionAgencies&#8221;][vc_row][vc_column][vc_row_inner][vc_column_inner][vc_column_text] RegistrarCorp\u306f\u30de\u30b9\u30bf\u30fc\u30d5\u30a1\u30a4\u30eb\u3092\u6b21\u306e\u6a5f\u95a2\u306b\u63d0\u51fa\u3057\u307e\u3059\u3002 [\/vc_column_text][\/vc_column_inner][\/vc_row_inner][\/vc_column][\/vc_row][vc_row][vc_column][vc_row_inner"}