{"id":2088,"date":"2026-02-24T10:44:03","date_gmt":"2026-02-24T01:44:03","guid":{"rendered":"https:\/\/web2.winpal.net\/?page_id=2088"},"modified":"2026-02-26T14:15:30","modified_gmt":"2026-02-26T05:15:30","slug":"slp","status":"publish","type":"page","link":"https:\/\/web2.winpal.net\/index.php\/slp\/","title":{"rendered":"\u30b9\u30ef\u30a4\u30d7LP"},"content":{"rendered":"\n<script>\ndocument.addEventListener(\"DOMContentLoaded\", function() {\n\n  \/* =========================\n     \u30ab\u30d0\u30fc\u52d5\u753b\uff1a1\u56de\u518d\u751f\u3067\u505c\u6b62\n  ========================= *\/\n  const videos = document.querySelectorAll(\".wp-block-cover video\");\n\n  videos.forEach(video => {\n    video.removeAttribute(\"loop\");\n    video.loop = false;\n    video.addEventListener(\"ended\", function() {\n      video.pause();\n    });\n  });\n\n  \/* =========================\n     \u30d2\u30fc\u30ed\u30fc\u8868\u793a\u4e2dCTA\u975e\u8868\u793a\n  ========================= *\/\n  const hero = document.querySelector(\".hero-hide-cta\");\n  const cta  = document.querySelector(\".lp-fixed-cta\");\n\n  if (hero && cta) {\n    const heroObserver = new IntersectionObserver((entries) => {\n      entries.forEach(entry => {\n        if (entry.isIntersecting) {\n          cta.classList.add(\"is-hidden\");\n        } else {\n          cta.classList.remove(\"is-hidden\");\n        }\n      });\n    }, { threshold: 0.1 });\n\n    heroObserver.observe(hero);\n  }\n\n});\ndocument.addEventListener('DOMContentLoaded', function() {\n\n  if (window.lp2088Initialized) return;\n  window.lp2088Initialized = true;\n\n  if (!document.body.classList.contains('page-id-2088')) return;\n  if (window.innerWidth > 768) return;\n\n  const ANIMATION_TIME = 350;\n  const SWIPE_THRESHOLD = 15;\n\n  const points = document.querySelectorAll('.snap-point');\n  if (!points.length) return;\n\n  let isMoving = false;\n  let startY = 0;\n\n  function getAbsoluteTop(el) {\n    return el.getBoundingClientRect().top + window.scrollY;\n  }\n\n  function getCurrentIndex() {\n    let closest = 0;\n    let minDiff = Infinity;\n\n    points.forEach((point, i) => {\n      const diff = Math.abs(window.scrollY - getAbsoluteTop(point));\n      if (diff < minDiff) {\n        minDiff = diff;\n        closest = i;\n      }\n    });\n\n    return closest;\n  }\n\n  function scrollToPoint(index) {\n    if (index < 0 || index >= points.length) return;\n    if (isMoving) return;\n\n    isMoving = true;\n\n    const target = getAbsoluteTop(points[index]);\n\n    window.scrollTo({\n      top: target,\n      behavior: 'smooth'\n    });\n\n    setTimeout(function() {\n      window.scrollTo(0, getAbsoluteTop(points[index]));\n      isMoving = false;\n    }, ANIMATION_TIME);\n  }\n\n  requestAnimationFrame(function() {\n    window.scrollTo(0, getAbsoluteTop(points[0]));\n  });\n\n  window.addEventListener('touchstart', function(e) {\n    startY = e.touches[0].clientY;\n  }, { passive: true });\n\n  window.addEventListener('touchend', function(e) {\n\n    if (isMoving) return;\n\n    const endY = e.changedTouches[0].clientY;\n    const diff = startY - endY;\n\n    if (Math.abs(diff) < SWIPE_THRESHOLD) return;\n\n    const current = getCurrentIndex();\n\n    if (diff > 0) {\n      scrollToPoint(current + 1);\n    } else {\n      scrollToPoint(current - 1);\n    }\n\n  });\n\n  window.addEventListener('touchmove', function(e) {\n    if (isMoving) e.preventDefault();\n  }, { passive: false });\n\n});\n<\/script>\n<style>\n\n@media (max-width: 768px) {\n\n  body.page-id-2088 .grecaptcha-badge {\n    top: 0 !important;\n    transform: scale(0.75);\n\n  }\n\n  body.page-id-2088 {\n    overflow-y: auto;\n  }\n\n  body.page-id-2088 .siteContent {\n    margin-top: 0 !important;\n    padding: 0 !important;\n  }\n\n  body.page-id-2088.snap-point {\n    position: relative;\n    height: 1px;\n    width: 100%;\n  }\n\n  \/* =========================\n     \u8ffd\u5f93CTA\n  ========================= *\/\n  body.page-id-2088 .lp-fixed-cta {\n    position: fixed;\n    left: 0;\n    bottom: 0;\n    width: 100%;\n    margin: 0;\n    z-index: 999;\n    transition: transform .3s ease, opacity .3s ease;\n  }\n\n  body.page-id-2088 header.navbar.siteHeader,\n  body.page-id-2088 .siteContent_after,\n  body.page-id-2088 .wp-call-button {\n    display: none !important;\n  }\n\n  body.page-id-2088 .lp-fixed-cta.is-hidden {\n    transform: translateY(100%);\n    opacity: 0;\n  }\n\n  body.page-id-2088 .lp-fixed-cta .wp-block-cover__inner-container {\n    padding: 14px 16px;\n    text-align: center;\n  }\n\n\/* =========================\n   CTA\u30dc\u30bf\u30f3\n========================= *\/\nbody.page-id-2088 .lp-fixed-cta a {\n  display: inline-block;\n  padding: 14px 28px;\n  background: #1c2b3a;\n  color: #fff;\n  text-decoration: none;\n  border-radius: 6px;\n  letter-spacing: .08em;\n  font-weight: 500;\n  box-shadow: 0 4px 8px rgba(0,0,0,.25);\n  transition:\n    transform .15s ease,\n    box-shadow .15s ease,\n    background .15s ease;\n}\n\n\/* hover *\/\n@media (hover: hover) {\n  body.page-id-2088 .lp-fixed-cta a:hover {\n    transform: translateY(-1px);\n    box-shadow: 0 6px 12px rgba(0,0,0,.35);\n    background: #223548;\n  }\n}\n\n\/* tap *\/\nbody.page-id-2088 .lp-fixed-cta a:active {\n  transform: translateY(1px) scale(.98);\n  box-shadow: 0 2px 6px rgba(0,0,0,.2);\n}\n\n\/* \u7de8\u96c6\u753b\u9762\u3067\u306f\u8ffd\u5f93\u3057\u306a\u3044 *\/\n.editor-styles-wrapper .lp-fixed-cta {\n  position: static !important;\n}\n}\nbody.page-id-2088 .lp-fixed-cta img {\n  animation: cta-pulse 4s ease-in-out infinite;\n}\n@media (max-width: 768px) {\n  body.page-id-2088 .lp-fixed-cta {\n    min-height: 60px;\n    max-height: 60px;\n    height: 60px;\n    overflow: hidden; \/* \u306f\u307f\u51fa\u3057\u9632\u6b62 *\/\n  }\n}\n\n\n<\/style>\n\n\n\n<p class=\"has-text-align-center vk_hidden-xs vk_hidden-sm\">\u3053\u306e\u30da\u30fc\u30b8\u306f\u30b9\u30de\u30fc\u30c8\u30d5\u30a9\u30f3\u7528\u30b3\u30f3\u30c6\u30f3\u30c4\u3067\u3059\u3002<br>\u305c\u3072QR\u30b3\u30fc\u30c9\u3092\u8aad\u307f\u8fbc\u3093\u3067\u30b9\u30de\u30fc\u30c8\u30d5\u30a9\u30f3\u3067\u8868\u793a\u3057\u3066\u307f\u3066\u304f\u3060\u3055\u3044(&#8216;\u03c9&#8217;)\u30ce<\/p>\n\n\n\n<div class=\"wp-block-group vk_hidden-xs vk_hidden-sm is-content-justification-center is-nowrap is-layout-flex wp-container-core-group-is-layout-23441af8 wp-block-group-is-layout-flex\">\n<figure class=\"wp-block-image aligncenter size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"173\" height=\"173\" data-attachment-id=\"2293\" data-permalink=\"https:\/\/web2.winpal.net\/index.php\/slp\/qr20260226140102496\/\" data-orig-file=\"https:\/\/web2.winpal.net\/wp-content\/uploads\/2026\/02\/qr20260226140102496.png\" data-orig-size=\"173,173\" data-comments-opened=\"0\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}\" data-image-title=\"qr20260226140102496\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/web2.winpal.net\/wp-content\/uploads\/2026\/02\/qr20260226140102496.png\" src=\"https:\/\/web2.winpal.net\/wp-content\/uploads\/2026\/02\/qr20260226140102496.png\" alt=\"\" class=\"wp-image-2293\" style=\"width:251px;height:auto\"\/><\/figure>\n\n\n\n<figure class=\"wp-block-image size-full is-resized\"><img loading=\"lazy\" decoding=\"async\" width=\"700\" height=\"749\" data-attachment-id=\"2299\" data-permalink=\"https:\/\/web2.winpal.net\/index.php\/slp\/chatgpt-image-2026%e5%b9%b42%e6%9c%8819%e6%97%a5-11_56_11\/\" data-orig-file=\"https:\/\/web2.winpal.net\/wp-content\/uploads\/2026\/02\/3ad189d8eff77d6edc7ac7cd1b1717f3.png\" data-orig-size=\"700,749\" data-comments-opened=\"0\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}\" data-image-title=\"ChatGPT Image 2026\u5e742\u670819\u65e5 11_56_11\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/web2.winpal.net\/wp-content\/uploads\/2026\/02\/3ad189d8eff77d6edc7ac7cd1b1717f3.png\" src=\"https:\/\/web2.winpal.net\/wp-content\/uploads\/2026\/02\/3ad189d8eff77d6edc7ac7cd1b1717f3.png\" alt=\"\" class=\"wp-image-2299\" style=\"width:200px;height:auto\"\/><\/figure>\n<\/div>\n\n\n\n<p class=\"has-text-align-center vk_hidden-xs vk_hidden-sm\">\u203b\u300cQR\u30b3\u30fc\u30c9\u300d\u306f\u682a\u5f0f\u4f1a\u793e\u30c7\u30f3\u30bd\u30fc\u30a6\u30a7\u30fc\u30d6\u69d8\u306e\u767b\u9332\u5546\u6a19\u3067\u3001JIS\u3001ISO\u3067\u898f\u683c\u3055\u308c\u3066\u3044\u307e\u3059\u3002<\/p>\n\n\n\n<div class=\"wp-block-cover alignfull is-light has-custom-content-position is-position-top-center hero-hide-cta snap-point vk_block-margin-0--margin-top vk_hidden-xxl vk_hidden-xl-v2 vk_hidden-lg vk_hidden-md\" style=\"margin-top:0;margin-bottom:0;padding-top:0;padding-bottom:0;min-height:100dvh;aspect-ratio:unset;\"><video class=\"wp-block-cover__video-background intrinsic-ignore\" autoplay muted loop playsinline src=\"https:\/\/web2.winpal.net\/wp-content\/uploads\/2026\/02\/1.mp4\" data-object-fit=\"cover\"><\/video><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-0 has-background-dim\" style=\"background-color:#fdd000\"><\/span><div class=\"wp-block-cover__inner-container is-layout-constrained wp-block-cover-is-layout-constrained\"><\/div><\/div>\n\n\n\n<div class=\"wp-block-cover alignfull is-light has-custom-content-position is-position-top-center snap-point vk_block-margin-0--margin-top vk_hidden-md vk_hidden-lg vk_hidden-xl-v2 vk_hidden-xxl\" style=\"margin-top:0;margin-bottom:0;padding-top:0;padding-bottom:0;min-height:100dvh;aspect-ratio:unset;\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#fdd000\"><\/span><div class=\"wp-block-cover__inner-container is-layout-constrained wp-block-cover-is-layout-constrained\">\n<figure class=\"wp-block-image alignwide size-full vk_block-margin-0--margin-top vk_block-margin-0--margin-bottom\"><img loading=\"lazy\" decoding=\"async\" width=\"1080\" height=\"1566\" data-attachment-id=\"2176\" data-permalink=\"https:\/\/web2.winpal.net\/index.php\/slp\/2-10\/\" data-orig-file=\"https:\/\/web2.winpal.net\/wp-content\/uploads\/2026\/02\/2-2.png\" data-orig-size=\"1080,1566\" data-comments-opened=\"0\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}\" data-image-title=\"2\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/web2.winpal.net\/wp-content\/uploads\/2026\/02\/2-2.png\" src=\"https:\/\/web2.winpal.net\/wp-content\/uploads\/2026\/02\/2-2.png\" alt=\"\" class=\"wp-image-2176\"\/><\/figure>\n<\/div><\/div>\n\n\n\n<div class=\"wp-block-cover alignfull is-light has-custom-content-position is-position-top-center snap-point vk_block-margin-0--margin-top vk_hidden-md vk_hidden-lg vk_hidden-xl-v2 vk_hidden-xxl\" style=\"padding-top:0;padding-bottom:0;min-height:100dvh;aspect-ratio:unset;\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#fdd000\"><\/span><div class=\"wp-block-cover__inner-container is-layout-constrained wp-block-cover-is-layout-constrained\">\n<figure class=\"wp-block-image alignwide size-full vk_block-margin-0--margin-top vk_block-margin-0--margin-bottom\"><img loading=\"lazy\" decoding=\"async\" width=\"1080\" height=\"1566\" data-attachment-id=\"2177\" data-permalink=\"https:\/\/web2.winpal.net\/index.php\/slp\/3-4\/\" data-orig-file=\"https:\/\/web2.winpal.net\/wp-content\/uploads\/2026\/02\/3-2.png\" data-orig-size=\"1080,1566\" data-comments-opened=\"0\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}\" data-image-title=\"3\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/web2.winpal.net\/wp-content\/uploads\/2026\/02\/3-2.png\" src=\"https:\/\/web2.winpal.net\/wp-content\/uploads\/2026\/02\/3-2.png\" alt=\"\" class=\"wp-image-2177\"\/><\/figure>\n<\/div><\/div>\n\n\n\n<div class=\"wp-block-cover alignfull is-light has-custom-content-position is-position-top-center snap-point vk_block-margin-0--margin-top vk_hidden-md vk_hidden-lg vk_hidden-xl-v2 vk_hidden-xxl\" style=\"padding-top:0;padding-bottom:0;min-height:100dvh;aspect-ratio:unset;\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#fdd000\"><\/span><div class=\"wp-block-cover__inner-container is-layout-constrained wp-block-cover-is-layout-constrained\">\n<figure class=\"wp-block-image alignwide size-full vk_block-margin-0--margin-top vk_block-margin-0--margin-bottom\"><img loading=\"lazy\" decoding=\"async\" width=\"1080\" height=\"1566\" data-attachment-id=\"2178\" data-permalink=\"https:\/\/web2.winpal.net\/index.php\/slp\/4-4\/\" data-orig-file=\"https:\/\/web2.winpal.net\/wp-content\/uploads\/2026\/02\/4-2.png\" data-orig-size=\"1080,1566\" data-comments-opened=\"0\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}\" data-image-title=\"4\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/web2.winpal.net\/wp-content\/uploads\/2026\/02\/4-2.png\" src=\"https:\/\/web2.winpal.net\/wp-content\/uploads\/2026\/02\/4-2.png\" alt=\"\" class=\"wp-image-2178\"\/><\/figure>\n<\/div><\/div>\n\n\n\n<div class=\"wp-block-cover alignfull is-light has-custom-content-position is-position-top-center snap-point vk_block-margin-0--margin-top vk_hidden-md vk_hidden-lg vk_hidden-xl-v2 vk_hidden-xxl\" style=\"padding-top:0;padding-bottom:0;min-height:100dvh;aspect-ratio:unset;\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#fdd000\"><\/span><div class=\"wp-block-cover__inner-container is-layout-constrained wp-block-cover-is-layout-constrained\">\n<figure class=\"wp-block-image alignwide size-full vk_block-margin-0--margin-top vk_block-margin-0--margin-bottom\"><img loading=\"lazy\" decoding=\"async\" width=\"1080\" height=\"1566\" data-attachment-id=\"2179\" data-permalink=\"https:\/\/web2.winpal.net\/index.php\/slp\/5-3\/\" data-orig-file=\"https:\/\/web2.winpal.net\/wp-content\/uploads\/2026\/02\/5-2.png\" data-orig-size=\"1080,1566\" data-comments-opened=\"0\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}\" data-image-title=\"5\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/web2.winpal.net\/wp-content\/uploads\/2026\/02\/5-2.png\" src=\"https:\/\/web2.winpal.net\/wp-content\/uploads\/2026\/02\/5-2.png\" alt=\"\" class=\"wp-image-2179\"\/><\/figure>\n<\/div><\/div>\n\n\n\n<div class=\"wp-block-cover alignfull is-light has-custom-content-position is-position-top-center snap-point vk_block-margin-0--margin-top vk_hidden-xxl vk_hidden-xl-v2 vk_hidden-lg vk_hidden-md\" style=\"padding-top:0;padding-bottom:0;min-height:100dvh;aspect-ratio:unset;\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#fdd000\"><\/span><div class=\"wp-block-cover__inner-container is-layout-constrained wp-block-cover-is-layout-constrained\">\n<figure class=\"wp-block-image alignwide size-full vk_block-margin-0--margin-top vk_block-margin-0--margin-bottom\"><img loading=\"lazy\" decoding=\"async\" width=\"1080\" height=\"1566\" data-attachment-id=\"2180\" data-permalink=\"https:\/\/web2.winpal.net\/index.php\/slp\/6-3\/\" data-orig-file=\"https:\/\/web2.winpal.net\/wp-content\/uploads\/2026\/02\/6-2.png\" data-orig-size=\"1080,1566\" data-comments-opened=\"0\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}\" data-image-title=\"6\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/web2.winpal.net\/wp-content\/uploads\/2026\/02\/6-2.png\" src=\"https:\/\/web2.winpal.net\/wp-content\/uploads\/2026\/02\/6-2.png\" alt=\"\" class=\"wp-image-2180\"\/><\/figure>\n<\/div><\/div>\n\n\n\n<div class=\"wp-block-cover alignfull is-light has-custom-content-position is-position-top-center snap-point vk_block-margin-0--margin-top vk_hidden-xxl vk_hidden-xl-v2 vk_hidden-lg vk_hidden-md\" style=\"margin-top:0;margin-bottom:0;padding-top:0;padding-bottom:0;min-height:100dvh;aspect-ratio:unset;\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#fdd000\"><\/span><div class=\"wp-block-cover__inner-container is-layout-constrained wp-block-cover-is-layout-constrained\">\n<figure class=\"wp-block-image alignwide size-full vk_block-margin-0--margin-top vk_block-margin-0--margin-bottom\"><img loading=\"lazy\" decoding=\"async\" width=\"1080\" height=\"1566\" data-attachment-id=\"2258\" data-permalink=\"https:\/\/web2.winpal.net\/index.php\/slp\/7-4\/\" data-orig-file=\"https:\/\/web2.winpal.net\/wp-content\/uploads\/2026\/02\/7-3.png\" data-orig-size=\"1080,1566\" data-comments-opened=\"0\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}\" data-image-title=\"7\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/web2.winpal.net\/wp-content\/uploads\/2026\/02\/7-3.png\" src=\"https:\/\/web2.winpal.net\/wp-content\/uploads\/2026\/02\/7-3.png\" alt=\"\" class=\"wp-image-2258\"\/><\/figure>\n<\/div><\/div>\n\n\n\n<div class=\"wp-block-cover alignfull is-light has-custom-content-position is-position-top-center snap-point vk_block-margin-0--margin-top vk_block-margin-0--margin-bottom vk_hidden-xxl vk_hidden-xl-v2 vk_hidden-lg vk_hidden-md\" style=\"padding-top:0;padding-bottom:0;min-height:100dvh;aspect-ratio:unset;\"><span aria-hidden=\"true\" class=\"wp-block-cover__background has-background-dim-100 has-background-dim\" style=\"background-color:#f3f6f6\"><\/span><div class=\"wp-block-cover__inner-container is-layout-constrained wp-block-cover-is-layout-constrained\">\n<figure class=\"wp-block-image alignfull size-full vk_block-margin-0--margin-top vk_block-margin-0--margin-bottom\"><img loading=\"lazy\" decoding=\"async\" width=\"1080\" height=\"1566\" data-attachment-id=\"2182\" data-permalink=\"https:\/\/web2.winpal.net\/index.php\/slp\/8-2\/\" data-orig-file=\"https:\/\/web2.winpal.net\/wp-content\/uploads\/2026\/02\/8-1.png\" data-orig-size=\"1080,1566\" data-comments-opened=\"0\" data-image-meta=\"{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}\" data-image-title=\"8\" data-image-description=\"\" data-image-caption=\"\" data-large-file=\"https:\/\/web2.winpal.net\/wp-content\/uploads\/2026\/02\/8-1.png\" src=\"https:\/\/web2.winpal.net\/wp-content\/uploads\/2026\/02\/8-1.png\" alt=\"\" class=\"wp-image-2182\"\/><\/figure>\n<\/div><\/div>\n\n\n\n<div class=\"wp-block-vk-blocks-button vk_button vk_button-color-custom vk_button-align-block lp-fixed-cta vk_block-margin-0--margin-top vk_block-margin-0--margin-bottom vk_hidden-xxl vk_hidden-xl-v2 vk_hidden-lg vk_hidden-md\"><a href=\"https:\/\/web2.winpal.net\/index.php\/contact\/\" style=\"border-radius:0px\" class=\"vk_button_link btn has-background has-vivid-cyan-blue-background-color btn-lg btn-block\" role=\"button\" aria-pressed=\"true\" rel=\"noopener\"><div class=\"vk_button_link_caption\"><span class=\"vk_button_link_txt\"><strong><span data-fontsize=\"26px\" style=\"font-size: 26px;\" class=\"vk_inline-font-size\">\u304a\u554f\u3044\u5408\u308f\u305b\u306f\u30b3\u30c1\u30e9<\/span><\/strong><\/span><\/div><\/a><\/div>\n\n\n","protected":false},"excerpt":{"rendered":"<p>\u3053\u306e\u30da\u30fc\u30b8\u306f\u30b9\u30de\u30fc\u30c8\u30d5\u30a9\u30f3\u7528\u30b3\u30f3\u30c6\u30f3\u30c4\u3067\u3059\u3002\u305c\u3072QR\u30b3\u30fc\u30c9\u3092\u8aad\u307f\u8fbc\u3093\u3067\u30b9\u30de\u30fc\u30c8\u30d5\u30a9\u30f3\u3067\u8868\u793a\u3057\u3066\u307f\u3066\u304f\u3060\u3055\u3044(&#8216;\u03c9&#8217;)\u30ce \u203b\u300cQR\u30b3\u30fc\u30c9\u300d\u306f\u682a\u5f0f\u4f1a\u793e\u30c7\u30f3\u30bd\u30fc\u30a6\u30a7\u30fc\u30d6\u69d8\u306e\u767b\u9332\u5546\u6a19\u3067\u3001JIS\u3001ISO\u3067\u898f [&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-2088","page","type-page","status-publish","hentry"],"aioseo_notices":[],"jetpack_sharing_enabled":true,"jetpack_shortlink":"https:\/\/wp.me\/Paaanm-xG","jetpack-related-posts":[{"id":81,"url":"https:\/\/web2.winpal.net\/","url_meta":{"origin":2088,"position":0},"title":"\u4e09\u6761\u30fb\u71d5\u30fb\u770c\u592e\u5730\u533a\u3067\u30d1\u30bd\u30b3\u30f3\u3001\u30a4\u30f3\u30bf\u30fc\u30cd\u30c3\u30c8\u306e\u3053\u3068\u306a\u3089winpal\u682a\u5f0f\u4f1a\u793e\u3000\u9632\u72af\u30ab\u30e1\u30e9\u30fbWEB\u30b5\u30a4\u30c8\u5236\u4f5c\u30fbPC\u4fee\u7406\u4fdd\u5b88\u8ca9\u58f2\u30fb\u901a\u4fe1\u3001\u914d\u7dda\u5de5\u4e8b","author":"admin","date":"2018\u5e748\u670810\u65e5","format":false,"excerpt":"C O N T E N T S \u77e5\u308a\u305f\u3044\u5185\u5bb9\u3092\u9078\u629e\u3057\u3066\u304f\u3060\u3055\u3044 \u30a2\u30a4\u30b3\u30f3\u30ea\u30f3\u30af \u4fee\u7406\u30fb\u4fdd\u5b88\u30fb\u30b5\u30dd\u30fc\u30c8\u2026","rel":"","context":"\u985e\u4f3c\u6295\u7a3f","block_context":{"text":"\u985e\u4f3c\u6295\u7a3f","link":""},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/web2.winpal.net\/wp-content\/uploads\/2026\/03\/Gemini_Generated_Image_d9whk6d9whk6d9wh.png?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/web2.winpal.net\/wp-content\/uploads\/2026\/03\/Gemini_Generated_Image_d9whk6d9whk6d9wh.png?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/web2.winpal.net\/wp-content\/uploads\/2026\/03\/Gemini_Generated_Image_d9whk6d9whk6d9wh.png?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/web2.winpal.net\/wp-content\/uploads\/2026\/03\/Gemini_Generated_Image_d9whk6d9whk6d9wh.png?resize=700%2C400&ssl=1 2x, https:\/\/i0.wp.com\/web2.winpal.net\/wp-content\/uploads\/2026\/03\/Gemini_Generated_Image_d9whk6d9whk6d9wh.png?resize=1050%2C600&ssl=1 3x, https:\/\/i0.wp.com\/web2.winpal.net\/wp-content\/uploads\/2026\/03\/Gemini_Generated_Image_d9whk6d9whk6d9wh.png?resize=1400%2C800&ssl=1 4x"},"classes":[]},{"id":170,"url":"https:\/\/web2.winpal.net\/index.php\/policy\/","url_meta":{"origin":2088,"position":1},"title":"\u30b5\u30a4\u30c8\u30dd\u30ea\u30b7\u30fc","author":"admin","date":"2025\u5e743\u670831\u65e5","format":false,"excerpt":"\u5f53\u30b5\u30a4\u30c8\u306f\u3001winpal\u682a\u5f0f\u4f1a\u793e\uff08\u4ee5\u4e0b\u300c\u5f53\u793e\u300d\u3068\u3044\u3044\u307e\u3059\uff09\u304c\u904b\u55b6\u30fb\u7ba1\u7406\u3057\u3066\u3044\u307e\u3059\u3002\u4ee5\u4e0b\u306b\u3001\u304a\u5ba2\u3055\u307e\u304c\u2026","rel":"","context":"\u985e\u4f3c\u6295\u7a3f","block_context":{"text":"\u985e\u4f3c\u6295\u7a3f","link":""},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":1260,"url":"https:\/\/web2.winpal.net\/index.php\/camera\/","url_meta":{"origin":2088,"position":2},"title":"\u9632\u72af\u30ab\u30e1\u30e9-\u4f1a\u793e\u30fb\u5e97\u8217\u306e\u9632\u72af\u30ab\u30e1\u30e9\u5c0e\u5165\uff5c\u30c8\u30e9\u30d6\u30eb\u9632\u6b62\u306bwinpal\u306e\u63d0\u6848\u529b","author":"admin","date":"2025\u5e743\u670818\u65e5","format":false,"excerpt":"\u6620\u3059\u3060\u3051\u3058\u3083\u306a\u3044\u3001 \u8003\u3048\u308b\u30ab\u30e1\u30e9\u3002 \u9632\u72af\u306f\u3082\u3061\u308d\u3093\u3001\u7a3c\u50cd\u30c1\u30a7\u30c3\u30af\u30fb\u7570\u5e38\u691c\u77e5\u30fb\u54c1\u8cea\u7ba1\u7406\u307e\u3067\u3002\u73fe\u5834\u306e\u8ab2\u984c\u2026","rel":"","context":"\u985e\u4f3c\u6295\u7a3f","block_context":{"text":"\u985e\u4f3c\u6295\u7a3f","link":""},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/web2.winpal.net\/wp-content\/uploads\/2025\/06\/07a7473c3cffdb0b2220f50dc9d8b27b.jpg?resize=350%2C200&ssl=1","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/web2.winpal.net\/wp-content\/uploads\/2025\/06\/07a7473c3cffdb0b2220f50dc9d8b27b.jpg?resize=350%2C200&ssl=1 1x, https:\/\/i0.wp.com\/web2.winpal.net\/wp-content\/uploads\/2025\/06\/07a7473c3cffdb0b2220f50dc9d8b27b.jpg?resize=525%2C300&ssl=1 1.5x, https:\/\/i0.wp.com\/web2.winpal.net\/wp-content\/uploads\/2025\/06\/07a7473c3cffdb0b2220f50dc9d8b27b.jpg?resize=700%2C400&ssl=1 2x, https:\/\/i0.wp.com\/web2.winpal.net\/wp-content\/uploads\/2025\/06\/07a7473c3cffdb0b2220f50dc9d8b27b.jpg?resize=1050%2C600&ssl=1 3x, https:\/\/i0.wp.com\/web2.winpal.net\/wp-content\/uploads\/2025\/06\/07a7473c3cffdb0b2220f50dc9d8b27b.jpg?resize=1400%2C800&ssl=1 4x"},"classes":[]}],"_links":{"self":[{"href":"https:\/\/web2.winpal.net\/index.php\/wp-json\/wp\/v2\/pages\/2088","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/web2.winpal.net\/index.php\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/web2.winpal.net\/index.php\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/web2.winpal.net\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/web2.winpal.net\/index.php\/wp-json\/wp\/v2\/comments?post=2088"}],"version-history":[{"count":155,"href":"https:\/\/web2.winpal.net\/index.php\/wp-json\/wp\/v2\/pages\/2088\/revisions"}],"predecessor-version":[{"id":2303,"href":"https:\/\/web2.winpal.net\/index.php\/wp-json\/wp\/v2\/pages\/2088\/revisions\/2303"}],"wp:attachment":[{"href":"https:\/\/web2.winpal.net\/index.php\/wp-json\/wp\/v2\/media?parent=2088"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}