<?xml version="1.0" encoding="UTF-8" standalone="no"?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><rss xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" version="2.0"><channel><title>自閉症スペクトラム（残念なアスペルガー（大人）ブログ）</title><description>大人の自閉症スペクトラム（アスペルガー）確定診断後にわかった私のアスペルガーの就労,仕事、生活などをブログに書きます</description><managingEditor>noreply@blogger.com (黒岩堅)</managingEditor><pubDate>Sun, 5 Apr 2026 07:46:31 +0900</pubDate><generator>Blogger http://www.blogger.com</generator><openSearch:totalResults xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/">1005</openSearch:totalResults><openSearch:startIndex xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/">1</openSearch:startIndex><openSearch:itemsPerPage xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/">25</openSearch:itemsPerPage><link>http://waisu.asdj.org/</link><language>en-us</language><itunes:explicit>no</itunes:explicit><itunes:keywords>アスペルガー,診断,症状,記録</itunes:keywords><itunes:summary>アスペルガーの私の日常を書いていきます。&#13;
是非、アスペルガーでも普通に生きられることをみてください。&#13;
</itunes:summary><itunes:subtitle>実録アスペルガー日記</itunes:subtitle><itunes:category text="Health"><itunes:category text="Self-Help"/></itunes:category><itunes:owner><itunes:email>noreply@blogger.com</itunes:email></itunes:owner><item><title>けんの物語</title><link>http://waisu.asdj.org/2025/08/blog-post.html</link><author>noreply@blogger.com (黒岩堅)</author><pubDate>Thu, 7 Aug 2025 20:20:00 +0900</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7596912463310573257.post-8207613253780005249</guid><description>&lt;iframe allowfullscreen='allowfullscreen' webkitallowfullscreen='webkitallowfullscreen' mozallowfullscreen='mozallowfullscreen' width='320' height='266' src='https://www.blogger.com/video.g?token=AD6v5dyHFQs-6WS8-HO6KJKrPSS1q9oPqerXhgXlZd0qvENLkm_e8SzoEnTnxBbM3Pz5hjNTJiANfLNp-W2TSp9k_Q' class='b-hbp-video b-uploaded' frameborder='0'&gt;&lt;/iframe&gt;


&lt;html lang="ja"&gt;
&lt;head&gt;
    &lt;meta charset="UTF-8"&gt;&lt;/meta&gt;
    &lt;meta content="width=device-width, initial-scale=1.0" name="viewport"&gt;&lt;/meta&gt;
    &lt;title&gt;インタラクティブ・ストーリー：「読めない世界」の地図を描いた男&lt;/title&gt;
    &lt;script src="https://cdn.tailwindcss.com"&gt;&lt;/script&gt;
    &lt;script src="https://cdn.jsdelivr.net/npm/chart.js"&gt;&lt;/script&gt;
    &lt;link href="https://fonts.googleapis.com" rel="preconnect"&gt;&lt;/link&gt;
    &lt;link crossorigin="" href="https://fonts.gstatic.com" rel="preconnect"&gt;&lt;/link&gt;
    &lt;link href="https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700&amp;amp;display=swap" rel="stylesheet"&gt;&lt;/link&gt;
    &lt;!-- Chosen Palette: Calm Harmony --&gt;
    &lt;!-- Application Structure Plan: The application is designed as a non-linear, exploratory journey through Ken's story, rather than a simple chapter-by-chapter retelling. It's structured into thematic sections that a user can navigate to via a sticky header. This approach allows users to engage with the concepts that are most relevant to them first—whether it's understanding the core problem ("Freeze State"), learning the principles ("Recovery Map"), or using the practical solutions ("Digital Toolbox"). This user-centric flow is more engaging and useful than a passive reading experience, transforming the narrative into a resource. --&gt;
    &lt;!-- Visualization &amp; Content Choices: 
        1. 5 Principles: Report Info -&gt; Ken's 5 principles. Goal -&gt; Organize/Inform. Viz/Method -&gt; Interactive HTML/CSS diagram with clickable nodes. Interaction -&gt; Clicking a principle reveals its description. Justification -&gt; More engaging and less overwhelming than a static list. Library -&gt; Vanilla JS.
        2. Sensory Toolbox: Report Info -&gt; 101 sensory ideas. Goal -&gt; Organize/Engage. Viz/Method -&gt; A filterable grid of cards. Interaction -&gt; Buttons for each sense filter the grid. Justification -&gt; Turns a long list into a playful, usable tool, which is the core interactive "wow" feature. Library -&gt; Vanilla JS.
        3. 105-Company Journey: Report Info -&gt; 104 rejections, 1 success. Goal -&gt; Compare/Impact. Viz/Method -&gt; Chart.js Horizontal Bar Chart. Interaction -&gt; Hover for tooltips. Justification -&gt; Provides a stark, immediate visual representation of the struggle and perseverance, which is more powerful than text alone. Library -&gt; Chart.js.
    --&gt;
    &lt;!-- CONFIRMATION: NO SVG graphics used. NO Mermaid JS used. --&gt;
    &lt;style&gt;
        body {
            font-family: 'Noto Sans JP', sans-serif;
            background-color: #FDFBF6;
            color: #5C544B;
        }
        .active-nav {
            color: #4A5D23;
            font-weight: 700;
            border-bottom: 2px solid #4A5D23;
        }
        .nav-link {
            transition: all 0.3s ease;
            border-bottom: 2px solid transparent;
        }
        .principle-node {
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .principle-node.active, .principle-node:hover {
            background-color: #8A9A5B;
            color: #FDFBF6;
            transform: scale(1.05);
        }
        .sensory-btn.active, .sensory-btn:hover {
            background-color: #607D8B;
            color: #FDFBF6;
        }
        .chart-container {
            position: relative;
            width: 100%;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            height: 250px;
            max-height: 300px;
        }
        @media (min-width: 768px) {
            .chart-container {
                height: 300px;
                max-height: 400px;
            }
        }
    &lt;/style&gt;
&lt;/head&gt;
&lt;body class="antialiased"&gt;

    &lt;header class="bg-[#FDFBF6]/80 backdrop-blur-sm sticky top-0 z-50 shadow-sm" id="header"&gt;
        &lt;nav class="container mx-auto px-4 sm:px-6 lg:px-8"&gt;
            &lt;div class="flex items-center justify-between h-16"&gt;
                &lt;div class="flex-shrink-0"&gt;
                    &lt;h1 class="text-xl font-bold text-[#4A5D23]"&gt;けんの物語&lt;/h1&gt;
                &lt;/div&gt;
                &lt;div class="hidden md:block"&gt;
                    &lt;div class="ml-10 flex items-baseline space-x-4"&gt;
                        &lt;a class="nav-link px-3 py-2 rounded-md text-sm font-medium" href="#section-intro"&gt;序章&lt;/a&gt;
                        &lt;a class="nav-link px-3 py-2 rounded-md text-sm font-medium" href="#section-freeze"&gt;フリーズ状態&lt;/a&gt;
                        &lt;a class="nav-link px-3 py-2 rounded-md text-sm font-medium" href="#section-map"&gt;元気の地図&lt;/a&gt;
                        &lt;a class="nav-link px-3 py-2 rounded-md text-sm font-medium" href="#section-toolbox"&gt;道具箱&lt;/a&gt;
                        &lt;a class="nav-link px-3 py-2 rounded-md text-sm font-medium" href="#section-journey"&gt;105社の旅&lt;/a&gt;
                    &lt;/div&gt;
                &lt;/div&gt;
                &lt;div class="md:hidden"&gt;
                    &lt;button class="inline-flex items-center justify-center p-2 rounded-md text-gray-600 hover:text-gray-900 hover:bg-gray-200 focus:outline-none" id="mobile-menu-button"&gt;
                        &lt;span class="sr-only"&gt;メニューを開く&lt;/span&gt;
                        &lt;svg class="h-6 w-6" fill="none" stroke="currentColor" viewbox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"&gt;
                            &lt;path d="M4 6h16M4 12h16m-7 6h7" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"&gt;
                        &lt;/path&gt;&lt;/svg&gt;
                    &lt;/button&gt;
                &lt;/div&gt;
            &lt;/div&gt;
        &lt;/nav&gt;
        &lt;div class="md:hidden hidden" id="mobile-menu"&gt;
            &lt;div class="px-2 pt-2 pb-3 space-y-1 sm:px-3"&gt;
                &lt;a class="block nav-link px-3 py-2 rounded-md text-base font-medium" href="#section-intro"&gt;序章&lt;/a&gt;
                &lt;a class="block nav-link px-3 py-2 rounded-md text-base font-medium" href="#section-freeze"&gt;フリーズ状態&lt;/a&gt;
                &lt;a class="block nav-link px-3 py-2 rounded-md text-base font-medium" href="#section-map"&gt;元気の地図&lt;/a&gt;
                &lt;a class="block nav-link px-3 py-2 rounded-md text-base font-medium" href="#section-toolbox"&gt;道具箱&lt;/a&gt;
                &lt;a class="block nav-link px-3 py-2 rounded-md text-base font-medium" href="#section-journey"&gt;105社の旅&lt;/a&gt;
            &lt;/div&gt;
        &lt;/div&gt;
    &lt;/header&gt;

    &lt;main class="container mx-auto px-4 sm:px-6 lg:px-8 py-8 md:py-12"&gt;

        &lt;section class="text-center mb-16 md:mb-24 scroll-mt-16" id="section-intro"&gt;
            &lt;h2 class="text-3xl md:text-4xl font-bold text-[#4A5D23] mb-4"&gt;「読めない世界」の地図を描いた男&lt;/h2&gt;
            &lt;p class="max-w-3xl mx-auto text-lg md:text-xl text-gray-700"&gt;
                かつて、世界のルールが分からずに立ち尽くしていた一人の少年がいた。これは、彼が自らの「読めない世界」を理解し、やがて多くの人々のために新しい「元気の地図」と「心の道具箱」を作り上げるまでの物語。彼の旅路と、そこから生まれた知恵を、対話的に探求していきましょう。
            &lt;/p&gt;
        &lt;/section&gt;

        &lt;section class="mb-16 md:mb-24 scroll-mt-16" id="section-freeze"&gt;
            &lt;div class="text-center mb-8"&gt;
                &lt;h3 class="text-2xl md:text-3xl font-bold text-[#607D8B]"&gt;第一部：静かなるフリーズ&lt;/h3&gt;
                &lt;p class="max-w-2xl mx-auto mt-4 text-gray-600"&gt;
                    けんの苦しみの根源は「フリーズ状態」でした。脳が処理できる情報量を超えると、思考が停止し、体が硬直してしまうのです。これは、社会の暗黙のルールや文脈が理解できない彼にとって、日常的な出来事でした。下のボタンをクリックして、どのような状況が「フリーズ」を引き起こすのか見てみましょう。
                &lt;/p&gt;
            &lt;/div&gt;
            &lt;div class="max-w-4xl mx-auto bg-white/50 p-6 rounded-xl shadow-md"&gt;
                &lt;div class="grid grid-cols-1 md:grid-cols-2 gap-6"&gt;
                    &lt;div class="bg-[#FDFBF6] p-6 rounded-lg flex items-center justify-center min-h-[150px]" id="freeze-explanation"&gt;
                        &lt;p class="text-gray-700 text-center"&gt;トリガーを選択してください&lt;/p&gt;
                    &lt;/div&gt;
                    &lt;div class="flex flex-col justify-center space-y-3"&gt;
                        &lt;button class="freeze-trigger-btn w-full text-left p-3 bg-white rounded-lg shadow-sm hover:bg-gray-100 transition"&gt;⚾️ ルールが不明確な状況&lt;/button&gt;
                        &lt;button class="freeze-trigger-btn w-full text-left p-3 bg-white rounded-lg shadow-sm hover:bg-gray-100 transition"&gt;&#128483;️ 暗黙の了解を求められる会話&lt;/button&gt;
                        &lt;button class="freeze-trigger-btn w-full text-left p-3 bg-white rounded-lg shadow-sm hover:bg-gray-100 transition"&gt;&#129327; 一度に多くの指示を受ける&lt;/button&gt;
                    &lt;/div&gt;
                &lt;/div&gt;
            &lt;/div&gt;
        &lt;/section&gt;

        &lt;section class="mb-16 md:mb-24 scroll-mt-16" id="section-map"&gt;
            &lt;div class="text-center mb-8"&gt;
                &lt;h3 class="text-2xl md:text-3xl font-bold text-[#4A5D23]"&gt;第二部：元気の地図を描く&lt;/h3&gt;
                &lt;p class="max-w-2xl mx-auto mt-4 text-gray-600"&gt;
                    発達障害の診断は、彼にとって「解放」でした。自分の特性を理解したけんは、自らの力で回復するための羅針盤となる「5つの基本原則」を体系化します。これは、彼が多くの人と共有する「元気の地図」の核となりました。各原則をクリックして、その意味を探ってみましょう。
                &lt;/p&gt;
            &lt;/div&gt;
            &lt;div class="max-w-5xl mx-auto bg-white/50 p-6 rounded-xl shadow-md"&gt;
                &lt;div class="flex flex-col md:flex-row gap-6"&gt;
                    &lt;div class="w-full md:w-1/2 flex items-center justify-center"&gt;
                        &lt;div class="relative w-64 h-64 md:w-80 md:h-80"&gt;
                            &lt;div class="absolute inset-0 border-2 border-dashed border-gray-300 rounded-full"&gt;&lt;/div&gt;
                            &lt;div class="absolute top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2 w-24 h-24 bg-gray-100 rounded-full flex items-center justify-center text-center p-2" id="principle-center"&gt;
                                &lt;span class="font-bold text-sm text-gray-600"&gt;5つの原則&lt;/span&gt;
                            &lt;/div&gt;
                            &lt;div class="principle-node absolute w-20 h-20 md:w-24 md:h-24 rounded-full bg-white shadow-lg flex items-center justify-center text-center p-2 font-semibold" data-id="hope" style="left: 50%; top: -5%; transform: translateX(-50%);"&gt;希望&lt;/div&gt;
                            &lt;div class="principle-node absolute w-20 h-20 md:w-24 md:h-24 rounded-full bg-white shadow-lg flex items-center justify-center text-center p-2 font-semibold" data-id="responsibility" style="left: 100%; top: 50%; transform: translate(-50%, -50%);"&gt;個人の責任&lt;/div&gt;
                            &lt;div class="principle-node absolute w-20 h-20 md:w-24 md:h-24 rounded-full bg-white shadow-lg flex items-center justify-center text-center p-2 font-semibold" data-id="learning" style="bottom: -5%; left: 50%; transform: translateX(-50%);"&gt;学び&lt;/div&gt;
                            &lt;div class="principle-node absolute w-20 h-20 md:w-24 md:h-24 rounded-full bg-white shadow-lg flex items-center justify-center text-center p-2 font-semibold" data-id="advocacy" style="left: 0%; top: 20%; transform: translateX(-20%);"&gt;権利擁護&lt;/div&gt;
                            &lt;div class="principle-node absolute w-20 h-20 md:w-24 md:h-24 rounded-full bg-white shadow-lg flex items-center justify-center text-center p-2 font-semibold" data-id="support" style="bottom: 20%; left: 0%; transform: translateX(-20%);"&gt;サポート&lt;/div&gt;
                        &lt;/div&gt;
                    &lt;/div&gt;
                    &lt;div class="w-full md:w-1/2"&gt;
                        &lt;div class="bg-[#FDFBF6] p-6 rounded-lg min-h-[250px] md:min-h-full flex flex-col justify-center" id="principle-explanation"&gt;
                            &lt;h4 class="text-xl font-bold text-[#4A5D23] mb-2" id="principle-title"&gt;原則を選択&lt;/h4&gt;
                            &lt;p class="text-gray-700" id="principle-text"&gt;中央の図から原則を選択すると、ここに詳しい説明が表示されます。&lt;/p&gt;
                        &lt;/div&gt;
                    &lt;/div&gt;
                &lt;/div&gt;
            &lt;/div&gt;
        &lt;/section&gt;

        &lt;section class="mb-16 md:mb-24 scroll-mt-16" id="section-toolbox"&gt;
            &lt;div class="text-center mb-8"&gt;
                &lt;h3 class="text-2xl md:text-3xl font-bold text-[#607D8B]"&gt;第三部：デジタルの道具箱&lt;/h3&gt;
                &lt;p class="max-w-2xl mx-auto mt-4 text-gray-600"&gt;
                    けんの独創性は「五感を刺激する道具箱」というアイデアで最も輝きました。これは「フリーズ状態」への直接的な対抗策です。思考が停止した時、五感への刺激は心を直接「解凍」する鍵となります。下のボタンで感覚をフィルターし、101のアイデアの一部を見てみましょう。
                &lt;/p&gt;
            &lt;/div&gt;
            &lt;div class="max-w-4xl mx-auto bg-white/50 p-6 rounded-xl shadow-md"&gt;
                &lt;div class="flex flex-wrap justify-center gap-2 mb-6"&gt;
                    &lt;button class="sensory-btn active px-4 py-2 bg-white rounded-full shadow-sm transition" data-filter="all"&gt;すべて&lt;/button&gt;
                    &lt;button class="sensory-btn px-4 py-2 bg-white rounded-full shadow-sm transition" data-filter="sight"&gt;&#128065;️ 視覚&lt;/button&gt;
                    &lt;button class="sensory-btn px-4 py-2 bg-white rounded-full shadow-sm transition" data-filter="sound"&gt;&#128066; 聴覚&lt;/button&gt;
                    &lt;button class="sensory-btn px-4 py-2 bg-white rounded-full shadow-sm transition" data-filter="smell"&gt;&#128067; 嗅覚&lt;/button&gt;
                    &lt;button class="sensory-btn px-4 py-2 bg-white rounded-full shadow-sm transition" data-filter="touch"&gt;&#128400;️ 触覚&lt;/button&gt;
                    &lt;button class="sensory-btn px-4 py-2 bg-white rounded-full shadow-sm transition" data-filter="taste"&gt;&#128069; 味覚&lt;/button&gt;
                &lt;/div&gt;
                &lt;div class="grid grid-cols-2 sm:grid-cols-3 md:grid-cols-4 gap-4" id="toolbox-grid"&gt;
                &lt;/div&gt;
            &lt;/div&gt;
        &lt;/section&gt;

        &lt;section class="scroll-mt-16" id="section-journey"&gt;
            &lt;div class="text-center mb-8"&gt;
                &lt;h3 class="text-2xl md:text-3xl font-bold text-[#4A5D23]"&gt;第四部：105社をめぐる旅&lt;/h3&gt;
                &lt;p class="max-w-2xl mx-auto mt-4 text-gray-600"&gt;
                    彼の言葉に重みを与えたのは、障害者枠での就職を目指し、実に105社もの企業の門を叩いた壮絶な経験でした。この旅は、彼の揺るぎない忍耐力の証であり、多くの知見をもたらしました。このグラフは、その道のりの厳しさと、たった一つの成功の価値を視覚的に示しています。
                &lt;/p&gt;
            &lt;/div&gt;
            &lt;div class="max-w-4xl mx-auto bg-white/50 p-6 rounded-xl shadow-md"&gt;
                &lt;div class="chart-container"&gt;
                    &lt;canvas id="journeyChart"&gt;&lt;/canvas&gt;
                &lt;/div&gt;
            &lt;/div&gt;
        &lt;/section&gt;

    &lt;/main&gt;

    &lt;footer class="bg-[#A68B7C] mt-16 md:mt-24"&gt;
        &lt;div class="container mx-auto px-4 sm:px-6 lg:px-8 py-6 text-center text-white"&gt;
            &lt;p class="font-semibold"&gt;静かなる地図製作者&lt;/p&gt;
            &lt;p class="text-sm text-gray-200 mt-1"&gt;けんの仕事は今も続いています。かつて地図を読めなかった少年は、今、道に迷う人々のために新しい地図を描き続けています。&lt;/p&gt;
        &lt;/div&gt;
    &lt;/footer&gt;

    &lt;script&gt;
        document.addEventListener('DOMContentLoaded', () =&gt; {
            
            const mobileMenuButton = document.getElementById('mobile-menu-button');
            const mobileMenu = document.getElementById('mobile-menu');
            mobileMenuButton.addEventListener('click', () =&gt; {
                mobileMenu.classList.toggle('hidden');
            });

            const navLinks = document.querySelectorAll('.nav-link');
            const sections = document.querySelectorAll('section');
            window.addEventListener('scroll', () =&gt; {
                let current = '';
                sections.forEach(section =&gt; {
                    const sectionTop = section.offsetTop;
                    if (pageYOffset &gt;= sectionTop - 80) {
                        current = section.getAttribute('id');
                    }
                });

                navLinks.forEach(link =&gt; {
                    link.classList.remove('active-nav');
                    if (link.getAttribute('href').includes(current)) {
                        link.classList.add('active-nav');
                    }
                });
            });

            const freezeTriggers = {
                "⚾️ ルールが不明確な状況": "野球中継を見ても、なぜ人々が熱狂するのか理解できなかった。ルールや文脈が不明な状況は、思考を停止させる。",
                "&#128483;️ 暗黙の了解を求められる会話": "「チョークはあるかね？」という問いに「はい」と答えるだけ。その裏にある「持ってきてほしい」という意図を汲み取れず、関係がこじれてしまう。",
                "&#129327; 一度に多くの指示を受ける": "複数の情報やタスクが同時に来ると、脳の処理能力を超えてしまう。何をすべきか分からなくなり、その場で固まってしまう。"
            };
            const freezeExplanation = document.getElementById('freeze-explanation');
            document.querySelectorAll('.freeze-trigger-btn').forEach(button =&gt; {
                button.addEventListener('click', () =&gt; {
                    freezeExplanation.innerHTML = `&lt;p class="text-gray-700 text-center"&gt;${freezeTriggers[button.textContent.trim()]}&lt;/p&gt;`;
                });
            });
            
            const principles = {
                hope: { title: '希望', text: '人は回復できるという信念を持つこと。自分の状況は改善できると信じる力が、最初の大きな一歩となる。' },
                responsibility: { title: '個人の責任', text: '自分の人生の主導権を握ること。他者や環境のせいにするのではなく、自らの選択と行動で未来を切り拓く。' },
                learning: { title: '学び', text: '自分自身の特性、強み、弱みについて学び続けること。自己理解が、効果的な戦略を立てるための基礎となる。' },
                advocacy: { title: '権利擁護', text: '自分に必要な助けを求め、正当な権利を主張すること。声を上げる勇気が、道を開く。' },
                support: { title: 'サポート', text: '信頼できる仲間や専門家と繋がり、支え合うこと。一人で抱え込まず、他者の力を借りることも強さの一つ。' }
            };
            const principleNodes = document.querySelectorAll('.principle-node');
            const principleTitle = document.getElementById('principle-title');
            const principleText = document.getElementById('principle-text');
            principleNodes.forEach(node =&gt; {
                node.addEventListener('click', () =&gt; {
                    const principleId = node.dataset.id;
                    const data = principles[principleId];
                    principleTitle.textContent = data.title;
                    principleText.textContent = data.text;
                    principleNodes.forEach(n =&gt; n.classList.remove('active'));
                    node.classList.add('active');
                });
            });

            const toolboxItems = [
                { category: 'sight', text: '美しい風景画を眺める' }, { category: 'sight', text: '好きな色のものを見る' },
                { category: 'sound', text: '鳥のさえずりを聞く' }, { category: 'sound', text: '落ち着く音楽を聴く' },
                { category: 'smell', text: 'アロマオイルを嗅ぐ' }, { category: 'smell', text: 'コーヒーの香りを嗅ぐ' },
                { category: 'touch', text: '柔らかい毛布にくるまる' }, { category: 'touch', text: 'ペットを撫でる' },
                { category: 'taste', text: '温かいハーブティーを飲む' }, { category: 'taste', text: '好きなチョコレートを一片' },
                { category: 'sight', text: '万華鏡をのぞく' }, { category: 'sound', text: '波の音を聞く' },
                { category: 'smell', text: '焼きたてのパンの香り' }, { category: 'touch', text: '滑らかな石を握る' },
                { category: 'taste', text: 'ミントガムを噛む' }, { category: 'sight', text: 'キャンドルの炎を見つめる' }
            ];
            const toolboxGrid = document.getElementById('toolbox-grid');
            const sensoryBtns = document.querySelectorAll('.sensory-btn');

            function renderToolbox(filter) {
                toolboxGrid.innerHTML = '';
                const filteredItems = filter === 'all' ? toolboxItems : toolboxItems.filter(item =&gt; item.category === filter);
                filteredItems.forEach(item =&gt; {
                    const div = document.createElement('div');
                    div.className = 'bg-white p-3 rounded-lg shadow-sm text-center text-sm text-gray-700';
                    div.textContent = item.text;
                    toolboxGrid.appendChild(div);
                });
            }

            sensoryBtns.forEach(btn =&gt; {
                btn.addEventListener('click', () =&gt; {
                    sensoryBtns.forEach(b =&gt; b.classList.remove('active'));
                    btn.classList.add('active');
                    renderToolbox(btn.dataset.filter);
                });
            });
            renderToolbox('all');

            const journeyCtx = document.getElementById('journeyChart').getContext('2d');
            const journeyChart = new Chart(journeyCtx, {
                type: 'bar',
                data: {
                    labels: ['挑戦した企業数'],
                    datasets: [
                        {
                            label: '不採用',
                            data: [104],
                            backgroundColor: '#D1C4E9',
                            borderColor: '#B39DDB',
                            borderWidth: 1
                        },
                        {
                            label: '採用',
                            data: [1],
                            backgroundColor: '#8A9A5B',
                            borderColor: '#4A5D23',
                            borderWidth: 1
                        }
                    ]
                },
                options: {
                    indexAxis: 'y',
                    responsive: true,
                    maintainAspectRatio: false,
                    scales: {
                        x: {
                            stacked: true,
                            display: false,
                        },
                        y: {
                            stacked: true,
                            display: false,
                        }
                    },
                    plugins: {
                        legend: {
                            position: 'bottom',
                        },
                        tooltip: {
                            callbacks: {
                                label: function(context) {
                                    let label = context.dataset.label || '';
                                    if (label) {
                                        label += ': ';
                                    }
                                    if (context.parsed.x !== null) {
                                        label += context.parsed.x + '社';
                                    }
                                    return label;
                                }
                            }
                        }
                    }
                }
            });
        });
    &lt;/script&gt;
&lt;/body&gt;
&lt;/html&gt;
</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>フォーカシングで自分と向き合う</title><link>http://waisu.asdj.org/2024/09/blog-post.html</link><author>noreply@blogger.com (Unknown)</author><pubDate>Wed, 4 Sep 2024 08:34:00 +0900</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7596912463310573257.post-2899605261141570320</guid><description>&lt;p&gt;&lt;a href="https://chatgpt.com/share/24c7a4d5-8043-4121-8898-d492e9f0a2e4"&gt;&amp;nbsp;https://chatgpt.com/share/24c7a4d5-8043-4121-8898-d492e9f0a2e4&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;chatgptにフォーカシングを教えて、スマートフォンで音声でガイドしてもらっています。&lt;/p&gt;&lt;p&gt;スピードが早すぎるのが難ですね。&lt;/p&gt;&lt;p&gt;録音して、０．７倍速でちょうどよい感じです。&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>意図的なピアサポート　AIとの会話</title><link>http://waisu.asdj.org/2024/09/ai.html</link><category>IT</category><author>noreply@blogger.com (黒岩堅)</author><pubDate>Tue, 3 Sep 2024 21:14:00 +0900</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7596912463310573257.post-5573643980925232971</guid><description>&lt;p&gt;&amp;nbsp;アプリ版ChatGPTで音声会話機能を使うやり方&lt;/p&gt;&lt;p&gt;1.ChatGPTのアプリを開いてログインする&lt;/p&gt;&lt;p&gt;2.右下にあるイヤホンのアイコンをタップする&lt;/p&gt;&lt;p&gt;3.音声を選んで話し始める&lt;/p&gt;&lt;p&gt;4.回答が作成される&lt;/p&gt;&lt;p&gt;5.ChatGPTとの音声会話が文字起こしされ読み上げられる&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;上記の方法で下記のIPS　AIを使うと、意図的なピアサポートで対話する感覚になれるかなと思っています。&lt;/p&gt;&lt;p&gt;ちょっと遅いですが&lt;/p&gt;&lt;p&gt;chatgptでAIをチューニング中です。&lt;/p&gt;&lt;p&gt;ご利用にはchatgptアカウント（フリー）作成が必要となります。&lt;/p&gt;&lt;p&gt;また、意図的なピアサポートのAIをテスト中です。&lt;/p&gt;&lt;p&gt;ご意見いただきたく。&lt;/p&gt;&lt;p&gt;こちらはまだ私の思うような内容には出来ていません。IPSは難しいです。&lt;/p&gt;&lt;p&gt;音声対話しながら話すことを試しています。&lt;/p&gt;&lt;p&gt;&lt;br style="background-color: white; color: #222222; font-family: Arial, Helvetica, sans-serif; font-size: small;" /&gt;&lt;a data-saferedirecturl="https://www.google.com/url?q=https://chatgpt.com/g/g-HAMKf5Lam-yi-tu-de-nahiasahoto&amp;amp;source=gmail&amp;amp;ust=1725449320597000&amp;amp;usg=AOvVaw3A6Nj3RV9HMeLxblEDR1fN" href="https://chatgpt.com/g/g-HAMKf5Lam-yi-tu-de-nahiasahoto" style="background-color: white; color: #1155cc; font-family: Arial, Helvetica, sans-serif; font-size: small;" target="_blank"&gt;https://chatgpt.com/g/g-&lt;wbr&gt;&lt;/wbr&gt;HAMKf5Lam-yi-tu-de-nahiasahoto&lt;/a&gt;&lt;/p&gt;&lt;p&gt;会話例は下記のような感じですね。&lt;/p&gt;&lt;p&gt;&lt;a href="https://chatgpt.com/share/c3740b9e-ec0b-4b43-ad08-7975595f6754"&gt;https://chatgpt.com/share/c3740b9e-ec0b-4b43-ad08-7975595f6754&lt;/a&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title> 私にとって、WRAPとは何か？</title><link>http://waisu.asdj.org/2022/08/wrap.html</link><category>wrap</category><author>noreply@blogger.com (黒岩堅)</author><pubDate>Mon, 22 Aug 2022 20:37:00 +0900</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7596912463310573257.post-35019368770218849</guid><description>&lt;p&gt;&amp;nbsp;私にとって、WRAPとは何か？&lt;/p&gt;&lt;!-- wp:paragraph --&gt;
&lt;p&gt;「けんさんのWRAPは宗教だよね。学びが全くないよね。」と言われたので、私の思いを書いて置こうと思う。&lt;/p&gt;
&lt;!-- /wp:paragraph --&gt;

&lt;!-- wp:paragraph --&gt;
&lt;p&gt;５つの大切なことが私にとっての道標であり、羅針盤になっている。いつも迷ったら、ここに戻る。&lt;br /&gt;私にとって大切な５つのことを歪めてないか？私がしたいことは何なのか？自問自答する。&lt;/p&gt;
&lt;!-- /wp:paragraph --&gt;

&lt;!-- wp:paragraph --&gt;
&lt;p&gt;テキストを読んだり、考えたり、これはこういう意味かなとか考える。&lt;br /&gt;私の中が整理される。WRAPに出会う前は周りの人たちの意見に振り回されていた。&lt;/p&gt;
&lt;!-- /wp:paragraph --&gt;

&lt;!-- wp:paragraph --&gt;
&lt;p&gt;今の私は5つの大切なことと向き合うことで、道標であり、羅針盤になっている。&lt;/p&gt;
&lt;!-- /wp:paragraph --&gt;

&lt;!-- wp:paragraph --&gt;
&lt;p&gt;これが私にとってのリカバリーにもなっていて、変化し続ける原動力にもなっている。&lt;/p&gt;
&lt;!-- /wp:paragraph --&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>ドキュメント作成時の視点</title><link>http://waisu.asdj.org/2022/07/blog-post.html</link><category>仕事</category><author>noreply@blogger.com (黒岩堅)</author><pubDate>Mon, 11 Jul 2022 12:49:00 +0900</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7596912463310573257.post-6566301526068356408</guid><description>&lt;p&gt;&amp;nbsp;目の前にあるものしか見えていない。&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;ドキュメントにあるべき構造が見えてない。&lt;/p&gt;&lt;p&gt;全体のドキュメント体系の中で、どこのドキュメントに該当するか？などのドキュメントの位置づけ&lt;/p&gt;&lt;p&gt;目の前のドキュメントしか見えない。&lt;/p&gt;&lt;p&gt;前々回の会議などで文章になっていないことなどの反映ができない。&lt;/p&gt;&lt;p&gt;他のドキュメントとの関連性の部分が弱すぎる。&lt;/p&gt;&lt;p&gt;どこに何を書くべきかを考える必要がある。&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>仕事がうまくいっていない</title><link>http://waisu.asdj.org/2022/06/blog-post.html</link><category>仕事</category><author>noreply@blogger.com (Unknown)</author><pubDate>Sun, 26 Jun 2022 21:15:00 +0900</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7596912463310573257.post-4549304415518339716</guid><description>&lt;p&gt;&amp;nbsp;この頃仕事がうまくいっていない。再度ブログを書きながら、自分を見つめ直そうと思っています。&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;どんな問題が今起こっているか？&lt;/p&gt;&lt;p&gt;今のところ下記の課題がある。&lt;/p&gt;&lt;p&gt;・単純なケアレスミス&lt;/p&gt;&lt;p&gt;・客や周りのスタッフに言われたまま行動してしまう。&lt;/p&gt;&lt;p&gt;・仕事の構造化？文章の構造化？&lt;/p&gt;&lt;p&gt;ひとつひとつ振り返っていきたい&lt;/p&gt;&lt;h2 style="text-align: left;"&gt;１．単純なケアレスミス&lt;/h2&gt;&lt;div&gt;これは単なるミスで、確認時もミスをして無限ループを行う。&lt;/div&gt;&lt;div&gt;EXCELやWordのマクロ機能を使って、目でチェックする方法をやめて、機械的にミスを確認する方法を模索中。マクロは助かると思った。私を信用してはいけない。チェックする技法を見つけていくたびにミスは減る傾向にある。&lt;/div&gt;&lt;h2 style="text-align: left;"&gt;２．客や周りのスタッフに言われたまま行動&lt;/h2&gt;&lt;div&gt;この頃忙しいせいもあって、会社のルールをいったん考えないといけないのに、言われたまんま作業を行ってしまうことがあった。それはお客様や他部署からの依頼だ。相手は何も考えず、依頼してくる。仕事が出来る人なら、そんな依頼をしてこないのに、私と同じ傾向な人はとにかくやってよと言ってくる。自分の仕事と会社のルールを統一し、逸脱する場合は全て上司にエスカレーション実施。これを繰り返すしかない。&lt;/div&gt;&lt;h2 style="text-align: left;"&gt;３．仕事の構造化？文章の構造化？&lt;/h2&gt;&lt;div&gt;２番目と重なる部分が多い。会社のルールに即していても、相手もこちらの業務の流れをしらないので、相手のいうがままに作業を行うと、えらいことになる。こんな当たり前のことも忙しいと出来なくなってきている。&lt;/div&gt;&lt;div&gt;仕事の進め方をきちんと、頭だけでなく、書いたり、フローチャートを書かないと、手戻りが発生しやすい。実際そうなっている。&lt;/div&gt;&lt;div&gt;もっと仕事を理解してからしないといけないのに、忙しいからやっつけ仕事をしてしまっている。&lt;/div&gt;&lt;div&gt;また、出来れば、きた依頼はその日のうちに対応しておきたい。&lt;/div&gt;&lt;div&gt;タスク管理がめんどくさいから。作業し忘れはまずいので、その日のうちでやるというマイルールが仕事の本質を考えず、やっつけ仕事にもつながっている。&lt;/div&gt;&lt;div&gt;仕事の理解と個々のタスク管理が課題となっています。&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;h2 style="text-align: left;"&gt;今後の取り組みについて&lt;/h2&gt;&lt;div&gt;２は撲滅、１は技法の開発、３は仕事のパターン化が必要なのかなと思って再度自分の仕事の棚卸を行っています。&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;本当に仕事の構造化はできるだろうか？タスク管理との組み合わせが重要となってきている。&lt;/div&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>業務フロー</title><link>http://waisu.asdj.org/2022/03/blog-post.html</link><author>noreply@blogger.com (黒岩堅)</author><pubDate>Sat, 19 Mar 2022 11:07:00 +0900</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7596912463310573257.post-8905207784221033205</guid><description>&lt;p&gt;&amp;nbsp;きっかけはQMSだった。何も役に立たないフローと思っていました。&lt;/p&gt;&lt;p&gt;何度も繰り返し、頭の中に叩き込んでいく中で、仕事にはなんらかのインプットとアウトプットがあるんだ。相手（それはお客様、社内の経理、総務、人事）と私の中で、私が相手に渡さないといけないもの、相手が私に渡せるものを考えながらやり取りすることで、余計な軋轢は減ってきた。&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;当たり前のことかもしれませんが、インプットとアウトプットを意識する。自分の立ち位置、組織として行えることは何かを考えることで、上司に怒られることは減ってきた。&lt;/p&gt;&lt;p&gt;それでも軋轢は普通の人よりある。&lt;/p&gt;&lt;p&gt;社内では問題児だろうし、権利ばかり要求する障害者で、義務を果たさないと思われているだろう。実際私と交流する人はいない。&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;もっとはやく仕事のインプット、アウトプット、組織、そして私の出来る事を論理的に考えることが出来たら、もっと楽に生きられる部分は多かっただろうなとも思う。&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;失敗しながら生きていく。窓際族（死語？）、社内ニートでもいい定年退職して、いかに仕事出来なかったかを伝えられる当事者になりたいと思っています。&lt;/p&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>ビジネスコミュニケーション支援  </title><link>http://waisu.asdj.org/2021/02/blog-post.html</link><category>仕事</category><author>noreply@blogger.com (Unknown)</author><pubDate>Sun, 7 Feb 2021 08:38:00 +0900</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7596912463310573257.post-7051402851848822139</guid><description>&lt;p&gt;&amp;nbsp;私はやはりコミュニケーションが出来ていない。&lt;/p&gt;&lt;p&gt;結局上司に私が考えていることを全て話し、上司に取捨選択してもらって、形にしてもらっています。それでも技術だけはほかの社員よりできるので、技術面だけでは上司には重宝がられている。&lt;/p&gt;&lt;p&gt;上司と話していると、下記のところを中心に質問されることが多い。&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;①情報&lt;/p&gt;&lt;p&gt;粒度の粒を合わせるレベルで聞かれる。具体的なことから抽象化されたことまで私が話した内容で漏れている部分を確認されることが多い。私も質問されてから、それが他の情報と対義であったり、反例であることに気が付いたりしています。&lt;/p&gt;&lt;p&gt;②要約&lt;/p&gt;&lt;p&gt;いろいろ確認された情報をグループ毎にまとめる。グループの仕方が私には思いつかないケースがとても多い。&lt;/p&gt;&lt;p&gt;③表現方法&lt;/p&gt;&lt;p&gt;グループ化した中で、一番重要な部分をピックアップし、相手にどうすれば伝わるかを考える。&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;毎回上記の繰り返しで上司とコミュニケーションが発生しています。大小の差はあります。今回は①を中心に確認されたなとか、今回は③だなとか、その時によって異なります。&lt;/p&gt;&lt;p&gt;毎回同じことだから、気が付けよと言われることはあるのですが、私にとっては毎回違うことなのです。①で確認されるとき、私のほうが情報の粒度は上司よりはるかに細かい。たぶん細かすぎて、私も動けなくなっています。&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;というわけで、①から③を適宜確認していただく支援を日常で受けています。&lt;/p&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>10年勤めました</title><link>http://waisu.asdj.org/2020/09/10.html</link><category>仕事</category><author>noreply@blogger.com (Unknown)</author><pubDate>Tue, 1 Sep 2020 22:08:00 +0900</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7596912463310573257.post-4389008105435894824</guid><description>&lt;p&gt;障害者枠で10年、同じところで10年、二桁同じ会社に勤めたことがございません。&lt;/p&gt;&lt;p&gt;初めてのことです。&lt;/p&gt;&lt;p&gt;ただ素直にうれしいです。&lt;/p&gt;&lt;p&gt;リカバリーとは何だろうと自分自身に問いかけを常にしながら、10年勤めあげました。&lt;/p&gt;&lt;p&gt;後10年で定年かしら？でも70年まで定年延ばすという話もありますし、リカバリーって何でしょう。&lt;/p&gt;&lt;p&gt;大学のときはこんなにつとめたくなかったな～。あと、20年か～&lt;/p&gt;&lt;p&gt;今は素直にうれしいです。&lt;/p&gt;&lt;p&gt;仕事も任される範囲増えたし、できる仕事も増えました。&lt;/p&gt;&lt;p&gt;診断前には出来なかった業務もできるようになりました。できなくて諦めても、他のできることを頑張ることで、カバーできることもありました。精神疾患を抱えた人の事例にもなりました。精神疾患だから採用できないということをいう人も減ったかなと思います。&lt;/p&gt;&lt;p&gt;発達障害、50歳だからと言って、成長しないわけではないということを感じています。&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;昨年は今までの中で最高の年収でした！&lt;/p&gt;&lt;p&gt;こういうことがあといくつ出るのでしょうか？&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;さてと、11年目が始まりました。&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>私の中で起きているコミュニケーションの問題点</title><link>http://waisu.asdj.org/2020/08/blog-post.html</link><category>ソーシャルスキル</category><category>仕事</category><category>私の困り感</category><author>noreply@blogger.com (Unknown)</author><pubDate>Sun, 30 Aug 2020 17:31:00 +0900</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7596912463310573257.post-4680625270563369542</guid><description>&lt;h2 style="text-align: left;"&gt;&amp;nbsp;Twitterでのコミュニケーションの問題点&lt;/h2&gt;&lt;h3 style="text-align: left;"&gt;　書かれたひとつのツイートだけ対応するケース&lt;/h3&gt;&lt;p&gt;　　相手からの返答がなかったり、定型文的な回答が返ってきたりする。&lt;/p&gt;&lt;p&gt;　　一応相手のそのツイートと私のリプライだけに絞ったら、会話は成立しているように見える。こちらはクソリプの類に分類されるだろう。&lt;/p&gt;&lt;p&gt;　　&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;　相手のプロフィールや過去のツイート、他の人と相手のやり取りから分析し、対応する&lt;/h3&gt;&lt;p&gt;　　プロフィールに書かれている年齢、趣味、趣向、興味、相手の過去のツイート、他の人と相手のやり取りから分析すると、相手の人となりがおぼろげながら、見えてくる。そして私とは接点のない人だなとか見えてきて、ツイートは出来ないなと思う。&lt;/p&gt;&lt;p&gt;　年齢が書いてある人は同世代と会いたい人が多いようだし、同好の趣味の人を探していることが多い。相手の過去のツイートから相手の気にしているポイントがおぼろげながらにみえてくる。他人とのやり取りを見ていると、盛り上がるときと盛り上がらないときも見えてくる。たいていここまで調べると、私とは合わないなとみえてくる、そして、リプライできなくなる。&lt;/p&gt;&lt;p&gt;そして私は話せない（リプライできない）ということになる。&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;&lt;h2 style="text-align: left;"&gt;仕事でのコミュニケーション&lt;/h2&gt;&lt;h3 style="text-align: left;"&gt;　提案時にお客様の仕事の仕方を分析できない。&lt;/h3&gt;&lt;p&gt;　　◆システムのメリット/デメリットなど技術面での一本調子になってしまう。&lt;/p&gt;&lt;p&gt;　　私の仕事内容は担当しているお客様にAzureの技術の紹介をすることです。新技術の紹介、WVD、Azure Arc 、Sentinel、Azure　IoTなどの紹介と導入をしてます。現在は社内でもお客様でも新しいAzure技術を知っている方があまりいないから、僕でも重宝がられていますが、この先Azureの使い手が増えたら、システム内容しか提案できない私はお払い箱になる可能性があると思っています。ここを変えていきたい。&lt;/p&gt;&lt;p&gt;　　◆相手の仕事を想像して、相手が受け取りやすい提案書を書くのが難しい。&lt;/p&gt;&lt;p&gt;　　結局、採用されるのは相手が導入したがっている提案書だし、もし採用されたとしても、相手の上長に分かりやすい資料を作り直すように要求される。私以外の人ならこういうやりとりを２，３回経験すれば、相手が要求してきそうな部分をいつのまにか理解できるみたいだ。しかし、&lt;span style="color: red;"&gt;私はその修正ポイントが何回経験してもわからないのです。&lt;/span&gt;&lt;/p&gt;&lt;p&gt;　　&lt;/p&gt;&lt;h3 style="text-align: left;"&gt;　ネゴシエーションについて&lt;/h3&gt;&lt;p&gt;　　以前から苦手としているが、この頃特にこのスキルが必要な場面が増えているので、何らかの改善策を求められている。まだそれが見つからない。今のところ浮かんでいるポイントはこんな感じ。&lt;/p&gt;&lt;p&gt;　　●相手（この場合お客様）の落しどころ&lt;/p&gt;&lt;p&gt;　　　同じような立場の同僚にアドバイスを求めると他の人は専属しているお客様のニーズを把握し、相手や相手の上長が納得できるポイントが想像つくらしい。しかし、私はもう2年以上担当しているお客様であっても、&lt;span style="color: red;"&gt;相手の落しどころが全くわからない。&lt;/span&gt;&lt;/p&gt;&lt;p&gt;　　●こちら（社内のチーム）のステータス&lt;/p&gt;&lt;p&gt;　　　僕の現在の立場は、自分が属するチームの他のメンバーたちの余力を計算しながら、いつまでになにができるかを返答する必要がある。しかもそれをリアルタイムで返答する必要がある。間違えたら、チームが赤字となる。（今担当しているプロジェクトだと、1億円以上の案件のため、赤字も相当額となる。）&lt;/p&gt;&lt;p&gt;　　　相手（お客様）と話していく中で下記のように物事は推移していく。&lt;/p&gt;&lt;p&gt;　　　　A→B→C→B´→D&lt;/p&gt;&lt;p&gt;　　　しかし私は以前から抱えていた&lt;span style="color: red;"&gt;『Dの状態であるときにBを想定した発言をしてしまう』&lt;/span&gt;という問題を未だに修正しきれていない。幸い現在は相手や営業、同僚などが即座に修正してきてくれているので、大問題にはなっていないが、このままでは今担当しているより大きな案件は任されないだろうという危機感をもっている。だからなんとかしたい。&lt;/p&gt;&lt;p&gt;　&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>正社員になりました~</title><link>http://waisu.asdj.org/2019/11/blog-post.html</link><category>仕事</category><author>noreply@blogger.com (Unknown)</author><pubDate>Sat, 23 Nov 2019 09:26:00 +0900</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7596912463310573257.post-4998033682223195774</guid><description>&lt;div style="background-color: white; color: #1c1e21; font-family: Helvetica, Arial, &amp;quot;hiragino kaku gothic pro&amp;quot;, meiryo, &amp;quot;ms pgothic&amp;quot;, sans-serif; font-size: 14px; margin-bottom: 6px;"&gt;
月額30円から月額30万円へ&lt;/div&gt;
&lt;div style="background-color: white; color: #1c1e21; font-family: Helvetica, Arial, &amp;quot;hiragino kaku gothic pro&amp;quot;, meiryo, &amp;quot;ms pgothic&amp;quot;, sans-serif; font-size: 14px; margin-bottom: 6px; margin-top: 6px;"&gt;
この10年間を振り返りました。&lt;br /&gt;最初は月額30円から始まった。b型支援から障害者枠の契約社員から正社員に変わり時間が10年かかりました。&lt;/div&gt;
&lt;div class="text_exposed_show" style="background-color: white; color: #1c1e21; display: inline; font-family: Helvetica, Arial, &amp;quot;hiragino kaku gothic pro&amp;quot;, meiryo, &amp;quot;ms pgothic&amp;quot;, sans-serif; font-size: 14px;"&gt;
&lt;div style="font-family: inherit; margin-bottom: 6px;"&gt;
b型の仕事がないこと、さらに奪われた感覚になった。就労活動し会社から落ちる度に、支援者からあなたにむく仕事はないと言われ続けたこと。月額30円は私の自尊心をさらに奪った。&lt;br /&gt;105社目でようやく入社した障害者枠でも精神疾患を抱えた人をどう扱っていいかわからず、現場の人達の困った顔。&lt;/div&gt;
&lt;div style="font-family: inherit; margin-bottom: 6px; margin-top: 6px;"&gt;
身体障害者は正社員にするけど、精神疾患の障害者には正社員にしないことが合理的配慮と言われる&lt;/div&gt;
&lt;div style="font-family: inherit; margin-bottom: 6px; margin-top: 6px;"&gt;
2年越しの話し合いの上、正社員になり、今の給料体系になりました。精神疾患の障害者枠の正社員率を0パーセントか少なくても1人の実績になった。&lt;/div&gt;
&lt;div style="font-family: inherit; margin-bottom: 6px; margin-top: 6px;"&gt;
長かった。ひたすら長かった。10年前には絶望しかなかった。&lt;/div&gt;
&lt;div style="font-family: inherit; margin-bottom: 6px; margin-top: 6px;"&gt;
今はまだまだできることがあると思えることがある。&lt;/div&gt;
&lt;div style="font-family: inherit; margin-bottom: 6px; margin-top: 6px;"&gt;
自分はまだまだ変われる。変わりたい。&lt;/div&gt;
&lt;div style="font-family: inherit; margin-bottom: 6px; margin-top: 6px;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="font-family: inherit; margin-bottom: 6px; margin-top: 6px;"&gt;
いや、今が幸せかもだと思い始めています。もう変わりたくない、このままでいたいという気持ちがつよくなりつつあります。&lt;/div&gt;
&lt;/div&gt;
</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>私のリカバリーストーリ</title><link>http://waisu.asdj.org/2018/08/blog-post_31.html</link><category>大人（成人）アスペルガー症候群ブログ</category><author>noreply@blogger.com (黒岩堅)</author><pubDate>Fri, 31 Aug 2018 21:15:00 +0900</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7596912463310573257.post-5329906967765368427</guid><description>&lt;div style="background-color: white; color: #1d2129; font-family: Helvetica, Arial, &amp;quot;hiragino kaku gothic pro&amp;quot;, meiryo, &amp;quot;ms pgothic&amp;quot;, sans-serif; font-size: 14px; margin-bottom: 6px;"&gt;
私、けんのリカバリーストーリをまとめてみました。&lt;/div&gt;
&lt;div style="background-color: white; color: #1d2129; font-family: Helvetica, Arial, &amp;quot;hiragino kaku gothic pro&amp;quot;, meiryo, &amp;quot;ms pgothic&amp;quot;, sans-serif; font-size: 14px; margin-bottom: 6px; margin-top: 6px;"&gt;
幼稚園の頃から違和感を抱きながら、生きてきました。&lt;br /&gt;友人もいませんでした。そしていじめにも何回も受けてきました。&lt;/div&gt;
&lt;div class="text_exposed_show" style="background-color: white; color: #1d2129; display: inline; font-family: Helvetica, Arial, &amp;quot;hiragino kaku gothic pro&amp;quot;, meiryo, &amp;quot;ms pgothic&amp;quot;, sans-serif; font-size: 14px;"&gt;
&lt;div style="font-family: inherit; margin-bottom: 6px;"&gt;
いじめられている最中の私はここにいる私は私ではないと一生懸命言い聞かせました。&lt;br /&gt;幸い多少記憶力はよかったので、大学にはいけました。が仕事はさっぱりできませんでした。&lt;br /&gt;７回の転職をし、７社目ではリストラされました。それは３９歳の時でした。&lt;br /&gt;そして私はリストラされるときに会社の部長からこんなことを言われました。「幼稚園児や小学生でもできることがお前には出来ない、お前は決して成長しない、お前は絶対発達障害だから病院に行ってほしい。」&lt;/div&gt;
&lt;div style="font-family: inherit; margin-bottom: 6px; margin-top: 6px;"&gt;
リストラされたときに会社に依存していた私は全ての人のつながりが切れました。&lt;br /&gt;残ったのは絶望だけでした。このときに主治医にWrapの本をいただいたのですが、そのまま肥やしになっていました。&lt;br /&gt;３カ月ほど家に引きこもりました。障害者手帳も取れたので、失業手当をもらえるという話を聞き、今までがんばったんだから、もらえるものはもらっておこうともらいに行きました。&lt;br /&gt;ひと月に１件求人情報を検索すればよかったのです。それだけで毎月失業手当がもらえる。&lt;/div&gt;
&lt;div style="font-family: inherit; margin-bottom: 6px; margin-top: 6px;"&gt;
リストラされた当時は運よく精神の障害者が障害者雇用率に算入してもよいときでした。&lt;br /&gt;私はどんな会社があるのだろうと、仲間たちと就労の情報交換をしながら、私は１０５社応募しました。今の会社に今でも継続しています。仲間たちと２次面接までいったなどの情報交換したのは有益なだけでなく、とても心の助けになりました。「１０社落ちる会社増えるたびにいい加減就労をあきらめなさい。もう４０歳なのだから、もう変わらないわよ。」と支援者や冷ややかな目でみた当事者たちに言われ続けました。そんなときにも就労を目指す人がいることは助けになりました。一緒に就労を目指す人たちがいたおかげで私は就活を目指せたんだと思います。&lt;/div&gt;
&lt;div style="font-family: inherit; margin-bottom: 6px; margin-top: 6px;"&gt;
なんとか１０５社目で内定をいただき、私の障害者就労は始まりました。&lt;br /&gt;ただ見た目は同じせいでしょうか？見えない障害だから、周りは健常者と同じようにうごくことを求められました。&lt;br /&gt;ストレスがたまり、支援者ももう諦めなさいばかりでなんの支援にもならず、AC、当事者研究、NLP、コーチング、CBT、サイコドラマ、SST、そして最後にWrapを試しました。Wrapに合うまで自分の希望はなかったし、権利擁護をすることもなかった。もめそうになったら、私なんかと思って、譲っていました。&lt;/div&gt;
&lt;div style="font-family: inherit; margin-bottom: 6px; margin-top: 6px;"&gt;
Wrapで試行錯誤しながら、NAVAのピアサポ祭り、関東当事者研究交流集会などでさまざまな当事者のリカバリーストーリーを聞くことが私へのヒントとなりました。&lt;br /&gt;いろいろ試行錯誤し、５つの大切なこと（希望がないまま）が決まり、もうこれ以上は変わらないだろうと思っていました。Wrapも日々こなしていく中で、&lt;br /&gt;今は人とのつながりを感じられることで、希望の感覚を感じるようになり、Wrapを日々研鑽していくようになりました。&lt;br /&gt;すると、今まで固定していた５つの大切なことが変わり始めました。今まで独立していた５つの大切なことがお互いに作用し、影響しあうようになりました。&lt;/div&gt;
&lt;div style="font-family: inherit; margin-bottom: 6px; margin-top: 6px;"&gt;
50近くになった私でもまだ変わることができるんだ。「幼稚園児や小学生でもできることがお前には出来ない、お前は決して成長しない、お前は絶対発達障害だから病院に行ってほしい。」と前の会社の部長から言われました呪縛から解放された瞬間でした。&lt;/div&gt;
&lt;div style="font-family: inherit; margin-bottom: 6px; margin-top: 6px;"&gt;
変化できる自分、成長できる自分が私にとっての希望の感覚になりつつあります。今後私はどんな変化をするのだろう？私は今まだリカバリーの途中です。今後の私が楽しみでもあります。&lt;/div&gt;
&lt;/div&gt;
</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>私のコミュニケーションの出来なさ加減</title><link>http://waisu.asdj.org/2018/08/blog-post.html</link><category>私の困り感</category><author>noreply@blogger.com (黒岩堅)</author><pubDate>Tue, 7 Aug 2018 10:36:00 +0900</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7596912463310573257.post-4866341721532762179</guid><description>最初はリストラされたときに上司から「お前は何を言っているかわからない」から私のコミュニケーションへの興味始まった。&lt;br /&gt;
&lt;br /&gt;
障害者枠で働く前に少し前に多少コミュニケーションの仕方を工夫した。キーワードから別の話に飛ぶところを抑え込む訓練、つまり失敗をできる限り隠す訓練をしました。&lt;br /&gt;
&lt;br /&gt;
A「昨日の広島での打ち合わせ結果をまとめておいてくれ。」&lt;br /&gt;
私「そういえば、広島カープ負けが続いていますね。」&lt;br /&gt;
A「・・・」&lt;br /&gt;
&lt;br /&gt;
正直こういうこともあった。&lt;br /&gt;
こういうミスを減らすため、わざとワンテンポ遅らせて話の流れを確認後発言するように心がけた。&lt;br /&gt;
&lt;br /&gt;
こういうミスを減らすだけで、私のコミュニケーション力のなさを見つけられないようになった。まずはミスの削減からアプローチしました。&lt;br /&gt;
&lt;br /&gt;
しかし仕事場ではまだまだ難しい問題に直面しました。&lt;br /&gt;
会社としては実験の一環だったのだろう。&lt;br /&gt;
お客様の営業に同行することになった。私がサービスの説明をするのだが、お客様に一方的に話すだけとなり、営業にあとで怒られることになった。&lt;br /&gt;
営業に下記の指摘を受けた。&lt;br /&gt;
お客様がまゆげの辺りが一部ぴくっとなったときにもっと緩急をつけて詳しく説明して欲しかった。ほかにも興味なさそうな目になったときは端折って欲しかった。もう少しお客様の欲しがるものを探そうよ。&lt;br /&gt;
&lt;br /&gt;
恥ずかしいことかもしれないが、私には目や眉毛の動きを全く見ていなかった。&lt;br /&gt;
&lt;br /&gt;
そこで今度はHOLOLENSをつけて相手の表情や顔と名前の一致を支援していただいた。&lt;br /&gt;
顔と名前の一致はかなり楽だった、相手の名前を今まで会話している間に思い出せなかったことは何回もあるからだ。&lt;br /&gt;
&lt;br /&gt;
しかし表情の変化がわかるようになったのは新たな苦悩をもたらした。&lt;br /&gt;
表情の喜怒哀楽はわかるようになった。しかし、私の認知特性のせいか、HOLOLENSが通知したタイミングの前後5秒のどれが相手に影響を与えたのか全くわからないのだ。&lt;br /&gt;
通知する前に決まっているだろうという人もいると思うけど、通知に気が付くまでに若干時間がかかるため、通知後の５秒というのはリアルタイムではなく、会話が終わった後の分析結果としてわかるのだ。&lt;br /&gt;
表情がわかることで前後５秒にこだわることもさらなる問題をもたらした。今までできていた。会話の流れを無視した発言、矛盾している発言について気が付かなかったのだ。おそらく10秒に集中しすぎてしまった結果だろう。私の脳の処理はここらあたりが限界なのかもしれない。&lt;br /&gt;
&lt;br /&gt;
結局HOLOLENSで怒りや悲しみの感情を通知してきたら、黙るという選択肢しか私には残らなかった。&lt;br /&gt;
&lt;br /&gt;
AIで私の支援をするかどうかということも検討されたが、コンピュータのリソースとAI技術者の確保が難しいということで見送りとなった。&lt;br /&gt;
&lt;br /&gt;
結局私の問題点は&lt;span style="color: red;"&gt;&lt;b&gt;表情、会話、会話のトーン&lt;/b&gt;&lt;/span&gt;を結び付けて適切な会話をしていないということになった。&lt;br /&gt;
&lt;br /&gt;
結局ぼろを出さないためにはできる限り話さないこと、ワンテンポ遅らせて考えてから発言することが最良の選択となった。&lt;br /&gt;
AIの進歩、コンピュータの進歩がもっと早く進むことを私は望んでいます。&lt;br /&gt;
&lt;br /&gt;
私を助けてください。</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>海外のアスペルガーサポートグループによるSST</title><link>http://waisu.asdj.org/2018/07/sst.html</link><category>アスペルガーサポートグループ</category><author>noreply@blogger.com (黒岩堅)</author><pubDate>Wed, 4 Jul 2018 11:43:00 +0900</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7596912463310573257.post-8436005712795917306</guid><description>&amp;nbsp;海外のアスペルガーはどうしているんだろうと思って探してみました。&lt;br /&gt;
結構サポートグループとありますね。今ひとつひとつ読んでいるので、 分かり次第アップしていきたいと思います。ソーシャルスキルにフォーカスを当てる人が多いですね。&lt;br /&gt;
特にノンバーバルコミュニケーションにも注目しています。&lt;br /&gt;
&lt;br /&gt;
意訳しているので、間違っているかもしれませんが、一部抜粋しました。&lt;br /&gt;
こういうのも確かに必要だなと感じています。&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://www.adultaspergerschat.com/2012/01/social-skills-training-for-adults-with.html?spref=bl"&gt;Chat for Adults with HFA and Aspergers: Social Skills Training for Adults with Aspergers a...&lt;/a&gt;: Social skills are the skills we have to get along with others. Often times, we take our social skills for granted without realizing all t...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
ソーシャルスキルとは、他者と一緒に暮らしていくスキルです。しばしば、私たちは家族、友人、同僚などと交流するときに使用する複雑なスキルをすべて理解することなく、&lt;span style="font-size: 13.2px;"&gt;ソーシャルスキル&lt;/span&gt;を当然のものとして受け入れています。これらのスキルのいくつかは非常に基本的です（例えば、こんにちは、笑顔、目を見張るなど）。他はより複雑です（例えば、交渉、紛争解決など）。大人のアスペルガーは、社会的スキルを簡単かつ素早く学びますが、他の人は、社会的なやりとりをより困難に感じ、社会的スキルを意識​​的に発達させる必要があるかもしれません。&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
Aspergersの大人にとっては、ソーシャルスキルはいくつかの理由から重要です。優れた社会的スキルを持つアスペルガーは、社会的に熟練していない同輩よりも自然に普及しています。つまり、生活の困難に遭遇したときに電話するのがより効果的です。また、好きな人は、社会的強化（つまり、他人からのメッセージが価値あるものであること）を増やすため、自尊心が高くなる傾向があり、厳しい時代にも役立ちます。&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
成人アスペルガーは、しばしば社会的困難、社会的拒絶、および対人関係の問題を経験する。このような否定的な対人的アウトカムは、感情的苦痛および苦しみを引き起こす。彼らはまた、共病的気分および不安障害の発症に寄与しているようである。&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
アスペルガー症候群は「見えない障害」であり、しばしばその病気に精通していない人には認識されないので、アスペルガー症候群の結果である社会的に不適切な行動は、しばしば他の原因によるものである（すなわちこれらの行動、自己中心主義的、無責任な、怠惰な、嫌悪感のある、そして他の多くの否定的な性格の属性として）時間が経つと、そのような否定的なラベルはAspieの社会的拒絶につながる。社会的拒絶は、アスペルガーを持つ多くの成人の生活の中で感情的痛みを引き起こし、人生全体にわたって混乱を招き、自尊心を低下させる可能性があります。関係/結婚において、「不適切な」社会的行動は、最終的には「燃え尽き」し、関係/結婚をあきらめる可能性のある神経親族のパートナー/配偶者を怒らせる可能性があります。&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
アスペルガー、アスペルガーと彼らの重要な人々、そして友人と一緒にアスペルガーを教育すること、そしてそれが社会的スキルや対人行動に影響を与える方法は、紛争と責任の多くを緩和するのに役立ちます。同時に、アスペルガーを抱える人は、社会的スキルの分野でできるだけ熟練する戦略を学ぶ必要があります。適切な評価、治療、教育をすれば、アスペルガーを持つ成人は、他の人と効果的に交流することができます。&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
社会生活。&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
ソーシャルスキルは、一般に偶発的な学習を通して獲得されます：人々を見て、他者の行動をコピーし、練習し、フィードバックを得る。ほとんどの人は幼い頃にこのプロセスを開始します。ソーシャルスキルは「大人の遊び」や他の幼年時代の活動を通じて実践され、磨かれています。社会的相互作用の細かい点は、観察と仲間のフィードバックによって鋭くなります。&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
アスペルガーを持つ子供たちは、しばしばこれらの詳細を見逃します。彼らは適切なものを少しずつ拾い上げるかもしれないが、社会的期待の全体像を欠いているかもしれない。残念なことに、大人として、彼らはしばしば「何か」が欠けていることを認識しますが、その「何か」が何であるかは決して確かではありません。&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
社会的受容は渦巻きのように見える。適切な社会的スキルを発揮する個人は、相互作用する人々からより多くの承認を得られ、さらに優れた社会的スキルを育成することが奨励されます。アスペルガーを持つ人にとって、らせんはしばしば下向きになる。彼らの社会的スキルが不足していると仲間拒否が起こり、社会スキルを学ぶ機会が制限され、拒絶反応が増えます。社会的処罰には、拒絶、回避、他人への不満を表明する微妙な手段が含まれます。&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
人々は、しばしば、違反している個人に、社会的違反の性質を知らせさせないことに注意することが重要です。「社会的スキルの誤り」が行われていることを指摘することは、しばしば社会的に不適切であると考えられている。したがって、Aspiesは、改善が必要な分野を正確に理解することなく、ソーシャルスキルを向上させようとしていることが多いです。&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
&lt;b&gt;特定の社会的スキル -&lt;/b&gt;&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
•瞬間的な注意の喪失は、アスペルガーが社会的相互作用において重要な情報を欠いている大人をもたらす可能性がある。「正午に公園で会いましょう」という単純な文章が単に「正午に会いましょう」となった場合、Aspergersのリスナーは会議の場所に関する重要な情報を失います。聴取者が意図的に注意を払っていないと信じて、会議が開催される場所を聞いたときに話者が不満を感じたり、迷惑になることがあります。さらに悪いことに、Aspergersを持つ個人は、パートナーの混乱や怒りを引き起こして間違った場所に行きます。残念なことに、スピーカーとリスナーは、あまりにも遅くなるまで重要な情報が失われていることを認識しないことがよくあります。&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
•行動は言葉よりも大きく話す。&lt;br /&gt;
もし誰かの言葉が一つのことを言うが、その行動が別のものを明らかにするならば、彼らの行動が本当の気持ちを明らかにするかもしれないと考えることは賢明でしょう。&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
•他人が何をしているかに注意してください。&lt;br /&gt;
適切な行動、ドレス、座席、駐車場などの手がかりを見てください。&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
•彼らの言葉をよりよく理解するために、ボディーランゲージ、声色、行動、または誰かの目の表情に注意してください。&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
•この隠された言語を手助けするためのガイドを探してください。現実の理解と現実の理解を比較してください。不一致がある場合は、他の人の解釈を試して、何が起こるかを見たいと思うかもしれません。&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
•丁寧な行動を解釈する方法を学ぶ。丁寧な行動は、しばしば実際の気持ちを隠す。&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
•サブテキストをよりよく検出するために、単語の選択肢を見てください。（「私は行きたい」とはおそらくイエスを意味する。「もしあなたがしたいのなら、おそらくそうではないが、私はそれをするだろう」）&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
•あなたの環境で、サブテキストを解読するのに役立つ手がかりを探します。代替可能性に留意してください。観察してください。&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
アスペルガーとの多くの社会的スキルの難しさには、微妙なコミュニケーションのニュアンスが欠けています。Aspergersを持っている人は、しばしば "行間を読む"か、またはサブテキストを理解するのが難しいでしょう。サブテキストとその人物が本当に意味するものを認識する必要がなくなり、会話のテキストにほとんどの時間を費やすことは難しいです。残念ながら、言われていることはしばしば実際には意味されていないものです。&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
&lt;b&gt;治療戦略 -&lt;/b&gt;&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
強化が必要なソーシャルスキル分野が特定されたら、アスペルガーがどのように社会的スキルに影響を与えるかを理解しているセラピストまたはコーチへの紹介を得ることが推奨される。ソーシャルスキル訓練には、通常、セラピストが運営するソーシャルスキルグループなどの安全な環境での指導、モデリング、ロールプレイング、およびフィードバックが含まれます。さらに、適切な瞬間に正しい社会行動を使用するためには、リマインダを提供する環境を整えることが不可欠であることが証明されています。これらの知見は、アスペルガーが社会的スキルに取り組むことを希望する成人は、効果的な介入を求める際に以下の要素を考慮する必要があることを示唆している。これらの治療戦略は、経験的研究ではなく、臨床実践に基づいた提案であることに注意することが重要です。&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
1.アスペルガーの成人は積極的な姿勢を持ち、社会的スキルの向上に開放的でなければならない。他人が提供するフィードバックを公開し、感謝することも重要です。&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
2.アスペルガーを持つ大人は、自己評価と他人の評価に基づいて、一度に1つの目標を選んで作業することができます。一度に1つのスキルエリアに取り組むことで、次のスキルに進む前に各スキルを習得することができます。&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
3.社会交換理論によれば、人々は、その関係が彼らのニーズをいかにうまく満たすかに基づいて関係を維持する。人々は正確に「ソーシャルアカウンタント」ではありませんが、あるレベルでは、人々は人間関係にあることのコストと利益を判断します。アスペルガーを持つ成人は「高いメンテナンス」とみなされます。したがって、方程式のバランスをとるために、関係にもたらすことができるものを確認することは役に立ちます。誠実、正直、理解、忠実、真実、信頼できる、知性、信頼できる、思慮深く、思いやりのある、信頼できる、暖かい、親切な、フレンドリーな、幸せな、非利己的な、ユーモラスな、責任感、明るい、そして信頼できる。嗜好性の特性を開発したり改善したりすれば、社会的地位を高めることができます。&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
4.社会的スキルと改善が必要な分野を理解していると、しばしば社会的スキルが大幅に向上することがあります。社会的スキル訓練のテーマに関する本を読むことは、その知識の一部を提供することができます。&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
5.アスペルガーを持つ成人は、他の人が彼らがするために学ぶ必要があることを見て、多くのことを学ぶことができます。彼らはこの分野で成長するのを助けるために、職場でも個人的な生活でもモデルを選択してみたいと思うかもしれません。テレビはまた、ロールモデルを提供し得る。&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
6.アスペルガーを抱える成人は、プロンプトを使用して、特定のソーシャルスキル目標に集中することができます。プロンプトは視覚的（索引カード）、言葉遣い（誰かが静かであることを伝える人）、物理的（静かであることを思い出させる4分ごとに振動する時計を設定する）、またはジェスチャー（誰かが頭をこすります）彼らの社会的スキルに取り組む。&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
7.アスペルガーを持つ個人がフィードバックを受け、結果として社会的スキルを向上させるためには、他者と必要なスキルを練習することが良い方法です。&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
8.会話中に欠落している情報で苦労している人は、聞いたことを他の人と確認するシステムを開発すれば恩恵を受けるかもしれません。"あなたはそれを言うと聞きました。私はそれを正しくしましたか？それ以上はありますか？"&amp;nbsp;または、Aspergersを持つ個人は、重要な情報を提供した後、他の人に確認を依頼することができます。"あなたが私の言うことを聞いたことを教えてください。"&amp;nbsp;このようにして、不注意による社会的誤りを回避することができる。&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
9.ビジュアライゼーションを使用して、追加のプラクティスを獲得し、他の設定でスキルを適用する能力を向上させることができます。社会的スキルで練習を必要とする人は、自分が何をしたいのかを決めることができ、自分の心でそれをリハーサルし、実際に彼らが実際にやり取りする人と一緒になるでしょう。彼らはできるだけ多くの時間これを繰り返すことで、スキルを「過剰に学ぶ」ことができます。このようにして、彼らは「本当の」世界で経験を得ることができ、成功の可能性を大きく高めます。&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
&lt;b&gt;&lt;i&gt;ソーシャルスキルは、他の種類のスキルと同様です。彼らは学ぶことができます。あなたのソーシャルスキルを向上させる必要があるかどうかをどのように知っていますか？&amp;nbsp;&lt;/i&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;ul style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; line-height: 1.4; margin: 0.5em 0px; orphans: 2; padding: 0px 2.5em; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
&lt;li style="margin: 0px 0px 0.25em; padding: 0px; text-indent: 0px;"&gt;あなたはもっと友達がいてもらいたいと思っていますが、それらを作る方法を知りませんか？&lt;/li&gt;
&lt;li style="margin: 0px 0px 0.25em; padding: 0px; text-indent: 0px;"&gt;あなたは自分を「孤独」と思いますか？&lt;/li&gt;
&lt;li style="margin: 0px 0px 0.25em; padding: 0px; text-indent: 0px;"&gt;あなたはサポートが必要なときに誰にも向かわないような気がしますか？&lt;/li&gt;
&lt;li style="margin: 0px 0px 0.25em; padding: 0px; text-indent: 0px;"&gt;あなたはしばしば他の人の周りに不快感を感じますか？&lt;/li&gt;
&lt;li style="margin: 0px 0px 0.25em; padding: 0px; text-indent: 0px;"&gt;あなたは時々何を言わなければならないのか分かりませんか？&lt;/li&gt;
&lt;li style="margin: 0px 0px 0.25em; padding: 0px; text-indent: 0px;"&gt;あなたはむしろ恥ずかしがる人だと思っていますか？&lt;/li&gt;
&lt;/ul&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
これらのいずれかに「はい」と答えた場合は、あなたの社会的スキルに取り組むことで利益を得ることができます。以下は、基本的な社会的スキルのリストです。改善が必要な分野をメモしておいてください。これらの分野のそれぞれについて、後の記事で詳しく説明します。&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
ここでは、日常的に会話や人との交流に関わる簡単なスキルを紹介します。&lt;/div&gt;
&lt;ul style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; line-height: 1.4; margin: 0.5em 0px; orphans: 2; padding: 0px 2.5em; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
&lt;li style="margin: 0px 0px 0.25em; padding: 0px; text-indent: 0px;"&gt;基本的な礼儀正しさ（例えば、「してください」、「ありがとう」、「こんにちは」、「さようなら」など）&lt;/li&gt;
&lt;li style="margin: 0px 0px 0.25em; padding: 0px; text-indent: 0px;"&gt;頻繁な目の接触をする&lt;/li&gt;
&lt;li style="margin: 0px 0px 0.25em; padding: 0px; text-indent: 0px;"&gt;「自信がある」身体言語を表示する（例：開かれた直立姿勢、喘鳴やひねりなどではない）&lt;/li&gt;
&lt;li style="margin: 0px 0px 0.25em; padding: 0px; text-indent: 0px;"&gt;他人への興味を示すこと（例えば、彼らの日がどのようだったか、彼らが試験でやったと思ったことなど）&lt;/li&gt;
&lt;li style="margin: 0px 0px 0.25em; padding: 0px; text-indent: 0px;"&gt;人を挨拶したり話したりするときに笑う&lt;/li&gt;
&lt;/ul&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
他の人と話すときに使用するスキルは次のとおりです。&lt;/div&gt;
&lt;ul style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; line-height: 1.4; margin: 0.5em 0px; orphans: 2; padding: 0px 2.5em; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
&lt;li style="margin: 0px 0px 0.25em; padding: 0px; text-indent: 0px;"&gt;いつ個人情報を開示するのか、そうでないのかを知る&lt;/li&gt;
&lt;li style="margin: 0px 0px 0.25em; padding: 0px; text-indent: 0px;"&gt;他の人が何を言っているのか聞いて、興味を示している&lt;/li&gt;
&lt;li style="margin: 0px 0px 0.25em; padding: 0px; text-indent: 0px;"&gt;うなずきながら笑って、あなたが守っていることを示す&lt;/li&gt;
&lt;li style="margin: 0px 0px 0.25em; padding: 0px; text-indent: 0px;"&gt;小さな話、または重要でないことについてチャットできる&lt;/li&gt;
&lt;li style="margin: 0px 0px 0.25em; padding: 0px; text-indent: 0px;"&gt;話すときに交代する&lt;/li&gt;
&lt;li style="margin: 0px 0px 0.25em; padding: 0px; text-indent: 0px;"&gt;ユーモアを使う&lt;/li&gt;
&lt;/ul&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
友情を作り、維持するための多くのスキルがあります：&lt;/div&gt;
&lt;ul style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; line-height: 1.4; margin: 0.5em 0px; orphans: 2; padding: 0px 2.5em; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
&lt;li style="margin: 0px 0px 0.25em; padding: 0px; text-indent: 0px;"&gt;アプローチスキル（例えば、上手く行くことができず、あなたが知らない人やよく知らない人と話し始めることができる）&lt;/li&gt;
&lt;li style="margin: 0px 0px 0.25em; padding: 0px; text-indent: 0px;"&gt;意思決定を分かち合う（例えば、常に自分の道を持っていると主張するのではなく、何をすべきか、どこに行くかなどについて交渉するなど）&lt;/li&gt;
&lt;li style="margin: 0px 0px 0.25em; padding: 0px; text-indent: 0px;"&gt;適切な愛情と感謝を示す&lt;/li&gt;
&lt;li style="margin: 0px 0px 0.25em; padding: 0px; text-indent: 0px;"&gt;連絡先の維持（例えば、友人関係を維持するために他人に「すべての仕事をする」ことを期待しない）&lt;/li&gt;
&lt;li style="margin: 0px 0px 0.25em; padding: 0px; text-indent: 0px;"&gt;支持的です（たとえば、あなたの友人が苦労しているときに懸念を表明するなど）&lt;/li&gt;
&lt;li style="margin: 0px 0px 0.25em; padding: 0px; text-indent: 0px;"&gt;距離と接近を許す（人々は時間だけでなく一緒に時間を必要とする）&lt;/li&gt;
&lt;li style="margin: 0px 0px 0.25em; padding: 0px; text-indent: 0px;"&gt;思いやり（例えば、あなたの友人のためにすることが良いことであるかもしれないことについて「先を考える」）&lt;/li&gt;
&lt;/ul&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
共感とは、自分自身を他人の靴に入れ、自分の気持ちを認識できることを意味します。それは同情や「誰かにごめんなさい」と同じではありません。共感は、他人が感じていることに理解して思いやりのあるやり方で反応しています。共感スキルは次のとおりです。&lt;/div&gt;
&lt;ul style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; line-height: 1.4; margin: 0.5em 0px; orphans: 2; padding: 0px 2.5em; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
&lt;li style="margin: 0px 0px 0.25em; padding: 0px; text-indent: 0px;"&gt;特定の状況で他人が感じていることを認識できること&lt;/li&gt;
&lt;li style="margin: 0px 0px 0.25em; padding: 0px; text-indent: 0px;"&gt;他人の苦しみに懸念を表明する&lt;/li&gt;
&lt;li style="margin: 0px 0px 0.25em; padding: 0px; text-indent: 0px;"&gt;他人の気持ちに気づく&lt;/li&gt;
&lt;li style="margin: 0px 0px 0.25em; padding: 0px; text-indent: 0px;"&gt;コミュニケーションの際に他の人の気持ちを感知する（例えば、批判が必要な場合や批判的である場合に批判的な意見を述べる場合に触れる）&lt;/li&gt;
&lt;/ul&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
ソーシャルインタラクションが常にスムーズに実行されるわけではありません。競合解消スキルは次のとおりです。&lt;/div&gt;
&lt;ul style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; line-height: 1.4; margin: 0.5em 0px; orphans: 2; padding: 0px 2.5em; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
&lt;li style="margin: 0px 0px 0.25em; padding: 0px; text-indent: 0px;"&gt;主張性（例えば、あなたが積極的でなくても個人的なものでなくても何を感じているかを言うことができる）&lt;/li&gt;
&lt;li style="margin: 0px 0px 0.25em; padding: 0px; text-indent: 0px;"&gt;交渉のスキル（例えば、穏やかかつ合理的に紛争を議論し、解決策について合意に達することができる）&lt;/li&gt;
&lt;/ul&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
社会的スキルを学ぶための原則：&lt;/div&gt;
&lt;ul style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; line-height: 1.4; margin: 0.5em 0px; orphans: 2; padding: 0px 2.5em; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
&lt;li style="margin: 0px 0px 0.25em; padding: 0px; text-indent: 0px;"&gt;学習したいスキルを特定し、実際の行動、社会集団、状況、状況を指定します。&lt;/li&gt;
&lt;li style="margin: 0px 0px 0.25em; padding: 0px; text-indent: 0px;"&gt;ソーシャルスキルは、小さなステップで学習する必要があります（一度に1つか2つしかありません）。&lt;/li&gt;
&lt;li style="margin: 0px 0px 0.25em; padding: 0px; text-indent: 0px;"&gt;ソーシャルスキルは、ロールプレイの場面では最高の練習をしますが、実際のやりとりでは最高に学びます。&lt;/li&gt;
&lt;li style="margin: 0px 0px 0.25em; padding: 0px; text-indent: 0px;"&gt;可能な限り、他の人からの即時のフィードバックと強化を得てください。&lt;/li&gt;
&lt;li style="margin: 0px 0px 0.25em; padding: 0px; text-indent: 0px;"&gt;社会的スキルを学ぶには時間がかかる。&lt;/li&gt;
&lt;/ul&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style="-webkit-text-stroke-width: 0px; background-color: white; color: #222222; font-family: Arial, Tahoma, Helvetica, FreeSans, sans-serif; font-size: 13.2px; font-style: normal; font-variant-caps: normal; font-variant-ligatures: normal; font-weight: normal; letter-spacing: normal; orphans: 2; text-align: justify; text-decoration-color: initial; text-decoration-style: initial; text-indent: 0px; text-transform: none; white-space: normal; widows: 2; word-spacing: 0px;"&gt;
アスペルガーは確かに社会的関係にユニークな課題をもたらしますが、アスペルガーを持つ成人が社会的スキルを向上させるための情報とリソースが用意されています。この情報の大部分は健全な臨床実践と研究に基づいています。大人の社会的スキルとアスペルガーに関するより多くの研究が大いに必要です。読書、カウンセリング、コーチングを通して、そしてとりわけ社会的つながりを築き、維持して助けを求める。&lt;/div&gt;
</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>KINDLE　　5000冊突破したの～</title><link>http://waisu.asdj.org/2018/07/kindle5000.html</link><category>私の困り感</category><author>noreply@blogger.com (黒岩堅)</author><pubDate>Tue, 3 Jul 2018 21:03:00 +0900</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7596912463310573257.post-8938255387222391628</guid><description>久しぶりに書きます。

そのネタがとうとうKINDLEで5000冊突破してしまいました。
いくらつぎ込んだのでしょうか？

ほとんど積読だけという大変よろしくない傾向でございます～。

買い物依存の傾向ですね。

なんか私は本を買うと、満足してしまうんですよ。

たぶん、本を読んで得たであろう喜びを得た気分になるんでしょうね？

あほですよね。

僕の依存症の傾向の一つです。
他にもいろいろあるので、随時書いていきたいと思います。</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>発達障害は脳の障害なのに、なぜ脳の検査をしないのか？</title><link>http://waisu.asdj.org/2017/08/blog-post_27.html</link><category>大人（成人）アスペルガーブログ</category><author>noreply@blogger.com (黒岩堅)</author><pubDate>Sun, 27 Aug 2017 12:11:00 +0900</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7596912463310573257.post-1496488374244177252</guid><description>「発達障害は脳の障害なのに、なぜ脳の検査をしないのか？」という問いかけ、正直まだこういうレベルかという思いになった。&lt;br /&gt;
&lt;br /&gt;
私は脳にたまたま脳ほうというのが７つぐらいみつかりました。ちょうど言語中枢のあたりにね。で、それでコミュニケーションに影響がある程度だろうで、どういう風に影響があるかは自分で試すしかないわけで、脳のすべての機能が解明されたわけではないのに、脳の検査をもとめられたとしても、どうしようもないじゃないと思う。&lt;br /&gt;
&lt;br /&gt;
どういう脳が正しいのか？誰がわかるのだろう？&lt;br /&gt;
脳はまだ全てわかったわけじゃない。でもこう書くと、次に突っ込まれるのは脳がわからないなら、発達障害は脳の障害と言えるの？だろう。&lt;br /&gt;
&lt;br /&gt;
めんどくさい。&lt;br /&gt;
高次機能障害で脳の障害と理解してくれる人は多い。その症状と発達障害の症状は似ている部分がある。今困っている人を支援する方法考えたほうがいいとは思うんだが、、、&lt;br /&gt;
出てくる症状から発達障害かどうかを考え、支援方法を考える。それではだめなのだろうか？&lt;br /&gt;
&lt;br /&gt;
世の中は世知辛い。</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>大人のアスペルガーのコミュニティをみて</title><link>http://waisu.asdj.org/2017/08/blog-post.html</link><category>SST</category><author>noreply@blogger.com (黒岩堅)</author><pubDate>Wed, 9 Aug 2017 12:59:00 +0900</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7596912463310573257.post-5375699139714914533</guid><description>特に大人のアスペルガーソーシャルスキル関連のコミュニティをみてきました。&lt;br /&gt;&lt;br /&gt;ここのサイトが一番大きいらしい。&lt;br /&gt;とにかくパターンで解決できるものはパターンで解決し、ソーシャルスキルとするサイトです。有料会員しかみれない部分もあり、全体はみれませんが、参考になる部分は多いです。&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.improveyoursocialskills.com/how-to-learn-social-skills-with-aspergers"&gt;http://www.improveyoursocialskills.com/how-to-learn-social-skills-with-aspergers&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;ここも自己工夫の方法が記載されています。&lt;br /&gt;&lt;br /&gt;&lt;a href="http://www.adultaspergerschat.com/"&gt;http://www.adultaspergerschat.com/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;でこれらのことを私は日常生活管理プランにしたいと思っています。&lt;br /&gt;たとえば、他人の良いところを見つけるという日常生活管理プランは他人に意識が向き、見つからなくても相手の良いところを探そうとするので自然と暖かい気持ちになれます。&lt;br /&gt;
&lt;br /&gt;
他人の良いところを見つけるというのもSSTの一例としてありました。日本のSSTの内容とはかなり異なるので、違和感を感じる方は多いと思います。&lt;br /&gt;
&lt;br /&gt;
あくまでも私の軸はWRAPです。自分自身のWRAPをよりよく改善するためにSSTなどの考え方も自分に有効なら取り入れます。&lt;br /&gt;
&lt;br /&gt;
しばらくはSSTもブログに書いていくつもりです。&lt;br /&gt;
&lt;br /&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>発達障害者の社会参加への道のり</title><link>http://waisu.asdj.org/2017/07/blog-post_24.html</link><category>アスペルガー確定診断</category><author>noreply@blogger.com (黒岩堅)</author><pubDate>Sun, 6 Aug 2017 23:00:00 +0900</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7596912463310573257.post-8860966050481831633</guid><description>今から書くことはクローズで就労している当事者には評判が悪い方法です。&lt;br /&gt;
使える方法は障害者枠まで程度かな。これらをもっと支援する体制が欲しいところです。&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
最初はこれが有効だと思います。&lt;br /&gt;
・当事者会で他人のあるある話を聞く&lt;br /&gt;
・当事者研究で自分の困りごとを可視化する。&lt;br /&gt;
　　あるある話や自分の失敗談を話しながら、先いく人たちからの当事者語りを聞きながら、自分の困りごとを明らかにしていく。&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
オプション&lt;br /&gt;
・自分の困り事の中で不安が強い人はWRAPやCBTで自分自身の対応方法をまとめる。&lt;br /&gt;
&lt;a href="http://www.npo-osc.com/dl/?ctgr=5"&gt;・ICFに基づいた困り事を書く&lt;/a&gt;&lt;br /&gt;
自分助けが出来てきたかなというところで少しづつ負荷をかける&lt;br /&gt;
最初はボランティアやNPOなどの利害関係が発生しにくいところに参加します。&lt;br /&gt;
目標は週５日、もしくは５つ程度の団体、5日以下、５つ以下でも問題ないので、そこはご自身のバランスでご判断ください。&lt;br /&gt;
&lt;br /&gt;
就労したい人はA型やB型を試しながら、ｋａｉｅｎやペガサスだと就労できる可能性が高いかもA型は雇用保険がつくかどうかの20時間以内になることが多いです。&lt;br /&gt;
&lt;br /&gt;
東京キャリアアップで必要な講習受講するのがいいかなと思います。障害者手帳で無料もしくはテキスト代のみになります。&lt;br /&gt;
特に経理・経営・事務でビジネスに必要なコミュニケーション、ロジカルシンキングは必要かもしれません。ただ特性上習得できない人もいます。&lt;br /&gt;
http://hataraku.metro.tokyo.jp/school/carr_up/index.html&lt;br /&gt;
&lt;br /&gt;
DODAは給料安くてもいい人にはちょうど良い、いくらでも仕事を紹介してくれた。&lt;br /&gt;
あとは障害年金もご検討ください。&lt;br /&gt;
&lt;br /&gt;
こんな感じかしら。サポート体制がどういう形がいいかをもう少し考えてみたいと思います。</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">1</thr:total></item><item><title>コラージュ療法</title><link>http://waisu.asdj.org/2017/07/blog-post_30.html</link><category>wrap</category><author>noreply@blogger.com (黒岩堅)</author><pubDate>Sun, 30 Jul 2017 17:01:00 +0900</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7596912463310573257.post-735134585484678721</guid><description>コラージュ療法についてまとめてみました。&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;準備するもの&lt;/li&gt;
&lt;/ul&gt;
ハサミやカッター&lt;br /&gt;
お気に入りの雑誌の切り抜き、お気に入りのお菓子のパッケージ、折り紙、色画用紙、ポストカード、新聞(日本語、英字など)、旅行パンフレット、カラーペン、色鉛筆、クレヨン、モール、のり、セロハンテープ、お気に入りのキャラクターグッズ、ペットの写真、新聞の折り込みチラシ、シール、ふせん、自分で作ったものなどなど...。&lt;br /&gt;
&lt;ul&gt;
&lt;li&gt;方法&lt;/li&gt;
&lt;/ul&gt;
台紙となる用紙に決まりはありませんが、A4用紙を使う予定です。&lt;br /&gt;
&lt;br /&gt;
やり方としては、まず雑誌などから自分自身がセレクトした切り抜きを集め、その後用紙にその切り抜きを好きなように貼り付けていきます。&lt;br /&gt;
コラージュ作成のテーマですが、シンプルに雑誌の中から自分がテーマを決めて作っても良いです。&lt;br /&gt;
はじめての方には「自分が気になったもの」をテーマに作ります。&lt;br /&gt;
&lt;br /&gt;
完成後、コラージュの説明やどんな気持ちで作ったかをお一人づつ話していただきます。&lt;br /&gt;
&lt;br /&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>ミラーリングとは</title><link>http://waisu.asdj.org/2017/07/blog-post_29.html</link><category>余談</category><author>noreply@blogger.com (黒岩堅)</author><pubDate>Sat, 29 Jul 2017 09:03:00 +0900</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7596912463310573257.post-8272711842015843325</guid><description>ミラーリングについてもうちょっと書いておこうと思う。日本式のOJTが得意な人が多いんだわ。周りの動きをみて、すぐ何をすべきか言われなくてもわかって気がついたら動いている。周りからとてもすげーと思われ、高評価につながります。&lt;br /&gt;
でも、苦手なこともあります。説明してもらったり、説明したりできないのです。説明されても身体動かしたほうがわかる（ある意味職人気質）、周りの動きにあわせているだけなので、ある意味本能のまま動いています。本能で動いているので、説明できることなど何もないのです。&lt;br /&gt;
ミラーリングはとても仕事では重宝されます。でもそれは一作業員、リーダとしてのレベル、マネージャー側に立つと、できない人がどうして出来ないかが全くわかりません。&lt;br /&gt;
&lt;br /&gt;
職人、接客で力を発揮する人を多数見てきました。&lt;br /&gt;
たぶん、周りに合わせるけど、作業は単体というのがいいのだろうかとも思いました。&lt;br /&gt;
&lt;br /&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>自尊感情とは？！</title><link>http://waisu.asdj.org/2017/07/blog-post_34.html</link><category>wrap</category><author>noreply@blogger.com (黒岩堅)</author><pubDate>Fri, 28 Jul 2017 16:10:00 +0900</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7596912463310573257.post-6784735890597804141</guid><description>当事者会で他人に必要とされることで自尊感情が高まった気がするときがあります。&lt;br /&gt;でもそれは自尊感情ではなく、あくまでも他者評価です。&lt;br /&gt;当事者会の場合、参加者は任意です。自分の欲しい情報を得たら、他の社会とのつながりに変わる人もいます。&lt;br /&gt;他者評価だと、参加者に去られると、自尊感情が元に戻ってしまうことがあります。&lt;br /&gt;周りからみると、感情が激しい人と言われたり、医者からは双極性と言われたりすることもあります。&lt;br /&gt;&lt;br /&gt;では自尊感情とは何でしょうか？自分を大切にできることだと私は思っています。&lt;br /&gt;このあたりはWRAPにつながるところです。WRAPやる前は気恥ずかしくて言えなかったことです。自尊感情をしっかり持つと、なんとなくなんでも自分でできる、自己効力感が芽生えます。そこに根拠はありません。常に自己効力感が芽生えたなら、それは自尊感情がしっかり育っていると思います。&lt;br /&gt;&lt;br /&gt;一方他者評価による疑似的な自尊感情は長続きしません。当事者会を去るのもありだと思います。本当に友人だった人は当事者会を辞めても交流が続きます。去る人は当事者会が重要だったのであって、去る人にとってあなたが重要ではなかったと思います。&lt;br /&gt;&lt;br /&gt;自尊感情に向き合ってみませんか？まずは自分を大切にするところからはじめましょう</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>ニュージーランドの青年が身体拘束後、死亡した件</title><link>http://waisu.asdj.org/2017/07/blog-post_21.html</link><category>余談</category><author>noreply@blogger.com (黒岩堅)</author><pubDate>Fri, 21 Jul 2017 08:44:00 +0900</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7596912463310573257.post-4698954131692092608</guid><description>&lt;a href="https://www.facebook.com/mentalsurvivorchannel/photos/a.1703955633238040.1073741828.1700629326904004/1738839513082985/"&gt;【速報１　厚生労働省記者会見】をみて思うと、&lt;/a&gt;&lt;br /&gt;
僕のおじさんは、いや日本人が身体拘束後に死んでもニュースにならないけど、外国人はなるんだなということ。&lt;br /&gt;
&lt;br /&gt;
いや、もう一度おじさんが死んだ時に戻っても、どうだろうか？私はニュース記者などに言っただろうか？記者会見を開いただろうか？&lt;br /&gt;
&lt;br /&gt;
それよりももう２度と暴れられないとか、包丁を振り回されないとか安心感のほうが強くなかっただろうか？？？？&lt;br /&gt;
&lt;br /&gt;
私の中の差別意識に気がついた瞬間でもあった。 &lt;br /&gt;
</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>アメリカのFACEBOOKグループをみて</title><link>http://waisu.asdj.org/2017/07/facebook.html</link><category>余談</category><author>noreply@blogger.com (黒岩堅)</author><pubDate>Wed, 19 Jul 2017 12:58:00 +0900</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7596912463310573257.post-2002436522687348124</guid><description>ルールは斬新だったかなと思う。&lt;br /&gt;
&lt;br /&gt;
２通りに別れたと思う。愚痴をこぼすだけの当事者（男性当事者に多い）&lt;br /&gt;
&lt;br /&gt;
どう対応するかを考えたり、実践したりする当事者（女性当事者に多い気がする）&lt;br /&gt;
&lt;br /&gt;
NLP（ソーシャルスキルの実践という人も）を実践しようとしている当事者が多かった。小さい頃から顔などの非言語コミュニケーションに注目したことがなかったので、これから勉強すれば、改善するという人たちも多かった。実際に改善したと断言している人もいる。&lt;br /&gt;
&lt;br /&gt;
NLPは本当に出来るんだろうか？私は何度か試したが、いずれも失敗している。&lt;br /&gt;
非言語のパターンが掴めないし、常に相手の目を見ているのは私はすごく疲れるんだわ。&lt;br /&gt;
&lt;br /&gt;
相手の目を見ると疲れませんか？とNLPを実践している当事者に聞いてみたい。&lt;br /&gt;
&lt;br /&gt;
というか英語で聞けという話ですね～&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>ソーシャルスキルガイド</title><link>http://waisu.asdj.org/2017/07/blog-post_28.html</link><category>ソーシャルスキル</category><author>noreply@blogger.com (黒岩堅)</author><pubDate>Tue, 18 Jul 2017 23:17:00 +0900</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7596912463310573257.post-9018259733508727414</guid><description>&lt;a href="http://www.improveyoursocialskills.com/"&gt;http://www.improveyoursocialskills.com/&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
アメリカのアスペルガーの当事者が運営しているサイトです。&lt;br /&gt;
アメリカのFACEBOOKでアスペルガーサポートグループがいくつかあり、今いろいろ読んでいる最中です。&lt;br /&gt;
&lt;br /&gt;
ただ今のところ上記のサイトのようなソーシャルスキルに焦点を当てていることが多いです。SSTとは違うようです。どんな感じかというと、表情とかのしぐさに今まで気がついてなかったでしょ、そちらに注目したら観察できない？そういう辺りを観察することでソーシャルスキルを身につけようというアプローチが多いです。ある意味NLP的な要素を感じます。&lt;br /&gt;
&lt;br /&gt;
もう少し読んでみて、まとめてみたいと思っています。&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item><item><title>平成29年度　精神障がい者ピアサポート専門員養成研修　受かりました</title><link>http://waisu.asdj.org/2017/07/29.html</link><category>余談</category><author>noreply@blogger.com (黒岩堅)</author><pubDate>Fri, 14 Jul 2017 09:10:00 +0900</pubDate><guid isPermaLink="false">tag:blogger.com,1999:blog-7596912463310573257.post-800932033679382391</guid><description>平成29年度　精神障がい者ピアサポート専門員養成研修受かりました。

と言っても8月５，６日の基礎研修だけなんですけどね。&lt;br /&gt;
&lt;br /&gt;
11月の専門コースは落ちました。&lt;br /&gt;
申し込みが定員の4倍だったそうです。しかもほとんどの人が既にピアスタッフをしている人だそうです。ほぼ私だけピアスタッフではないらしい。ちょっとびっくり。みんなすごいです。&lt;br /&gt;
&lt;br /&gt;
無料になると人気ですね～&lt;br /&gt;
&lt;br /&gt;
来年も無料なので、狙い目は再来年かもしれません～&lt;br /&gt;
&lt;br /&gt;
</description><thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></item></channel></rss>