{"id":581,"date":"2024-12-09T19:01:58","date_gmt":"2024-12-09T10:01:58","guid":{"rendered":"https:\/\/ootakidenki.com\/?page_id=581"},"modified":"2025-06-01T01:00:39","modified_gmt":"2025-05-31T16:00:39","slug":"%e5%a5%91%e7%b4%84%e3%81%be%e3%81%a7%e3%81%ae%e6%b5%81%e3%82%8c","status":"publish","type":"page","link":"https:\/\/ootakidenki.com\/?page_id=581","title":{"rendered":"\u30b5\u30fc\u30d3\u30b9\u3054\u5229\u7528\u306e\u6d41\u308c"},"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>\u30b5\u30fc\u30d3\u30b9\u3054\u5229\u7528\u306e\u6d41\u308c | \u5927\u6edd\u96fb\u6c17\u7ba1\u7406\u4e8b\u52d9\u6240<\/title>\n    <link href=\"https:\/\/fonts.googleapis.com\/css2?family=Noto+Sans+JP:wght@300;400;700&family=Roboto:wght@300;400;700&display=swap\" rel=\"stylesheet\">\n    <style>\n        \/*\n        ========================================\n        GLOBAL STYLES & TYPOGRAPHY\n        ========================================\n        *\/\n        body {\n            font-family: 'Noto Sans JP', 'Roboto', sans-serif;\n            line-height: 1.75;\n            color: #333;\n            background-color: #f8fbfd; \/* Very light subtle blue background *\/\n            margin: 0;\n            padding: 0;\n            overflow-x: hidden;\n        }\n\n        .container {\n            max-width: 1000px;\n            margin: 0 auto;\n            padding: 50px 25px;\n            box-sizing: border-box;\n        }\n\n        \/*\n        ========================================\n        HEADERS\n        ========================================\n        *\/\n        h1 {\n            font-family: 'Noto Sans JP', sans-serif;\n            font-size: 2.8em;\n            font-weight: 700;\n            color: #2c3e50;\n            text-align: center;\n            margin-bottom: 60px;\n            padding-bottom: 20px;\n            position: relative;\n            letter-spacing: 0.05em;\n        }\n        h1::after {\n            content: '';\n            position: absolute;\n            left: 50%;\n            transform: translateX(-50%);\n            bottom: 0;\n            width: 120px;\n            height: 6px;\n            background: linear-gradient(to right, #3498db, #2980b9); \/* Gradient underline *\/\n            border-radius: 3px;\n        }\n\n        p {\n            font-size: 1.05em;\n            margin-bottom: 1.2em;\n        }\n\n        .intro-text {\n            font-size: 1.15em;\n            text-align: center;\n            max-width: 800px;\n            margin: 0 auto 50px;\n            color: #555;\n        }\n\n        \/*\n        ========================================\n        PROCESS FLOW\n        ========================================\n        *\/\n        .process-flow {\n            display: flex;\n            flex-direction: column; \/* Stack vertically on small screens *\/\n            gap: 30px;\n            position: relative;\n            padding-top: 20px; \/* Space for top connector *\/\n        }\n\n        \/* Vertical connector line (for larger screens, handled by JS in real scenario or more complex CSS) *\/\n        .process-flow::before {\n            content: '';\n            position: absolute;\n            left: 50%; \/* Center the line *\/\n            top: 0;\n            bottom: 0;\n            width: 3px; \/* Thickness of the line *\/\n            background-color: #d1e2ed; \/* Light blue line *\/\n            transform: translateX(-50%);\n            z-index: 0; \/* Ensure it's behind cards *\/\n        }\n        \n        \/* Individual process step card *\/\n        .process-step {\n            background-color: #ffffff;\n            border-radius: 12px;\n            padding: 30px;\n            box-shadow: 0 8px 25px rgba(0,0,0,0.1);\n            transition: transform 0.3s ease, box-shadow 0.3s ease;\n            position: relative;\n            display: flex;\n            align-items: flex-start;\n            gap: 25px; \/* Space between number\/icon and content *\/\n            z-index: 1; \/* Bring cards above the line *\/\n            animation: fadeIn 1s ease-out forwards;\n            opacity: 0;\n            transform: translateY(20px);\n        }\n\n        \/* Delay animation for each step *\/\n        .process-step:nth-child(1) { animation-delay: 0.1s; }\n        .process-step:nth-child(2) { animation-delay: 0.3s; }\n        .process-step:nth-child(3) { animation-delay: 0.5s; }\n        .process-step:nth-child(4) { animation-delay: 0.7s; }\n        .process-step:nth-child(5) { animation-delay: 0.9s; }\n        .process-step:nth-child(6) { animation-delay: 1.1s; }\n        .process-step:nth-child(7) { animation-delay: 1.3s; }\n\n        .process-step:hover {\n            transform: translateY(-5px); \/* Lift up effect *\/\n            box-shadow: 0 12px 35px rgba(0,0,0,0.15); \/* Enhanced shadow *\/\n        }\n\n        .step-number-icon {\n            flex-shrink: 0; \/* Prevent icon from shrinking *\/\n            width: 60px;\n            height: 60px;\n            background-color: #3498db; \/* Blue circle for number *\/\n            color: #fff;\n            border-radius: 50%;\n            display: flex;\n            align-items: center;\n            justify-content: center;\n            font-size: 1.8em;\n            font-weight: 700;\n            box-shadow: 0 4px 10px rgba(0,0,0,0.2);\n            transition: background-color 0.3s ease, transform 0.3s ease;\n        }\n\n        .process-step:hover .step-number-icon {\n            background-color: #2980b9; \/* Darker blue on hover *\/\n            transform: scale(1.05); \/* Slight grow effect *\/\n        }\n\n        .step-content {\n            flex-grow: 1;\n        }\n\n        .step-content h3 {\n            font-size: 1.5em;\n            color: #2c3e50;\n            margin-top: 0;\n            margin-bottom: 10px;\n            font-weight: 700;\n            border-left: none; \/* Override global h3 style *\/\n        }\n\n        .step-content p {\n            font-size: 1em;\n            color: #555;\n            margin-bottom: 0;\n        }\n\n        \/* Specific style for the important notice *\/\n        .important-note {\n            background-color: #fef0cd; \/* Light yellow for notice *\/\n            border-left: 4px solid #e67e22; \/* Orange border *\/\n            padding: 15px;\n            margin-top: 15px;\n            border-radius: 6px;\n            font-size: 0.9em;\n            color: #7d6b2c;\n            line-height: 1.5;\n        }\n        .important-note strong {\n            color: #c0392b; \/* Strong red for emphasis *\/\n        }\n\n        \/*\n        ========================================\n        RESPONSIVE DESIGN\n        ========================================\n        *\/\n        @media (max-width: 768px) {\n            h1 { font-size: 2em; margin-bottom: 40px; }\n            h1::after { width: 80px; height: 4px; }\n            .container { padding: 30px 15px; }\n            .intro-text { font-size: 1em; }\n\n            .process-flow {\n                flex-direction: column; \/* Ensure vertical stacking *\/\n                gap: 20px;\n                padding-top: 0; \/* Remove top padding for smaller screens *\/\n            }\n            .process-flow::before {\n                left: 30px; \/* Adjust line position for smaller screens *\/\n                top: 20px;\n                bottom: 20px;\n            }\n            .process-step {\n                flex-direction: row; \/* Keep content and icon side-by-side *\/\n                align-items: flex-start;\n                padding: 20px;\n                gap: 15px;\n                margin-left: 20px; \/* Offset to align with line *\/\n            }\n            .step-number-icon {\n                width: 50px;\n                height: 50px;\n                font-size: 1.5em;\n            }\n            .step-content h3 {\n                font-size: 1.3em;\n            }\n            .step-content p {\n                font-size: 0.95em;\n            }\n            .important-note {\n                padding: 10px 15px;\n            }\n        }\n\n        \/*\n        ========================================\n        ANIMATIONS (No-code limitation)\n        ========================================\n        *\/\n        @keyframes fadeIn {\n            from { opacity: 0; transform: translateY(20px); }\n            to { opacity: 1; transform: translateY(0); }\n        }\n\n    <\/style>\n<\/head>\n<body>\n\n    <div class=\"container\">\n        <h1>\u30b5\u30fc\u30d3\u30b9\u3054\u5229\u7528\u306e\u6d41\u308c<\/h1>\n\n        <p class=\"intro-text\">\u5927\u6edd\u96fb\u6c17\u7ba1\u7406\u4e8b\u52d9\u6240\u3078\u306e\u3054\u4f9d\u983c\u304b\u3089\u3001\u304a\u5ba2\u69d8\u306e\u96fb\u6c17\u8a2d\u5099\u304c\u5b89\u5168\u306b\u7ba1\u7406\u3055\u308c\u308b\u307e\u3067\u306e\u30d7\u30ed\u30bb\u30b9\u3092\u5206\u304b\u308a\u3084\u3059\u304f\u3054\u7d39\u4ecb\u3057\u307e\u3059\u3002\u5c02\u9580\u7684\u306a\u624b\u7d9a\u304d\u3082\u3001\u7d4c\u9a13\u8c4a\u5bcc\u306a\u96fb\u6c17\u4e3b\u4efb\u6280\u8853\u8005\u304c\u8cac\u4efb\u3092\u6301\u3063\u3066\u30b5\u30dd\u30fc\u30c8\u3044\u305f\u3057\u307e\u3059\u306e\u3067\u3054\u5b89\u5fc3\u304f\u3060\u3055\u3044\u3002<\/p>\n\n        <div class=\"process-flow\">\n            <div class=\"process-step\">\n                <div class=\"step-number-icon\">1<\/div>\n                <div class=\"step-content\">\n                    <h3>\u304a\u554f\u3044\u5408\u308f\u305b<\/h3>\n                    <p>\u307e\u305a\u306f\u304a\u5ba2\u69d8\u304b\u3089\u304a\u554f\u3044\u5408\u308f\u305b\u3092\u3044\u305f\u3060\u304d\u307e\u3059\u3002\u96fb\u6c17\u8a2d\u5099\u306b\u95a2\u3059\u308b\u304a\u60a9\u307f\u3084\u3001\u5177\u4f53\u7684\u306a\u3054\u8981\u671b\u3092\u304a\u6c17\u8efd\u306b\u304a\u805e\u304b\u305b\u304f\u3060\u3055\u3044\u3002<\/p>\n                <\/div>\n            <\/div>\n\n            <div class=\"process-step\">\n                <div class=\"step-number-icon\">2<\/div>\n                <div class=\"step-content\">\n                    <h3>\u73fe\u5730\u78ba\u8a8d\u5b9f\u65bd<\/h3>\n                    <p>\u304a\u554f\u3044\u5408\u308f\u305b\u5185\u5bb9\u3092\u57fa\u306b\u3001\u304a\u5ba2\u69d8\u306e\u96fb\u6c17\u8a2d\u5099\u306e\u8a73\u7d30\u306a\u72b6\u614b\u3084\u3001\u4fdd\u5b89\u7ba1\u7406\u306e\u5fc5\u8981\u6027\u3092\u78ba\u8a8d\u3059\u308b\u305f\u3081\u3001\u73fe\u5730\u3067\u306e\u5c02\u9580\u7684\u306a\u8abf\u67fb\u3092\u5b9f\u65bd\u3057\u307e\u3059\u3002<\/p>\n                <\/div>\n            <\/div>\n\n            <div class=\"process-step\">\n                <div class=\"step-number-icon\">3<\/div>\n                <div class=\"step-content\">\n                    <h3>\u304a\u898b\u7a4d\u66f8\u4f5c\u6210\u30fb\u63d0\u51fa<\/h3>\n                    <p>\u73fe\u5730\u78ba\u8a8d\u306e\u7d50\u679c\u306b\u57fa\u3065\u304d\u3001\u6700\u9069\u306a\u30b5\u30fc\u30d3\u30b9\u5185\u5bb9\u3068\u304a\u898b\u7a4d\u66f8\u3092\u4f5c\u6210\u3057\u3001\u304a\u5ba2\u69d8\u306b\u3054\u7d0d\u5f97\u3044\u305f\u3060\u3051\u308b\u307e\u3067\u4e01\u5be7\u306b\u3054\u8aac\u660e\u3044\u305f\u3057\u307e\u3059\u3002<\/p>\n                <\/div>\n            <\/div>\n\n            <div class=\"process-step\">\n                <div class=\"step-number-icon\">4<\/div>\n                <div class=\"step-content\">\n                    <h3>\u300c\u59d4\u8a17\u5951\u7d04\u300d\u306e\u7de0\u7d50<\/h3>\n                    <p>\u304a\u898b\u7a4d\u66f8\u306b\u3054\u7d0d\u5f97\u3044\u305f\u3060\u3051\u307e\u3057\u305f\u3089\u3001\u304a\u5ba2\u69d8\u3068\u5f0a\u793e\u9593\u3067\u96fb\u6c17\u8a2d\u5099\u4fdd\u5b89\u7ba1\u7406\u696d\u52d9\u306b\u95a2\u3059\u308b\u300c\u59d4\u8a17\u5951\u7d04\u300d\u3092\u7de0\u7d50\u3044\u305f\u3057\u307e\u3059\u3002<\/p>\n                <\/div>\n            <\/div>\n\n            <div class=\"process-step\">\n                <div class=\"step-number-icon\">5<\/div>\n                <div class=\"step-content\">\n                    <h3>\u4fdd\u5b89\u898f\u7a0b\u7b49\u306e\u5fc5\u8981\u66f8\u985e\u4f5c\u6210\u30fb\u7533\u8acb<\/h3>\n                    <p>\u59d4\u8a17\u5951\u7d04\u7de0\u7d50\u5f8c\u3001\u96fb\u6c17\u4e8b\u696d\u6cd5\u306b\u57fa\u3065\u304d\u3001\u304a\u5ba2\u69d8\u306e\u8a2d\u5099\u306b\u5408\u308f\u305b\u305f\u4fdd\u5b89\u898f\u7a0b\u3084\u305d\u306e\u4ed6\u95a2\u9023\u3059\u308b\u5fc5\u8981\u66f8\u985e\u3092\u4f5c\u6210\u3057\u3001\u7ba1\u8f44\u306e\u7d4c\u6e08\u7523\u696d\u7701\u3078\u7533\u8acb\u624b\u7d9a\u304d\u3092\u884c\u3044\u307e\u3059\u3002<\/p>\n                <\/div>\n            <\/div>\n\n            <div class=\"process-step\">\n                <div class=\"step-number-icon\">6<\/div>\n                <div class=\"step-content\">\n                    <h3>\u8a8d\u53ef\u53d6\u5f97<\/h3>\n                    <p>\u7d4c\u6e08\u7523\u696d\u7701\u306b\u3088\u308b\u53b3\u6b63\u306a\u5be9\u67fb\u3092\u7d4c\u3066\u3001\u4fdd\u5b89\u898f\u7a0b\u306e\u8a8d\u53ef\u3092\u53d6\u5f97\u3044\u305f\u3057\u307e\u3059\u3002\u3053\u308c\u306b\u3088\u308a\u3001\u6b63\u5f0f\u306b\u5916\u90e8\u59d4\u8a17\u96fb\u6c17\u4e3b\u4efb\u6280\u8853\u8005\u3068\u3057\u3066\u306e\u696d\u52d9\u3092\u958b\u59cb\u3067\u304d\u308b\u72b6\u614b\u3068\u306a\u308a\u307e\u3059\u3002<\/p>\n                <\/div>\n            <\/div>\n\n            <div class=\"process-step\">\n                <div class=\"step-number-icon\">7<\/div>\n                <div class=\"step-content\">\n                    <h3>\u4fdd\u5b88\u70b9\u691c\u696d\u52d9\u306e\u5b9f\u65bd<\/h3>\n                    <p>\u8a8d\u53ef\u53d6\u5f97\u5f8c\u3001\u4f5c\u6210\u30fb\u8a8d\u53ef\u3055\u308c\u305f\u4fdd\u5b89\u898f\u7a0b\u306b\u5247\u308a\u3001\u5b9a\u671f\u7684\u306a\u4fdd\u5b88\u70b9\u691c\u696d\u52d9\u3092\u958b\u59cb\u3044\u305f\u3057\u307e\u3059\u3002\u304a\u5ba2\u69d8\u306e\u96fb\u6c17\u8a2d\u5099\u3092\u5e38\u306b\u5b89\u5168\u3067\u6700\u9069\u306a\u72b6\u614b\u306b\u4fdd\u3061\u307e\u3059\u3002<\/p>\n                <\/div>\n            <\/div>\n        <\/div><div class=\"important-note\" style=\"margin-top: 60px;\">\n            <p>\u3054\u4e0d\u660e\u306a\u70b9\u304c\u3054\u3056\u3044\u307e\u3057\u305f\u3089\u3001\u5404\u30b9\u30c6\u30c3\u30d7\u306e\u3069\u3093\u306a\u4e9b\u7d30\u306a\u3053\u3068\u3067\u3082\u304a\u6c17\u8efd\u306b\u304a\u5c0b\u306d\u304f\u3060\u3055\u3044\u3002\u304a\u5ba2\u69d8\u306e\u5b89\u5fc3\u3068\u5b89\u5168\u306e\u305f\u3081\u306b\u3001\u79c1\u305f\u3061\u304c\u8aa0\u5b9f\u306b\u5bfe\u5fdc\u3044\u305f\u3057\u307e\u3059\u3002<\/p>\n        <\/div>\n\n    <\/div>\n\n<\/body>\n<\/html>\n","protected":false},"excerpt":{"rendered":"<p>\u30b5\u30fc\u30d3\u30b9\u3054\u5229\u7528\u306e\u6d41\u308c | \u5927\u6edd\u96fb\u6c17\u7ba1\u7406\u4e8b\u52d9\u6240 \u30b5\u30fc\u30d3\u30b9\u3054\u5229\u7528\u306e\u6d41\u308c \u5927\u6edd\u96fb\u6c17\u7ba1\u7406\u4e8b\u52d9\u6240\u3078\u306e\u3054\u4f9d\u983c\u304b\u3089\u3001\u304a\u5ba2\u69d8\u306e\u96fb\u6c17\u8a2d\u5099\u304c\u5b89\u5168\u306b\u7ba1\u7406\u3055\u308c\u308b\u307e\u3067\u306e\u30d7\u30ed\u30bb\u30b9\u3092\u5206\u304b\u308a\u3084\u3059\u304f\u3054\u7d39\u4ecb\u3057\u307e\u3059\u3002\u5c02\u9580\u7684\u306a\u624b\u7d9a\u304d\u3082\u3001\u7d4c\u9a13\u8c4a\u5bcc\u306a\u96fb\u6c17\u4e3b\u4efb\u6280\u8853\u8005 [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":256,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"vkexunit_cta_each_option":"","footnotes":""},"class_list":["post-581","page","type-page","status-publish","has-post-thumbnail","hentry"],"_links":{"self":[{"href":"https:\/\/ootakidenki.com\/index.php?rest_route=\/wp\/v2\/pages\/581","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/ootakidenki.com\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/ootakidenki.com\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/ootakidenki.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/ootakidenki.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=581"}],"version-history":[{"count":6,"href":"https:\/\/ootakidenki.com\/index.php?rest_route=\/wp\/v2\/pages\/581\/revisions"}],"predecessor-version":[{"id":690,"href":"https:\/\/ootakidenki.com\/index.php?rest_route=\/wp\/v2\/pages\/581\/revisions\/690"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/ootakidenki.com\/index.php?rest_route=\/wp\/v2\/media\/256"}],"wp:attachment":[{"href":"https:\/\/ootakidenki.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=581"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}