{"id":106,"date":"2026-07-16T14:59:32","date_gmt":"2026-07-16T05:59:32","guid":{"rendered":"http:\/\/ari777.website\/?page_id=106"},"modified":"2026-07-17T11:39:46","modified_gmt":"2026-07-17T02:39:46","slug":"%e3%83%96%e3%83%ad%e3%82%b0","status":"publish","type":"page","link":"https:\/\/ari777.website\/?page_id=106","title":{"rendered":"\u30d6\u30ed\u30b0"},"content":{"rendered":"\n<!-- 1. \u8a18\u4e8b\u3092\u8868\u793a\u3059\u308b\u5834\u6240\uff08\u67a0\u7d44\u307f\uff09\u3092\u4f5c\u308b -->\n<div class=\"blog-container\">\n  <h2>\u6700\u65b0\u306e\u30d6\u30ed\u30b0\u8a18\u4e8b<\/h2>\n  <ul id=\"blog-list\" class=\"blog-grid\">\n    <!-- \u3053\u3053\u306b\u81ea\u52d5\u3067\u753b\u50cf\u4ed8\u304d\u8a18\u4e8b\u304c\u8ffd\u52a0\u3055\u308c\u307e\u3059 -->\n    <li class=\"loading\">\u8aad\u307f\u8fbc\u307f\u4e2d&#8230;<\/li>\n  <\/ul>\n<\/div>\n\n<!-- 2. JavaScript\u3067WordPress\u304b\u3089\u300c\u753b\u50cf\u4ed8\u304d\u300d\u30c7\u30fc\u30bf\u3092\u53d6\u5f97\u3057\u3066\u6d41\u3057\u8fbc\u3080 -->\n<script>\n  \/\/ \u2605\u753b\u50cf\u30c7\u30fc\u30bf\u3092\u4e00\u7dd2\u306b\u53d6\u5f97\u3059\u308b\u305f\u3081\u306b\u3001\u672b\u5c3e\u306b\u300c&_embed\u300d\u3092\u8ffd\u52a0\u3057\u3066\u3044\u307e\u3059\n\/\/ \u6700\u65b0\u8a18\u4e8b\u304b\u3089\u9806\u756a\u306b\u3001\u6700\u5927100\u4ef6\uff08\u5b9f\u8cea\u3059\u3079\u3066\uff09\u3092\u307e\u3068\u3081\u3066\u53d6\u5f97\u3059\u308b\u3088\u3046\u306b\u3057\u307e\u3059\nconst wpApiUrl = 'https:\/\/ari777.website\/?rest_route=\/wp\/v2\/posts&per_page=100&_embed';\n\n  async function fetchBlogPosts() {\n    const listElement = document.getElementById('blog-list');\n    \n    try {\n      const response = await fetch(wpApiUrl);\n      if (!response.ok) {\n        throw new Error('\u30c7\u30fc\u30bf\u306e\u53d6\u5f97\u306b\u5931\u6557\u3057\u307e\u3057\u305f');\n      }\n      const posts = await response.json();\n      \n      \/\/ \u8aad\u307f\u8fbc\u307f\u4e2d\u8868\u793a\u3092\u6d88\u3059\n      listElement.innerHTML = '';\n      \n      if (posts.length === 0) {\n        listElement.innerHTML = '<li>\u8a18\u4e8b\u304c\u3042\u308a\u307e\u305b\u3093\u3002<\/li>';\n        return;\n      }\n\n      \/\/ \u53d6\u5f97\u3057\u305f\u8a18\u4e8b\u30921\u4ef6\u305a\u3064HTML\u306b\u7d44\u307f\u7acb\u3066\u3066\u3044\u304f\n      posts.forEach(post => {\n        \/\/ \u65e5\u4ed8\u3092\u300cYYYY.MM.DD\u300d\u306e\u5f62\u5f0f\u306b\u5909\u63db\n        const postDate = new Date(post.date);\n        const formattedDate = `${postDate.getFullYear()}.${String(postDate.getMonth() + 1).padStart(2, '0')}.${String(postDate.getDate()).padStart(2, '0')}`;\n        \n        \/\/ \u8a18\u4e8b\u30bf\u30a4\u30c8\u30eb\u3068\u30ea\u30f3\u30af\u3092\u53d6\u5f97\n        const title = post.title.rendered;\n        const link = post.link;\n\n        \/\/ \u30a2\u30a4\u30ad\u30e3\u30c3\u30c1\u753b\u50cf\u306eURL\u3092\u53d6\u5f97\u3059\u308b\uff08\u753b\u50cf\u304c\u306a\u3044\u5834\u5408\u306e\u4e88\u5099\u753b\u50cf\u3082\u8a2d\u5b9a\uff09\n        let imageUrl = 'https:\/\/placehold.jp\/300x200.png?text=No+Image'; \/\/ \u753b\u50cf\u304c\u306a\u3044\u6642\u306e\u30b0\u30ec\u30fc\u306e\u753b\u50cf\n        try {\n          if (post._embedded && post._embedded['wp:featuredmedia'] && post._embedded['wp:featuredmedia'][0]) {\n            \/\/ \u4e2d\u30b5\u30a4\u30ba\uff08medium\uff09\u306e\u753b\u50cfURL\u3092\u53d6\u5f97\uff08\u306a\u3051\u308c\u3070\u30d5\u30eb\u30b5\u30a4\u30ba\uff09\n            const media = post._embedded['wp:featuredmedia'][0];\n            imageUrl = media.media_details.sizes.medium ? media.media_details.sizes.medium.source_url : media.source_url;\n          }\n        } catch (e) {\n          console.log('\u753b\u50cf\u306e\u53d6\u5f97\u306b\u5931\u6557\u3057\u307e\u3057\u305f\u3002\u4e88\u5099\u753b\u50cf\u3092\u4f7f\u7528\u3057\u307e\u3059\u3002');\n        }\n\n        \/\/ HTML\u8981\u7d20\uff08\u753b\u50cf\uff0b\u65e5\u4ed8\uff0b\u30bf\u30a4\u30c8\u30eb\uff09\u3092\u4f5c\u6210\u3057\u3066\u8ffd\u52a0\n        const li = document.createElement('li');\n        li.className = 'blog-item';\n        li.innerHTML = `\n          <a href=\"${link}\" target=\"_blank\" rel=\"noopener\" class=\"blog-link\">\n            <div class=\"blog-thumb\">\n              <img decoding=\"async\" src=\"${imageUrl}\" alt=\"${title}\" loading=\"lazy\">\n            <\/div>\n            <div class=\"blog-content\">\n              <span class=\"date\">${formattedDate}<\/span>\n              <h3 class=\"blog-title\">${title}<\/h3>\n            <\/div>\n          <\/a>\n        `;\n        listElement.appendChild(li);\n      });\n\n    } catch (error) {\n      console.error('\u30a8\u30e9\u30fc:', error);\n      listElement.innerHTML = '<li>\u8a18\u4e8b\u306e\u8aad\u307f\u8fbc\u307f\u306b\u5931\u6557\u3057\u307e\u3057\u305f\u3002<\/li>';\n    }\n  }\n\n  \/\/ \u30da\u30fc\u30b8\u304c\u8aad\u307f\u8fbc\u307e\u308c\u305f\u3089\u5b9f\u884c\n  document.addEventListener('DOMContentLoaded', fetchBlogPosts);\n<\/script>\n","protected":false},"excerpt":{"rendered":"<p>\u6700\u65b0\u306e\u30d6\u30ed\u30b0\u8a18\u4e8b \u8aad\u307f\u8fbc\u307f\u4e2d&#038;#8230 [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"_zipai_imported":false,"_zipai_import_id":"","footnotes":""},"class_list":["post-106","page","type-page","status-publish","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>\u30d6\u30ed\u30b0 - Ari | WEB\u30e9\u30a4\u30c6\u30a3\u30f3\u30b0\uff06SNS\u904b\u7528\u4ee3\u884c<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/ari777.website\/?page_id=106\" \/>\n<meta property=\"og:locale\" content=\"ja_JP\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"\u30d6\u30ed\u30b0 - Ari | WEB\u30e9\u30a4\u30c6\u30a3\u30f3\u30b0\uff06SNS\u904b\u7528\u4ee3\u884c\" \/>\n<meta property=\"og:description\" content=\"\u6700\u65b0\u306e\u30d6\u30ed\u30b0\u8a18\u4e8b \u8aad\u307f\u8fbc\u307f\u4e2d&amp;#8230 [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/ari777.website\/?page_id=106\" \/>\n<meta property=\"og:site_name\" content=\"Ari | WEB\u30e9\u30a4\u30c6\u30a3\u30f3\u30b0\uff06SNS\u904b\u7528\u4ee3\u884c\" \/>\n<meta property=\"article:modified_time\" content=\"2026-07-17T02:39:46+00:00\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593\" \/>\n\t<meta name=\"twitter:data1\" content=\"4\u5206\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/ari777.website\\\/?page_id=106\",\"url\":\"https:\\\/\\\/ari777.website\\\/?page_id=106\",\"name\":\"\u30d6\u30ed\u30b0 - Ari | WEB\u30e9\u30a4\u30c6\u30a3\u30f3\u30b0\uff06SNS\u904b\u7528\u4ee3\u884c\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/ari777.website\\\/#website\"},\"datePublished\":\"2026-07-16T05:59:32+00:00\",\"dateModified\":\"2026-07-17T02:39:46+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/ari777.website\\\/?page_id=106#breadcrumb\"},\"inLanguage\":\"ja\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/ari777.website\\\/?page_id=106\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/ari777.website\\\/?page_id=106#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u30db\u30fc\u30e0\",\"item\":\"https:\\\/\\\/ari777.website\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"\u30d6\u30ed\u30b0\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/ari777.website\\\/#website\",\"url\":\"https:\\\/\\\/ari777.website\\\/\",\"name\":\"Ari | WEB\u30e9\u30a4\u30c6\u30a3\u30f3\u30b0\uff06SNS\u904b\u7528\u4ee3\u884c\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/ari777.website\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ja\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"\u30d6\u30ed\u30b0 - Ari | WEB\u30e9\u30a4\u30c6\u30a3\u30f3\u30b0\uff06SNS\u904b\u7528\u4ee3\u884c","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:\/\/ari777.website\/?page_id=106","og_locale":"ja_JP","og_type":"article","og_title":"\u30d6\u30ed\u30b0 - Ari | WEB\u30e9\u30a4\u30c6\u30a3\u30f3\u30b0\uff06SNS\u904b\u7528\u4ee3\u884c","og_description":"\u6700\u65b0\u306e\u30d6\u30ed\u30b0\u8a18\u4e8b \u8aad\u307f\u8fbc\u307f\u4e2d&#8230 [&hellip;]","og_url":"https:\/\/ari777.website\/?page_id=106","og_site_name":"Ari | WEB\u30e9\u30a4\u30c6\u30a3\u30f3\u30b0\uff06SNS\u904b\u7528\u4ee3\u884c","article_modified_time":"2026-07-17T02:39:46+00:00","twitter_card":"summary_large_image","twitter_misc":{"\u63a8\u5b9a\u8aad\u307f\u53d6\u308a\u6642\u9593":"4\u5206"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/ari777.website\/?page_id=106","url":"https:\/\/ari777.website\/?page_id=106","name":"\u30d6\u30ed\u30b0 - Ari | WEB\u30e9\u30a4\u30c6\u30a3\u30f3\u30b0\uff06SNS\u904b\u7528\u4ee3\u884c","isPartOf":{"@id":"https:\/\/ari777.website\/#website"},"datePublished":"2026-07-16T05:59:32+00:00","dateModified":"2026-07-17T02:39:46+00:00","breadcrumb":{"@id":"https:\/\/ari777.website\/?page_id=106#breadcrumb"},"inLanguage":"ja","potentialAction":[{"@type":"ReadAction","target":["https:\/\/ari777.website\/?page_id=106"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/ari777.website\/?page_id=106#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u30db\u30fc\u30e0","item":"https:\/\/ari777.website\/"},{"@type":"ListItem","position":2,"name":"\u30d6\u30ed\u30b0"}]},{"@type":"WebSite","@id":"https:\/\/ari777.website\/#website","url":"https:\/\/ari777.website\/","name":"Ari | WEB\u30e9\u30a4\u30c6\u30a3\u30f3\u30b0\uff06SNS\u904b\u7528\u4ee3\u884c","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/ari777.website\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ja"}]}},"spectra_blocks_featured_image_url":null,"spectra_blocks_author_info":{"display_name":"ari1014","avatar_url":"https:\/\/secure.gravatar.com\/avatar\/c8add86877dfe175e7c4165fcb42cd302b1baa7948f2c2492dd222a382f42b6a?s=96&d=mm&r=g","author_link":"https:\/\/ari777.website\/?author=1","description":""},"_links":{"self":[{"href":"https:\/\/ari777.website\/index.php?rest_route=\/wp\/v2\/pages\/106","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ari777.website\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/ari777.website\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/ari777.website\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/ari777.website\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=106"}],"version-history":[{"count":10,"href":"https:\/\/ari777.website\/index.php?rest_route=\/wp\/v2\/pages\/106\/revisions"}],"predecessor-version":[{"id":161,"href":"https:\/\/ari777.website\/index.php?rest_route=\/wp\/v2\/pages\/106\/revisions\/161"}],"wp:attachment":[{"href":"https:\/\/ari777.website\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=106"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}