{"id":269,"date":"2025-12-21T07:02:34","date_gmt":"2025-12-20T22:02:34","guid":{"rendered":"https:\/\/ichi-pro.co.jp\/?page_id=269"},"modified":"2026-02-25T19:35:56","modified_gmt":"2026-02-25T10:35:56","slug":"%e3%82%b3%e3%83%b3%e3%82%b5%e3%83%ab%e3%83%86%e3%82%a3%e3%83%b3%e3%82%b0","status":"publish","type":"page","link":"https:\/\/ichi-pro.co.jp\/?page_id=269","title":{"rendered":"\u30b3\u30f3\u30b5\u30eb\u30c6\u30a3\u30f3\u30b0\u4e8b\u696d"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\"><span data-color=\"#fcb900\" style=\"--vk-highlighter-color: rgba(252, 185, 0, 0.7);\" class=\"vk_highlighter\"><strong>\u30b3\u30f3\u30b5\u30eb\u30c6\u30a3\u30f3\u30b0<\/strong>\u4e8b\u696d<\/span><\/h2>\n\n\n\n<div class=\"wp-block-columns is-layout-flex wp-container-core-columns-is-layout-28f84493 wp-block-columns-is-layout-flex\">\n<div class=\"wp-block-column has-text-color has-link-color wp-elements-91959ff0ff9b59ed2b452df63675efff is-layout-flow wp-block-column-is-layout-flow\" style=\"color:#212519\">\n<p>\u300c\u4e8b\u696d\u4f1a\u793e\u306b\u63d0\u6848\u3057\u305f\u3044\u3051\u3069\u3001\u8cc7\u6599\u3082\u8a71\u306e\u7d44\u307f\u7acb\u3066\u65b9\u3082\u308f\u304b\u3089\u306a\u3044\u300d\u300cCVC\u3092\u7acb\u3061\u4e0a\u3052\u305f\u3044\u304c\u3001\u793e\u5185\u3067\u9032\u3081\u65b9\u304c\u6c7a\u307e\u3089\u306a\u3044\u300d\u2500\u2500 <\/p>\n\n\n\n<p>\u305d\u3093\u306a\"\u52d5\u3051\u306a\u3044\"\u3092\u4e00\u7dd2\u306b\u89e3\u304d\u307b\u3050\u3059\u306e\u304c\u30a4\u30c1\u30d7\u30ed\u306e\u30b3\u30f3\u30b5\u30eb\u30c6\u30a3\u30f3\u30b0\u3067\u3059\u3002\u7d4c\u55b6\u306e\u610f\u601d\u6c7a\u5b9a\u304b\u3089\u5b9f\u52d9\u30bf\u30b9\u30af\u306e\u63a8\u9032\u307e\u3067\u3001\u4f34\u8d70\u3057\u306a\u304c\u3089\u304a\u624b\u4f1d\u3044\u3057\u307e\u3059\u3002<br><\/p>\n\n\n\n<script>\n\/**\n * \u30a4\u30c1\u30d7\u30ed\u30fb\u30a4\u30f3\u30bf\u30e9\u30af\u30c6\u30a3\u30d6\u30fb\u30b3\u30a2\u30a8\u30f3\u30b8\u30f3\uff08\u7d71\u5408\u6700\u9069\u5316\u7248\uff09\n * \u642d\u8f09\u6a5f\u80fd\uff1aReveal, Scramble, Workflow-Line, Magnetic, Custom-Cursor\n *\/\nclass TextScramble {\n    constructor(el) {\n        this.el = el;\n        this.chars = '!<>-_\\\\\/[]{}\u2014=+*^?#________';\n        this.update = this.update.bind(this);\n    }\n    setText(newText) {\n        const oldText = this.el.innerText;\n        const length = Math.max(oldText.length, newText.length);\n        const promise = new Promise((resolve) => this.resolve = resolve);\n        this.queue = [];\n        for (let i = 0; i < length; i++) {\n            const from = oldText[i] || '';\n            const to = newText[i] || '';\n            const start = Math.floor(Math.random() * 40);\n            const end = start + Math.floor(Math.random() * 40);\n            this.queue.push({ from, to, start, end });\n        }\n        cancelAnimationFrame(this.frameRequest);\n        this.frame = 0;\n        this.update();\n        return promise;\n    }\n    update() {\n        let output = '';\n        let complete = 0;\n        for (let i = 0, n = this.queue.length; i < n; i++) {\n            let { from, to, start, end, char } = this.queue[i];\n            if (this.frame >= end) {\n                complete++;\n                output += to;\n            } else if (this.frame >= start) {\n                if (!char || Math.random() < 0.28) {\n                    char = this.chars[Math.floor(Math.random() * this.chars.length)];\n                    this.queue[i].char = char;\n                }\n                output += `<span style=\"opacity:0.5; color:var(--tech-cyan);\">${char}<\/span>`;\n            } else { output += from; }\n        }\n        this.el.innerHTML = output;\n        if (complete === this.queue.length) { this.resolve(); } \n        else { this.frameRequest = requestAnimationFrame(this.update); this.frame++; }\n    }\n}\n\ndocument.addEventListener('DOMContentLoaded', () => {\n    \/\/ \u8981\u7d20\u306e\u30ad\u30e3\u30c3\u30b7\u30e5\n    const cursor = document.getElementById('custom-cursor');\n    const line = document.getElementById('draw-line');\n    const workflow = document.getElementById('workflow-section');\n    const magnets = document.querySelectorAll('.magnetic-button');\n    const interactives = document.querySelectorAll('a, button, .service-card, .magnetic-button');\n\n    \/\/ --- A. Reveal & Scramble (\u30b9\u30af\u30ed\u30fc\u30eb\u76e3\u8996) ---\n    const revealObserver = new IntersectionObserver((entries) => {\n        entries.forEach(entry => {\n            if (entry.isIntersecting) {\n                entry.target.classList.add('is-visible');\n                if (entry.target.classList.contains('scramble-text')) {\n                    const fx = new TextScramble(entry.target);\n                    fx.setText(entry.target.innerText);\n                }\n                revealObserver.unobserve(entry.target);\n            }\n        });\n    }, { threshold: 0.1, rootMargin: '0px 0px -50px 0px' });\n\n    document.querySelectorAll('.reveal, .reveal-item, .scramble-text').forEach(el => revealObserver.observe(el));\n\n    \/\/ --- B. \u7d71\u5408\u66f4\u65b0\u30a8\u30f3\u30b8\u30f3\uff08MouseMove & Scroll\uff09 ---\n    let mouseX = 0, mouseY = 0;\n    let isTicking = false;\n\n    const updateAll = () => {\n        \/\/ 1. \u30ab\u30b9\u30bf\u30e0\u30ab\u30fc\u30bd\u30eb\uff08\u5ea7\u6a19\u30ba\u30ec\u4fee\u6b63\uff09\n        if (cursor) {\n            cursor.style.transform = `translate3d(${mouseX - 10}px, ${mouseY - 10}px, 0)`;\n        }\n\n        \/\/ 2. \u78c1\u529b\u30dc\u30bf\u30f3\n        magnets.forEach(btn => {\n            const rect = btn.getBoundingClientRect();\n            const centerX = rect.left + rect.width \/ 2;\n            const centerY = rect.top + rect.height \/ 2;\n            const dist = Math.hypot(mouseX - centerX, mouseY - centerY);\n            \n            if (dist < 100) {\n                const x = (mouseX - centerX) * 0.4;\n                const y = (mouseY - centerY) * 0.4;\n                btn.style.transform = `translate3d(${x}px, ${y}px, 0)`;\n                btn.style.transition = 'transform 0.1s ease-out';\n            } else {\n                btn.style.transform = 'translate3d(0, 0, 0)';\n                btn.style.transition = 'transform 0.6s cubic-bezier(0.23, 1, 0.32, 1)';\n            }\n        });\n\n        \/\/ 3. \u304a\u4ed5\u4e8b\u306e\u6d41\u308c\uff1a\u7e26\u7dda\n        if (workflow && line) {\n            const rect = workflow.getBoundingClientRect();\n            const winH = window.innerHeight;\n            const totalH = workflow.offsetHeight;\n            let progress = (winH * 0.85 - rect.top) \/ totalH;\n            progress = Math.max(0, Math.min(1, progress));\n            line.style.strokeDasharray = totalH;\n            line.style.strokeDashoffset = totalH - (totalH * progress);\n        }\n\n        isTicking = false;\n    };\n\n    \/\/ \u30a4\u30d9\u30f3\u30c8\u30ea\u30b9\u30ca\u30fc\n    window.addEventListener('mousemove', (e) => {\n        mouseX = e.clientX;\n        mouseY = e.clientY;\n        if (!isTicking) {\n            requestAnimationFrame(updateAll);\n            isTicking = true;\n        }\n    }, { passive: true });\n\n    window.addEventListener('scroll', () => {\n        if (!isTicking) {\n            requestAnimationFrame(updateAll);\n            isTicking = true;\n        }\n    }, { passive: true });\n\n    \/\/ \u30ab\u30fc\u30bd\u30eb\u30db\u30d0\u30fc\n    interactives.forEach(el => {\n        el.addEventListener('mouseenter', () => cursor?.classList.add('grow'));\n        el.addEventListener('mouseleave', () => cursor?.classList.remove('grow'));\n    });\n});\n<\/script>\n\n\n\n<div class=\"wp-block-group reveal-item service-card has-text-color has-background has-link-color wp-elements-78ac9e83abd9e2d6b0fbbc254550cc07 is-layout-constrained wp-block-group-is-layout-constrained\" style=\"color:#212519;background-color:#ff9d0a69\">\n<h4 class=\"wp-block-heading has-text-align-center is-style-vk-heading-plain vk_block-margin-xxs--margin-top vk_block-margin-xs--margin-bottom\"><strong><span data-color=\"#fcb900\" style=\"--vk-highlighter-color: rgba(252, 185, 0, 0.7);\" class=\"vk_highlighter\">\u30b9\u30bf\u30fc\u30c8\u30a2\u30c3\u30d7\u306e\u8cc7\u91d1\u8abf\u9054\u30fb\u5927\u4f01\u696d\u3068\u306e\u5354\u696d\u652f\u63f4 \u2500\u2500 \u300c\u63d0\u6848\u304c\u523a\u3055\u3089\u306a\u3044\u300d\u3092\u5909\u3048\u308b<\/span><\/strong><\/h4>\n\n\n\n<p class=\"has-background\" style=\"background-color:#f7eac8;padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\">\u5927\u4f01\u696d\u3078\u306e\u63d0\u6848\u306f\u300c\u4f55\u3092\u4f1d\u3048\u308b\u304b\u300d\u4ee5\u4e0a\u306b\u300c\u3069\u3046\u4f1d\u3048\u308b\u304b\u300d\u3067\u7d50\u679c\u304c\u5909\u308f\u308a\u307e\u3059\u3002\u30a4\u30c1\u30d7\u30ed\u3067\u306f\u3001\u4e8b\u696d\u4f1a\u793e\u3084CVC\u306e\u691c\u8a0e\u30d7\u30ed\u30bb\u30b9\u3092\u7406\u89e3\u3057\u305f\u4e0a\u3067\u3001\u5354\u696d\u30c6\u30fc\u30de\u306e\u6574\u7406\u304b\u3089\u63d0\u6848\u30b9\u30c8\u30fc\u30ea\u30fc\u306e\u8a2d\u8a08\u3001\u63d0\u6848\u8cc7\u6599\u306e\u4f5c\u6210\u307e\u3067\u3092\u4e00\u7dd2\u306b\u9032\u3081\u307e\u3059\u3002\u7d4c\u55b6\u306e\u300c\u4e2d\u8eab\u300d\u3092\u6574\u3048\u308b\u30b3\u30f3\u30b5\u30eb\u30c6\u30a3\u30f3\u30b0\u3068\u3001\u4f1d\u308f\u308b\u300c\u898b\u305b\u65b9\u300d\u3092\u3064\u304f\u308b\u30af\u30ea\u30a8\u30a4\u30c6\u30a3\u30d6\u3002\u3053\u306e\u4e21\u9762\u304b\u3089\u6e96\u5099\u3067\u304d\u308b\u306e\u304c\u30a4\u30c1\u30d7\u30ed\u306e\u7279\u9577\u3067\u3059\u3002<br><br>\u652f\u63f4\u5185\u5bb9<br>\u30fb\u5354\u696d\u30c6\u30fc\u30de\u306e\u68da\u5378\u3057\u3068\u512a\u5148\u9806\u4f4d\u3065\u3051<br>\u30fb\u4e8b\u696d\u4f1a\u793e\u306e\u691c\u8a0e\u30d7\u30ed\u30bb\u30b9\u306b\u5408\u308f\u305b\u305f\u63d0\u6848\u30b9\u30c8\u30fc\u30ea\u30fc\u8a2d\u8a08<br>\u30fb\u30d4\u30c3\u30c1\u8cc7\u6599\u30fb\u63d0\u6848\u66f8\u306e\u4f5c\u6210\uff08\u69cb\u6210\u30fb\u30b3\u30d4\u30fc\u30fb\u30c7\u30b6\u30a4\u30f3\uff09<br>\u30fb\u63d0\u6848\u5148\u5019\u88dc\u306e\u30ea\u30b9\u30c8\u30a2\u30c3\u30d7\u3068\u521d\u671f\u30a2\u30d7\u30ed\u30fc\u30c1\u8a2d\u8a08<\/p>\n<\/div>\n\n\n\n<p> <br> <\/p>\n\n\n\n<div class=\"wp-block-group reveal-item service-card has-background is-layout-constrained wp-block-group-is-layout-constrained\" style=\"background-color:#ff9d0a69\">\n<h4 class=\"wp-block-heading has-text-align-center is-style-vk-heading-plain vk_block-margin-xxs--margin-top vk_block-margin-xs--margin-bottom\"><strong><span data-color=\"#fcb900\" style=\"--vk-highlighter-color: rgba(252, 185, 0, 0.7);\" class=\"vk_highlighter\">CVC\u8a2d\u7acb\u30fb\u904b\u55b6 \/ \u30aa\u30fc\u30d7\u30f3\u30a4\u30ce\u30d9\u30fc\u30b7\u30e7\u30f3\u652f\u63f4 \u2500\u2500 \u300c\u59cb\u3081\u305f\u3044\u306e\u306b\u3001\u793e\u5185\u304c\u52d5\u304b\u306a\u3044\u300d\u3092\u89e3\u6c7a\u3059\u308b<\/span><\/strong><\/h4>\n\n\n\n<p class=\"has-background\" style=\"background-color:#f7eac8;padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\">\u300cCVC\u3092\u4f5c\u308a\u305f\u3044\u304c\u793e\u5185\u306e\u5408\u610f\u5f62\u6210\u304c\u9032\u307e\u306a\u3044\u300d\u300c\u30b9\u30bf\u30fc\u30c8\u30a2\u30c3\u30d7\u3068\u306e\u5354\u696d\u3092\u59cb\u3081\u305f\u3044\u304c\u3001\u4f55\u304b\u3089\u624b\u3092\u3064\u3051\u308b\u304b\u308f\u304b\u3089\u306a\u3044\u300d\u2500\u2500\u3053\u3046\u3057\u305f\u58f0\u306b\u3001\u30a4\u30c1\u30d7\u30ed\u306f\u5b9f\u52d9\u30ec\u30d9\u30eb\u3067\u304a\u5fdc\u3048\u3057\u307e\u3059\u3002\u6295\u8cc7\u65b9\u91dd\u3084\u5224\u65ad\u57fa\u6e96\u306e\u6574\u7406\u3001\u63a8\u9032\u4f53\u5236\u306e\u8a2d\u8a08\u3001\u5354\u696d\u30c6\u30fc\u30de\u306e\u512a\u5148\u9806\u4f4d\u3065\u3051\u307e\u3067\u3001\u610f\u601d\u6c7a\u5b9a\u306b\u5fc5\u8981\u306a\u6750\u6599\u3092\u4e00\u7dd2\u306b\u63c3\u3048\u307e\u3059\u3002\u3055\u3089\u306b\u3001\u793e\u5185\u5916\u306b\u5411\u3051\u305fCVC\u306e\u767a\u4fe1\u8a2d\u8a08\uff08Web\u30fb\u6620\u50cf\uff09\u307e\u3067\u4e00\u6c17\u901a\u8cab\u3067\u652f\u63f4\u3067\u304d\u308b\u306e\u304c\u3001\u30a4\u30c1\u30d7\u30ed\u306a\u3089\u3067\u306f\u306e\u5f37\u307f\u3067\u3059\u3002<br><br>\u652f\u63f4\u5185\u5bb9<br>\u30fb\u65b9\u91dd\u30fb\u5224\u65ad\u57fa\u6e96\u306e\u6574\u7406<br>\u30fb\u9032\u3081\u65b9\u306e\u8a2d\u8a08\uff08\u4f53\u5236\u3001\u4f1a\u8b70\uff09<br>\u30fb\u5354\u696d\u30c6\u30fc\u30de\u306e\u68da\u5378\u3057\u3068\u512a\u5148\u9806\u4f4d<\/p>\n<\/div>\n\n\n\n<p><br> <\/p>\n\n\n\n<div class=\"wp-block-group reveal-item service-card has-background is-layout-constrained wp-block-group-is-layout-constrained\" style=\"background-color:#ff9d0a69\">\n<h4 class=\"wp-block-heading has-text-align-center is-style-vk-heading-plain vk_block-margin-xxs--margin-top vk_block-margin-xs--margin-bottom\"><strong><span data-color=\"#fcb900\" style=\"--vk-highlighter-color: rgba(252, 185, 0, 0.7);\" class=\"vk_highlighter\">\u4e2d\u5c0f\u4f01\u696d\u306e\u7d4c\u55b6\u652f\u63f4 \u2500\u2500 \u8ab2\u984c\u306e\u6574\u7406\u304b\u3089\u3001\u4f1d\u3048\u65b9\u306e\u8a2d\u8a08\u307e\u3067<\/span><\/strong><\/h4>\n\n\n\n<p class=\"has-background\" style=\"background-color:#f7eac8;padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\">\u300c\u3084\u308b\u3079\u304d\u3053\u3068\u304c\u591a\u3059\u304e\u3066\u512a\u5148\u9806\u4f4d\u304c\u3064\u3051\u3089\u308c\u306a\u3044\u300d\u300c\u81ea\u793e\u306e\u5f37\u307f\u3092\u3046\u307e\u304f\u8aac\u660e\u3067\u304d\u306a\u3044\u300d\u2500\u2500 \u305d\u3093\u306a\u7d4c\u55b6\u8005\u306e\u65b9\u306b\u3001\u307e\u305a\u8ab2\u984c\u306e\u68da\u5378\u3057\u304b\u3089\u4f34\u8d70\u3057\u307e\u3059\u3002\u73fe\u72b6\u5206\u6790\u3068\u6253\u3061\u624b\u306e\u6574\u7406\u306f\u3082\u3061\u308d\u3093\u3001\u6210\u9577\u6226\u7565\u306b\u57fa\u3065\u3044\u305f\u30d7\u30ed\u30e2\u30fc\u30b7\u30e7\u30f3\u8a2d\u8a08\u307e\u3067\u3001\u300c\u8003\u3048\u308b\u300d\u3068\u300c\u4f1d\u3048\u308b\u300d\u3092\u30bb\u30c3\u30c8\u3067\u3054\u652f\u63f4\u3057\u307e\u3059\u3002<br><br>\u652f\u63f4\u5185\u5bb9<br>\u30fb\u8ab2\u984c\u306e\u68da\u5378\u3057\uff08\u73fe\u72b6\u5206\u6790\u3001\u539f\u56e0\u3001\u6253\u3061\u624b\uff09<br>\u30fb\u5b9f\u884c\u8a08\u753b\u3065\u304f\u308a<br>\u30fb\u9023\u643a\u5148\u691c\u8a0e\u306e\u6574\u7406<\/p>\n<\/div>\n\n\n\n<p><br> <\/p>\n\n\n\n<div class=\"wp-block-group reveal-item service-card has-background is-layout-constrained wp-block-group-is-layout-constrained\" style=\"background-color:#ff9d0a69\">\n<h4 class=\"wp-block-heading has-text-align-center is-style-vk-heading-plain vk_block-margin-xxs--margin-top vk_block-margin-xs--margin-bottom\"><strong><span data-color=\"#fcb900\" style=\"--vk-highlighter-color: rgba(252, 185, 0, 0.7);\" class=\"vk_highlighter\">\u897f\u65e5\u672c\u30fb\u95a2\u897f\u30a8\u30ea\u30a2\u3078\u306e\u4e8b\u696d\u5c55\u958b\u652f\u63f4 \u2500\u2500 \u5927\u962a\u62e0\u70b9\u3060\u304b\u3089\u3067\u304d\u308b\u3001\u73fe\u5730\u306b\u6839\u3056\u3057\u305f\u30b5\u30dd\u30fc\u30c8<\/span><\/strong><\/h4>\n\n\n\n<p class=\"has-background\" style=\"background-color:#f7eac8;padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)\">\u5927\u962a\u30fb\u6885\u7530\u306b\u62e0\u70b9\u3092\u69cb\u3048\u308b\u30a4\u30c1\u30d7\u30ed\u3060\u304b\u3089\u3053\u305d\u3001\u95a2\u897f\u306e\u30d3\u30b8\u30cd\u30b9\u6163\u7fd2\u3084\u5730\u5143\u30cd\u30c3\u30c8\u30ef\u30fc\u30af\u3092\u6d3b\u304b\u3057\u305f\u652f\u63f4\u304c\u3067\u304d\u307e\u3059\u3002\u9032\u51fa\u8a08\u753b\u306e\u7b56\u5b9a\u3084\u30d1\u30fc\u30c8\u30ca\u30fc\u63a2\u7d22\u306f\u3082\u3061\u308d\u3093\u3001\u73fe\u5730\u3067\u306e\u30d7\u30ed\u30e2\u30fc\u30b7\u30e7\u30f3\uff08Web\u30fb\u6620\u50cf\u5236\u4f5c\uff09\u307e\u3067\u30ef\u30f3\u30b9\u30c8\u30c3\u30d7\u3067\u5bfe\u5fdc\u30022025\u5e74\u306e\u5927\u962a\u30fb\u95a2\u897f\u4e07\u535a\u3092\u5951\u6a5f\u306b\u3001\u95a2\u897f\u570f\u306f\u30b9\u30bf\u30fc\u30c8\u30a2\u30c3\u30d7\u3084\u30c7\u30a3\u30fc\u30d7\u30c6\u30c3\u30af\u5206\u91ce\u3067\u6ce8\u76ee\u304c\u96c6\u307e\u3063\u3066\u3044\u307e\u3059\u3002\u6771\u4eac\u304b\u3089\u95a2\u897f\u3078\u3001\u3042\u308b\u3044\u306f\u95a2\u897f\u306e\u4e2d\u3067\u3055\u3089\u306b\u4e8b\u696d\u3092\u5e83\u3052\u305f\u3044\u4f01\u696d\u3055\u307e\u306b\u5bc4\u308a\u6dfb\u3044\u307e\u3059\u3002<br><br>\u652f\u63f4\u5185\u5bb9<br>\u30fb\u9032\u51fa\u8a08\u753b\u306e\u6574\u7406\uff08\u76ee\u7684\u3001\u7bc4\u56f2\u3001\u30b9\u30b1\u30b8\u30e5\u30fc\u30eb\uff09<br>\u30fb\u5fc5\u8981\u306a\u8ad6\u70b9\u306e\u6d17\u3044\u51fa\u3057\uff08\u4f53\u5236\u3001\u5354\u696d\u3001\u904b\u7528\uff09<br>\u30fb\u30d1\u30fc\u30c8\u30ca\u30fc\u63a2\u7d22\u306e\u65b9\u91dd\u6574\u7406\uff08\u6c42\u3081\u308b\u6761\u4ef6\u3001\u9032\u3081\u65b9\uff09<\/p>\n<\/div>\n<\/div>\n<\/div>\n\n\n\n<p><br><br> <br><\/p>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u30b3\u30f3\u30b5\u30eb\u30c6\u30a3\u30f3\u30b0\u4e8b\u696d \u300c\u4e8b\u696d\u4f1a\u793e\u306b\u63d0\u6848\u3057\u305f\u3044\u3051\u3069\u3001\u8cc7\u6599\u3082\u8a71\u306e\u7d44\u307f\u7acb\u3066\u65b9\u3082\u308f\u304b\u3089\u306a\u3044\u300d\u300cCVC\u3092\u7acb\u3061\u4e0a\u3052\u305f\u3044\u304c\u3001\u793e\u5185\u3067\u9032\u3081\u65b9\u304c\u6c7a\u307e\u3089\u306a\u3044\u300d\u2500\u2500 \u305d\u3093\u306a\"\u52d5\u3051\u306a\u3044\"\u3092\u4e00\u7dd2\u306b\u89e3\u304d\u307b\u3050\u3059\u306e\u304c\u30a4\u30c1\u30d7\u30ed\u306e\u30b3\u30f3\u30b5\u30eb\u30c6\u30a3\u30f3\u30b0\u3067\u3059\u3002\u7d4c\u55b6\u306e [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"vkexunit_cta_each_option":"","footnotes":""},"class_list":["post-269","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/ichi-pro.co.jp\/index.php?rest_route=\/wp\/v2\/pages\/269","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ichi-pro.co.jp\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/ichi-pro.co.jp\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/ichi-pro.co.jp\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/ichi-pro.co.jp\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=269"}],"version-history":[{"count":11,"href":"https:\/\/ichi-pro.co.jp\/index.php?rest_route=\/wp\/v2\/pages\/269\/revisions"}],"predecessor-version":[{"id":667,"href":"https:\/\/ichi-pro.co.jp\/index.php?rest_route=\/wp\/v2\/pages\/269\/revisions\/667"}],"wp:attachment":[{"href":"https:\/\/ichi-pro.co.jp\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=269"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}