{"version":"1.0","provider_name":"CELLINK Japan","provider_url":"https:\/\/www.cellink.com\/jp","author_name":"Miyuki","author_url":"https:\/\/www.cellink.com\/jp\/author\/miyuki\/","title":"\u5065\u5eb7\u7684\u306a\u672a\u6765\u3092\u30d0\u30a4\u30aa\u30d7\u30ea\u30f3\u30c8","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"Pt2fJgqJD2\"><a href=\"https:\/\/www.cellink.com\/jp\/elementor-296\/\">\u5065\u5eb7\u7684\u306a\u672a\u6765\u3092\u30d0\u30a4\u30aa\u30d7\u30ea\u30f3\u30c8<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/www.cellink.com\/jp\/elementor-296\/embed\/#?secret=Pt2fJgqJD2\" width=\"600\" height=\"338\" title=\"&#8220;\u5065\u5eb7\u7684\u306a\u672a\u6765\u3092\u30d0\u30a4\u30aa\u30d7\u30ea\u30f3\u30c8&#8221; &#8212; CELLINK Japan\" data-secret=\"Pt2fJgqJD2\" 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:\/\/www.cellink.com\/jp\/wp-includes\/js\/wp-embed.js\n<\/script>\n","description":"\u3088\u308a\u5065\u5eb7\u7684\u306a\u672a\u6765\u3092\u30d0\u30a4\u30aa\u30d7\u30ea\u30f3\u30c6\u30a3\u30f3\u30b0 3D\u30d0\u30a4\u30aa\u30d7\u30ea\u30f3\u30c6\u30a3\u30f3\u30b0\u306f\u3001\u9593\u9055\u3044\u306a\u304f\u30a8\u30ad\u30b5\u30a4\u30c6\u30a3\u30f3\u30b0\u306a\u5206\u91ce\u3067\u3042\u308a\u3001\u6d3b\u6cc1\u3092\u5448\u3057\u3066\u3044\u307e\u3059\u3002\u6570\u5341\u5e74\u306b\u308f\u305f\u308b\u7814\u7a76\u306e\u5f37\u56fa\u306a\u57fa\u76e4\u306b\u652f\u3048\u3089\u308c\u3001\u6d3b\u6c17\u306b\u6e80\u3061\u3001\u6c7a\u65ad\u529b\u306b\u5bcc\u3093\u3067\u3044\u307e\u3059\u3002\u30d0\u30a4\u30aa\u30d7\u30ea\u30f3\u30c8\u306b\u3088\u308b\u4eba\u5de5\u81d3\u5668\u306e\u30d2\u30c8\u3078\u306e\u79fb\u690d\u306f\u307e\u3060\u5b9f\u65bd\u3055\u308c\u3066\u306f\u3044\u307e\u305b\u3093\u304c\u3001\u8907\u96d1\u306a\u69cb\u9020\u3092\u6301\u3064\u30d0\u30a4\u30aa\u30d7\u30ea\u30f3\u30c8\u306b\u3088\u308b\u30d2\u30c8\u306e\u7d44\u7e54\u30d1\u30bf\u30fc\u30f3\u304c\u3053\u306e\u5206\u91ce\u3092\u5927\u304d\u304f\u52a0\u901f\u3057\u3066\u304a\u308a\u3001\u3042\u3089\u3086\u308b\u56fd\u306e\u7814\u7a76\u6240\u306b\u304a\u3044\u3066\u958b\u767a\u304c\u9032\u3081\u3089\u308c\u3066\u3044\u307e\u3059\u3002\u82f1\u56fd\u30cb\u30e5\u30fc\u30ab\u30c3\u30b9\u30eb\u5927\u5b66\u3067\u306f\u3001\u6bd4\u8f03\u7684\u6700\u8fd1\u3001\u30d0\u30a4\u30aa\u30d7\u30ea\u30f3\u30bf\u3068\u30d0\u30a4\u30aa\u30a4\u30f3\u30af\u3092\u7528\u3044\u3066\u3001\u30d2\u30c8\u306e\u89d2\u819c\u30923D\u30d7\u30ea\u30f3\u30c8\u3059\u308b\u3053\u3068\u306b\u6210\u529f\u3057\u307e\u3057\u305f\u3002\u60a3\u8005\u306e\u76ee\u3092\u30b9\u30ad\u30e3\u30f3\u3057\u3001\u30c7\u30fc\u30bf\u30923D\u30d7\u30ea\u30f3\u30c8\u7528\u306e\u30d5\u30a1\u30a4\u30eb\u306b\u5909\u63db\u5f8c\u3001\u30a2\u30eb\u30ae\u30f3\u9178\u3068\u30b3\u30e9\u30fc\u30b2\u30f3\u3092\u30d9\u30fc\u30b9\u306b\u3057\u305f\u9069\u5207\u306a\u30d0\u30a4\u30aa\u30a4\u30f3\u30af\u3068\u5e79\u7d30\u80de\u3092\u7528\u610f\u3057\u300110\u5206\u9593\u30d7\u30ea\u30f3\u30c8\u3059\u308b\u3060\u3051\u3067\u60a3\u8005\u56fa\u6709\u306e\u89d2\u819c\u3092\u4f5c\u308b\u3053\u3068\u304c\u3067\u304d\u305f\u306e\u3067\u3059\u3002 \u3082\u3061\u308d\u3093\u3001\u305d\u308c\u307b\u3069\u5358\u7d14\u306a\u3053\u3068\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002\u3057\u304b\u3057\u3001\u305d\u308c\u304c\u73fe\u5728\u8d77\u3053\u3063\u3066\u3044\u308b\u3053\u3068\u3067\u3042\u308a\u3001\u305d\u306e\u5148\u306b\u3082\u3055\u3089\u306b\u591a\u304f\u306e\u3053\u3068\u304c\u5f85\u3063\u3066\u3044\u308b\u3068\u601d\u3046\u3068\u3001\u80f8\u304c\u9ad8\u9cf4\u308a\u307e\u3059\u3002\u30d0\u30a4\u30aa\u30d7\u30ea\u30f3\u30c6\u30a3\u30f3\u30b0\u304c\u533b\u7642\u306e\u672a\u6765\u306b\u5411\u3051\u3066\u91cd\u8981\u306a\u5f79\u5272\u3092\u679c\u305f\u3057\u7d9a\u3051\u308b\u30013\u3064\u306e\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u304c\u3042\u308a\u307e\u3059\u3002 1. \u60a3\u8005\u56fa\u6709\u306e3D\u30d7\u30ea\u30f3\u30c8\u3055\u308c\u305f\u30d2\u30c8\u7d44\u7e54 \u30cb\u30e5\u30fc\u30ab\u30c3\u30b9\u30eb\u5927\u5b66\u306e\u6587\u732e\u306b\u3088\u308b\u3068\u3001\u4e16\u754c\u3067\u306f\u7d041,000\u4e07\u4eba\u304c\u611f\u67d3\u75c7\u306b\u3088\u3063\u3066\u5f15\u304d\u8d77\u3053\u3055\u308c\u308b\u89d2\u819c\u969c\u5bb3\u306e\u624b\u8853\u3092\u5fc5\u8981\u3068\u3057\u3066\u304a\u308a\u3001\u3055\u3089\u306b\u89d2\u819c\u5931\u660e\u306b\u3064\u306a\u304c\u308b\u75c5\u6c17\u3001\u3042\u308b\u3044\u306f\u30b1\u30ac\uff08\u706b\u50b7\u30fb\u88c2\u50b7\u30fb\u64e6\u904e\u50b7\u306a\u3069\uff09\u306b\u3088\u308a\u6cbb\u7642\u304c\u5fc5\u8981\u306a\u60a3\u8005\u304c500\u4e07\u4eba\u3044\u307e\u3059\u3002 \u79fb\u690d\u7528\u306e\u89d2\u819c\u304c\u8457\u3057\u304f\u4e0d\u8db3\u3057\u3066\u3044\u308b\u3053\u3068\u306f\u5468\u77e5\u306e\u4e8b\u5b9f\u3067\u3059\u3002\u73fe\u5728\u3001\u65b0\u3057\u3044\u89d2\u819c\u304c\u5fc5\u8981\u306a\u60a3\u8005\u306e\u3046\u3061\u3001\u53d7\u3051\u53d6\u308b\u3053\u3068\u304c\u3067\u304d\u308b\u306e\u306f70\u4eba\u306e\u3046\u3061\u3001\u305f\u3063\u305f1\u4eba\u3067\u3059\u3002\u30d0\u30a4\u30aa\u30d7\u30ea\u30f3\u30c6\u30a3\u30f3\u30b0\u306f\u3053\u306e\u8ab2\u984c\u306b\u5bfe\u5fdc\u3057\u3001\u30c9\u30ca\u30fc\u4e0d\u8db3\u306b\u3088\u308b\u9577\u304f\u82e6\u3057\u3044\u4e0d\u78ba\u5b9f\u6027\u3092\u56de\u907f\u3067\u304d\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059\u3002\u3055\u3089\u306b\u3001James T.Rosenbaum\u6c0f\u3068Phoebe Lin\u6c0f\u306b\u3088\u308b\u6700\u8fd1\u306e\u8a18\u4e8b\u300eImmunological Ocular Disease\u300f\u3067\u3001\u8457\u8005\u306f\u79fb\u690d\u5931\u6557\u306e\u6700\u3082\u4e00\u822c\u7684\u306a\u539f\u56e0\u306f\u514d\u75ab\u5b66\u7684\u62d2\u7d76\u3067\u3042\u308b\u3068\u8a18\u8ff0\u3057\u3066\u3044\u307e\u3059\u3002 \u3067\u306f\u30d0\u30a4\u30aa\u30d7\u30ea\u30f3\u30c6\u30a3\u30f3\u30b0\u306e\u672a\u6765\u3068\u306f\uff1f\u60a3\u8005\u81ea\u8eab\u306e\u7d30\u80de\u3067\u57f9\u990a\u3057\u305f\u30d0\u30a4\u30aa\u30a4\u30f3\u30af\u3092\u4f7f\u3063\u305f\u7d44\u7e54\u306f\u3001\u60a3\u8005\u306e\u4f53\u5185\u306b\u53d7\u3051\u5165\u308c\u3089\u308c\u308b\u53ef\u80fd\u6027\u304c\u9ad8\u3044\u305f\u3081\u3001\u514d\u75ab\u7cfb\u306b\u3088\u308b\u62d2\u7d76\u53cd\u5fdc\u306e\u30ea\u30b9\u30af\u3092\u8efd\u6e1b\u3067\u304d\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059\u3002\u305d\u306e\u7d50\u679c\u3001\u8853\u5f8c\u306e\u514d\u75ab\u6291\u5236\u5264\u306e\u30b3\u30b9\u30c8\u3092\u524a\u6e1b\u3057\u3001\u518d\u624b\u8853\u306e\u5fc5\u8981\u6027\u3092\u6e1b\u3089\u3059\u3053\u3068\u304c\u3067\u304d\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059\u3002 2. \u88fd\u85ac\u7814\u7a76\u7528\u30d0\u30a4\u30aa\u30a4\u30f3\u30af \u4eba\u4f53\u306b\u4f7f\u7528\u3059\u308b\u3053\u3068\u3092\u76ee\u7684\u3068\u3057\u305f\u533b\u85ac\u54c1\u3084\u85ac\u5264\u3092\u958b\u767a\u3059\u308b\u306b\u306f\u30017\uff5e10\u5e74\u3068\u3044\u3046\u9577\u3044\u5e74\u6708\u304c\u5fc5\u8981\u3068\u3055\u308c\u3001\u304a\u3088\u305d26\u5104\u7c73\u30c9\u30eb\uff083,378\u5104\u5186\uff09\u304b\u304b\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059\u3002\u901a\u5e38\u3001\u6700\u521d\u306e2\u5e74\u9593\u3001\u958b\u767a\u306fin vitro\u3067\u884c\u308f\u308c\u307e\u3059\u3002\u6b21\u306e2\uff5e3\u5e74\u306f\u3001\u52d5\u7269\u5b9f\u9a13\u306b\u30b9\u30c6\u30fc\u30b8\u304c\u79fb\u884c\u3055\u308c\u307e\u3059\u3002 \u6700\u5f8c\u306b\u3001\u3059\u3079\u3066\u304c\u8a08\u753b\u3069\u304a\u308a\u306b\u9032\u3093\u3060\u5834\u5408\u3001\u30d2\u30c8\u3067\u306e\u8a66\u9a13\uff08\u81e8\u5e8a\u8a66\u9a13\uff09\u304c\u958b\u59cb\u3055\u308c\u307e\u3059\u304c\u30015\u5e74\u307b\u3069\u304b\u304b\u308a\u307e\u3059\u3002\u591a\u304f\u306e\u5834\u5408\u3001\u3053\u306e\u958b\u767a\u306e\u6700\u7d42\u6bb5\u968e\u3067\u3001\u6cbb\u9a13\u304c\u6210\u529f\u3057\u305f\u304b\u304c\u5224\u65ad\u3055\u308c\u307e\u3059\u304c\u3001\u5e02\u5834\u306b\u51fa\u308b\u3053\u3068\u304c\u3067\u304d\u308b\u306e\u306f9\u3064\u306e\u85ac\u5264\u306e\u3046\u30611\u3064\u3068\u8a00\u308f\u308c\u3066\u3044\u307e\u3059\u3002\u53ef\u80fd\u6027\u304c\u4f4e\u304f\u3001\u30b3\u30b9\u30c8\u3082\u304b\u304b\u308a\u307e\u3059\u3002\u30d0\u30a4\u30aa\u30d7\u30ea\u30f3\u30c6\u30a3\u30f3\u30b0\u306f\u3053\u306e\u72b6\u6cc1\u306b\u9769\u65b0\u3092\u3082\u305f\u3089\u305d\u3046\u3068\u3057\u3066\u3044\u307e\u3059\u3002 \u5275\u9020\u3057\u3066\u307f\u3066\u304f\u3060\u3055\u3044\u3002\u30d2\u30c8\u3092\u4f7f\u308f\u306a\u3044\u3001\u30d2\u30c8\u3067\u306e\u8a66\u9a13\u3002\u3088\u308a\u73fe\u5b9f\u7684\u306a\u30e2\u30c7\u30eb\u3067\u3001\u3088\u308a\u4f4e\u30b3\u30b9\u30c8\u306b\u3001\u3055\u3089\u306b\u77ed\u6642\u9593\u3067\u591a\u91cf\u306e\u85ac\u5264\u3092\u8a66\u3059\u3053\u3068\u304c\u3067\u304d\u308b\u53ef\u80fd\u6027\u3002\u305d\u3093\u306a\u672a\u6765\u304c\u6765\u308b\u304b\u3082\u3057\u308c\u307e\u305b\u3093\u3002\u958b\u767a\u4e88\u7b97\u3001\u30d7\u30ed\u30c8\u30b3\u30eb\u3001\u30ef\u30fc\u30af\u30d5\u30ed\u30fc\u306b\u3069\u306e\u3088\u3046\u306a\u5f71\u97ff\u304c\u3042\u308b\u306e\u3067\u3057\u3087\u3046\u304b\u3002 \u30b5\u30d7\u30e9\u30a4\u30c1\u30a7\u30fc\u30f3\u306e\u3055\u3089\u306b\u5148\u3001\u30d0\u30a4\u30aa\u30d7\u30ea\u30f3\u30c6\u30a3\u30f3\u30b0\u306e\u3088\u3046\u306a\u88dc\u5b8c\u7684\u306a\u6280\u8853\u306f\u3001\u4eba\u985e\u306b\u3069\u306e\u3088\u3046\u306a\u5f71\u97ff\u3092\u4e0e\u3048\u308b\u306e\u3067\u3057\u3087\u3046\u304b\u3002\u30d2\u30c8\u306e\u7d30\u80de\u3092\u7523\u696d\u898f\u6a21\u3067\u88fd\u9020\u3001\u3064\u307e\u308a\u30d0\u30a4\u30aa\u30d7\u30ea\u30f3\u30c8\u3059\u308b\u3053\u3068\u306f\u3001\u30b3\u30b9\u30c8\u3084\u4fa1\u683c\u306e\u4f4e\u6e1b\u3001\u305d\u3057\u3066\u9577\u671f\u7684\u306b\u306f\u3001\u73fe\u5728\u591a\u304f\u306e\u4eba\u304c\u624b\u306b\u5165\u308c\u308b\u3053\u3068\u304c\u3067\u304d\u306a\u3044\u85ac\u3084\u533b\u7642\u3078\u306e\u30a2\u30af\u30bb\u30b9\u306b\u591a\u5927\u306a\u5f71\u97ff\u3092\u4e0e\u3048\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059\u3002 3. \u30d0\u30a4\u30aa\u30a4\u30f3\u30af\u306b\u3088\u3063\u3066\u5f37\u5316\u3055\u308c\u308b\u7d30\u80de\u57f9\u990a \u7d30\u80de\u3092\u3001\u672c\u6765\u306e\u74b0\u5883\u306e\u5916\u3067\u30b3\u30f3\u30c8\u30ed\u30fc\u30eb\u3055\u308c\u305f\u6761\u4ef6\u3067\u6210\u9577\u3055\u305b\u308b\u6280\u8853\u306f\u30011930\u5e74\u4ee3\u4ee5\u6765\u9032\u5316\u3057\u3066\u304d\u307e\u3057\u305f\u3002\u30ef\u30af\u30c1\u30f3\u3001\u304c\u3093\u7814\u7a76\u3001\u30bf\u30f3\u30d1\u30af\u8cea\u6cbb\u7642\u85ac\u306a\u3069\u3001\u7d30\u80de\u57f9\u990a\u30b7\u30b9\u30c6\u30e0\u306f\u7d30\u80de\u751f\u7269\u5b66\u306e\u7814\u7a76\u306b\u6b20\u304b\u305b\u306a\u3044\u3082\u306e\u3067\u3059\u3002\u3055\u3089\u306b\u30d0\u30a4\u30aa\u30a4\u30f3\u30af\u3092\u52a0\u3048\u308b\u3053\u3068\u3067\u3001\u7b4b\u8089\u3084\u80ba\u306e\u7d44\u7e54\u306a\u3069\u3001\u7279\u5b9a\u306e\u7528\u9014\u306b\u5fc5\u8981\u306a\u72ec\u81ea\u306e\u88fd\u5264\u3092\u4f5c\u308b\u3053\u3068\u304c\u5bb9\u6613\u306b\u306a\u308a\u307e\u3059\u3002\u751f\u304d\u3066\u3044\u308b\u7d30\u80de\u3092\u652f\u3048\u3001\u63a5\u7740\u3001\u5897\u6b96\u3001\u5206\u5316\u3092\u4fc3\u9032\u3059\u308b\u80fd\u529b\u3092\u6301\u3061\u3001\u7d30\u80de\u3092\u89b3\u5bdf\u30fb\u5206\u6790\u3067\u304d\u308b\u6761\u4ef6\u3092\u5727\u5012\u7684\u306b\u5e83\u3052\u3066\u3044\u307e\u3059\u3002 \u672a\u6765\u306e\u7d30\u80de\u57f9\u990a\u3068\u306f\uff1f\u30d0\u30a4\u30aa\u30a4\u30f3\u30af\u3084\u30d0\u30a4\u30aa\u30d7\u30ea\u30f3\u30bf\u3092\u4f7f\u3063\u305f\u81ea\u52d53D\u30d7\u30ea\u30f3\u30c8\u306b\u3088\u308a\u3001\u7814\u7a76\u8005\u306f\u3053\u308c\u307e\u3067\u3088\u308a\u3082\u306f\u308b\u304b\u306b\u5927\u304d\u306a\u30b9\u30b1\u30fc\u30eb\u3067\u81d3\u5668\u3084\u7d44\u7e54\u30e2\u30c7\u30eb\u306e\u7814\u7a76\u304c\u53ef\u80fd\u306b\u306a\u308b\u3067\u3057\u3087\u3046\u3002\u79d1\u5b66\u8005\u3001\u7814\u7a76\u8005\u3001\u5b66\u751f\u306a\u3069\u7814\u7a76\u306b\u95a2\u308f\u308b\u4eba\u3059\u3079\u3066\u304c\u3001\u3088\u308a\u7406\u60f3\u7684\u306a\u4eba\u5de5\u7684\u6761\u4ef6\u3067\u7d30\u80de\u3092\u57f9\u990a\u3057\u3001\u3088\u308a\u73fe\u5b9f\u7684\u306a\u624b\u9806\u3092\u8a2d\u8a08\u3057\u3001\u3088\u308a\u826f\u3044\u7d50\u679c\u3092\u51fa\u305b\u308b\u6a5f\u4f1a\u3092\u5f97\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002 \u30d0\u30a4\u30aa\u30d7\u30ea\u30f3\u30c6\u30a3\u30f3\u30b0\u3067\u3088\u308a\u5065\u5eb7\u306a\u672a\u6765\u3092 \u7c21\u5358\u306a\u81d3\u5668\u3001\u3042\u308b\u3044\u306f\u3055\u3089\u306b\u5358\u7d14\u306a\u69cb\u9020\u306e\u8edf\u9aa8\u7d44\u7e54\u3067\u3055\u3048\u30013D\u30d0\u30a4\u30aa\u30d7\u30ea\u30f3\u30c8\u3057\u3001\u305d\u308c\u3092\u4eba\u9593\u306b\u79fb\u690d\u3059\u308b\u3068\u3053\u308d\u307e\u3067\u884c\u304f\u306b\u306f\u300110\u5e74\u304b\u308915\u5e74\u306f\u78ba\u5b9f\u306b\u304b\u304b\u308b\u3067\u3057\u3087\u3046\u3002\u305f\u3068\u3048\u3070\u3001\u81d3\u5668\u3092\u30d7\u30ea\u30f3\u30c8\u3059\u308b\u3053\u3068\u306b\u6210\u529f\u3057\u3066\u3082\u3001\u81d3\u5668\u3092\u53d6\u308a\u56f2\u3080\u8840\u7ba1\u3092\u6a5f\u80fd\u3055\u305b\u308b\u305f\u3081\u306e\u5fae\u5c0f\u74b0\u5883\u3092\u4f5c\u308b\u3053\u3068\u306f\u3001\u4f9d\u7136\u3068\u3057\u3066\u8ab2\u984c\u3067\u3059\u3002 \u3057\u304b\u3057\u3001\u3053\u308c\u306f\u79d1\u5b66\u8005\u304c\u7acb\u3061\u5411\u304b\u3046\u3079\u304d\u969c\u5bb3\u306a\u306e\u3067\u3059\u3002\u3064\u3044\u6700\u8fd1\u307e\u3067\u60f3\u50cf\u306e\u4e2d\u3068\u7d19\u306e\u4e0a\u3067\u751f\u304d\u3066\u3044\u305f\u3082\u306e\u3092\u3001\u79c1\u305f\u3061\u306f\u4eca\u65e5\u30d7\u30ea\u30f3\u30c8\u3057\u307e\u3059\u3002\u30d0\u30a4\u30aa\u30d7\u30ea\u30f3\u30c6\u30a3\u30f3\u30b0\u306f\u3001\u7814\u7a76\u8005\u304c\u65b0\u305f\u306a\u56f0\u96e3\u3092\u7406\u89e3\u3057\u3001\u53ef\u8996\u5316\u3059\u308b\u3053\u3068\u3092\u52a9\u3051\u3001\u9769\u65b0\u7684\u306a\u89e3\u6c7a\u306e\u9053\u3078\u3068\u958b\u304d\u307e\u3059\u3002 \u6025\u6210\u9577\u3057\u3066\u3044\u308b\u5206\u91ce \u30d0\u30a4\u30aa\u30c6\u30af\u30ce\u30ed\u30b8\u30fc\u5206\u91ce\u306f\u6025\u901f\u306b\u6210\u9577\u3057\u3066\u3044\u307e\u3059\u3002\u3053\u306e\u30b9\u30d4\u30fc\u30c9\u306f\u3001\u7814\u7a76\u958b\u767a\u3092\u7af6\u4e89\u529b\u306e\u3042\u308b\u30da\u30fc\u30b9\u3067\u7dad\u6301\u3059\u308b\u305f\u3081\u306e\u6559\u80b2\u30d7\u30ed\u30b0\u30e9\u30e0\u3068\u4e00\u81f4\u3057\u3066\u3044\u307e\u3059\u3002\u904e\u53bb5\u5e74\u9593\u3067\u30b3\u30fc\u30b9\u304c\u5927\u5e45\u306b\u5897\u3048\u3001\u4eca\u3067\u306f\u30d0\u30a4\u30aa\u30d7\u30ea\u30f3\u30c6\u30a3\u30f3\u30b0\u5c02\u9580\u306e\u535a\u58eb\u8ab2\u7a0b\u3084\u30dd\u30b9\u30c9\u30af\u8ab2\u7a0b\u307e\u3067\u3042\u308b\u307b\u3069\u3067\u3059\u3002 \u4e16\u754c\u4e2d\u3067\u6570\u3048\u5207\u308c\u306a\u3044\u307b\u3069\u306e\u8ad6\u6587\u304c\u767a\u8868\u3055\u308c\u3001\u30d0\u30a4\u30aa\u30c6\u30af\u30ce\u30ed\u30b8\u30fc\u4f01\u696d\u304c\u81ea\u793e\u306e\u88fd\u54c1\u3084\u30b5\u30fc\u30d3\u30b9\u3067\u30a2\u30ab\u30c7\u30df\u30a2\u3092\u652f\u63f4\u3059\u308b\u52d5\u304d\u3082\u6d3b\u767a\u5316\u3057\u3066\u304d\u3066\u3044\u307e\u3059\u3002\u5b9f\u8cea\u3001\u30d0\u30a4\u30aa\u30c6\u30af\u30ce\u30ed\u30b8\u30fc\u306f\u72ec\u81ea\u306e\u7814\u7a76\u5206\u91ce\u306b\u306a\u308a\u3064\u3064\u3042\u308a\u307e\u3059\u3002\u30d0\u30a4\u30aa\u30d7\u30ea\u30f3\u30c6\u30a3\u30f3\u30b0\u306e\u7d20\u6674\u3089\u3057\u3044\u591a\u69d8\u6027\u306b\u3088\u308a\u3001\u5c06\u6765\u3078\u306e\u660e\u308b\u3044\u5146\u3057\u304c\u898b\u3048\u3066\u3044\u307e\u3059\u3002"}