<br />
<b>Warning</b>:  Undefined variable $fa_family in <b>/home/c7749742/public_html/202506242126rxdmed64.conohawing.com/wp-content/plugins/vk-blocks/inc/vk-blocks/font-awesome/font-awesome-config.php</b> on line <b>63</b><br />
{"id":260,"date":"2025-08-09T12:16:59","date_gmt":"2025-08-09T03:16:59","guid":{"rendered":"https:\/\/202506242126rxdmed64.conohawing.com\/?page_id=260"},"modified":"2025-09-05T18:45:32","modified_gmt":"2025-09-05T09:45:32","slug":"%e5%9c%a8%e7%95%99%e8%b3%87%e6%a0%bc%e4%b8%80%e8%a6%a7","status":"publish","type":"page","link":"https:\/\/202506242126rxdmed64.conohawing.com\/?page_id=260","title":{"rendered":"\u3010\u5728\u7559\u8cc7\u683c\u30fb\u696d\u7a2e\u30fb\u8077\u7a2e\u3011\u53ca\u3073\u3010\u6599\u91d1\u3011\u4e00\u89a7"},"content":{"rendered":"\n<div style=\"height:37px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<style>\n  #searchContainer {\n    position: fixed;\n    top: 20px;\n    left: 50%;\n    transform: translateX(-50%);\n    background: white;\n    padding: 10px 15px;\n    box-shadow: 0 2px 8px rgba(0,0,0,0.15);\n    z-index: 9999;\n    border-radius: 4px;\n    display: flex;\n    align-items: center;\n    gap: 10px;\n    max-width: 95vw; \/* \u5e45\u306f\u753b\u9762\u306e95%\u307e\u3067 *\/\n    box-sizing: border-box;\n  }\n  body {\n    padding-top: 100px; \/* \u56fa\u5b9a\u30d0\u30fc\u306e\u9ad8\u3055\u306b\u4f59\u88d5\u3092\u6301\u305f\u305b\u308b *\/\n    margin: 0;\n  }\n  #searchBox {\n    flex-grow: 1;\n    min-width: 0; \/* flex\u5185\u3067\u306e\u306f\u307f\u51fa\u3057\u9632\u6b62 *\/\n    padding: 8px 10px;\n    font-size: 16px;\n    box-sizing: border-box;\n  }\n  button {\n    padding: 8px 14px;\n    font-size: 16px;\n    cursor: pointer;\n    white-space: nowrap;\n  }\n  \/* \u30b9\u30de\u30db\u306a\u3069\u72ed\u3044\u753b\u9762\u306e\u6642\u306f\u7e26\u4e26\u3073\u306b *\/\n  @media (max-width: 480px) {\n    #searchContainer {\n      flex-direction: column;\n      align-items: stretch;\n      padding: 10px;\n      gap: 8px;\n    }\n    button {\n      width: 100%;\n      padding: 10px 0;\n      font-size: 18px;\n    }\n    #searchBox {\n      width: 100%;\n      font-size: 18px;\n    }\n  }\n<\/style>\n\n<div id=\"searchContainer\">\n  <input type=\"text\" id=\"searchBox\" placeholder=\"\u3053\u306e\u30da\u30fc\u30b8\u3092\u691c\u7d22...\">\n  <button id=\"searchBtn\">\u691c\u7d22<\/button>\n  <button id=\"nextBtn\">\u6b21\u3078<\/button>\n<\/div>\n\n<script>\n  function escapeRegExp(string) {\n    return string.replace(\/[.*+?^${}()|[\\]\\\\]\/g, '\\\\$&');\n  }\n\n  function removeHighlights() {\n    document.querySelectorAll(\"mark.__highlight\").forEach(mark => {\n      mark.replaceWith(document.createTextNode(mark.textContent));\n    });\n  }\n\n  const contentArea = document.querySelector(\".site-body\");\n  if (!contentArea) {\n    console.warn(\".site-body \u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3002\u691c\u7d22\u306f\u52d5\u4f5c\u3057\u307e\u305b\u3093\u3002\");\n  }\n\n  function highlightTextNode(node, regex) {\n    const parent = node.parentNode;\n    const text = node.nodeValue;\n    let match;\n    let lastIndex = 0;\n\n    const frag = document.createDocumentFragment();\n\n    while ((match = regex.exec(text)) !== null) {\n      if (match.index > lastIndex) {\n        frag.appendChild(document.createTextNode(text.substring(lastIndex, match.index)));\n      }\n      const mark = document.createElement(\"mark\");\n      mark.className = \"__highlight\";\n      mark.style.background = \"yellow\";\n      mark.textContent = match[0];\n      frag.appendChild(mark);\n      lastIndex = regex.lastIndex;\n    }\n\n    if (lastIndex < text.length) {\n      frag.appendChild(document.createTextNode(text.substring(lastIndex)));\n    }\n\n    parent.replaceChild(frag, node);\n  }\n\n  let highlightedElements = [];\n  let currentIndex = -1;\n\n  function searchAndHighlight() {\n    if (!contentArea) return;\n    removeHighlights();\n    currentIndex = -1;\n\n    const keyword = document.getElementById(\"searchBox\").value.trim();\n    if (!keyword) {\n      highlightedElements = [];\n      return;\n    }\n\n    const regex = new RegExp(escapeRegExp(keyword), \"gi\");\n    const walker = document.createTreeWalker(contentArea, NodeFilter.SHOW_TEXT, null, false);\n\n    const nodesToHighlight = [];\n\n    while (walker.nextNode()) {\n      const node = walker.currentNode;\n      if (regex.test(node.nodeValue)) {\n        nodesToHighlight.push(node);\n      }\n      regex.lastIndex = 0;\n    }\n\n    nodesToHighlight.forEach(node => {\n      highlightTextNode(node, regex);\n    });\n\n    highlightedElements = Array.from(contentArea.querySelectorAll(\"mark.__highlight\"));\n    if (highlightedElements.length > 0) {\n      currentIndex = 0;\n      scrollToHighlight(currentIndex);\n    }\n  }\n\n  function scrollToHighlight(index) {\n    if (index < 0 || index >= highlightedElements.length) return;\n    const el = highlightedElements[index];\n    el.scrollIntoView({behavior: \"smooth\", block: \"center\"});\n    el.tabIndex = -1;\n    el.focus();\n  }\n\n  function goToNextHighlight() {\n    if (highlightedElements.length === 0) return;\n    currentIndex = (currentIndex + 1) % highlightedElements.length;\n    scrollToHighlight(currentIndex);\n  }\n\n  document.getElementById(\"searchBtn\").addEventListener(\"click\", searchAndHighlight);\n  document.getElementById(\"searchBox\").addEventListener(\"keypress\", function(e) {\n    if (e.key === \"Enter\") {\n      e.preventDefault();\n      searchAndHighlight();\n    }\n  });\n  document.getElementById(\"nextBtn\").addEventListener(\"click\", goToNextHighlight);\n<\/script>\n\n\n\n<!-- === \u6599\u91d1\u30fb\u652f\u63f4\u59d4\u8a17\u6599\u30fb\u9867\u554f\u5951\u7d04\uff08\u58eb\u696d\u5411\u3051\u30af\u30e9\u30b7\u30c3\u30af\u30c7\u30b6\u30a4\u30f3\uff5c\u30a2\u30b3\u30fc\u30c7\u30a3\u30aa\u30f3\uff5c\u6cd5\u4ee4\u6ce8\u8a18\u53cd\u6620\u7248\uff09 === -->\n<section class=\"pricing-page\" aria-label=\"\u6599\u91d1\u4e00\u89a7\">\n  <!-- \u691c\u7d22\u4f8b -->\n  <div class=\"hint-box\">\n    <div class=\"hint-title\">\u691c\u7d22\u4f8b<\/div>\n    <p>\u6599\u91d1\u30fbCAD\u30aa\u30da\u30ec\u30fc\u30bf\u30fc\u30fb\u55b6\u696d\u30fb\u6c38\u4f4f\u8005\u30fb\u7279\u5b9a\u6280\u80fd\u30fb\u5916\u98df\u696d\u30fbIT\u30fb\u652f\u63f4\u59d4\u8a17\u6599\u30fb\u9867\u554f\u5951\u7d04 \u7b49<\/p>\n  <\/div>\n\n  <!-- \u30ca\u30d3\u30bf\u30d6 -->\n  <nav class=\"pill-nav\" aria-label=\"\u30bb\u30af\u30b7\u30e7\u30f3\">\n    <a href=\"#sec-procedure\" class=\"pill\">\u3008\u5728\u7559\u8cc7\u683c\u624b\u7d9a\u304d\u8cbb\u7528\u3009<\/a>\n    <a href=\"#sec-retainer\" class=\"pill\">\u3008\u652f\u63f4\u59d4\u8a17\u6599\u3009<\/a>\n    <a href=\"#sec-advisory\" class=\"pill\">\u3008\u9867\u554f\u5951\u7d04\u3009<\/a>\n    <span class=\"pill note\">\u203b\u8a73\u7d30\u306b\u3064\u304d\u307e\u3057\u3066\u306f\u3054\u76f8\u8ac7\u304f\u3060\u3055\u3044\u3002<\/span>\n  <\/nav>\n\n  <!-- \u5171\u901a\u6ce8\u8a18\uff08\u6cd5\u4ee4\u30fb\u5b9f\u8cbb\u30fb\u8868\u8a18\u306e\u7d71\u4e00\uff09 -->\n  <aside class=\"policy-box\">\n    <ul class=\"note-list\">\n      <li>\u672c\u30da\u30fc\u30b8\u306e\u91d1\u984d\u306f <strong>\u5f53\u4e8b\u52d9\u6240\u5831\u916c\uff08\u7a0e\u5225\uff09<\/strong> \u3067\u3001<strong>\uff08 \uff09\u5185\u306f\u7a0e\u8fbc10\uff05<\/strong> \u3092\u793a\u3057\u307e\u3059\u3002<\/li>\n      <li><strong>\u5165\u7ba1\u306e\u5b9f\u8cbb\uff08\u53ce\u5165\u5370\u7d19\uff09<\/strong> \u306f\u5225\u9014\uff1a\u5728\u7559\u8cc7\u683c\u306e\u5909\u66f4\u30fb\u66f4\u65b0\u306f <strong>\u7a93\u53e36,000\u5186\uff0f\u30aa\u30f3\u30e9\u30a4\u30f35,500\u5186<\/strong>\u3001\u6c38\u4f4f\u8a31\u53ef\u306f <strong>10,000\u5186<\/strong>\u3002\u624b\u6570\u6599\u984d\u306f\u5236\u5ea6\u6539\u5b9a\u306b\u3088\u308a\u5909\u66f4\u3055\u308c\u308b\u3053\u3068\u304c\u3042\u308a\u307e\u3059\u3002<\/li>\n      <li>\u7279\u5b9a\u6280\u80fd\u306e <strong>\u5bfe\u8c61\u5206\u91ce\u30fb\u904b\u7528\u306f\u6539\u6b63\u304c\u591a\u3044<\/strong> \u5206\u91ce\u3067\u3059\u3002\u6700\u65b0\u306e\u516c\u8868\u3092\u3054\u78ba\u8a8d\u304f\u3060\u3055\u3044\u3002<\/li>\n      <li>\u300c\u7d4c\u55b6\u30fb\u7ba1\u7406\u300d\u306e\u8981\u4ef6\u306f <strong>\u898b\u76f4\u3057\u304c\u691c\u8a0e\u4e2d<\/strong> \u3067\u3059\u3002\u6700\u65b0\u306e\u544a\u793a\u30fb\u904b\u7528\u3092\u3054\u6848\u5185\u3057\u307e\u3059\u3002<\/li>\n    <\/ul>\n  <\/aside>\n\n  <!-- ===== \u5728\u7559\u8cc7\u683c\u624b\u7d9a\u304d\u8cbb\u7528 ===== -->\n  <header id=\"sec-procedure\" class=\"sec-header\">\n    <div class=\"en\">IMMIGRATION PROCEDURE FEES<\/div>\n    <h2 class=\"ja\">\u5728\u7559\u8cc7\u683c\u624b\u7d9a\u304d\u8cbb\u7528<\/h2>\n    <div class=\"orn\" aria-hidden=\"true\"><span><\/span><\/div>\n  <\/header>\n\n  <!-- \u30a2\u30b3\u30fc\u30c7\u30a3\u30aa\u30f3\uff1a\u7279\u5b9a\u6280\u80fd -->\n  <details class=\"acc\" open>\n    <summary class=\"acc-head\">\n      <span class=\"acc-title\">\u7279\u5b9a\u6280\u80fd\uff08\u30d6\u30eb\u30fc\u30ab\u30e9\u30fc\u30fb\u73fe\u696d\u8077\u7a2e\uff09<\/span>\n      <span class=\"acc-right\">\u6599\u91d1\uff08\u7a0e\u5225\uff09\u203b\uff08 \uff09\u5185\u306f\u7a0e\u8fbc10\uff05<\/span>\n    <\/summary>\n    <div class=\"acc-body\">\n      <table class=\"fee-table\">\n        <tbody>\n          <tr><th>\u5728\u7559\u8cc7\u683c\u8a8d\u5b9a\u8a3c\u660e\u66f8\u4ea4\u4ed8\u7533\u8acb<\/th><td><strong>100,000\u5186\uff08110,000\u5186\uff09<\/strong><\/td><\/tr>\n          <tr><th>\u5728\u7559\u8cc7\u683c\u5909\u66f4\u8a31\u53ef\u7533\u8acb<\/th><td><strong>100,000\u5186\uff08110,000\u5186\uff09<\/strong><\/td><\/tr>\n          <tr><th>\u5728\u7559\u671f\u9593\u66f4\u65b0\u8a31\u53ef\u7533\u8acb<\/th><td><strong>50,000\u5186\uff0855,000\u5186\uff09<\/strong><\/td><\/tr>\n        <\/tbody>\n      <\/table>\n\n      <h3 class=\"mini\">\u8a72\u5f53\u696d\u7a2e\u30fb\u8077\u7a2e\uff08\u4f8b\uff09<\/h3>\n      <p class=\"desc\">\u73fe\u5728\u306f\u4e3b\u306b16\u5206\u91ce\u304c\u5bfe\u8c61\u3067\u3059\uff08\u5236\u5ea6\u6539\u6b63\u306b\u3088\u308a\u5909\u66f4\u3055\u308c\u308b\u5834\u5408\u304c\u3042\u308a\u307e\u3059\uff09\u3002<\/p>\n      <div class=\"grid-2\">\n        <ul class=\"bullet\">\n          <li><strong>\u4ecb\u8b77<\/strong>\uff1a\u8eab\u4f53\u4ecb\u8b77\u7b49\u3001\u30ec\u30af\u30fb\u6a5f\u80fd\u8a13\u7df4\u88dc\u52a9 \u7b49<\/li>\n          <li><strong>\u30d3\u30eb\u30af\u30ea\u30fc\u30cb\u30f3\u30b0<\/strong>\uff1a\u65bd\u8a2d\u6e05\u6383\u3001\u5e8a\u30fb\u30ac\u30e9\u30b9\u30fb\u30c8\u30a4\u30ec\u6e05\u6383<\/li>\n          <li><strong>\u5de5\u696d\u88fd\u54c1\u88fd\u9020\u696d<\/strong>\uff1a\u92f3\u9020\u30fb\u935b\u9020\u30fb\u30d7\u30ec\u30b9\u3001\u91d1\u578b\u30fb\u6eb6\u63a5\u30fb\u4ed5\u4e0a\u3052\u3001\u90e8\u54c1\u7d44\u7acb\u30fb\u691c\u67fb\u3001\u4fdd\u5168\u30fb\u4fee\u7406\u3001\u96fb\u5b50\u90e8\u54c1\u30fb\u534a\u5c0e\u4f53\u88fd\u9020<\/li>\n          <li><strong>\u5efa\u8a2d\u696d<\/strong>\uff1a\u3068\u3073\u30fb\u578b\u67a0\u30fb\u9244\u7b4b\u3001\u914d\u7ba1\u3001\u5de6\u5b98\u3001\u96fb\u6c17\u5de5\u4e8b<\/li>\n          <li><strong>\u9020\u8239\u30fb\u8236\u7528<\/strong>\uff1a\u8239\u4f53\u88fd\u9020\u30fb\u5857\u88c5\u30fb\u6eb6\u63a5\u3001\u30a8\u30f3\u30b8\u30f3\u7d44\u7acb\u30fb\u4fee\u7406<\/li>\n          <li><strong>\u81ea\u52d5\u8eca\u6574\u5099<\/strong>\uff1a\u70b9\u691c\u30fb\u4fee\u7406\u3001\u8eca\u691c\u5bfe\u5fdc<\/li>\n        <\/ul>\n        <ul class=\"bullet\">\n          <li><strong>\u822a\u7a7a<\/strong>\uff1a\u624b\u8377\u7269\u53d6\u6271\u3044\u3001\u642d\u8f09\u3001\u5730\u4e0a\u652f\u63f4\u3001\u6574\u5099\u88dc\u52a9<\/li>\n          <li><strong>\u5bbf\u6cca<\/strong>\uff1a\u30d5\u30ed\u30f3\u30c8\u3001\u63a5\u5ba2\u3001\u6e05\u6383\u3001\u30ec\u30b9\u30c8\u30e9\u30f3\u30b5\u30fc\u30d3\u30b9<\/li>\n          <li><strong>\u8fb2\u696d<\/strong>\uff1a\u8015\u7a2e\u30fb\u755c\u7523\u306e\u683d\u57f9\u30fb\u98fc\u80b2<\/li>\n          <li><strong>\u6f01\u696d<\/strong>\uff1a\u6f01\u7372\u3001\u9078\u5225\u30fb\u52a0\u5de5<\/li>\n          <li><strong>\u98f2\u98df\u6599\u54c1\u88fd\u9020<\/strong>\uff1a\u52a0\u5de5\u30fb\u88fd\u9020\u30fb\u68b1\u5305\uff08\u60e3\u83dc\u30fb\u30d1\u30f3\u30fb\u98f2\u6599 \u7b49\uff09<\/li>\n          <li><strong>\u5916\u98df\u696d<\/strong>\uff1a\u8abf\u7406\u30fb\u63a5\u5ba2\u30fb\u914d\u81b3\u3001\u5e97\u8217\u904b\u55b6\u88dc\u52a9<\/li>\n          <li><strong>\u6797\u696d<\/strong>\uff1a\u4f10\u63a1\u30fb\u690d\u6797\u30fb\u7ba1\u7406\u3001\u642c\u51fa\u30fb\u52a0\u5de5<\/li>\n          <li><strong>\u9244\u9053<\/strong>\uff1a\u8ecc\u9053\u30fb\u96fb\u8def\u30fb\u4fe1\u53f7\u7b49\u306e\u65b0\u8a2d\/\u6539\u826f\/\u4fee\u7e55\u3001\u8eca\u4e21\u6574\u5099\u30fb\u88fd\u9020\u3001\u99c5\u4fc2\u54e1\u30fb\u8eca\u638c\u30fb\u904b\u8ee2\u58eb<\/li>\n          <li><strong>\u81ea\u52d5\u8eca\u904b\u9001\u696d<\/strong>\uff1a\u30c8\u30e9\u30c3\u30af\/\u30d0\u30b9\/\u30bf\u30af\u30b7\u30fc\u306e\u904b\u8ee2\u304a\u3088\u3073\u4ed8\u968f\u696d\u52d9<\/li>\n          <li><strong>\u6728\u6750\u7523\u696d<\/strong>\uff1a\u88fd\u6750\u3001\u5408\u677f\u30fb\u96c6\u6210\u6750\u3001\u30d0\u30a4\u30aa\u30de\u30b9\u3001\u30d1\u30fc\u30c4\u52a0\u5de5<\/li>\n        <\/ul>\n      <\/div>\n    <\/div>\n  <\/details>\n\n  <!-- \u30a2\u30b3\u30fc\u30c7\u30a3\u30aa\u30f3\uff1a\u6280\u8853\u30fb\u4eba\u6587\u77e5\u8b58\u30fb\u56fd\u969b\u696d\u52d9 -->\n  <details class=\"acc\">\n    <summary class=\"acc-head\">\n      <span class=\"acc-title\">\u6280\u8853\u30fb\u4eba\u6587\u77e5\u8b58\u30fb\u56fd\u969b\u696d\u52d9\uff08\u30db\u30ef\u30a4\u30c8\u30ab\u30e9\u30fc\uff09<\/span>\n      <span class=\"acc-right\">\u6599\u91d1\uff08\u7a0e\u5225\uff09\u203b\uff08 \uff09\u5185\u306f\u7a0e\u8fbc10\uff05<\/span>\n    <\/summary>\n    <div class=\"acc-body\">\n      <table class=\"fee-table\">\n        <tbody>\n          <tr><th>\u5728\u7559\u8cc7\u683c\u8a8d\u5b9a\u8a3c\u660e\u66f8\u4ea4\u4ed8\u7533\u8acb<\/th><td><strong>130,000\u5186\uff08143,000\u5186\uff09<\/strong><\/td><\/tr>\n          <tr><th>\u5728\u7559\u8cc7\u683c\u5909\u66f4\u8a31\u53ef\u7533\u8acb<\/th><td><strong>120,000\u5186\uff08132,000\u5186\uff09<\/strong><\/td><\/tr>\n          <tr><th>\u5728\u7559\u671f\u9593\u66f4\u65b0\u8a31\u53ef\u7533\u8acb<\/th><td><strong>50,000\u5186\uff0855,000\u5186\uff09<\/strong><\/td><\/tr>\n        <\/tbody>\n      <\/table>\n\n      <h3 class=\"mini\">1. \u6280\u8853\uff08Engineering\uff09<\/h3>\n      <p class=\"desc\">\u7406\u7cfb\uff08\u81ea\u7136\u79d1\u5b66\uff09\u306b\u57fa\u3065\u304f\u5c02\u9580\u8077\u3002\u7279\u5b9a\u6280\u80fd\u306b\u8a72\u5f53\u3059\u308b\u5358\u7d14\u30fb\u73fe\u5834\u4f5c\u696d\u306f\u4e0d\u53ef\u3002<\/p>\n      <div class=\"grid-2\">\n        <ul class=\"bullet\">\n          <li><strong>\u4e3b\u306a\u696d\u7a2e<\/strong>\uff1aIT\u30fb\u60c5\u5831\u901a\u4fe1\u3001\u88fd\u9020\uff08\u6a5f\u68b0\/\u96fb\u6c17\/\u5316\u5b66\/\u6750\u6599\uff09\u3001\u5efa\u8a2d\u30fb\u571f\u6728\u8a2d\u8a08\u3001\u81ea\u52d5\u8eca\u7523\u696d<\/li>\n        <\/ul>\n        <ul class=\"bullet\">\n          <li><strong>\u4e3b\u306a\u8077\u7a2e<\/strong>\uff1aSE\u30fbPG\u3001NW\u30a8\u30f3\u30b8\u30cb\u30a2\u3001CAD\u30aa\u30da\u30ec\u30fc\u30bf\u30fc\u3001\u6a5f\u68b0\/\u96fb\u6c17\/\u96fb\u5b50\/\u5316\u5b66\u6280\u8853\u8005\u3001\u88fd\u54c1\u958b\u767a<\/li>\n        <\/ul>\n      <\/div>\n\n      <h3 class=\"mini\">2. \u4eba\u6587\u77e5\u8b58\uff08Humanities\uff09<\/h3>\n      <p class=\"desc\">\u6587\u7cfb\uff08\u4eba\u6587\u79d1\u5b66\uff09\u306b\u57fa\u3065\u304f\u5c02\u9580\u8077\u3002\u5358\u7d14\u63a5\u5ba2\u7b49\u306f\u4e0d\u53ef\u3002<\/p>\n      <div class=\"grid-2\">\n        <ul class=\"bullet\">\n          <li><strong>\u4e3b\u306a\u696d\u7a2e<\/strong>\uff1a\u91d1\u878d\u30fb\u4fdd\u967a\u3001\u5546\u793e\u3001\u5e83\u544a\/\u30de\u30fc\u30b1\u3001\u4f01\u753b\/\u7d4c\u55b6\u30b3\u30f3\u30b5\u30eb\u3001\u6559\u80b2\uff08\u8a9e\u5b66\u3092\u9664\u304f\uff09<\/li>\n        <\/ul>\n        <ul class=\"bullet\">\n          <li><strong>\u4e3b\u306a\u8077\u7a2e<\/strong>\uff1a\u7d4c\u7406\/\u8ca1\u52d9\/\u4f1a\u8a08\/\u6cd5\u52d9\u3001\u30de\u30fc\u30b1\u8abf\u67fb\u3001\u4f01\u753b\/\u55b6\u696d\u3001\u7de8\u96c6\u30fb\u30e9\u30a4\u30bf\u30fc\uff08\u5c02\u9580\u6027\uff09\u3001\u4eba\u4e8b\u30fb\u52b4\u52d9<\/li>\n        <\/ul>\n      <\/div>\n\n      <h3 class=\"mini\">3. \u56fd\u969b\u696d\u52d9\uff08International Services\uff09<\/h3>\n      <p class=\"desc\">\u5916\u56fd\u6587\u5316\u30fb\u8a9e\u5b66\u80fd\u529b\u3092\u751f\u304b\u3059\u8077\u7a2e\u3002\u5f93\u4e8b\u53ef\u80fd\u696d\u52d9\u304c\u5217\u6319\u3055\u308c\u3066\u3044\u307e\u3059\u3002<\/p>\n      <ul class=\"bullet\">\n        <li>\u7ffb\u8a33\u30fb\u901a\u8a33\u3001\u8a9e\u5b66\u306e\u6307\u5c0e\u3001\u5e83\u5831\u30fb\u5ba3\u4f1d\u3001\u6d77\u5916\u53d6\u5f15\u696d\u52d9<\/li>\n        <li>\u670d\u98fe\/\u5ba4\u5185\u88c5\u98fe\u306e\u30c7\u30b6\u30a4\u30f3\u3001\u5546\u54c1\u958b\u767a\u3001\u305d\u306e\u4ed6\u3053\u308c\u3089\u306b\u985e\u4f3c\u3059\u308b\u696d\u52d9<\/li>\n      <\/ul>\n    <\/div>\n  <\/details>\n\n  <!-- \u30a2\u30b3\u30fc\u30c7\u30a3\u30aa\u30f3\uff1a\u7d4c\u55b6\u30fb\u7ba1\u7406 -->\n  <details class=\"acc\">\n    <summary class=\"acc-head\">\n      <span class=\"acc-title\">\u7d4c\u55b6\u30fb\u7ba1\u7406<\/span>\n      <span class=\"acc-right\">\u6599\u91d1\uff08\u7a0e\u5225\uff09\u203b\uff08 \uff09\u5185\u306f\u7a0e\u8fbc10\uff05<\/span>\n    <\/summary>\n    <div class=\"acc-body\">\n      <table class=\"fee-table\">\n        <tbody>\n          <tr><th>\u5728\u7559\u8cc7\u683c\u8a8d\u5b9a\u8a3c\u660e\u66f8\u4ea4\u4ed8\u7533\u8acb<\/th><td><strong>200,000\u5186\uff08220,000\u5186\uff09<\/strong><\/td><\/tr>\n          <tr><th>\u5728\u7559\u8cc7\u683c\u5909\u66f4\u8a31\u53ef\u7533\u8acb<\/th><td><strong>160,000\u5186\uff08176,000\u5186\uff09<\/strong><\/td><\/tr>\n          <tr><th>\u5728\u7559\u671f\u9593\u66f4\u65b0\u8a31\u53ef\u7533\u8acb<\/th><td><strong>60,000\u5186\u301c\uff0866,000\u5186\u301c\uff09<\/strong><\/td><\/tr>\n        <\/tbody>\n      <\/table>\n\n      <div class=\"grid-2\">\n        <div>\n          <h3 class=\"mini\">\u7d4c\u55b6\uff08\u8981\u4ef6\uff09<\/h3>\n          <ul class=\"bullet\">\n            <li>\u4e8b\u696d\u306e\u5b9f\u614b\uff08\u4e8b\u52d9\u6240\u3001\u56de\u7dda\u3001\u8a2d\u5099 \u7b49\uff09\u304c\u3042\u308b\u3053\u3068<\/li>\n            <li>\u8cc7\u672c\u91d1500\u4e07\u5186\u4ee5\u4e0a <strong>\u53c8\u306f<\/strong> \u65e5\u672c\u4eba\u5e38\u52e42\u540d\u4ee5\u4e0a\u306e\u96c7\u7528<\/li>\n            <li>\u73fe\u5b9f\u7684\u3067\u7d99\u7d9a\u6027\u3042\u308b\u4e8b\u696d\u8a08\u753b<\/li>\n            <li>\u6cd5\u4eba\u767b\u8a18\u306e\u5b8c\u4e86<\/li>\n          <\/ul>\n        <\/div>\n        <div>\n          <h3 class=\"mini\">\u7ba1\u7406\uff08\u8981\u4ef6\uff09<\/h3>\n          <ul class=\"bullet\">\n            <li>\u652f\u5e97\u9577\u30fb\u55b6\u696d\u6240\u9577\u30fb\u5de5\u5834\u9577\u30fb\u65bd\u8a2d\u9577 \u7b49\u306e\u7ba1\u7406\u904b\u55b6\u8077<\/li>\n            <li>\u4ee3\u8868\u53d6\u7de0\u5f79\u3001\u4e8b\u696d\u90e8\u9577\u3001\u7d4c\u55b6\u4f01\u753b\u90e8\u9580\u8cac\u4efb\u8005 \u7b49<\/li>\n          <\/ul>\n        <\/div>\n      <\/div>\n      <p class=\"desc small-note\">\u203b \u8981\u4ef6\u306e\u898b\u76f4\u3057\u304c\u691c\u8a0e\u3055\u308c\u3066\u3044\u307e\u3059\u3002\u6700\u65b0\u306e\u544a\u793a\u30fb\u904b\u7528\u3092\u3054\u78ba\u8a8d\u304f\u3060\u3055\u3044\u3002<\/p>\n    <\/div>\n  <\/details>\n\n  <!-- \u30a2\u30b3\u30fc\u30c7\u30a3\u30aa\u30f3\uff1a\u6c38\u4f4f\u8005 -->\n  <details class=\"acc\">\n    <summary class=\"acc-head\">\n      <span class=\"acc-title\">\u6c38\u4f4f\u8005\uff08\u5c31\u52b4\u5236\u9650\u306a\u3057\uff09<\/span>\n      <span class=\"acc-right\">\u6599\u91d1\uff08\u7a0e\u5225\uff09\u203b\uff08 \uff09\u5185\u306f\u7a0e\u8fbc10\uff05<\/span>\n    <\/summary>\n    <div class=\"acc-body\">\n      <table class=\"fee-table\">\n        <tbody>\n          <tr><th>\u6c38\u4f4f\u8a31\u53ef\u7533\u8acb<\/th><td><strong>110,000\u5186\uff08121,000\u5186\uff09<\/strong><\/td><\/tr>\n          <tr><th>2\u4eba\u76ee\u4ee5\u964d\uff08\u5bb6\u65cf\uff09<\/th><td><strong>60,000\u5186\uff0866,000\u5186\uff09<\/strong><\/td><\/tr>\n        <\/tbody>\n      <\/table>\n\n      <h3 class=\"mini\">\u4e3b\u306a\u8981\u4ef6<\/h3>\n      <ul class=\"bullet\">\n        <li>\u7d20\u884c\u5584\u826f\u8981\u4ef6\uff1a\u6cd5\u4ee4\u9075\u5b88\u30fb\u793e\u4f1a\u7684\u975e\u96e3\u306e\u306a\u3044\u751f\u6d3b<\/li>\n        <li>\u72ec\u7acb\u751f\u8a08\u8981\u4ef6\uff1a\u5c06\u6765\u306b\u308f\u305f\u308a\u5b89\u5b9a\u3057\u305f\u751f\u6d3b\u304c\u898b\u8fbc\u307e\u308c\u308b\u8cc7\u7523\u53c8\u306f\u6280\u80fd<\/li>\n        <li>\u56fd\u76ca\u8981\u4ef6\uff1a\u6982\u306d<strong>10\u5e74\u4ee5\u4e0a\u5728\u7559<\/strong>\u3001\u3046\u3061\u5c31\u52b4\/\u5c45\u4f4f\u8cc7\u683c\u3067<strong>5\u5e74\u4ee5\u4e0a<\/strong>\u3001\u516c\u7684\u7fa9\u52d9\u306e\u9069\u6b63\u5c65\u884c\u3001\u6700\u9577\u5728\u7559\u671f\u9593\uff08\u539f\u52473\u5e74\uff09\u3092\u6240\u6301\u3001\u516c\u8846\u885b\u751f\u4e0a\u306e\u554f\u984c\u304c\u306a\u3044 \u306a\u3069<\/li>\n        <li>\u914d\u5076\u8005\u30fb\u96e3\u6c11\u7b49\u306e\u7279\u4f8b\u3042\u308a<\/li>\n      <\/ul>\n    <\/div>\n  <\/details>\n\n  <!-- \u30a2\u30b3\u30fc\u30c7\u30a3\u30aa\u30f3\uff1a\u5bb6\u65cf\u6ede\u5728 -->\n  <details class=\"acc\">\n    <summary class=\"acc-head\">\n      <span class=\"acc-title\">\u5bb6\u65cf\u6ede\u5728\uff08\u8cc7\u683c\u5916\u6d3b\u52d5\u8a31\u53ef\u3067\u903128\u6642\u9593\u4ee5\u5185\u5c31\u52b4\u53ef\uff09<\/span>\n      <span class=\"acc-right\">\u6599\u91d1\uff08\u7a0e\u5225\uff09\u203b\uff08 \uff09\u5185\u306f\u7a0e\u8fbc10\uff05<\/span>\n    <\/summary>\n    <div class=\"acc-body\">\n      <table class=\"fee-table\">\n        <tbody>\n          <tr><th>\u5728\u7559\u8cc7\u683c\u8a8d\u5b9a\u8a3c\u660e\u66f8\u4ea4\u4ed8\u7533\u8acb<\/th><td><strong>40,000\u5186\uff0844,000\u5186\uff09<\/strong><\/td><\/tr>\n          <tr><th>\u5728\u7559\u8cc7\u683c\u5909\u66f4\u8a31\u53ef\u7533\u8acb<\/th><td><strong>40,000\u5186\uff0844,000\u5186\uff09<\/strong><\/td><\/tr>\n          <tr><th>\u5728\u7559\u671f\u9593\u66f4\u65b0\u8a31\u53ef\u7533\u8acb<\/th><td><strong>20,000\u5186\uff0822,000\u5186\uff09<\/strong><\/td><\/tr>\n          <tr><th>\u8cc7\u683c\u5916\u6d3b\u52d5\u8a31\u53ef\u7533\u8acb<\/th><td><strong>10,000\u5186\uff0811,000\u5186\uff09<\/strong><\/td><\/tr>\n        <\/tbody>\n      <\/table>\n      <p class=\"desc small-note\">\u203b \u300c\u8cc7\u683c\u5916\u6d3b\u52d5\u8a31\u53ef\u300d\u306f\u5165\u7ba1\u624b\u6570\u6599\uff08\u53ce\u5165\u5370\u7d19\uff09<strong>0\u5186<\/strong>\u3067\u3059\u3002\u8868\u793a\u91d1\u984d\u306f\u5f53\u4e8b\u52d9\u6240\u5831\u916c\u3067\u3059\u3002<\/p>\n    <\/div>\n  <\/details>\n\n  <!-- \u30a2\u30b3\u30fc\u30c7\u30a3\u30aa\u30f3\uff1a\u767b\u9332\u652f\u63f4\u6a5f\u95a2 -->\n  <details class=\"acc\">\n    <summary class=\"acc-head\">\n      <span class=\"acc-title\">\u767b\u9332\u652f\u63f4\u6a5f\u95a2\uff08\u767b\u9332\u652f\u63f4\u6a5f\u95a2\u696d\u52d9\u306e\u8a31\u8a8d\u53ef\u95a2\u4fc2\uff09<\/span>\n      <span class=\"acc-right\">\u6599\u91d1\uff08\u7a0e\u5225\uff09\u203b\uff08 \uff09\u5185\u306f\u7a0e\u8fbc10\uff05<\/span>\n    <\/summary>\n    <div class=\"acc-body\">\n      <table class=\"fee-table\">\n        <tbody>\n          <tr><th>\u5728\u7559\u8cc7\u683c\u8a8d\u5b9a\u8a3c\u660e\u66f8\u4ea4\u4ed8\u7533\u8acb<\/th><td><strong>150,000\u5186\uff08165,000\u5186\uff09<\/strong><\/td><\/tr>\n          <tr><th>\u5728\u7559\u8cc7\u683c\u5909\u66f4\u8a31\u53ef\u7533\u8acb<\/th><td><strong>80,000\u5186\uff0888,000\u5186\uff09<\/strong><\/td><\/tr>\n          <tr><th>\u5728\u7559\u671f\u9593\u66f4\u65b0\u8a31\u53ef\u7533\u8acb<\/th><td><strong>5,000\u5186\u301c\uff085,500\u5186\u301c\uff09<\/strong><\/td><\/tr>\n        <\/tbody>\n      <\/table>\n    <\/div>\n  <\/details>\n\n  <!-- \u30a2\u30b3\u30fc\u30c7\u30a3\u30aa\u30f3\uff1a\u305d\u306e\u4ed6\u5728\u7559\u8cc7\u683c -->\n  <details class=\"acc\">\n    <summary class=\"acc-head\">\n      <span class=\"acc-title\">\u305d\u306e\u4ed6\u5728\u7559\u8cc7\u683c\uff08\u500b\u5225\u898b\u7a4d\uff09<\/span>\n      <span class=\"acc-right\">\u6599\u91d1\uff08\u7a0e\u5225\uff09\u203b\uff08 \uff09\u5185\u306f\u7a0e\u8fbc10\uff05<\/span>\n    <\/summary>\n    <div class=\"acc-body\">\n      <table class=\"fee-table\">\n        <tbody>\n          <tr><th>\u5728\u7559\u8cc7\u683c\u8a8d\u5b9a\u8a3c\u660e\u66f8\u4ea4\u4ed8\u7533\u8acb<\/th><td><strong>60,000\u5186\u301c\uff0866,000\u5186\u301c\uff09<\/strong><\/td><\/tr>\n          <tr><th>\u5728\u7559\u8cc7\u683c\u5909\u66f4\u8a31\u53ef\u7533\u8acb<\/th><td><strong>50,000\u5186\u301c\uff0855,000\u5186\u301c\uff09<\/strong><\/td><\/tr>\n          <tr><th>\u5728\u7559\u671f\u9593\u66f4\u65b0\u8a31\u53ef\u7533\u8acb<\/th><td><strong>10,000\u5186\u301c\uff0811,000\u5186\u301c\uff09<\/strong><\/td><\/tr>\n        <\/tbody>\n      <\/table>\n      <p class=\"desc\">\u500b\u5225\u4e8b\u60c5\u306b\u3088\u308a\u624b\u7d9a\u5185\u5bb9\u304c\u7570\u306a\u308b\u305f\u3081\u3001\u30d2\u30a2\u30ea\u30f3\u30b0\u306e\u3046\u3048\u6700\u9069\u306a\u30d7\u30e9\u30f3\u3092\u3054\u63d0\u6848\u3057\u307e\u3059\u3002<\/p>\n    <\/div>\n  <\/details>\n\n  <!-- ===== \u652f\u63f4\u59d4\u8a17\u6599\u30fb\u9867\u554f\u5951\u7d04 \u3078\u306e\u5c0e\u7dda ===== -->\n  <div id=\"sec-retainer\" class=\"lead-card\">\n    <h3>\u3008\u652f\u63f4\u59d4\u8a17\u6599\u3009<\/h3>\n    <p>\u767b\u9332\u652f\u63f4\u6a5f\u95a2\u3068\u3057\u3066\u306e\u6cd5\u5b9a\u652f\u63f4\u30fb\u904b\u7528\u4f34\u8d70\u30fb\u5b9f\u52d9\u76f8\u8ac7\u3092\u30d1\u30c3\u30b1\u30fc\u30b8\u5316\u3002\u30dc\u30ea\u30e5\u30fc\u30e0\u306b\u5fdc\u3058\u305f\u5272\u5f15\u306b\u3082\u5bfe\u5fdc\u3057\u307e\u3059\u3002<\/p>\n  <\/div>\n  <div id=\"sec-advisory\" class=\"lead-card\">\n    <h3>\u3008\u9867\u554f\u5951\u7d04\u3009<\/h3>\n    <p>\u53d7\u5165\u4f53\u5236\u69cb\u7bc9\u3001\u904b\u7528\u30fb\u5c4a\u51fa\u3001\u6cd5\u52d9\u30fb\u30b3\u30f3\u30d7\u30e9\u30a4\u30a2\u30f3\u30b9\u52a9\u8a00\u307e\u3067\u3001\u5c02\u9580\u884c\u653f\u66f8\u58eb\u304c\u7d99\u7d9a\u7684\u306b\u4f34\u8d70\u3057\u307e\u3059\u3002<\/p>\n  <\/div>\n<\/section>\n\n<style>\n:root{\n  --accent:#996515;   \/* \u91d1\u8272\u30a2\u30af\u30bb\u30f3\u30c8 *\/\n  --deep:#0e3a3a;     \/* \u6df1\u7dd1 *\/\n  --ink:#1a1a1a;\n  --soft:#f8f6ee;\n  --border:#e5dbc3;\n}\n.pricing-page{\n  max-width:1100px; margin:40px auto; padding:0 18px;\n  font-family:'Noto Serif JP','Hiragino Mincho ProN','MS Mincho',serif; color:var(--ink);\n}\n\n\/* \u691c\u7d22\u4f8b *\/\n.hint-box{\n  background:#fff; border:1px dashed var(--border); border-radius:12px; padding:12px 14px; margin-bottom:12px;\n}\n.hint-title{ font-weight:700; color:#6b5a3a; margin-bottom:4px; }\n\n\/* \u5171\u901a\u6ce8\u8a18 *\/\n.policy-box{\n  background:#fff; border:1px solid var(--border); border-radius:12px;\n  padding:12px 14px; margin:10px 0 18px;\n}\n.note-list{ margin:0; padding-left:1.2em; }\n.note-list li{ line-height:1.9; }\n\n\/* \u30d4\u30eb\u578b\u30ca\u30d3 *\/\n.pill-nav{ display:flex; flex-wrap:wrap; gap:8px; margin:6px 0 18px; }\n.pill{\n  display:inline-block; background:var(--deep); color:#fff; text-decoration:none;\n  padding:6px 12px; border-radius:999px; font-size:14px;\n}\n.pill.note{ background:#fff; color:#333; border:1px solid var(--border); }\n\n\/* \u30bb\u30af\u30b7\u30e7\u30f3\u898b\u51fa\u3057 *\/\n.sec-header{ text-align:center; margin:26px 0 12px; }\n.sec-header .en{ font-size:12px; letter-spacing:.28em; color:#8c7a57; margin-bottom:6px; }\n.sec-header .ja{ margin:0; font-weight:700; letter-spacing:.08em; font-size:clamp(24px,4.2vw,36px); color:var(--accent); }\n.orn{ position:relative; width:min(320px,70vw); height:14px; margin:10px auto 0; }\n.orn::before,.orn::after{ content:\"\"; position:absolute; top:50%; width:44%; height:1px; background:linear-gradient(to right, rgba(153,101,21,0), var(--accent)); }\n.orn::before{ left:0; } .orn::after{ right:0; transform:scaleX(-1); }\n.orn span{ position:absolute; left:50%; top:50%; transform:translate(-50%,-50%) rotate(45deg); width:10px; height:10px; background:#fff; border:1px solid var(--accent); border-radius:2px; }\n\n\/* \u30a2\u30b3\u30fc\u30c7\u30a3\u30aa\u30f3 *\/\n.acc{ border:1px solid var(--border); border-radius:14px; background:#fff; margin:12px 0; overflow:hidden; }\n.acc[open]{ box-shadow:0 2px 12px rgba(0,0,0,.06); }\n.acc-head{ list-style:none; cursor:pointer; display:flex; align-items:center; justify-content:space-between;\n  padding:14px 16px; background:linear-gradient(180deg,#fff,#fcfaf4); font-weight:700; }\n.acc-title{ color:#111; }\n.acc-right{ color:#6b5a3a; font-size:14px; }\n.acc-body{ padding:14px 16px 16px; }\n\n\/* \u30c6\u30fc\u30d6\u30eb *\/\n.fee-table{ width:100%; border-collapse:separate; border-spacing:0; border:1px solid var(--border); border-radius:10px; overflow:hidden; }\n.fee-table th, .fee-table td{ padding:12px 14px; border-bottom:1px solid var(--border); }\n.fee-table tr:last-child th, .fee-table tr:last-child td{ border-bottom:none; }\n.fee-table th{ width:52%; text-align:left; background:#fff; }\n.fee-table td{ text-align:right; font-weight:700; color:var(--accent); }\n.mini{ margin:12px 0 6px; font-size:18px; font-weight:700; color:#111; }\n.desc{ margin:6px 0 10px; }\n.small-note{ font-size:.92em; color:#555; }\n.grid-2{ display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; }\n.bullet{ margin:0; padding-left:1.1em; }\n.bullet li{ margin:.25em 0; line-height:1.8; }\n\n\/* \u5c0e\u7dda\u30dc\u30c3\u30af\u30b9 *\/\n.lead-card{ background:var(--soft); border:1px solid var(--border); border-radius:12px; padding:14px 16px; margin:14px 0; }\n.lead-card h3{ margin:0 0 6px; font-size:18px; color:#111; }\n\n\/* \u30e2\u30d0\u30a4\u30eb *\/\n@media (max-width: 720px){\n  .grid-2{ grid-template-columns:1fr; }\n  .fee-table th{ width:auto; }\n  .acc-head{ padding:12px 14px; }\n  .acc-body{ padding:12px 14px 14px; }\n}\n<\/style>\n<!-- === \/\u6599\u91d1\u4e00\u89a7\uff08\u6ce8\u8a18\u53cd\u6620\u7248\uff09 === -->\n\n<!-- === \u6599\u91d1\u30fb\u652f\u63f4\u59d4\u8a17\u6599\u30fb\u9867\u554f\u5951\u7d04\uff5c\u30b9\u30de\u30db\u7e26\u66f8\u304d\u9632\u6b62\u7248 === -->\n<section class=\"pricing-page\" aria-label=\"\u6599\u91d1\u4e00\u89a7\">\n  <!-- \u3053\u3053\u304b\u3089\u4e0b\u306f\u3001\u76f4\u524d\u306b\u304a\u6e21\u3057\u3057\u305fHTML\u672c\u6587\u305d\u306e\u307e\u307e\u3067OK\uff08\u7701\u7565\u53ef\uff09 -->\n  <!-- \u2026\u3042\u306a\u305f\u306e <div class=\"hint-box\"> \uff5e <\/section> \u307e\u3067\u306eHTML\u306f\u5909\u66f4\u4e0d\u8981\u2026 -->\n<\/section>\n\n<style>\n:root{\n  --accent:#996515;   \/* \u91d1\u8272\u30a2\u30af\u30bb\u30f3\u30c8 *\/\n  --deep:#0e3a3a;     \/* \u6df1\u7dd1 *\/\n  --ink:#1a1a1a;\n  --soft:#f8f6ee;\n  --border:#e5dbc3;\n}\n.pricing-page{\n  max-width:1100px; margin:40px auto; padding:0 18px;\n  font-family:'Noto Serif JP','Hiragino Mincho ProN','MS Mincho',serif; color:var(--ink);\n}\n\n\/* \u691c\u7d22\u4f8b *\/\n.hint-box{\n  background:#fff; border:1px dashed var(--border); border-radius:12px; padding:12px 14px; margin-bottom:12px;\n}\n.hint-title{ font-weight:700; color:#6b5a3a; margin-bottom:4px; }\n\n\/* \u5171\u901a\u6ce8\u8a18\uff08\u4efb\u610f\uff09 *\/\n.policy-box{ background:#fff; border:1px solid var(--border); border-radius:12px; padding:12px 14px; margin:10px 0 18px; }\n.note-list{ margin:0; padding-left:1.2em; }\n.note-list li{ line-height:1.9; }\n\n\/* \u30d4\u30eb\u578b\u30ca\u30d3 *\/\n.pill-nav{ display:flex; flex-wrap:wrap; gap:8px; margin:6px 0 18px; }\n.pill{\n  display:inline-block; background:var(--deep); color:#fff; text-decoration:none;\n  padding:6px 12px; border-radius:999px; font-size:14px;\n}\n.pill.note{ background:#fff; color:#333; border:1px solid var(--border); }\n\n\/* \u30bb\u30af\u30b7\u30e7\u30f3\u898b\u51fa\u3057 *\/\n.sec-header{ text-align:center; margin:26px 0 12px; }\n.sec-header .en{ font-size:12px; letter-spacing:.28em; color:#8c7a57; margin-bottom:6px; }\n.sec-header .ja{ margin:0; font-weight:700; letter-spacing:.08em; font-size:clamp(24px,4.2vw,36px); color:var(--accent); }\n.orn{ position:relative; width:min(320px,70vw); height:14px; margin:10px auto 0; }\n.orn::before,.orn::after{ content:\"\"; position:absolute; top:50%; width:44%; height:1px; background:linear-gradient(to right, rgba(153,101,21,0), var(--accent)); }\n.orn::before{ left:0; } .orn::after{ right:0; transform:scaleX(-1); }\n.orn span{ position:absolute; left:50%; top:50%; transform:translate(-50%,-50%) rotate(45deg); width:10px; height:10px; background:#fff; border:1px solid var(--accent); border-radius:2px; }\n\n\/* \u30a2\u30b3\u30fc\u30c7\u30a3\u30aa\u30f3 *\/\n.acc{ border:1px solid var(--border); border-radius:14px; background:#fff; margin:12px 0; overflow:hidden; }\n.acc[open]{ box-shadow:0 2px 12px rgba(0,0,0,.06); }\n.acc-head{ list-style:none; cursor:pointer; display:flex; align-items:center; justify-content:space-between;\n  padding:14px 16px; background:linear-gradient(180deg,#fff,#fcfaf4); font-weight:700; }\n.acc-title{ color:#111; }\n.acc-right{ color:#6b5a3a; font-size:14px; }\n.acc-body{ padding:14px 16px 16px; }\n\n\/* \u30c6\u30fc\u30d6\u30eb\uff08PC\/\u30bf\u30d6\u30ec\u30c3\u30c8\u57fa\u6e96\uff09 *\/\n.fee-table{ width:100%; border-collapse:separate; border-spacing:0; border:1px solid var(--border); border-radius:10px; overflow:hidden; }\n\n\/* \u2014\u2014 \u7e26\u66f8\u304d\u5d29\u308c\u5bfe\u7b56\uff08\u6a2a\u66f8\u304d\u3092\u5f37\u5236\uff09 \u2014\u2014 *\/\n.fee-table, .fee-table *{\n  writing-mode: horizontal-tb !important;\n  text-orientation: mixed !important;\n}\n.fee-table th, .fee-table td{\n  white-space: normal !important;\n  word-break: normal !important;\n  overflow-wrap: break-word; \/* \u30c6\u30fc\u30de\u306e anywhere \u3092\u6253\u3061\u6d88\u3057\u3066\u81ea\u7136\u6539\u884c *\/\n  -webkit-hyphens: none; hyphens: none;\n}\n\/* PC\/\u30bf\u30d6\u30ec\u30c3\u30c8\u7528\u306e\u30bb\u30eb\u4f53\u88c1 *\/\n.fee-table th, .fee-table td{ padding:12px 14px; border-bottom:1px solid var(--border); }\n.fee-table tr:last-child th, .fee-table tr:last-child td{ border-bottom:none; }\n.fee-table th{ width:52%; text-align:left; background:#fff; }\n.fee-table td{ text-align:right; font-weight:700; color:var(--accent); }\n\n\/* \u5c0f\u898b\u51fa\u3057\u7b49 *\/\n.mini{ margin:12px 0 6px; font-size:18px; font-weight:700; color:#111; }\n.desc{ margin:6px 0 10px; }\n.small-note{ font-size:.92em; color:#555; }\n.grid-2{ display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:12px; }\n.bullet{ margin:0; padding-left:1.1em; }\n.bullet li{ margin:.25em 0; line-height:1.8; }\n\n\/* \u5c0e\u7dda\u30dc\u30c3\u30af\u30b9 *\/\n.lead-card{ background:var(--soft); border:1px solid var(--border); border-radius:12px; padding:14px 16px; margin:14px 0; }\n.lead-card h3{ margin:0 0 6px; font-size:18px; color:#111; }\n\n\/* ===== \u30b9\u30de\u30db\u6700\u9069\u5316\uff1a\u30ab\u30fc\u30c9\u578b\u306b\u30b9\u30bf\u30c3\u30af\uff0b\u6a2a\u66f8\u304d\u7dad\u6301 ===== *\/\n@media (max-width: 720px){\n  .grid-2{ grid-template-columns:1fr; }\n\n  \/* \u30c6\u30fc\u30d6\u30eb\u30921\u884c\uff1d1\u30ab\u30fc\u30c9\u306b *\/\n  .fee-table thead{ display:none; }\n  .fee-table{ display:block; }\n  .fee-table tbody{ display:block; }\n  .fee-table tr{\n    display:block;\n    border-bottom:1px solid var(--border);\n    padding:10px 0;\n  }\n  .fee-table tr:last-child{ border-bottom:none; }\n\n  .fee-table th,\n  .fee-table td{\n    display:block;\n    width:auto;\n    border:none;\n    padding:8px 14px;\n    text-align:left; \/* \u91d1\u984d\u3082\u5de6\u5bc4\u305b\u306b *\/\n  }\n  .fee-table th{ padding-bottom:4px; font-weight:700; color:#111; }\n  .fee-table td{ padding-top:0; color:var(--accent); }\n\n  \/* \u5ff5\u62bc\u3057\u3067\u6a2a\u66f8\u304d *\/\n  .fee-table th, .fee-table td{\n    writing-mode: horizontal-tb !important;\n    text-orientation: mixed !important;\n    white-space: normal !important;\n    word-break: normal !important;\n    overflow-wrap: break-word !important;\n  }\n}\n<\/style>\n<!-- === \/\u30b9\u30de\u30db\u7e26\u66f8\u304d\u9632\u6b62\u7248 === -->\n\n\n\n<div style=\"height:32px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n\n\n\n<!-- === \u652f\u63f4\u59d4\u8a17\u6599\uff08\u30b9\u30de\u30db\u7e26\u5d29\u308c\u4fee\u6b63\u30fb\u6a2a\u66f8\u304d\u5f37\u5236\u30fb\u30ab\u30fc\u30c9\u578b\uff09 === -->\n<section id=\"retainer-fee\" class=\"retainer-sec\" aria-label=\"\u652f\u63f4\u59d4\u8a17\u6599\">\n  <header class=\"sec-header\">\n    <div class=\"en\">SUPPORT RETAINER FEE<\/div>\n    <h2 class=\"ja\">\u652f\u63f4\u59d4\u8a17\u6599<\/h2>\n    <div class=\"orn\" aria-hidden=\"true\"><span><\/span><\/div>\n  <\/header>\n\n  <table class=\"retainer-table\">\n    <thead>\n      <tr>\n        <th>\u9805\u76ee<\/th>\n        <th>\u6599\u91d1\uff08\u7a0e\u5225\uff09<\/th>\n        <th>\u5099\u8003<\/th>\n      <\/tr>\n    <\/thead>\n    <tbody>\n      <tr>\n        <td data-label=\"\u9805\u76ee\">1\u4eba\u3042\u305f\u308a<\/td>\n        <td class=\"amount\" data-label=\"\u6599\u91d1\uff08\u7a0e\u5225\uff09\"><strong>20,000\u5186\u301c25,000\u5186\uff0f\u6708<\/strong><\/td>\n        <td data-label=\"\u5099\u8003\">\u5728\u7559\u8cc7\u683c\u30fb\u652f\u63f4\u5185\u5bb9\u30fb\u4eba\u6570\u898f\u6a21\u306b\u3088\u308a\u304a\u898b\u7a4d\u308a<\/td>\n      <\/tr>\n      <tr>\n        <td data-label=\"\u9805\u76ee\">2\u4eba\u76ee\u4ee5\u964d<\/td>\n        <td class=\"amount\" data-label=\"\u6599\u91d1\uff08\u7a0e\u5225\uff09\"><strong>1,000\u5186\u306e\u5272\u5f15<\/strong><\/td>\n        <td data-label=\"\u5099\u8003\">\u30dc\u30ea\u30e5\u30fc\u30e0\u30c7\u30a3\u30b9\u30ab\u30a6\u30f3\u30c8\u4f75\u7528\u53ef<\/td>\n      <\/tr>\n    <\/tbody>\n  <\/table>\n<\/section>\n\n<style>\n:root{\n  --accent:#996515;   \/* \u91d1\u8272 *\/\n  --deep:#0e3a3a;     \/* \u6df1\u7dd1 *\/\n  --ink:#1a1a1a;\n  --border:#e5dbc3;\n}\n\n\/* \u898b\u51fa\u3057 *\/\n#retainer-fee .sec-header{ text-align:center; margin:26px 0 12px; }\n#retainer-fee .sec-header .en{ font-size:12px; letter-spacing:.28em; color:#8c7a57; margin-bottom:6px; }\n#retainer-fee .sec-header .ja{ margin:0; font-weight:700; letter-spacing:.08em; font-size:clamp(24px,4.2vw,36px); color:var(--accent); }\n#retainer-fee .orn{ position:relative; width:min(320px,70vw); height:14px; margin:10px auto 0; }\n#retainer-fee .orn::before,#retainer-fee .orn::after{ content:\"\"; position:absolute; top:50%; width:44%; height:1px; background:linear-gradient(90deg,rgba(153,101,21,0),var(--accent)); }\n#retainer-fee .orn::before{ left:0; } #retainer-fee .orn::after{ right:0; transform:scaleX(-1); }\n#retainer-fee .orn span{ position:absolute; left:50%; top:50%; transform:translate(-50%,-50%) rotate(45deg); width:10px; height:10px; background:#fff; border:1px solid var(--accent); border-radius:2px; }\n\n\/* ===== \u652f\u63f4\u59d4\u8a17\u6599\u30c6\u30fc\u30d6\u30eb\uff08PC\uff09 ===== *\/\n#retainer-fee .retainer-table{\n  width:100%;\n  border:1px solid var(--border);\n  border-radius:12px;\n  border-collapse:separate;\n  border-spacing:0;\n  overflow:hidden;\n  background:#fff;\n  table-layout:fixed;\n}\n\n\/* \u6a2a\u66f8\u304d\u56fa\u5b9a\uff0b1\u6587\u5b57\u6539\u884c\u3092\u7121\u52b9\u5316\uff08\u5f37\u5236\uff09 *\/\n#retainer-fee .retainer-table,\n#retainer-fee .retainer-table *{\n  writing-mode: horizontal-tb !important;\n  text-orientation: mixed !important;\n  white-space: normal !important;\n  word-break: keep-all !important;          \/* \u2190 \u65e5\u672c\u8a9e\u306e1\u6587\u5b57\u6539\u884c\u3092\u6291\u5236 *\/\n  overflow-wrap: break-word !important;      \/* \u9577\u3044\u82f1\u6570\u306e\u307f\u6298\u8fd4\u3057 *\/\n  -webkit-hyphens: none; hyphens: none;\n  line-break: auto !important;\n}\n\n#retainer-fee .retainer-table th,\n#retainer-fee .retainer-table td{\n  padding:14px 16px;\n  border-bottom:1px solid var(--border);\n  vertical-align:middle;\n  color:var(--ink);\n}\n#retainer-fee .retainer-table thead th{\n  background:linear-gradient(180deg,#fff,#fcfaf4);\n  font-weight:700;\n}\n\n#retainer-fee .retainer-table th:nth-child(1),\n#retainer-fee .retainer-table td:nth-child(1){ width:28%; text-align:left; }\n#retainer-fee .retainer-table th:nth-child(2),\n#retainer-fee .retainer-table td:nth-child(2){ width:32%; text-align:right; }\n#retainer-fee .retainer-table th:nth-child(3),\n#retainer-fee .retainer-table td:nth-child(3){ width:40%; text-align:left; }\n\n#retainer-fee .retainer-table .amount{ color:var(--accent); font-weight:700; }\n#retainer-fee .retainer-table tbody tr:last-child td{ border-bottom:none; }\n\n\/* ===== \u30b9\u30de\u30db\uff1a\u30ab\u30fc\u30c9\u578b\u306b\u5909\u63db\uff08\u6a2a\u66f8\u304d\u7dad\u6301\uff09 ===== *\/\n@media (max-width: 720px){\n  #retainer-fee .retainer-table{ display:block; border:0; border-radius:0; }\n  #retainer-fee .retainer-table thead{ display:none; }\n  #retainer-fee .retainer-table tbody{ display:block; }\n  #retainer-fee .retainer-table tr{\n    display:block;\n    border:1px solid var(--border);\n    border-radius:12px;\n    margin:12px 0;\n    overflow:hidden;\n    background:#fff;\n  }\n  #retainer-fee .retainer-table td{\n    display:block;\n    border:none;\n    padding:10px 14px;\n    text-align:left !important;\n    line-height:1.7;\n  }\n  #retainer-fee .retainer-table td:first-child{ font-weight:700; }\n  #retainer-fee .retainer-table td[data-label]::before{\n    content:attr(data-label);\n    display:block;\n    font-size:.95em;\n    color:#666;\n    font-weight:600;\n    margin-bottom:4px;\n  }\n}\n\n\/* =========================================================\n   \u2605\u3053\u3053\u304b\u3089\u201c\u30da\u30fc\u30b8\u5168\u4f53\u306e\u8868\u201d\u3092\u5f37\u5236\u4fee\u6b63\uff08\u3053\u306e\u30da\u30fc\u30b8\u9650\u5b9a\uff09\n   WordPress\u306f body \u306b page-id-260 \u304c\u5165\u308b\u306e\u3067\u7bc4\u56f2\u3092\u9650\u5b9a\u3057\u307e\u3059\n   ========================================================= *\/\nbody.page-id-260 table,\nbody.page-id-260 .wp-block-table table,\nbody.page-id-260 .vk_table,\nbody.page-id-260 .vk-table{\n  table-layout:auto !important;\n  width:100%;\n}\n\n\/* \u6a2a\u66f8\u304d\u56fa\u5b9a\uff08\u6700\u5f37\u30bb\u30ec\u30af\u30bf\uff09 *\/\nbody.page-id-260 table,\nbody.page-id-260 table *,\nbody.page-id-260 .wp-block-table table,\nbody.page-id-260 .wp-block-table table *,\nbody.page-id-260 .vk_table,\nbody.page-id-260 .vk_table *,\nbody.page-id-260 .vk-table,\nbody.page-id-260 .vk-table *{\n  writing-mode: horizontal-tb !important;\n  text-orientation: mixed !important;\n  white-space: normal !important;\n  word-break: keep-all !important;          \/* break-all\/anywhere \u3092\u4e0a\u66f8\u304d *\/\n  overflow-wrap: break-word !important;\n  -webkit-hyphens: none; hyphens: none;\n  line-break: auto !important;\n  letter-spacing: normal !important;\n}\n\n\/* \u30b9\u30de\u30db\u6c4e\u7528\uff1a\u8868\u3092\u8aad\u307f\u3084\u3059\u304f\uff08thead\u9664\u53bb\uff0b\u884c\u3092\u30ab\u30fc\u30c9\u5316\uff09 *\/\n@media (max-width: 768px){\n  body.page-id-260 .wp-block-table thead,\n  body.page-id-260 table thead{ display:none !important; }\n\n  body.page-id-260 .wp-block-table table,\n  body.page-id-260 table{\n    display:block !important;\n    border:0 !important;\n    border-radius:0 !important;\n  }\n  body.page-id-260 table tbody{ display:block !important; }\n  body.page-id-260 table tr{\n    display:block !important;\n    margin:12px 0 !important;\n    border:1px solid var(--border) !important;\n    border-radius:12px !important;\n    overflow:hidden !important;\n    background:#fff !important;\n  }\n  body.page-id-260 table th,\n  body.page-id-260 table td{\n    display:block !important;\n    width:auto !important;\n    padding:10px 14px !important;\n    border:none !important;\n    text-align:left !important;\n    line-height:1.7 !important;\n  }\n}\n<\/style>\n\n<div class=\"legal-note\" role=\"note\">\n  <div><span class=\"badge\">\u203b<\/span> \u652f\u63f4\u696d\u52d9\uff08\u5728\u7559\u652f\u63f4\u30fb\u6cd5\u5b9a\u652f\u63f4\u7b49\uff09\u306f\u3001<strong>\u56fd\u969b\u30ad\u30e3\u30ea\u30a2\u682a\u5f0f\u4f1a\u793e<\/strong>\u304c\u5b9f\u65bd\u3057\u307e\u3059\u3002<\/div>\n  <div style=\"margin-top:4px; font-size:13px; color:#666;\">\n    Note: Registered support services are provided by <strong>global Career Co., Ltd.<\/strong>\n  <\/div>\n<\/div>\n\n\n\n\n<!-- ===== \u9867\u554f\u5951\u7d04\uff08\u30b3\u30d4\u30fc\uff06\u30da\u30fc\u30b9\u30c8\u7528 \u5b8c\u7d50\u7248\uff09 ===== -->\n<link href=\"https:\/\/fonts.googleapis.com\/css2?family=Noto+Serif+JP:wght@400;700&display=swap\" rel=\"stylesheet\">\n\n<section class=\"advisory-section\">\n  <h2 class=\"advisory-title\">\u9867\u554f\u5951\u7d04<\/h2>\n\n  <div class=\"advisory-subtitle\">\u63d0\u4f9b\u5185\u5bb9<\/div>\n  <ul class=\"advisory-list\">\n    <li><strong>\u53d7\u5165\u308c\u4f53\u5236\u306e\u69cb\u7bc9\u652f\u63f4\uff1a<\/strong>\u793e\u5185\u4f53\u5236\u30fb\u5b9f\u52d9\u30d5\u30ed\u30fc\u306e\u8a2d\u8a08\u3001\u898f\u7a0b\u30fb\u5e33\u7968\u306e\u6574\u5099\u3001\u904b\u7528\u306e\u5b9a\u7740\u652f\u63f4\u3002<\/li>\n    <li><strong>\u65e2\u5b58\u53d7\u5165\u4f01\u696d\u306e\u904b\u7528\u652f\u63f4\uff1a<\/strong>\u5165\u7ba1\u3078\u306e\u5404\u7a2e\u5c4a\u51fa\u3001\u6cd5\u7684\u52a9\u8a00\u3001\u8cea\u7591\u5bfe\u5fdc\u3001\u5404\u7a2e\u7533\u8acb\u306e<strong>\u9867\u554f\u5272\u5f15<\/strong>\u9069\u7528\u3002<\/li>\n    <li><strong>\u767b\u9332\u652f\u63f4\u6a5f\u95a2\u5411\u3051\u652f\u63f4\uff1a<\/strong>\u30b3\u30f3\u30d7\u30e9\u30a4\u30a2\u30f3\u30b9\u4f53\u5236\u306e\u6574\u5099\u30fb\u70b9\u691c\u3001\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306e\u7acb\u4e0a\u3052\u30fb\u904b\u55b6\u4f34\u8d70\u3001\u6848\u4ef6\u3054\u3068\u306e\u5b9f\u52d9\u652f\u63f4\u3002<\/li>\n  <\/ul>\n\n  <div class=\"advisory-subtitle\">\u5831\u916c\u30d7\u30e9\u30f3\uff08\u7a0e\u5225\uff09<\/div>\n  <div class=\"advisory-plans\">\n    <!-- \u53d7\u5165\u308c\u4f01\u696d\u5411\u3051\u2460 -->\n    <div class=\"plan-card\">\n      <div class=\"plan-name\">\u53d7\u5165\u308c\u4f01\u696d\u5411\u3051\uff08\u30e9\u30a4\u30c8\uff09<\/div>\n      <div class=\"plan-price\"><span>\u6708\u984d<\/span> 30,000\u5186\u301c<\/div>\n      <ul class=\"plan-features\">\n        <li>LINE\u30fb\u30e1\u30fc\u30eb\u76f8\u8ac7 <strong>\u7121\u5236\u9650<\/strong><\/li>\n        <li>WEB\u4f1a\u8b70\u307b\u304b\u62d8\u675f\u6642\u9593 <strong>\u67084\u6642\u9593\u307e\u3067<\/strong><\/li>\n        <li>\u5404\u7a2e\u7533\u8acb <strong>10%\u5272\u5f15<\/strong>\uff08\u30dc\u30ea\u30e5\u30fc\u30e0\u4f75\u7528\u53ef\uff09<\/li>\n      <\/ul>\n    <\/div>\n\n    <!-- \u53d7\u5165\u308c\u4f01\u696d\u5411\u3051\u2461 -->\n    <div class=\"plan-card\">\n      <div class=\"plan-name\">\u53d7\u5165\u308c\u4f01\u696d\u5411\u3051\uff08\u30b9\u30bf\u30f3\u30c0\u30fc\u30c9\uff09<\/div>\n      <div class=\"plan-price\"><span>\u6708\u984d<\/span> 50,000\u5186\u301c<\/div>\n      <ul class=\"plan-features\">\n        <li>LINE\u30fb\u30e1\u30fc\u30eb\u76f8\u8ac7 <strong>\u7121\u5236\u9650<\/strong><\/li>\n        <li>WEB\u4f1a\u8b70\u307b\u304b\u62d8\u675f\u6642\u9593 <strong>\u67088\u6642\u9593\u307e\u3067<\/strong><\/li>\n        <li>\u5404\u7a2e\u7533\u8acb <strong>15%\u5272\u5f15<\/strong>\uff08\u30dc\u30ea\u30e5\u30fc\u30e0\u4f75\u7528\u53ef\uff09<\/li>\n      <\/ul>\n    <\/div>\n\n    <!-- \u767b\u9332\u652f\u63f4\u6a5f\u95a2\u5411\u3051\uff08\u975e\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u578b\uff09 -->\n    <div class=\"plan-card\">\n      <div class=\"plan-name\">\u767b\u9332\u652f\u63f4\u6a5f\u95a2\u5411\u3051\uff08\u975e\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u578b\uff09<\/div>\n      <div class=\"plan-price\"><span>\u6708\u984d<\/span> 50,000\u5186\u301c<\/div>\n      <ul class=\"plan-features\">\n        <li>\u6848\u4ef6\u30fb\u5c4a\u51fa\u306b\u95a2\u3059\u308b\u6cd5\u4ee4\u78ba\u8a8d\uff0f\u30b3\u30f3\u30d7\u30e9\u76f8\u8ac7<\/li>\n        <li>LINE\u30fb\u30e1\u30fc\u30eb\u76f8\u8ac7 <strong>\u7121\u5236\u9650<\/strong><\/li>\n        <li>WEB\u4f1a\u8b70\u307b\u304b\u62d8\u675f\u6642\u9593 <strong>\u67088\u6642\u9593\u307e\u3067<\/strong><\/li>\n        <li>\u5404\u7a2e\u7533\u8acb <strong>15%\u5272\u5f15<\/strong><\/li>\n      <\/ul>\n    <\/div>\n\n    <!-- \u767b\u9332\u652f\u63f4\u6a5f\u95a2\u5411\u3051\uff08\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u578b\uff09 -->\n    <div class=\"plan-card\">\n      <div class=\"plan-name\">\u767b\u9332\u652f\u63f4\u6a5f\u95a2\u5411\u3051\uff08\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u578b\uff09<\/div>\n      <div class=\"plan-price\"><span>\u6708\u984d<\/span> 100,000\u5186\u301c<\/div>\n      <ul class=\"plan-features\">\n        <li>\u30d7\u30ed\u30b8\u30a7\u30af\u30c8\u306b\u30b3\u30df\u30c3\u30c8\u3057\u8cb4\u793e\u6848\u4ef6\u3092\u30d5\u30eb\u30b5\u30dd\u30fc\u30c8<\/li>\n        <li>LINE\u30fb\u30e1\u30fc\u30eb\u30fb\u96fb\u8a71\u76f8\u8ac7 <strong>\u7121\u5236\u9650<\/strong><\/li>\n        <li>WEB\u4f1a\u8b70\u307b\u304b\u62d8\u675f\u6642\u9593 <strong>\u670812\u6642\u9593\u307e\u3067<\/strong><\/li>\n        <li>\u5404\u7a2e\u7533\u8acb <strong>20%\u5272\u5f15<\/strong><\/li>\n        <li>\u8cb4\u793e\u9867\u5ba2\u3078\u306e\u5236\u5ea6\u30fb\u624b\u7d9a\u306e\u76f4\u63a5\u8aac\u660e\u5bfe\u5fdc<\/li>\n      <\/ul>\n    <\/div>\n  <\/div>\n\n  <div class=\"advisory-notes\">\n    <div class=\"notes-title\">\u6ce8\u8a18\uff08\u660e\u6717\u4f1a\u8a08\uff09<\/div>\n    <ul>\n      <li>\u5272\u5f15\u306e\u5bfe\u8c61\u306f\u5f53\u4e8b\u52d9\u6240\u306e<strong>\u5831\u916c<\/strong>\u306b\u9650\u308a\u307e\u3059\uff08\u53ce\u5165\u5370\u7d19\u30fb\u90f5\u9001\u8cbb\u30fb\u7ffb\u8a33\u8cbb\u7b49\u306e<strong>\u5b9f\u8cbb\u306f\u5bfe\u8c61\u5916<\/strong>\uff09\u3002<\/li>\n      <li>\u300c\u62d8\u675f\u6642\u9593\u300d\u306b\u306f\u4f1a\u8b70\u30fb\u8cc7\u6599\u30ec\u30d3\u30e5\u30fc\u30fb\u66f8\u9762\u4f5c\u6210\u30fb\u5f53\u5c40\u7167\u4f1a\u30fb\u5b9f\u52d9\u52a9\u8a00\u7b49\u306e<strong>\u5b9f\u4f5c\u696d\u6642\u9593<\/strong>\u3092\u542b\u307f\u307e\u3059\u3002<\/li>\n      <li>\u6708\u9593\u6642\u9593\u306e<strong>\u8d85\u904e\u5206<\/strong>\u3001\u51fa\u5f35\u5bfe\u5fdc\u3001\u7ffb\u8a33\u30fb\u901a\u8a33\u7b49\u306f<strong>\u5225\u9014\u304a\u898b\u7a4d\u308a<\/strong>\u3002<\/li>\n      <li>\u5951\u7d04\u671f\u9593\u30fb\u89e3\u7d04\u6761\u4ef6\u3001SLA\uff08\u521d\u56de\u8fd4\u4fe1\u76ee\u5b89\uff09\u7b49\u306f<strong>\u500b\u5225\u5354\u8b70<\/strong>\u306e\u3046\u3048\u53d6\u308a\u6c7a\u3081\u307e\u3059\u3002<\/li>\n    <\/ul>\n  <\/div>\n<\/section>\n\n<style>\n:root{\n  --accent:#996515;      \/* \u91d1\u8336\u30a2\u30af\u30bb\u30f3\u30c8\uff08#a67c00 \u660e\u308b\u3081 \/ #7b5d00 \u843d\u3061\u7740\u304d\u5f37\u3081\uff09 *\/\n  --bg-soft:#f8f6ee;     \/* \u80cc\u666f\u306e\u6de1\u8272 *\/\n  --border:#e5dbc3;      \/* \u67a0\u7dda\u8272 *\/\n}\n\n.advisory-section{\n  max-width:1100px;\n  margin:64px auto;\n  padding:0 20px;\n  font-family:'Noto Serif JP','Hiragino Mincho ProN','MS Mincho',serif;\n  color:#222;\n}\n\n\/* \u898b\u51fa\u3057\uff08\u30aa\u30fc\u30ca\u30e1\u30f3\u30c8\u4ed8\uff09 *\/\n.advisory-title{\n  text-align:center;\n  font-size:28px;\n  font-weight:700;\n  letter-spacing:.06em;\n  color:var(--accent);\n  margin:0 0 28px;\n  position:relative;\n}\n.advisory-title::after{\n  content:\"\";\n  display:block;\n  width:90px; height:2px;\n  margin:12px auto 0;\n  background:linear-gradient(to right, transparent, var(--accent), transparent);\n}\n\n\/* \u5c0f\u898b\u51fa\u3057 *\/\n.advisory-subtitle{\n  font-size:18px;\n  font-weight:700;\n  margin:26px 0 12px;\n  color:#111;\n  position:relative;\n  padding-left:14px;\n}\n.advisory-subtitle::before{\n  content:\"\";\n  position:absolute; left:0; top:.55em;\n  width:6px; height:6px; transform:rotate(45deg);\n  background:var(--accent);\n}\n\n\/* \u63d0\u4f9b\u5185\u5bb9\u306e\u30ea\u30b9\u30c8 *\/\n.advisory-list{\n  margin:0 0 18px 0;\n  padding:14px 16px 14px 22px;\n  background:var(--bg-soft);\n  border:1px solid var(--border);\n  border-radius:12px;\n  list-style: none;\n}\n.advisory-list li{\n  margin:.3em 0;\n  line-height:1.9;\n  text-align:justify; text-justify:inter-ideograph;\n}\n\n\/* \u30d7\u30e9\u30f3\u30ab\u30fc\u30c9 *\/\n.advisory-plans{\n  display:grid;\n  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));\n  gap:16px;\n}\n.plan-card{\n  background:#fff;\n  border:1px solid var(--border);\n  border-radius:14px;\n  box-shadow:0 1px 6px rgba(0,0,0,.04);\n  overflow:hidden;\n  display:flex; flex-direction:column;\n}\n.plan-name{\n  background:linear-gradient(180deg, #fff, #fcfaf4);\n  color:#111;\n  font-weight:700;\n  padding:14px 16px;\n  border-bottom:1px solid var(--border);\n  letter-spacing:.02em;\n}\n.plan-price{\n  padding:14px 16px 8px;\n  font-size:20px;\n  font-weight:700;\n  color:var(--accent);\n}\n.plan-price span{\n  font-size:13px; font-weight:400; color:#555; margin-right:6px;\n}\n.plan-features{\n  list-style:none;\n  margin:0; padding:6px 16px 18px 26px;\n}\n.plan-features li{\n  position:relative;\n  margin:.4em 0;\n  line-height:1.8;\n  text-align:justify; text-justify:inter-ideograph;\n}\n.plan-features li::before{\n  content:\"\";\n  position:absolute; left:-14px; top:.75em;\n  width:6px; height:6px; transform:rotate(45deg);\n  background:var(--accent);\n  border-radius:1px;\n}\n\n\/* \u6ce8\u8a18 *\/\n.advisory-notes{\n  margin:22px 0 0;\n  padding:16px;\n  background:#fff;\n  border:1px dashed var(--border);\n  border-radius:12px;\n}\n.notes-title{\n  font-weight:700; margin-bottom:8px;\n}\n.advisory-notes ul{\n  margin:0; padding-left:20px;\n}\n.advisory-notes li{\n  line-height:1.9;\n}\n\n\/* \u5c0f\u3055\u306a\u753b\u9762\u306e\u4f59\u767d\u6700\u9069\u5316 *\/\n@media (max-width:520px){\n  .advisory-title{ font-size:24px; }\n  .plan-price{ font-size:18px; }\n}\n<\/style>\n<!-- ===== \/\u9867\u554f\u5951\u7d04 ===== -->\n","protected":false},"excerpt":{"rendered":"<p>\u691c\u7d22 \u6b21\u3078 \u691c\u7d22\u4f8b \u6599\u91d1\u30fbCAD\u30aa\u30da\u30ec\u30fc\u30bf\u30fc\u30fb\u55b6\u696d\u30fb\u6c38\u4f4f\u8005\u30fb\u7279\u5b9a\u6280\u80fd\u30fb\u5916\u98df\u696d\u30fbIT\u30fb\u652f\u63f4\u59d4\u8a17\u6599\u30fb\u9867\u554f\u5951\u7d04 \u7b49 \u3008\u5728\u7559\u8cc7\u683c\u624b\u7d9a\u304d\u8cbb\u7528\u3009 \u3008\u652f\u63f4\u59d4\u8a17\u6599\u3009 \u3008\u9867\u554f\u5951\u7d04\u3009 \u203b\u8a73\u7d30\u306b\u3064\u304d\u307e\u3057\u3066\u306f\u3054\u76f8\u8ac7\u304f\u3060\u3055\u3044\u3002 \u672c\u30da\u30fc\u30b8\u306e\u91d1\u984d\u306f  [&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-260","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/202506242126rxdmed64.conohawing.com\/index.php?rest_route=\/wp\/v2\/pages\/260","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/202506242126rxdmed64.conohawing.com\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/202506242126rxdmed64.conohawing.com\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/202506242126rxdmed64.conohawing.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/202506242126rxdmed64.conohawing.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=260"}],"version-history":[{"count":191,"href":"https:\/\/202506242126rxdmed64.conohawing.com\/index.php?rest_route=\/wp\/v2\/pages\/260\/revisions"}],"predecessor-version":[{"id":1218,"href":"https:\/\/202506242126rxdmed64.conohawing.com\/index.php?rest_route=\/wp\/v2\/pages\/260\/revisions\/1218"}],"wp:attachment":[{"href":"https:\/\/202506242126rxdmed64.conohawing.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=260"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}