{"id":15,"date":"2025-10-17T08:20:59","date_gmt":"2025-10-17T08:20:59","guid":{"rendered":"https:\/\/55kamat.com\/?page_id=15"},"modified":"2025-10-18T09:04:50","modified_gmt":"2025-10-18T09:04:50","slug":"a","status":"publish","type":"page","link":"https:\/\/55kamat.com\/?page_id=15","title":{"rendered":"a"},"content":{"rendered":"\n<!DOCTYPE html>\n<html lang=\"ja\">\n  <head>\n    <meta charset=\"UTF-8\" \/>\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\" \/>\n    <title>\u30a4\u30d9\u30f3\u30c8\u4e3b\u50ac\u8005\u767b\u9332<\/title>\n    <!-- Tailwind\uff08\u30e6\u30fc\u30c6\u30a3\u30ea\u30c6\u30a3\u5c11\u3057\u4f7f\u7528\uff09 -->\n    <link href=\"https:\/\/cdn.jsdelivr.net\/npm\/tailwindcss@2.2.19\/dist\/tailwind.min.css\" rel=\"stylesheet\" \/>\n    <!-- Design tokens & overrides (contact.html \u306b\u5408\u308f\u305b\u305f\u914d\u8272\/\u4f59\u767d\/\u89d2\u4e38) -->\n    <style>\n      :root {\n        --accent: #fb8c00;\n        --ink: #333;\n        --muted: #555;\n        --line: #eee;\n        --bg: #fff;\n        --bg-pill: #fff7ed;\n        --radius-card: 16px;\n        --radius-input: 12px;\n      }\n      \/* \u30d9\u30fc\u30b9 *\/\n      html, body {\n        background: #fff;\n        color: var(--ink);\n        font-family: 'Noto Sans JP', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;\n        line-height: 1.7;\n      }\n      \/* \u30d8\u30c3\u30c0\u30fc *\/\n      .te-header {\n        display: flex; align-items: center; justify-content: space-between;\n        padding: 12px;\n        background: #fff;\n        border-bottom: 1px solid var(--line);\n      }\n      .te-logo {\n        height: 5.5rem; width: auto; object-fit: contain;\n      }\n      \/* \u30d2\u30fc\u30ed\u30fc *\/\n      .te-hero { text-align: center; padding: 36px 20px 8px; }\n      .te-hero h1 { font-size: 24px; font-weight: 800; color: var(--accent); margin: 0; }\n      .te-hero p  { margin-top: 8px; font-size: 15px; color: var(--muted); }\n      \/* \u30ab\u30fc\u30c9 *\/\n      .te-card {\n        border: 1px solid var(--line);\n        border-radius: var(--radius-card);\n        background: var(--bg);\n        padding: 28px;\n        box-shadow: 0 2px 4px rgba(0,0,0,0.03);\n      }\n      \/* \u30e9\u30d9\u30eb\/\u5165\u529b *\/\n      .te-section-title{\n        font-weight: 700; font-size: 16px;\n        padding-bottom: 6px; border-bottom: 1px solid var(--line);\n        margin-bottom: 12px; color: var(--ink);\n      }\n      label { font-weight: 500; font-size: 14px; display:block; margin-bottom:6px; color: var(--ink); }\n      .te-input, .te-select, .te-textarea {\n        width: 100%; padding: 12px 14px; border: 1px solid var(--line);\n        border-radius: var(--radius-input); font-size: 15px; outline: none; transition: border-color .2s ease, box-shadow .2s ease;\n        background: #fff;\n      }\n      .te-input:focus, .te-select:focus, .te-textarea:focus {\n        border-color: var(--accent);\n        box-shadow: 0 0 0 3px rgba(251,140,0,0.15);\n      }\n      .te-note { font-size: 12px; color: var(--muted); }\n      \/* \u30dc\u30bf\u30f3 *\/\n      .te-btn {\n        display:inline-flex; align-items:center; justify-content:center; gap:8px;\n        background: var(--accent); color:#fff; border:none; border-radius:999px;\n        padding: 12px 22px; font-weight:700; transition: transform .02s ease, opacity .2s ease, box-shadow .2s ease;\n        box-shadow: 0 2px 0 rgba(0,0,0,0.05);\n      }\n      .te-btn:hover { opacity:.92; }\n      .te-btn:active { transform: translateY(1px); box-shadow:none; }\n      .te-btn:disabled { opacity:.6; cursor:not-allowed; }\n      \/* \u6210\u529f\/\u30a8\u30e9\u30fc *\/\n      .te-alert { display:none; margin-bottom:14px; padding:12px 14px; border-radius:12px; border:1px solid var(--line); font-size:14px; }\n      .te-alert.ok { background:#e8f5e9; color:#1b5e20; }\n      .te-alert.ng { background:#ffebee; color:#b71c1c; }\n      \/* \u30b9\u30af\u30ed\u30fc\u30eb\u898f\u7d04 *\/\n      .te-terms { height: 160px; overflow-y:auto; border:1px solid var(--line); padding: 14px; border-radius: 12px; background: #fafafa; color: var(--muted); }\n      \/* \u30ec\u30b9\u30dd\u30f3\u30b7\u30d6 *\/\n      .te-wrap { max-width: 880px; margin: 0 auto; padding: 0 16px 48px; }\n      @media (max-width: 720px){\n        .te-card { padding: 20px; }\n        .te-hero { padding: 28px 16px 4px; }\n        .te-hero h1 { font-size: 20px; }\n      }\n      \/* Tailwind\u306e form-input \u30af\u30e9\u30b9\u3092\u4e0a\u66f8\u304d\uff08\u65e2\u5b58\u306e\u307e\u307e\u3067\u3082OK\u3060\u304c\u898b\u305f\u76ee\u7d71\u4e00\uff09 *\/\n      .form-input { @apply border border-gray-200 rounded-xl px-4 py-3; }\n      \/* \u5fc5\u9808\u30a2\u30b9\u30bf\u30ea\u30b9\u30af\u306e\u8272 *\/\n      .req { color:#b71c1c; }\n    <\/style>\n  <\/head>\n  <body>\n    <!-- Header -->\n    <header class=\"te-header\">\n      <a href=\"\/\" style=\"display:inline-flex;align-items:center;text-decoration:none;\">\n        <img decoding=\"async\" class=\"te-logo\" src=\"https:\/\/tikescape.com\/public\/ticketencore.tikescape.com\/site\/fb0c4b7c-d2ed-40ff-a13e-d1efec97fcef.png\" alt=\"TICKET ENCORE \u30ed\u30b4\">\n      <\/a>\n      <!-- \u53f3\u5074\u304c\u5fc5\u8981\u306a\u3089 nav \u3092\u8ffd\u52a0\u3067\u304d\u307e\u3059 -->\n      <nav style=\"display:none\"><\/nav>\n    <\/header>\n\n    <!-- Hero -->\n    <section class=\"te-hero\">\n      <h1>\u4e3b\u50ac\u8005\u767b\u9332\u30d5\u30a9\u30fc\u30e0<\/h1>\n      <p>\u53e3\u5ea7\u60c5\u5831\u30fb\u3054\u9023\u7d61\u5148\u3092\u3054\u5165\u529b\u304f\u3060\u3055\u3044\u3002\u5165\u529b\u5185\u5bb9\u306f\u9001\u4fe1\u5f8c\u306b\u5909\u66f4\u3067\u304d\u307e\u305b\u3093\u3002<\/p>\n    <\/section>\n\n    <!-- Main -->\n    <main class=\"te-wrap\">\n      <div class=\"te-card\">\n        <div id=\"resultOk\" class=\"te-alert ok\">\u767b\u9332\u304c\u5b8c\u4e86\u3057\u307e\u3057\u305f\u3002<\/div>\n        <div id=\"resultNg\" class=\"te-alert ng\">\u5165\u529b\u306b\u4e0d\u5099\u304c\u3042\u308a\u307e\u3059\u3002\u5fc5\u9808\u9805\u76ee\u3084\u5f62\u5f0f\u3092\u3054\u78ba\u8a8d\u304f\u3060\u3055\u3044\u3002<\/div>\n\n        <form id=\"partnerForm\" class=\"space-y-8\">\n          <!-- \u4e3b\u50ac\u8005\u60c5\u5831 -->\n          <section>\n            <h2 class=\"te-section-title\">\u4e3b\u50ac\u8005\u69d8\u60c5\u5831<\/h2>\n            <div class=\"grid grid-cols-1 md:grid-cols-2 gap-4\">\n              <div>\n                <label>\u4e3b\u50ac\u8005\u540d<span class=\"req\"> \u203b\u5fc5\u9808<\/span><\/label>\n                <input name=\"org_name\" type=\"text\" required placeholder=\"\u4f8b\uff1a\u682a\u5f0f\u4f1a\u793e\u4e3b\u50ac\u8005\" class=\"te-input\" \/>\n              <\/div>\n\n              <div>\n                <label>\u9069\u683c\u4e8b\u696d\u8005\u767b\u9332\u756a\u53f7<\/label>\n                <input id=\"corporate_number\" name=\"corporate_number\" type=\"text\"\n                       placeholder=\"\u4f8b\uff1aT1234567890123\"\n                       pattern=\"^T[0-9A-Za-z]{13}$\"\n                       title=\"T + \u534a\u89d2\u82f1\u6570\u5b5713\u6841\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\uff08\u4f8b\uff1aT1234567890123\uff09\"\n                       class=\"te-input\" \/>\n              <\/div>\n\n              <div>\n                <label>\u90f5\u4fbf\u756a\u53f7<span class=\"req\"> \u203b\u5fc5\u9808<\/span><\/label>\n                <input name=\"postal_code\" type=\"text\" required inputmode=\"numeric\"\n                       pattern=\"^[0-9]{7}$\" maxlength=\"7\"\n                       placeholder=\"0000001\"\n                       title=\"\u534a\u89d2\u6570\u5b577\u6841\uff08\u30cf\u30a4\u30d5\u30f3\u306a\u3057\uff09\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\"\n                       class=\"te-input\" \/>\n              <\/div>\n              <div class=\"md:col-span-2\">\n                <label>\u4f4f\u6240<span class=\"req\"> \u203b\u5fc5\u9808<\/span><\/label>\n                <input name=\"address\" type=\"text\" required placeholder=\"\u6771\u4eac\u90fd\u5343\u4ee3\u7530\u533a\u4e38\u306e\u51851-1-1\" class=\"te-input\" \/>\n              <\/div>\n              <div>\n                <label>\u4ee3\u8868\u8005\u69d8\u540d<span class=\"req\"> \u203b\u5fc5\u9808<\/span><\/label>\n                <input name=\"rep_name\" type=\"text\" required placeholder=\"\u4f8b\uff1a\u4e3b\u50ac\u8005 \u592a\u90ce\" class=\"te-input\" \/>\n              <\/div>\n              <div>\n                <label>\u4ee3\u8868\u8005\u69d8\u80a9\u66f8<\/label>\n                <input name=\"rep_title\" type=\"text\" placeholder=\"\u4f8b\uff1a\u4ee3\u8868\u53d6\u7de0\u5f79\" class=\"te-input\" \/>\n              <\/div>\n              <div>\n                <label>\u304a\u96fb\u8a71\u756a\u53f7<span class=\"req\"> \u203b\u5fc5\u9808<\/span><\/label>\n                <input name=\"org_phone\" type=\"tel\" required inputmode=\"numeric\"\n                       pattern=\"^[0-9]{10,11}$\" maxlength=\"11\"\n                       placeholder=\"0312345678\"\n                       title=\"\u534a\u89d2\u6570\u5b57\u306e\u307f10\uff5e11\u6841\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\uff08\u30cf\u30a4\u30d5\u30f3\u306a\u3057\uff09\"\n                       class=\"te-input\" \/>\n              <\/div>\n              <div>\n                <label>HP<\/label>\n                <input name=\"org_url\" type=\"url\" placeholder=\"https:\/\/example.com\" class=\"te-input\" \/>\n              <\/div>\n            <\/div>\n          <\/section>\n\n          <!-- \u3054\u62c5\u5f53\u8005\u69d8\u9023\u7d61\u5148 -->\n          <section>\n            <h2 class=\"te-section-title\">\u3054\u62c5\u5f53\u8005\u69d8\u9023\u7d61\u5148<\/h2>\n            <div class=\"grid grid-cols-1 md:grid-cols-2 gap-4\">\n              <div>\n                <label>\u3054\u62c5\u5f53\u8005\u69d8\u6c0f\u540d<span class=\"req\"> \u203b\u5fc5\u9808<\/span><\/label>\n                <input name=\"contact_name\" type=\"text\" required placeholder=\"\u4f8b\uff1a\u4e3b\u50ac\u8005 \u82b1\u5b50\" class=\"te-input\" \/>\n              <\/div>\n              <div>\n                <label>\u6240\u5c5e\u90e8\u7f72\u540d<\/label>\n                <input name=\"dept\" type=\"text\" placeholder=\"\u4f8b\uff1a\u30a4\u30d9\u30f3\u30c8\u4f01\u753b\u90e8\" class=\"te-input\" \/>\n              <\/div>\n              <div>\n                <label>\u3054\u62c5\u5f53\u8005\u69d8\u304a\u96fb\u8a71\u756a\u53f7<span class=\"req\"> \u203b\u5fc5\u9808<\/span><\/label>\n                <input name=\"contact_phone\" type=\"tel\" required inputmode=\"numeric\"\n                       pattern=\"^[0-9]{10,11}$\" maxlength=\"11\"\n                       placeholder=\"09012345678\"\n                       title=\"\u534a\u89d2\u6570\u5b57\u306e\u307f10\uff5e11\u6841\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\uff08\u30cf\u30a4\u30d5\u30f3\u306a\u3057\uff09\"\n                       class=\"te-input\" \/>\n              <\/div>\n              <div>\n                <label>\u3054\u62c5\u5f53\u8005\u30e1\u30fc\u30eb\u30a2\u30c9\u30ec\u30b9<span class=\"req\"> \u203b\u5fc5\u9808<\/span><\/label>\n                <input name=\"contact_email\" type=\"email\" required placeholder=\"syusaisya.hanako@example.com\" class=\"te-input\" \/>\n              <\/div>\n            <\/div>\n          <\/section>\n\n          <!-- \u7cbe\u7b97\u60c5\u5831 -->\n          <section>\n            <h2 class=\"te-section-title\">\u9280\u884c\u53e3\u5ea7\u60c5\u5831<\/h2>\n            <div class=\"grid grid-cols-1 md:grid-cols-2 gap-4\">\n              <div>\n                <label>\u632f\u8fbc\u5148\u9280\u884c\u540d<span class=\"req\"> \u203b\u5fc5\u9808<\/span><\/label>\n                <input name=\"bank_name\" type=\"text\" required placeholder=\"\u3007\u00d7\u9280\u884c\" class=\"te-input\" \/>\n              <\/div>\n              <div>\n                <label>\u91d1\u878d\u6a5f\u95a2\u30b3\u30fc\u30c9<span class=\"req\"> \u203b\u5fc5\u9808<\/span><\/label>\n                <input name=\"bank_code\" type=\"text\" required inputmode=\"numeric\"\n                       pattern=\"^[0-9]{4}$\" maxlength=\"4\"\n                       placeholder=\"0001\" title=\"\u534a\u89d2\u6570\u5b57\u306e\u307f4\u6841\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\"\n                       class=\"te-input\" \/>\n              <\/div>\n              <div>\n                <label>\u652f\u5e97\u540d<span class=\"req\"> \u203b\u5fc5\u9808<\/span><\/label>\n                <input name=\"branch_name\" type=\"text\" required placeholder=\"\u3007\u3007\u652f\u5e97\" class=\"te-input\" \/>\n              <\/div>\n              <div>\n                <label>\u652f\u5e97\u30b3\u30fc\u30c9<span class=\"req\"> \u203b\u5fc5\u9808<\/span><\/label>\n                <input name=\"branch_code\" type=\"text\" required inputmode=\"numeric\"\n                       pattern=\"^[0-9]{3}$\" maxlength=\"3\"\n                       placeholder=\"123\" title=\"\u534a\u89d2\u6570\u5b57\u306e\u307f3\u6841\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\"\n                       class=\"te-input\" \/>\n              <\/div>\n              <div>\n                <label>\u53e3\u5ea7\u7a2e\u5225<span class=\"req\"> \u203b\u5fc5\u9808<\/span><\/label>\n                <select name=\"acct_type\" required class=\"te-select\">\n                  <option value=\"\">\u9078\u629e\u3057\u3066\u304f\u3060\u3055\u3044<\/option>\n                  <option value=\"\u666e\u901a\">\u666e\u901a<\/option>\n                  <option value=\"\u5f53\u5ea7\">\u5f53\u5ea7<\/option>\n                <\/select>\n              <\/div>\n              <div>\n                <label>\u53e3\u5ea7\u756a\u53f7<span class=\"req\"> \u203b\u5fc5\u9808<\/span><\/label>\n                <input name=\"acct_number\" type=\"text\" required inputmode=\"numeric\"\n                       pattern=\"^[0-9]+$\"\n                       placeholder=\"1234567\" title=\"\u534a\u89d2\u6570\u5b57\u306e\u307f\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\uff08\u30cf\u30a4\u30d5\u30f3\u306a\u3057\uff09\"\n                       class=\"te-input\" \/>\n              <\/div>\n              <div>\n                <label>\u53e3\u5ea7\u540d\u7fa9<span class=\"req\"> \u203b\u5fc5\u9808<\/span><\/label>\n                <input name=\"acct_holder\" type=\"text\" required\n                       placeholder=\"\u682a\u5f0f\u4f1a\u793e\u4e3b\u50ac\u8005\"\n                       class=\"te-input\" \/>\n              <\/div>\n              <div>\n                <label>\u53e3\u5ea7\u540d\u7fa9\uff08\u30ab\u30ca\uff09<span class=\"req\"> \u203b\u5fc5\u9808<\/span><\/label>\n                <input name=\"acct_holder_kana\" type=\"text\" required\n                       inputmode=\"text\"\n                       pattern=\"^[\uff66-\uff9fA-Z0-9!-\/:-@\\\\[-`{-~\\\\s]+$\"\n                       placeholder=\"\uff76)\uff7c\uff95\uff7b\uff72\uff7c\uff94\"\n                       title=\"\u534a\u89d2\u30ab\u30ca\uff08\u5927\u6587\u5b57\uff09\u30fb\u534a\u89d2\u82f1\u6570\u5b57\u30fb\u534a\u89d2\u8a18\u53f7\u30fb\u30b9\u30da\u30fc\u30b9\u306e\u307f\u3067\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044\"\n                       class=\"te-input\" \/>\n              <\/div>\n            <\/div>\n          <\/section>\n\n          <!-- \u78ba\u8a8d\u7528\u30b9\u30af\u30ed\u30fc\u30eb\u30a8\u30ea\u30a2 -->\n          <section>\n            <h2 class=\"te-section-title\">\u5229\u7528\u898f\u7d04\uff08\u78ba\u8a8d\u7528\uff09<\/h2>\n            <div class=\"te-terms\">\n              <p>hogehogehogehogeho hogehogehogehogeho hogehogehogehogeho hogehogehogehogeho<\/p>\n              <p>hogehogehogehogeho hogehogehogehogeho hogehogehogehogeho hogehogehogehogeho<\/p>\n              <p>hogehogehogehogeho hogehogehogehogeho hogehogehogehogeho hogehogehogehogeho<\/p>\n            <\/div>\n          <\/section>\n\n          <!-- \u898f\u7d04\u540c\u610f -->\n          <section class=\"border-t border-gray-200 pt-4\">\n            <label class=\"inline-flex items-center\">\n              <input type=\"checkbox\" name=\"agree\" required class=\"form-checkbox h-5 w-5 text-yellow-600\" \/>\n              <span class=\"ml-2 text-sm\">\u898f\u7d04\u306b\u540c\u610f\u3059\u308b<\/span>\n            <\/label>\n          <\/section>\n\n          <button type=\"submit\" id=\"submitBtn\" class=\"te-btn w-full\">\u767b\u9332\u3059\u308b<\/button>\n        <\/form>\n      <\/div>\n    <\/main>\n\n    <script>\n      const GAS_URL = \"https:\/\/script.google.com\/macros\/s\/AKfycbxtmGYFivpNYrx5bO2giVrT5QWuLmNytB83AbEsFxiSXwLJbTA1qNLyTm7EznbJuP-6\/exec\";\n      const form = document.getElementById('partnerForm');\n      const resultOk = document.getElementById('resultOk');\n      const resultNg = document.getElementById('resultNg');\n      const btn = document.getElementById('submitBtn');\n\n      form.addEventListener('submit', function(e) {\n        e.preventDefault();\n\n        \/\/ \u4e00\u65e6\u30a2\u30e9\u30fc\u30c8\u3092\u96a0\u3059\n        resultOk.style.display = 'none';\n        resultNg.style.display = 'none';\n\n        btn.disabled = true;\n        btn.textContent = '\u9001\u4fe1\u4e2d\u2026';\n\n        const formData = new FormData(form);\n        const params = new URLSearchParams(formData).toString();\n\n        const script = document.createElement('script');\n        script.src = `${GAS_URL}?callback=__gasCallback&${params}`;\n        document.body.appendChild(script);\n      });\n\n      window.__gasCallback = function(data) {\n        btn.disabled = false;\n        btn.textContent = '\u767b\u9332\u3059\u308b';\n\n        if (data && data.ok) {\n          resultOk.style.display = 'block';\n          resultOk.textContent = `\u767b\u9332\u304c\u5b8c\u4e86\u3057\u307e\u3057\u305f\u3002\u4e3b\u50ac\u8005ID\uff1a${data.partner_id || '-'}`;\n          form.reset();\n        } else {\n          resultNg.style.display = 'block';\n          resultNg.textContent = `\u30a8\u30e9\u30fc\uff1a${data?.error || '\u767b\u9332\u306b\u5931\u6557\u3057\u307e\u3057\u305f'}`;\n        }\n        \/\/ \u81ea\u52d5\u3067\u30d5\u30a7\u30fc\u30c9\u30a2\u30a6\u30c8\n        setTimeout(()=>{ resultOk.style.display='none'; resultNg.style.display='none'; }, 4500);\n      };\n    <\/script>\n\n    <script>\n      \/\/ \u300cT\u300d\u81ea\u52d5\u4ed8\u4e0e\u30ed\u30b8\u30c3\u30af\uff08\u9069\u683c\u4e8b\u696d\u8005\u767b\u9332\u756a\u53f7\uff09\n      const corpNumberInput = document.getElementById(\"corporate_number\");\n      if (corpNumberInput) {\n        corpNumberInput.addEventListener(\"input\", function () {\n          let v = this.value.toUpperCase().replace(\/[^0-9A-Z]\/g, \"\"); \/\/ \u534a\u89d2\u82f1\u6570\u5b57\u306e\u307f\n          if (!v.startsWith(\"T\") && v.length > 0) v = \"T\" + v;\n          this.value = v.slice(0, 14); \/\/ T + 13\u6587\u5b57\u307e\u3067\n        });\n      }\n    <\/script>\n  <\/body>\n<\/html>\n\n\n\n<p><\/p>\n\n\n\n<div class=\"wp-block-uagb-countdown uagb-block-7096790f\"><div class=\"wp-block-uagb-countdown__box wp-block-uagb-countdown__box-days\"><div role=\"timer\" aria-live=\"off\" class=\"wp-block-uagb-countdown__time wp-block-uagb-countdown__time-days\">&#8211;<\/div><div class=\"wp-block-uagb-countdown__label\">DAYS<\/div><\/div><div class=\"wp-block-uagb-countdown__box wp-block-uagb-countdown__box-hours\"><div role=\"timer\" aria-live=\"off\" class=\"wp-block-uagb-countdown__time wp-block-uagb-countdown__time-hours\">&#8211;<\/div><div class=\"wp-block-uagb-countdown__label\">HOURS<\/div><\/div><div class=\"wp-block-uagb-countdown__box wp-block-uagb-countdown__box-minutes\"><div role=\"timer\" aria-live=\"off\" class=\"wp-block-uagb-countdown__time wp-block-uagb-countdown__time-minutes\">&#8211;<\/div><div class=\"wp-block-uagb-countdown__label\">MINUTES<\/div><\/div><div class=\"wp-block-uagb-countdown__box wp-block-uagb-countdown__box-seconds\"><div role=\"timer\" aria-live=\"off\" class=\"wp-block-uagb-countdown__time wp-block-uagb-countdown__time-seconds\">&#8211;<\/div><div class=\"wp-block-uagb-countdown__label\">SECONDS<\/div><\/div><\/div>\n\n\n\n<div class=\"wp-block-file\"><a id=\"wp-block-file--media-45766a5d-8ad1-4074-bd74-364284515f4f\" href=\"http:\/\/55kamat.com\/wp-content\/uploads\/2025\/10\/index.html\">index<\/a><a href=\"http:\/\/55kamat.com\/wp-content\/uploads\/2025\/10\/index.html\" class=\"wp-block-file__button wp-element-button\" download aria-describedby=\"wp-block-file--media-45766a5d-8ad1-4074-bd74-364284515f4f\">\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9<\/a><\/div>\n\n\n\n<p><\/p>\n","protected":false},"excerpt":{"rendered":"<p>\u30a4\u30d9\u30f3\u30c8\u4e3b\u50ac\u8005\u767b\u9332 \u4e3b\u50ac\u8005\u767b\u9332\u30d5\u30a9\u30fc\u30e0 \u53e3\u5ea7\u60c5\u5831\u30fb\u3054\u9023\u7d61\u5148\u3092\u3054\u5165\u529b\u304f\u3060\u3055\u3044\u3002\u5165\u529b\u5185\u5bb9\u306f\u9001\u4fe1\u5f8c\u306b\u5909\u66f4\u3067\u304d\u307e\u305b\u3093\u3002 \u767b\u9332\u304c\u5b8c\u4e86\u3057\u307e\u3057\u305f\u3002 \u5165\u529b\u306b\u4e0d\u5099\u304c\u3042\u308a\u307e\u3059\u3002\u5fc5\u9808\u9805\u76ee\u3084\u5f62\u5f0f\u3092\u3054\u78ba\u8a8d\u304f\u3060\u3055\u3044\u3002 \u4e3b\u50ac\u8005\u69d8\u60c5\u5831 \u4e3b\u50ac\u8005\u540d \u203b\u5fc5\u9808 [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_uag_custom_page_level_css":"","footnotes":""},"class_list":["post-15","page","type-page","status-publish","hentry"],"uagb_featured_image_src":{"full":false,"thumbnail":false,"medium":false,"medium_large":false,"large":false,"1536x1536":false,"2048x2048":false},"uagb_author_info":{"display_name":"admin","author_link":"https:\/\/55kamat.com\/?author=1"},"uagb_comment_info":0,"uagb_excerpt":"\u30a4\u30d9\u30f3\u30c8\u4e3b\u50ac\u8005\u767b\u9332 \u4e3b\u50ac\u8005\u767b\u9332\u30d5\u30a9\u30fc\u30e0 \u53e3\u5ea7\u60c5\u5831\u30fb\u3054\u9023\u7d61\u5148\u3092\u3054\u5165\u529b\u304f\u3060\u3055\u3044\u3002\u5165\u529b\u5185\u5bb9\u306f\u9001\u4fe1\u5f8c\u306b\u5909\u66f4\u3067\u304d\u307e\u305b\u3093\u3002&hellip;","_links":{"self":[{"href":"https:\/\/55kamat.com\/index.php?rest_route=\/wp\/v2\/pages\/15","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/55kamat.com\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/55kamat.com\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/55kamat.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/55kamat.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=15"}],"version-history":[{"count":4,"href":"https:\/\/55kamat.com\/index.php?rest_route=\/wp\/v2\/pages\/15\/revisions"}],"predecessor-version":[{"id":25,"href":"https:\/\/55kamat.com\/index.php?rest_route=\/wp\/v2\/pages\/15\/revisions\/25"}],"wp:attachment":[{"href":"https:\/\/55kamat.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=15"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}