{"version":"1.0","provider_name":"CELLINK Japan","provider_url":"https:\/\/www.cellink.com\/jp","author_name":"jesperlindahl","author_url":"https:\/\/www.cellink.com\/jp\/author\/jesperlindahl\/","title":"\u30d7\u30e9\u30a4\u30d0\u30b7\u30fc\u30dd\u30ea\u30b7\u30fc\uff08\u500b\u4eba\u60c5\u5831\u4fdd\u8b77\u65b9\u91dd\uff09","type":"rich","width":600,"height":338,"html":"<blockquote class=\"wp-embedded-content\" data-secret=\"vT6dFbowSu\"><a href=\"https:\/\/www.cellink.com\/jp\/privacy-policy\/\">\u30d7\u30e9\u30a4\u30d0\u30b7\u30fc\u30dd\u30ea\u30b7\u30fc\uff08\u500b\u4eba\u60c5\u5831\u4fdd\u8b77\u65b9\u91dd\uff09<\/a><\/blockquote><iframe sandbox=\"allow-scripts\" security=\"restricted\" src=\"https:\/\/www.cellink.com\/jp\/privacy-policy\/embed\/#?secret=vT6dFbowSu\" width=\"600\" height=\"338\" title=\"&#8220;\u30d7\u30e9\u30a4\u30d0\u30b7\u30fc\u30dd\u30ea\u30b7\u30fc\uff08\u500b\u4eba\u60c5\u5831\u4fdd\u8b77\u65b9\u91dd\uff09&#8221; &#8212; CELLINK Japan\" data-secret=\"vT6dFbowSu\" 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":"\u30d7\u30e9\u30a4\u30d0\u30b7\u30fc\u30dd\u30ea\u30b7\u30fc\uff08\u500b\u4eba\u60c5\u5831\u4fdd\u8b77\u65b9\u91dd\uff09 \u5f53\u793e\u306e\u30d7\u30e9\u30a4\u30d0\u30b7\u30fc\u30dd\u30ea\u30b7\u30fc\u306b\u3064\u3044\u3066 \u5f53\u793e\u306f\u3001\u5f53\u793e\u304c\u304a\u5ba2\u69d8\u306e\u30c7\u30fc\u30bf\u3092\u3069\u306e\u3088\u3046\u306b\u4f7f\u7528\u3059\u308b\u304b\u3092\u304a\u5ba2\u69d8\u304c\u7406\u89e3\u3059\u308b\u3053\u3068\u304c\u3044\u304b\u306b\u91cd\u8981\u3067\u3042\u308b\u304b\u3092\u7406\u89e3\u3057\u3066\u3044\u307e\u3059\u3002 \u3053\u306e\u30d7\u30e9\u30a4\u30d0\u30b7\u30fc\u30dd\u30ea\u30b7\u30fc\u306f\u3001\u5f53\u793e\u304c\u304a\u5ba2\u69d8\u306e\u500b\u4eba\u30c7\u30fc\u30bf\u3092\u53ce\u96c6\u3001\u4fdd\u7ba1\u3001\u51e6\u7406\u3001\u5171\u6709\u3059\u308b\u65b9\u6cd5\u3068\u7406\u7531\u3092\u5b9a\u3081\u305f\u3082\u306e\u3067\u3059\u3002 \u5f53\u793e\u306f\u3001\u304a\u5ba2\u69d8\u306e\u500b\u4eba\u60c5\u5831\u3092\u3069\u306e\u3088\u3046\u306b\u6271\u3046\u304b\u306b\u3064\u3044\u3066\u3001\u5e38\u306b\u304a\u5ba2\u69d8\u306b\u5bfe\u3057\u3066\u900f\u660e\u6027\u3092\u78ba\u4fdd\u3057\u307e\u3059\u3002 \u307e\u305f\u3001\u672c\u30dd\u30ea\u30b7\u30fc\u306f\u3001\u304a\u5ba2\u69d8\u304c\u5f53\u793e\u306b\u63d0\u4f9b\u3055\u308c\u305f\u500b\u4eba\u30c7\u30fc\u30bf\u306b\u95a2\u9023\u3057\u3066\u3001\u304a\u5ba2\u69d8\u306e\u6a29\u5229\u304c\u3069\u306e\u3088\u3046\u306a\u3082\u306e\u3067\u3042\u308b\u304b\u306b\u3064\u3044\u3066\u3082\u8aac\u660e\u3057\u3066\u3044\u307e\u3059\u3002\u672c\u30d7\u30e9\u30a4\u30d0\u30b7\u30fc\u30dd\u30ea\u30b7\u30fc\u307e\u305f\u306f\u672c\u30d7\u30e9\u30a4\u30d0\u30b7\u30fc\u30dd\u30ea\u30b7\u30fc\u306b\u57fa\u3065\u304f\u304a\u5ba2\u69d8\u306e\u6a29\u5229\u306b\u3064\u3044\u3066\u3054\u8cea\u554f\u304c\u3042\u308b\u5834\u5408\u306f\u3001\u4e0b\u8a18\u307e\u3067\u3054\u9023\u7d61\u304f\u3060\u3055\u3044\uff1a \u4f4f\u6240\uff1aCELLINK Bioprinting AB, L\u00e5ngfilsgatan 1, 412 76 Gothenburg, Sweden. \u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9\uff1aprivacy@cellink.com 1. \u5f53\u793e\u304c\u53ce\u96c6\u3059\u308b\u500b\u4eba\u30c7\u30fc\u30bf\u306b\u3064\u3044\u3066 \u5f53\u793e\u304c\u304a\u5ba2\u69d8\u304b\u3089\u76f4\u63a5\u53ce\u96c6\u3059\u308b\u500b\u4eba\u60c5\u5831\u306b\u306f\u3001\u304a\u5ba2\u69d8\u306e\u6c0f\u540d\u3001\u96fb\u5b50\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9\u3001\u643a\u5e2f\u96fb\u8a71\uff0f\u56fa\u5b9a\u96fb\u8a71\u756a\u53f7\u3001\u751f\u5e74\u6708\u65e5\u3001\u4f4f\u6240\u3001\u304a\u5ba2\u69d8\u306e\u8cfc\u8cb7\u6d3b\u52d5\u3001\u304a\u5ba2\u69d8\u306e\u652f\u6255\u60c5\u5831\u3001\u304a\u5ba2\u69d8\u304c\u5f53\u793e\u306e\u30ab\u30b9\u30bf\u30de\u30fc\u30b5\u30fc\u30d3\u30b9\u30c1\u30fc\u30e0\u306b\u9023\u7d61\u3059\u308b\u969b\u3084\u3001\u304a\u5ba2\u69d8\u304c\u5f53\u793e\u306e\u30bd\u30fc\u30b7\u30e3\u30eb\u30e1\u30c7\u30a3\u30a2\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0\u306b\u53c2\u52a0\u3055\u308c\u308b\u5834\u5408\uff08\u4f8b\u3048\u3070\u3001Instagram\u306e\u6295\u7a3f\u306b\u5f53\u793e\u3092\u30bf\u30b0\u4ed8\u3051\u3059\u308b\u306a\u3069\uff09\u3084\u3001\u5f53\u793e\u306e\u30b5\u30dd\u30fc\u30c8\u30b5\u30a4\u30c8\u306b\u3054\u767b\u9332\u3055\u308c\u308b\u969b\u306b\u3054\u63d0\u4f9b\u3044\u305f\u3060\u3044\u305f\u60c5\u5831\u306a\u3069\u304c\u542b\u307e\u307e\u3059\u3002 \u307e\u305f\u3001\u304a\u5ba2\u69d8\u304c\u643a\u5e2f\u7aef\u672b\u3092\u4f7f\u7528\u3057\u3066\u5f53\u793e\u3067\u30aa\u30f3\u30e9\u30a4\u30f3\u8cfc\u5165\u307e\u305f\u306f\u5f53\u793e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u3092\u95b2\u89a7\u3059\u308b\u5834\u5408\u3001\u304a\u5ba2\u69d8\u306eIP\u30a2\u30c9\u30ec\u30b9\u307e\u305f\u306f\u305d\u306e\u4ed6\u306e\u7aef\u672b\u8b58\u5225\u5b50\u3001\u30d6\u30e9\u30a6\u30b6\u306e\u7a2e\u985e\u3068\u30d0\u30fc\u30b8\u30e7\u30f3\u3001\u30bf\u30a4\u30e0\u30be\u30fc\u30f3\u8a2d\u5b9a\u3001\u30d6\u30e9\u30a6\u30b6\u30d7\u30e9\u30b0\u30a4\u30f3\u306e\u7a2e\u985e\u3068\u30d0\u30fc\u30b8\u30e7\u30f3\u3001\u30aa\u30da\u30ec\u30fc\u30c6\u30a3\u30f3\u30b0\u30b7\u30b9\u30c6\u30e0\u3068\u30d7\u30e9\u30c3\u30c8\u30d5\u30a9\u30fc\u30e0\u3001\u305d\u306e\u4ed6\u306e\u643a\u5e2f\u7aef\u672b\u60c5\u5831\u3092\u3001\u5f53\u793e\u304c\u53ce\u96c6\u3059\u308b\u3053\u3068\u304c\u3042\u308a\u307e\u3059\u3002 \u5f53\u793e\u306f\u3001\u5408\u6cd5\u7684\u306a\u65b9\u6cd5\u3067\u3001\u304a\u5ba2\u69d8\u306b\u95a2\u3059\u308b\u8ffd\u52a0\u306e\u516c\u958b\u60c5\u5831\u3092\u5f53\u793e\u306b\u63d0\u4f9b\u3059\u308b\u7b2c\u4e09\u8005\u304b\u3089\u3001\u304a\u5ba2\u69d8\u306b\u95a2\u3059\u308b\u500b\u4eba\u30c7\u30fc\u30bf\u3092\u53ce\u96c6\u3059\u308b\u3053\u3068\u3082\u3042\u308a\u307e\u3059\u3002 2.&nbsp;\u500b\u4eba\u30c7\u30fc\u30bf\u53d6\u5f97\u306b\u3064\u3044\u3066 \u2022&nbsp; \u304a\u5ba2\u69d8\u304c\u30aa\u30f3\u30e9\u30a4\u30f3\u307e\u305f\u306f\u96fb\u8a71\u3067\u5f53\u793e\u304b\u3089\u88fd\u54c1\u3084\u30b5\u30fc\u30d3\u30b9\u3092\u8cfc\u5165\u3059\u308b\u3068\u304d \u2022&nbsp; \u304a\u5ba2\u69d8\u304c\u5f53\u793e\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306b\u30a2\u30af\u30bb\u30b9\u3059\u308b\u3068\u304d\u3002\u5f53\u793e\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306f\u30af\u30c3\u30ad\u30fc\u3082\u4f7f\u7528\u3057\u307e\u3059\u3002\u30af\u30c3\u30ad\u30fc\u306e\u4f7f\u7528\u304a\u3088\u3073\u304a\u5ba2\u69d8\u306b\u3088\u308b\u305d\u306e\u7ba1\u7406\u65b9\u6cd5\u306e\u8a73\u7d30\u306b\u3064\u3044\u3066\u306f\u3001\u5f53\u793e\u306e\u30af\u30c3\u30ad\u30fc\u30dd\u30ea\u30b7\u30fc\u3092\u304a\u8aad\u307f\u304f\u3060\u3055\u3044\u3002 \u2022&nbsp; \u5f53\u793e\u306eWiFi\u306b\u30ed\u30b0\u30a4\u30f3\u3059\u308b\u3068\u304d \u2022&nbsp; \u5f53\u793e\u306e\u30b5\u30dd\u30fc\u30c8\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306b\u52a0\u5165\u3059\u308b\u3068\u304d \u2022 \u304a\u5ba2\u69d8\u304c\u5f53\u793e\u306b\u304a\u554f\u3044\u5408\u308f\u305b\u3092\u3059\u308b\u3068\u304d\u3001\u307e\u305f\u306f\u5f53\u793e\u304c\u8abf\u67fb\u3001\u30b3\u30f3\u30c6\u30b9\u30c8\u3001\u307e\u305f\u306f\u30d7\u30ed\u30e2\u30fc\u30b7\u30e7\u30f3\u306b\u53c2\u52a0\u3057\u3066\u3044\u305f\u3060\u304f\u305f\u3081\u306b\u304a\u5ba2\u69d8\u306b\u9023\u7d61\u3059\u308b\u3068\u304d \u2022 \u304a\u5ba2\u69d8\u304c\u30aa\u30f3\u30e9\u30a4\u30f3\u307e\u305f\u306f\u96fb\u8a71\u3067\u5f53\u793e\u306e\u30ab\u30b9\u30bf\u30de\u30fc\u30b5\u30dd\u30fc\u30c8\u30c1\u30fc\u30e0\u306b\u304a\u554f\u3044\u5408\u308f\u305b\u3092\u3059\u308b\u3068\u304d \u2022 \u304a\u5ba2\u69d8\u304c\u30bd\u30fc\u30b7\u30e3\u30eb\u30e1\u30c7\u30a3\u30a2\u3067\u5f53\u793e\u3068\u95a2\u308f\u308b\u3068\u304d\uff08\u5f53\u793e\u3092\u30e1\u30f3\u30b7\u30e7\u30f3\/\u30bf\u30b0\u4ed8\u3051\u3059\u308b\u304b\u3001\u30c0\u30a4\u30ec\u30af\u30c8\u30e1\u30c3\u30bb\u30fc\u30b8\u306b\u3088\u3063\u3066\uff09 3. \u5f53\u793e\u306e\u500b\u4eba\u30c7\u30fc\u30bf\u4f7f\u7528\u65b9\u6cd5\u3001\u304a\u3088\u3073\u4f7f\u7528\u76ee\u7684\u306b\u3064\u3044\u3066 \u5f53\u793e\u306e\u88fd\u54c1\u304a\u3088\u3073\u30b5\u30fc\u30d3\u30b9\u3092\u304a\u5ba2\u69d8\u304c\u5229\u7528\u3067\u304d\u308b\u3088\u3046\u306b\u3059\u308b\u305f\u3081 \u5f53\u793e\u306f\u3001\u304a\u5ba2\u69d8\u304c\u5f53\u793e\u304b\u3089\u8981\u6c42\u307e\u305f\u306f\u8cfc\u5165\u3057\u305f\u60c5\u5831\u3001\u88fd\u54c1\u304a\u3088\u3073\u30b5\u30fc\u30d3\u30b9\u3092\u63d0\u4f9b\u3059\u308b\u305f\u3081\uff08\u3059\u306a\u308f\u3061\u3001\u5f53\u793e\u306e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u4e0a\u3067\u7279\u5b9a\u306e\u30bf\u30b9\u30af\u3001\u30d7\u30ed\u30bb\u30b9\u307e\u305f\u306f\u6ce8\u6587\u3092\u5b8c\u4e86\u3057\u3001\u30aa\u30f3\u30e9\u30a4\u30f3\u3067\u652f\u6255\u3044\u3092\u884c\u3044\uff08\u8a72\u5f53\u3059\u308b\u5834\u5408\u306e\u307f\uff09\u3001\u88fd\u54c1\u307e\u305f\u306f\u30b5\u30fc\u30d3\u30b9\u3092\u63d0\u4f9b\u3059\u308b\u305f\u3081\uff09\u3001\u304a\u3088\u3073\u304a\u5ba2\u69d8\u304c\u5f53\u793e\u304b\u3089\u8cfc\u5165\u3057\u305f\u3053\u308c\u3089\u306e\u88fd\u54c1\u304a\u3088\u3073\u30b5\u30fc\u30d3\u30b9\u306b\u95a2\u3057\u3066\u304a\u5ba2\u69d8\u3068\u9023\u7d61\u3092\u53d6\u308a\u3001\u304a\u5ba2\u69d8\u306e\u8cea\u554f\u304a\u3088\u3073\u30b3\u30e1\u30f3\u30c8\u306b\u5bfe\u5fdc\u3059\u308b\u305f\u3081\u306b\u304a\u5ba2\u69d8\u306e\u500b\u4eba\u60c5\u5831\u3092\u5229\u7528\u3057\u307e\u3059\u3002 \u307e\u305f\u3001\u5f53\u793e\u306f\u3001\u304a\u5ba2\u69d8\u306e\u6e80\u8db3\u5ea6\u3092\u6e2c\u5b9a\u3057\u3001\u30ab\u30b9\u30bf\u30de\u30fc\u30b5\u30fc\u30d3\u30b9\u3092\u63d0\u4f9b\u3059\u308b\u305f\u3081\u306b\u3001\u304a\u5ba2\u69d8\u306e\u500b\u4eba\u60c5\u5831\u3092\u4f7f\u7528\u3059\u308b\u3053\u3068\u304c\u3054\u3056\u3044\u307e\u3059\uff08\u8cfc\u5165\u3084\u304a\u5ba2\u69d8\u306e\u30b5\u30fc\u30d3\u30b9\u306b\u5bfe\u3059\u308b\u3054\u8981\u671b\u306b\u95a2\u9023\u3057\u305f\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0\u3084\u3001\u30bd\u30fc\u30b7\u30e3\u30eb\u30e1\u30c7\u30a3\u30a2\u4e0a\u3067\u5f53\u793e\u306b\u8cea\u554f\u3092\u3059\u308b\u5834\u5408\u3092\u542b\u3080\uff09\u3002 \u5f53\u793e\u306f\u3001\u304a\u5ba2\u69d8\u304c\u88fd\u54c1\u3084\u30b5\u30fc\u30d3\u30b9\u3092\u6ce8\u6587\u3059\u308b\u969b\u306b\u3001\u304a\u5ba2\u69d8\u306e\u500b\u4eba\u60c5\u5831\u3092\u53ce\u96c6\u3057\u51e6\u7406\u3059\u308b\u305f\u3081\u306e\u5408\u6cd5\u7684\u306a\u6839\u62e0\u3068\u3057\u3066\u3001\u304a\u5ba2\u69d8\u3068\u306e\u5951\u7d04\u4e0a\u306e\u53d6\u308a\u6c7a\u3081\u306b\u4f9d\u5b58\u3057\u3066\u3044\u307e\u3059\u3002\u5834\u5408\u306b\u3088\u3063\u3066\u306f\u3001\u30d3\u30b8\u30cd\u30b9\u3068\u3057\u3066\u306e\u6b63\u5f53\u306a\u5229\u76ca\uff08\u4f8b\u3048\u3070\u3001\u9867\u5ba2\u6e80\u8db3\u5ea6\u306e\u6e2c\u5b9a\u3084\u9867\u5ba2\u554f\u984c\u306e\u30c8\u30e9\u30d6\u30eb\u30b7\u30e5\u30fc\u30c6\u30a3\u30f3\u30b0\u306e\u305f\u3081\uff09\u306b\u4f9d\u62e0\u3059\u308b\u3053\u3068\u3082\u3054\u3056\u3044\u307e\u3059\u3002\u5f53\u793e\u304c\u6b63\u5f53\u306a\u5229\u76ca\u306b\u4f9d\u5b58\u3059\u308b\u5834\u5408\u3001\u5e38\u306b\u3053\u308c\u3089\u306e\u5229\u76ca\u3068\u304a\u5ba2\u69d8\u306e\u6a29\u5229\u3068\u306e\u30d0\u30e9\u30f3\u30b9\u3092\u53d6\u308b\u3088\u3046\u306b\u3057\u3066\u3044\u307e\u3059\u3002 \u7ba1\u7406\u30fb\u793e\u5185\u696d\u52d9\u7528\u9014\u3068\u3057\u3066 \u5f53\u793e\u306f\u3001\u304a\u5ba2\u69d8\u306e\u500b\u4eba\u60c5\u5831\u3092\u3001\u5f53\u793e\u306e\u30b5\u30a4\u30c8\u306e\u5145\u5b9f\u3001\u30b5\u30fc\u30d3\u30b9\u3084\u88fd\u54c1\u306e\u6539\u5584\u3001\u5229\u7528\u52d5\u5411\u306e\u628a\u63e1\u306a\u3069\u3001\u5f53\u793e\u306e\u793e\u5185\u696d\u52d9\u76ee\u7684\u3067\u5229\u7528\u3059\u308b\u5834\u5408\u304c\u3054\u3056\u3044\u307e\u3059\u3002\u307e\u305f\u3001\u5f53\u793e\u306f\u3001\u5f53\u793e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u306e\u5229\u7528\u72b6\u6cc1\u3092\u30e2\u30cb\u30bf\u30fc\u3057\u3001\u5f53\u793e\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u304c\u304a\u5ba2\u69d8\u304a\u3088\u3073\u304a\u5ba2\u69d8\u306e\u6a5f\u5668\u306b\u3068\u3063\u3066\u6700\u3082\u52b9\u679c\u7684\u304b\u3064\u9069\u5207\u306a\u65b9\u6cd5\u3067\u8868\u793a\u3055\u308c\u308b\u3088\u3046\u306b\u3057\u3001\u304a\u5ba2\u69d8\u306e\u30c7\u30d5\u30a9\u30eb\u30c8\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u8a2d\u5b9a\u3059\u308b\u305f\u3081\u306b\u3001\u304a\u5ba2\u69d8\u306e\u30c7\u30fc\u30bf\u3092\u4f7f\u7528\u3059\u308b\u5834\u5408\u304c\u3054\u3056\u3044\u307e\u3059\u3002 \u3053\u306e\u3088\u3046\u306b\u304a\u5ba2\u69d8\u306e\u500b\u4eba\u60c5\u5831\u3092\u4f7f\u7528\u3059\u308b\u3053\u3068\u306f\u3001\u5f53\u793e\u306e\u30d3\u30b8\u30cd\u30b9\u3068\u3057\u3066\u306e\u6b63\u5f53\u306a\u5229\u76ca\u306b\u306a\u308a\u307e\u3059\u3002\u4f8b\u3048\u3070\u3001\u304a\u5ba2\u69d8\u306b\u3068\u3063\u3066\u4f7f\u3044\u3084\u3059\u304f\u3001\u9069\u5207\u306b\u6a5f\u80fd\u3059\u308b\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u3092\u904b\u55b6\u3059\u308b\u3053\u3068\u3001\u307e\u305f\u3001\u52b9\u7387\u7684\u3067\u9ad8\u54c1\u8cea\u306a\u88fd\u54c1\u3084\u30b5\u30fc\u30d3\u30b9\u3092\u63d0\u4f9b\u3059\u308b\u3053\u3068\u3092\u5fc3\u304c\u3051\u3066\u3044\u307e\u3059\u3002\u307e\u305f\u3001\u304a\u5ba2\u69d8\u304c\u5f53\u793e\u3068\u306e\u3084\u308a\u53d6\u308a\u3092\u7c21\u5358\u306b\u3067\u304d\u308b\u3088\u3046\u306b\u3057\u305f\u3044\u3068\u3082\u8003\u3048\u3066\u3044\u307e\u3059\u3002\u5f53\u793e\u304c\u6b63\u5f53\u306a\u5229\u76ca\u306b\u4f9d\u5b58\u3059\u308b\u5834\u5408\u3001\u5e38\u306b\u3053\u308c\u3089\u306e\u5229\u76ca\u3068\u304a\u5ba2\u69d8\u306e\u6a29\u5229\u3068\u306e\u30d0\u30e9\u30f3\u30b9\u3092\u53d6\u308b\u3088\u3046\u306b\u3057\u3066\u3044\u307e\u3059\u3002 \u30bb\u30ad\u30e5\u30ea\u30c6\u30a3\u304a\u3088\u3073\u6cd5\u7684\u306a\u7406\u7531\u306b\u3064\u3044\u3066 \u5f53\u793e\u306f\u304a\u5ba2\u69d8\u306e\u500b\u4eba\u60c5\u5831\u3092\u4ee5\u4e0b\u306e\u305f\u3081\u306b\u4f7f\u7528\u3057\u307e\u3059\uff1a \u2022&nbsp;\u304a\u5ba2\u69d8\u304b\u3089\u63d0\u4f9b\u3055\u308c\u305f\u500b\u4eba\u60c5\u5831\u304a\u3088\u3073\u8ca1\u52d9\u60c5\u5831\u304c\u6b63\u78ba\u3067\u3042\u308b\u3053\u3068\u3092\u78ba\u8a8d\u3059\u308b\u305f\u3081 \u2022 \u4e0d\u6b63\u884c\u70ba\u306e\u78ba\u8a8d\u3001\u307e\u305f\u306f\u3001\u305d\u306e\u4ed6\u306e*\u9055\u6cd5\u884c\u70ba\u306e\u9632\u6b62 \u2022 \u5f53\u793e\u306e\u6a29\u5229\u307e\u305f\u306f\u8ca1\u7523\uff08\u307e\u305f\u306f\u4ed6\u8005\u306e\u6a29\u5229\u307e\u305f\u306f\u8ca1\u7523\uff09\u306e\u4fdd\u8b77 \u2022 \u5f53\u793e\u306e\u6cd5\u7684\u304a\u3088\u3073\u30b3\u30f3\u30d7\u30e9\u30a4\u30a2\u30f3\u30b9\u95a2\u9023\u306e\u7fa9\u52d9\u306e\u5c65\u884c \u6cd5\u7684\u306a\u7fa9\u52d9\u3092\u9075\u5b88\u3059\u308b\u5fc5\u8981\u304c\u3042\u308b\u305f\u3081\uff08\u6cd5\u57f7\u884c\u6a5f\u95a2\u304b\u3089\u6b63\u5f53\u306a\u8981\u6c42\u3092\u53d7\u3051\u305f\u5834\u5408\u306a\u3069\uff09\u306b\u3001\u304a\u5ba2\u69d8\u306e\u500b\u4eba\u60c5\u5831\u3092\u4f7f\u7528\u3059\u308b\u5834\u5408\u304c\u3054\u3056\u3044\u307e\u3059\u3002&nbsp;\u305d\u306e\u4ed6\u306e\u5834\u5408\uff08\u4e0d\u6b63\u884c\u70ba\u306e\u691c\u51fa\u306a\u3069\uff09\u306b\u304a\u3044\u3066\u3082\u3001\u5f53\u793e\u306f\u4e8b\u696d\u8005\u3068\u3057\u3066\u306e\u6b63\u5f53\u306a\u5229\u76ca\u306b\u57fa\u3065\u304d\u3001\u540c\u69d8\u306b\u304a\u5ba2\u69d8\u306e\u500b\u4eba\u60c5\u5831\u3092\u4f7f\u7528\u3057\u307e\u3059\u3002&nbsp;\u5f53\u793e\u304c\u6b63\u5f53\u306a\u5229\u76ca\u306b\u4f9d\u5b58\u3059\u308b\u5834\u5408\u3001\u5e38\u306b\u3053\u308c\u3089\u306e\u5229\u76ca\u3068\u304a\u5ba2\u69d8\u306e\u6a29\u5229\u3068\u306e\u30d0\u30e9\u30f3\u30b9\u3092\u53d6\u308b\u3088\u3046\u306b\u3057\u3066\u3044\u307e\u3059\u3002 [&hellip;]"}