{"id":17562,"date":"2024-03-16T07:06:48","date_gmt":"2024-03-15T22:06:48","guid":{"rendered":"https:\/\/www.silicloud.com\/ja\/blog\/iframe%e3%81%ae%e9%ab%98%e3%81%95%e3%82%92%e8%87%aa%e5%8b%95%e8%aa%bf%e6%95%b4%e3%81%99%e3%82%8b%e6%96%b9%e6%b3%95%e3%81%af%e4%bd%95%e3%81%a7%e3%81%99%e3%81%8b%ef%bc%9f\/"},"modified":"2025-08-06T12:27:19","modified_gmt":"2025-08-06T03:27:19","slug":"iframe%e3%81%ae%e9%ab%98%e3%81%95%e3%82%92%e8%87%aa%e5%8b%95%e8%aa%bf%e6%95%b4%e3%81%99%e3%82%8b%e6%96%b9%e6%b3%95%e3%81%af%e4%bd%95%e3%81%a7%e3%81%99%e3%81%8b%ef%bc%9f","status":"publish","type":"post","link":"https:\/\/www.silicloud.com\/ja\/blog\/iframe%e3%81%ae%e9%ab%98%e3%81%95%e3%82%92%e8%87%aa%e5%8b%95%e8%aa%bf%e6%95%b4%e3%81%99%e3%82%8b%e6%96%b9%e6%b3%95%e3%81%af%e4%bd%95%e3%81%a7%e3%81%99%e3%81%8b%ef%bc%9f\/","title":{"rendered":"iframe\u306e\u9ad8\u3055\u3092\u81ea\u52d5\u8abf\u6574\u3059\u308b\u65b9\u6cd5\u306f\u4f55\u3067\u3059\u304b\uff1f"},"content":{"rendered":"<p>iframe\u306e\u9ad8\u3055\u3092\u81ea\u52d5\u8abf\u6574\u3059\u308b\u305f\u3081\u306b\u306f\u3001\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u65b9\u6cd5\u304c\u3042\u308a\u307e\u3059\u3002<\/p>\n<ol>\n<li>JavaScript\u3092\u4f7f\u7528\u3057\u3066\u52d5\u7684\u306b\u9ad8\u3055\u3092\u8abf\u6574\u3059\u308b\uff1aJavaScript\u306e\u30e1\u30bd\u30c3\u30c9\u3092\u4f7f\u3063\u3066ifreme\u5185\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u5b9f\u969b\u306e\u9ad8\u3055\u3092\u53d6\u5f97\u3057\u3001\u305d\u306e\u9ad8\u3055\u3092iframe\u306eheight\u5c5e\u6027\u306b\u4ee3\u5165\u3057\u307e\u3059\u3002<\/li>\n<\/ol>\n<pre class=\"post-pre\"><code>&lt;script&gt;\r\n  <span class=\"hljs-keyword\">function<\/span> <span class=\"hljs-title function_\">resizeIframe<\/span>() {\r\n    <span class=\"hljs-keyword\">var<\/span> iframe = <span class=\"hljs-variable language_\">document<\/span>.<span class=\"hljs-title function_\">getElementById<\/span>(<span class=\"hljs-string\">'myIframe'<\/span>);\r\n    <span class=\"hljs-keyword\">var<\/span> iframeHeight = iframe.<span class=\"hljs-property\">contentWindow<\/span>.<span class=\"hljs-property\">document<\/span>.<span class=\"hljs-property\">body<\/span>.<span class=\"hljs-property\">scrollHeight<\/span>;\r\n    iframe.<span class=\"hljs-property\">style<\/span>.<span class=\"hljs-property\">height<\/span> = iframeHeight + <span class=\"hljs-string\">'px'<\/span>;\r\n  }\r\n&lt;\/script&gt;\r\n\r\n<span class=\"language-xml\"><span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">iframe<\/span> <span class=\"hljs-attr\">id<\/span>=<span class=\"hljs-string\">\"myIframe\"<\/span> <span class=\"hljs-attr\">src<\/span>=<span class=\"hljs-string\">\"yourPage.html\"<\/span> <span class=\"hljs-attr\">onload<\/span>=<span class=\"hljs-string\">\"resizeIframe()\"<\/span>&gt;<\/span><span class=\"hljs-tag\">&lt;\/<span class=\"hljs-name\">iframe<\/span>&gt;<\/span><\/span>\r\n<\/code><\/pre>\n<ol>\n<li>CSS\u306ecalc()\u95a2\u6570\u3092\u4f7f\u7528\u3059\u308b\uff1aiframe\u306e\u9ad8\u3055\u3092100\uff05\u304b\u3089\u56fa\u5b9a\u306e\u9ad8\u3055\u3092\u5f15\u3044\u3066\u8a08\u7b97\u3059\u308b\u305f\u3081\u306b\u3001CSS\u306ecalc()\u95a2\u6570\u3092\u4f7f\u7528\u3057\u3066\u304f\u3060\u3055\u3044\u3002<\/li>\n<\/ol>\n<pre class=\"post-pre\"><code><span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">style<\/span>&gt;<\/span><span class=\"language-css\">\r\n  <span class=\"hljs-selector-id\">#myIframe<\/span> {\r\n    <span class=\"hljs-attribute\">height<\/span>: <span class=\"hljs-built_in\">calc<\/span>(<span class=\"hljs-number\">100%<\/span> - <span class=\"hljs-number\">50px<\/span>); <span class=\"hljs-comment\">\/* 50px\u4e3a\u56fa\u5b9a\u9ad8\u5ea6 *\/<\/span>\r\n  }\r\n<\/span><span class=\"hljs-tag\">&lt;\/<span class=\"hljs-name\">style<\/span>&gt;<\/span>\r\n\r\n<span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">iframe<\/span> <span class=\"hljs-attr\">id<\/span>=<span class=\"hljs-string\">\"myIframe\"<\/span> <span class=\"hljs-attr\">src<\/span>=<span class=\"hljs-string\">\"yourPage.html\"<\/span>&gt;<\/span><span class=\"hljs-tag\">&lt;\/<span class=\"hljs-name\">iframe<\/span>&gt;<\/span>\r\n<\/code><\/pre>\n<ol>\n<li>jQuery\u306eresize()\u30e1\u30bd\u30c3\u30c9\u3092\u4f7f\u7528\u3059\u308b\u3068\u3001iframe\u306e\u9ad8\u3055\u3092\u81ea\u52d5\u7684\u306b\u8abf\u6574\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002<\/li>\n<\/ol>\n<pre class=\"post-pre\"><code>&lt;script src=<span class=\"hljs-string\">\"https:\/\/code.jquery.com\/jquery-3.6.0.min.js\"<\/span>&gt;&lt;\/script&gt;\r\n<span class=\"language-xml\"><span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">script<\/span>&gt;<\/span><span class=\"language-javascript\">\r\n  $(<span class=\"hljs-variable language_\">document<\/span>).<span class=\"hljs-title function_\">ready<\/span>(<span class=\"hljs-keyword\">function<\/span>() {\r\n    $(<span class=\"hljs-string\">'#myIframe'<\/span>).<span class=\"hljs-title function_\">on<\/span>(<span class=\"hljs-string\">'load'<\/span>, <span class=\"hljs-keyword\">function<\/span>() {\r\n      $(<span class=\"hljs-variable language_\">this<\/span>).<span class=\"hljs-title function_\">height<\/span>($(<span class=\"hljs-variable language_\">this<\/span>).<span class=\"hljs-title function_\">contents<\/span>().<span class=\"hljs-title function_\">height<\/span>());\r\n    });\r\n  });\r\n<\/span><span class=\"hljs-tag\">&lt;\/<span class=\"hljs-name\">script<\/span>&gt;<\/span><\/span>\r\n\r\n<span class=\"language-xml\"><span class=\"hljs-tag\">&lt;<span class=\"hljs-name\">iframe<\/span> <span class=\"hljs-attr\">id<\/span>=<span class=\"hljs-string\">\"myIframe\"<\/span> <span class=\"hljs-attr\">src<\/span>=<span class=\"hljs-string\">\"yourPage.html\"<\/span>&gt;<\/span><span class=\"hljs-tag\">&lt;\/<span class=\"hljs-name\">iframe<\/span>&gt;<\/span><\/span>\r\n<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>iframe\u306e\u9ad8\u3055\u3092\u81ea\u52d5\u8abf\u6574\u3059\u308b\u305f\u3081\u306b\u306f\u3001\u4ee5\u4e0b\u306e\u3088\u3046\u306a\u65b9\u6cd5\u304c\u3042\u308a\u307e\u3059\u3002 JavaScript\u3092\u4f7f\u7528\u3057\u3066\u52d5\u7684\u306b\u9ad8\u3055\u3092\u8abf\u6574\u3059\u308b\uff1aJavaScript\u306e\u30e1\u30bd\u30c3\u30c9\u3092\u4f7f\u3063\u3066ifreme\u5185\u306e\u30b3\u30f3\u30c6\u30f3\u30c4\u306e\u5b9f\u969b\u306e\u9ad8\u3055\u3092\u53d6\u5f97\u3057\u3001\u305d\u306e\u9ad8\u3055\u3092 [&hellip;]<\/p>\n","protected":false},"author":10,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[26,61],"class_list":["post-17562","post","type-post","status-publish","format-standard","hentry","category-uncategorized","tag-26","tag-61"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v21.5 (Yoast SEO v21.5) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>iframe\u306e\u9ad8\u3055\u3092\u81ea\u52d5\u8abf\u6574\u3059\u308b\u65b9\u6cd5\u306f\u4f55\u3067\u3059\u304b\uff1f - Blog - Silicon Cloud<\/title>\n<meta name=\"description\" content=\"iframe\u306e\u9ad8\u3055\u3092\u81ea\u52d5\u8abf\u6574\u3059\u308b\u65b9\u6cd5\u306f\u4f55\u3067\u3059\u304b\uff1f\u3092\u5206\u304b\u308a\u3084\u3059\u304f\u89e3\u8aac\u3002\u5b9f\u8df5\u7684\u306a\u4f8b\u3068\u30b3\u30fc\u30c9\u3001\u6ce8\u610f\u70b9\u3092\u542b\u3081\u3066\u521d\u5fc3\u8005\u306b\u3082\u7406\u89e3\u3067\u304d\u308b\u3088\u3046\u8aac\u660e\u3057\u307e\u3059\u3002\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.silicloud.com\/ja\/blog\/iframe\u306e\u9ad8\u3055\u3092\u81ea\u52d5\u8abf\u6574\u3059\u308b\u65b9\u6cd5\u306f\u4f55\u3067\u3059\u304b\uff1f\/\" \/>\n<meta property=\"og:locale\" content=\"ja_JP\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"iframe\u306e\u9ad8\u3055\u3092\u81ea\u52d5\u8abf\u6574\u3059\u308b\u65b9\u6cd5\u306f\u4f55\u3067\u3059\u304b\uff1f\" \/>\n<meta property=\"og:description\" content=\"iframe\u306e\u9ad8\u3055\u3092\u81ea\u52d5\u8abf\u6574\u3059\u308b\u65b9\u6cd5\u306f\u4f55\u3067\u3059\u304b\uff1f\u3092\u5206\u304b\u308a\u3084\u3059\u304f\u89e3\u8aac\u3002\u5b9f\u8df5\u7684\u306a\u4f8b\u3068\u30b3\u30fc\u30c9\u3001\u6ce8\u610f\u70b9\u3092\u542b\u3081\u3066\u521d\u5fc3\u8005\u306b\u3082\u7406\u89e3\u3067\u304d\u308b\u3088\u3046\u8aac\u660e\u3057\u307e\u3059\u3002\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.silicloud.com\/ja\/blog\/iframe\u306e\u9ad8\u3055\u3092\u81ea\u52d5\u8abf\u6574\u3059\u308b\u65b9\u6cd5\u306f\u4f55\u3067\u3059\u304b\uff1f\/\" \/>\n<meta property=\"og:site_name\" content=\"Blog - Silicon Cloud\" \/>\n<meta property=\"article:published_time\" content=\"2024-03-15T22:06:48+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-08-06T03:27:19+00:00\" \/>\n<meta name=\"author\" content=\"\u82bd\u4f9d, \u96e8\u591c\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u57f7\u7b46\u8005\" \/>\n\t<meta name=\"twitter:data1\" content=\"\u82bd\u4f9d, \u96e8\u591c\" \/>\n\t<meta name=\"twitter:label2\" content=\"\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593\" \/>\n\t<meta name=\"twitter:data2\" content=\"3\u5206\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/iframe%e3%81%ae%e9%ab%98%e3%81%95%e3%82%92%e8%87%aa%e5%8b%95%e8%aa%bf%e6%95%b4%e3%81%99%e3%82%8b%e6%96%b9%e6%b3%95%e3%81%af%e4%bd%95%e3%81%a7%e3%81%99%e3%81%8b%ef%bc%9f\/\",\"url\":\"https:\/\/www.silicloud.com\/ja\/blog\/iframe%e3%81%ae%e9%ab%98%e3%81%95%e3%82%92%e8%87%aa%e5%8b%95%e8%aa%bf%e6%95%b4%e3%81%99%e3%82%8b%e6%96%b9%e6%b3%95%e3%81%af%e4%bd%95%e3%81%a7%e3%81%99%e3%81%8b%ef%bc%9f\/\",\"name\":\"iframe\u306e\u9ad8\u3055\u3092\u81ea\u52d5\u8abf\u6574\u3059\u308b\u65b9\u6cd5\u306f\u4f55\u3067\u3059\u304b\uff1f - Blog - Silicon Cloud\",\"isPartOf\":{\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#website\"},\"datePublished\":\"2024-03-15T22:06:48+00:00\",\"dateModified\":\"2025-08-06T03:27:19+00:00\",\"author\":{\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/aeb60a7861f2f002b54c66bd65bc6c27\"},\"description\":\"iframe\u306e\u9ad8\u3055\u3092\u81ea\u52d5\u8abf\u6574\u3059\u308b\u65b9\u6cd5\u306f\u4f55\u3067\u3059\u304b\uff1f\u3092\u5206\u304b\u308a\u3084\u3059\u304f\u89e3\u8aac\u3002\u5b9f\u8df5\u7684\u306a\u4f8b\u3068\u30b3\u30fc\u30c9\u3001\u6ce8\u610f\u70b9\u3092\u542b\u3081\u3066\u521d\u5fc3\u8005\u306b\u3082\u7406\u89e3\u3067\u304d\u308b\u3088\u3046\u8aac\u660e\u3057\u307e\u3059\u3002\",\"breadcrumb\":{\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/iframe%e3%81%ae%e9%ab%98%e3%81%95%e3%82%92%e8%87%aa%e5%8b%95%e8%aa%bf%e6%95%b4%e3%81%99%e3%82%8b%e6%96%b9%e6%b3%95%e3%81%af%e4%bd%95%e3%81%a7%e3%81%99%e3%81%8b%ef%bc%9f\/#breadcrumb\"},\"inLanguage\":\"ja\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.silicloud.com\/ja\/blog\/iframe%e3%81%ae%e9%ab%98%e3%81%95%e3%82%92%e8%87%aa%e5%8b%95%e8%aa%bf%e6%95%b4%e3%81%99%e3%82%8b%e6%96%b9%e6%b3%95%e3%81%af%e4%bd%95%e3%81%a7%e3%81%99%e3%81%8b%ef%bc%9f\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/iframe%e3%81%ae%e9%ab%98%e3%81%95%e3%82%92%e8%87%aa%e5%8b%95%e8%aa%bf%e6%95%b4%e3%81%99%e3%82%8b%e6%96%b9%e6%b3%95%e3%81%af%e4%bd%95%e3%81%a7%e3%81%99%e3%81%8b%ef%bc%9f\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u9996\u9875\",\"item\":\"https:\/\/www.silicloud.com\/ja\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"iframe\u306e\u9ad8\u3055\u3092\u81ea\u52d5\u8abf\u6574\u3059\u308b\u65b9\u6cd5\u306f\u4f55\u3067\u3059\u304b\uff1f\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#website\",\"url\":\"https:\/\/www.silicloud.com\/ja\/blog\/\",\"name\":\"Blog - Silicon Cloud\",\"description\":\"\",\"inLanguage\":\"ja\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/aeb60a7861f2f002b54c66bd65bc6c27\",\"name\":\"\u82bd\u4f9d, \u96e8\u591c\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/6305fe5cabc2b854c1208975a47fbf3f8cef3f7cd775b94dceedbe59b74a8010?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/6305fe5cabc2b854c1208975a47fbf3f8cef3f7cd775b94dceedbe59b74a8010?s=96&d=mm&r=g\",\"caption\":\"\u82bd\u4f9d, \u96e8\u591c\"},\"url\":\"https:\/\/www.silicloud.com\/ja\/blog\/author\/meiamaya\/\"},{\"@type\":\"ImageObject\",\"inLanguage\":\"ja\",\"@id\":\"https:\/\/www.silicloud.com\/ja\/blog\/iframe%e3%81%ae%e9%ab%98%e3%81%95%e3%82%92%e8%87%aa%e5%8b%95%e8%aa%bf%e6%95%b4%e3%81%99%e3%82%8b%e6%96%b9%e6%b3%95%e3%81%af%e4%bd%95%e3%81%a7%e3%81%99%e3%81%8b%ef%bc%9f\/#local-main-organization-logo\",\"url\":\"\",\"contentUrl\":\"\",\"caption\":\"Blog - Silicon Cloud\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"iframe\u306e\u9ad8\u3055\u3092\u81ea\u52d5\u8abf\u6574\u3059\u308b\u65b9\u6cd5\u306f\u4f55\u3067\u3059\u304b\uff1f - Blog - Silicon Cloud","description":"iframe\u306e\u9ad8\u3055\u3092\u81ea\u52d5\u8abf\u6574\u3059\u308b\u65b9\u6cd5\u306f\u4f55\u3067\u3059\u304b\uff1f\u3092\u5206\u304b\u308a\u3084\u3059\u304f\u89e3\u8aac\u3002\u5b9f\u8df5\u7684\u306a\u4f8b\u3068\u30b3\u30fc\u30c9\u3001\u6ce8\u610f\u70b9\u3092\u542b\u3081\u3066\u521d\u5fc3\u8005\u306b\u3082\u7406\u89e3\u3067\u304d\u308b\u3088\u3046\u8aac\u660e\u3057\u307e\u3059\u3002","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.silicloud.com\/ja\/blog\/iframe\u306e\u9ad8\u3055\u3092\u81ea\u52d5\u8abf\u6574\u3059\u308b\u65b9\u6cd5\u306f\u4f55\u3067\u3059\u304b\uff1f\/","og_locale":"ja_JP","og_type":"article","og_title":"iframe\u306e\u9ad8\u3055\u3092\u81ea\u52d5\u8abf\u6574\u3059\u308b\u65b9\u6cd5\u306f\u4f55\u3067\u3059\u304b\uff1f","og_description":"iframe\u306e\u9ad8\u3055\u3092\u81ea\u52d5\u8abf\u6574\u3059\u308b\u65b9\u6cd5\u306f\u4f55\u3067\u3059\u304b\uff1f\u3092\u5206\u304b\u308a\u3084\u3059\u304f\u89e3\u8aac\u3002\u5b9f\u8df5\u7684\u306a\u4f8b\u3068\u30b3\u30fc\u30c9\u3001\u6ce8\u610f\u70b9\u3092\u542b\u3081\u3066\u521d\u5fc3\u8005\u306b\u3082\u7406\u89e3\u3067\u304d\u308b\u3088\u3046\u8aac\u660e\u3057\u307e\u3059\u3002","og_url":"https:\/\/www.silicloud.com\/ja\/blog\/iframe\u306e\u9ad8\u3055\u3092\u81ea\u52d5\u8abf\u6574\u3059\u308b\u65b9\u6cd5\u306f\u4f55\u3067\u3059\u304b\uff1f\/","og_site_name":"Blog - Silicon Cloud","article_published_time":"2024-03-15T22:06:48+00:00","article_modified_time":"2025-08-06T03:27:19+00:00","author":"\u82bd\u4f9d, \u96e8\u591c","twitter_card":"summary_large_image","twitter_misc":{"\u57f7\u7b46\u8005":"\u82bd\u4f9d, \u96e8\u591c","\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593":"3\u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/www.silicloud.com\/ja\/blog\/iframe%e3%81%ae%e9%ab%98%e3%81%95%e3%82%92%e8%87%aa%e5%8b%95%e8%aa%bf%e6%95%b4%e3%81%99%e3%82%8b%e6%96%b9%e6%b3%95%e3%81%af%e4%bd%95%e3%81%a7%e3%81%99%e3%81%8b%ef%bc%9f\/","url":"https:\/\/www.silicloud.com\/ja\/blog\/iframe%e3%81%ae%e9%ab%98%e3%81%95%e3%82%92%e8%87%aa%e5%8b%95%e8%aa%bf%e6%95%b4%e3%81%99%e3%82%8b%e6%96%b9%e6%b3%95%e3%81%af%e4%bd%95%e3%81%a7%e3%81%99%e3%81%8b%ef%bc%9f\/","name":"iframe\u306e\u9ad8\u3055\u3092\u81ea\u52d5\u8abf\u6574\u3059\u308b\u65b9\u6cd5\u306f\u4f55\u3067\u3059\u304b\uff1f - Blog - Silicon Cloud","isPartOf":{"@id":"https:\/\/www.silicloud.com\/ja\/blog\/#website"},"datePublished":"2024-03-15T22:06:48+00:00","dateModified":"2025-08-06T03:27:19+00:00","author":{"@id":"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/aeb60a7861f2f002b54c66bd65bc6c27"},"description":"iframe\u306e\u9ad8\u3055\u3092\u81ea\u52d5\u8abf\u6574\u3059\u308b\u65b9\u6cd5\u306f\u4f55\u3067\u3059\u304b\uff1f\u3092\u5206\u304b\u308a\u3084\u3059\u304f\u89e3\u8aac\u3002\u5b9f\u8df5\u7684\u306a\u4f8b\u3068\u30b3\u30fc\u30c9\u3001\u6ce8\u610f\u70b9\u3092\u542b\u3081\u3066\u521d\u5fc3\u8005\u306b\u3082\u7406\u89e3\u3067\u304d\u308b\u3088\u3046\u8aac\u660e\u3057\u307e\u3059\u3002","breadcrumb":{"@id":"https:\/\/www.silicloud.com\/ja\/blog\/iframe%e3%81%ae%e9%ab%98%e3%81%95%e3%82%92%e8%87%aa%e5%8b%95%e8%aa%bf%e6%95%b4%e3%81%99%e3%82%8b%e6%96%b9%e6%b3%95%e3%81%af%e4%bd%95%e3%81%a7%e3%81%99%e3%81%8b%ef%bc%9f\/#breadcrumb"},"inLanguage":"ja","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.silicloud.com\/ja\/blog\/iframe%e3%81%ae%e9%ab%98%e3%81%95%e3%82%92%e8%87%aa%e5%8b%95%e8%aa%bf%e6%95%b4%e3%81%99%e3%82%8b%e6%96%b9%e6%b3%95%e3%81%af%e4%bd%95%e3%81%a7%e3%81%99%e3%81%8b%ef%bc%9f\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.silicloud.com\/ja\/blog\/iframe%e3%81%ae%e9%ab%98%e3%81%95%e3%82%92%e8%87%aa%e5%8b%95%e8%aa%bf%e6%95%b4%e3%81%99%e3%82%8b%e6%96%b9%e6%b3%95%e3%81%af%e4%bd%95%e3%81%a7%e3%81%99%e3%81%8b%ef%bc%9f\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u9996\u9875","item":"https:\/\/www.silicloud.com\/ja\/blog\/"},{"@type":"ListItem","position":2,"name":"iframe\u306e\u9ad8\u3055\u3092\u81ea\u52d5\u8abf\u6574\u3059\u308b\u65b9\u6cd5\u306f\u4f55\u3067\u3059\u304b\uff1f"}]},{"@type":"WebSite","@id":"https:\/\/www.silicloud.com\/ja\/blog\/#website","url":"https:\/\/www.silicloud.com\/ja\/blog\/","name":"Blog - Silicon Cloud","description":"","inLanguage":"ja"},{"@type":"Person","@id":"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/aeb60a7861f2f002b54c66bd65bc6c27","name":"\u82bd\u4f9d, \u96e8\u591c","image":{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/www.silicloud.com\/ja\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/6305fe5cabc2b854c1208975a47fbf3f8cef3f7cd775b94dceedbe59b74a8010?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/6305fe5cabc2b854c1208975a47fbf3f8cef3f7cd775b94dceedbe59b74a8010?s=96&d=mm&r=g","caption":"\u82bd\u4f9d, \u96e8\u591c"},"url":"https:\/\/www.silicloud.com\/ja\/blog\/author\/meiamaya\/"},{"@type":"ImageObject","inLanguage":"ja","@id":"https:\/\/www.silicloud.com\/ja\/blog\/iframe%e3%81%ae%e9%ab%98%e3%81%95%e3%82%92%e8%87%aa%e5%8b%95%e8%aa%bf%e6%95%b4%e3%81%99%e3%82%8b%e6%96%b9%e6%b3%95%e3%81%af%e4%bd%95%e3%81%a7%e3%81%99%e3%81%8b%ef%bc%9f\/#local-main-organization-logo","url":"","contentUrl":"","caption":"Blog - Silicon Cloud"}]}},"_links":{"self":[{"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/posts\/17562","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/users\/10"}],"replies":[{"embeddable":true,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/comments?post=17562"}],"version-history":[{"count":2,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/posts\/17562\/revisions"}],"predecessor-version":[{"id":93764,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/posts\/17562\/revisions\/93764"}],"wp:attachment":[{"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/media?parent=17562"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/categories?post=17562"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.silicloud.com\/ja\/blog\/wp-json\/wp\/v2\/tags?post=17562"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}