
<rss version="2.0">
    <channel>
        <title>もっとはうす（株式会社ARCTURUS）のブログ</title>
        <link>https://www.happi-ness-home.com/blog/</link>
        <description>もっとはうす（株式会社ARCTURUS）のブログ</description>
        <language>ja</language>
                
        <item>
            <title>医療・福祉関係者向け 居住支援法人との連携ガイド</title>
            <link>https://www.happi-ness-home.com/blog/entry-707996/</link>
            <description><![CDATA[
  <style>
    /* --- ベーススタイル --- */
    body { font-family: 'Hiragino Sans', 'Yu Gothic', sans-serif; margin: 0; padding: 0; line-height: 1.8; color: #333; background-color: #fff; }
    header { background: linear-gradient(135deg, #76BC29, #9ED443); color: white; padding: 40px 15px; text-align: center; }
    header h1 { margin: 10px 0 10px 0; font-size: 1.8em; font-weight: bold; color: white; line-height: 1.4; }
    header p { font-size: 1em; margin-bottom: 0; opacity: 0.95; color: white; margin-top: 10px;}
    .article-container { width: 100%; box-sizing: border-box; max-width: 840px; margin: 0 auto; padding: 40px 20px; }
    
    /* 見出しスタイル */
    h2 { color: #76BC29; border-bottom: 3px solid #76BC29; padding-bottom: 10px; margin-top: 60px; margin-bottom: 30px; font-size: 1.6em; position: relative; }
    h2::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 60px; height: 3px; background: #9ED443; }
    h3 { color: #444; font-size: 1.2em; margin-top: 35px; margin-bottom: 15px; padding-left: 12px; border-left: 5px solid #9ED443; background: #f9fdf6; padding: 12px; border-radius: 0 6px 6px 0; }
    
    p { margin-bottom: 20px; text-align: justify; letter-spacing: 0.05em; font-size: 1em; line-height: 1.8; }
    
    /* 画像スタイル */
    .responsive-img { width: 100%; height: auto; border-radius: 8px; border: 1px solid #e0f0d0; margin-bottom: 30px; }

    /* リストスタイル */
    .info-list { list-style: none; padding: 0; margin: 20px 0; }
    .info-item { 
      background: #fff; 
      border: 2px solid #e0f0d0; 
      border-radius: 8px; 
      padding: 25px; 
      margin-bottom: 20px;
    }
    .info-head { 
      font-weight: bold; 
      color: #76BC29; 
      font-size: 1.15em; 
      display: flex; 
      align-items: flex-start; /* 上揃えで崩れ防止 */
      margin-bottom: 12px; 
    }
    /* アイコンやバッジが縮まないように固定 */
    .check-icon::before { content: '✔'; margin-right: 10px; color: #76BC29; font-weight: bold; flex-shrink: 0; }
    .step-num { 
      background: #76BC29; color: white; 
      border-radius: 4px; padding: 2px 10px; margin-right: 12px; 
      font-size: 0.9em; display: inline-block;
      flex-shrink: 0; /* 幅が狭くなっても潰れないようにする */
    }

    /* --- 新規追加・修正：対象者カードグリッド --- */
    /* 以前のリストスタイルを廃止し、グリッドレイアウトに変更 */
    .target-box { 
      background-color: #f0f7e6; 
      padding: 30px; 
      border-radius: 10px; 
      margin-bottom: 40px; 
    }
    .target-grid {
      display: grid;
      /* PCでは2カラム、幅が狭くなると自動で1カラムに切り替わる設定 */
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
      gap: 20px;
      margin-top: 20px;
    }
    .target-card {
      background: #fff;
      border: 1px solid #d0e8b0;
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.03);
    }
    .target-title {
      font-weight: bold;
      color: #76BC29;
      margin-bottom: 10px;
      font-size: 1.1em;
      border-bottom: 2px dotted #e0f0d0;
      padding-bottom: 8px;
    }
    .target-text {
      font-size: 0.95em;
      color: #555;
      line-height: 1.6;
    }

    /* 新規追加：メリットボックス（3カラム→レスポンシブ） */
    .merit-container { display: flex; gap: 20px; margin-bottom: 40px; flex-wrap: wrap; }
    .merit-box { flex: 1; min-width: 250px; background: #fff; border: 1px solid #ddd; border-radius: 8px; padding: 20px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
    .merit-title { color: #76BC29; font-weight: bold; font-size: 1.1em; margin-bottom: 10px; text-align: center; }
    .merit-desc { font-size: 0.95em; line-height: 1.6; }

    /* テーブルスタイル */
    .role-table { width: 100%; border-collapse: collapse; margin-bottom: 30px; box-shadow: 0 2px 5px rgba(0,0,0,0.05); }
    .role-table th, .role-table td { border: 1px solid #e0f0d0; padding: 15px; text-align: left; vertical-align: top; }
    .role-table th { background: #f6fcf0; color: #76BC29; width: 25%; font-weight: bold; white-space: nowrap; }
    
    /* Q&Aスタイル */
    .qa-item { margin-bottom: 20px; border-bottom: 1px solid #eee; padding-bottom: 20px; }
    .qa-q { font-weight: bold; color: #333; margin-bottom: 10px; display: flex; align-items: flex-start; }
    .qa-q::before { content: 'Q.'; color: #76BC29; margin-right: 10px; font-size: 1.2em; flex-shrink: 0; line-height: 1.4; }
    .qa-a { padding-left: 30px; font-size: 0.95em; color: #555; }

    /* CTAエリア */
    .cta-area { text-align: center; margin: 60px 0; padding: 50px 20px; background: #f6fcf0; border-radius: 12px; border: 2px solid #fff; box-shadow: 0 0 15px rgba(118, 188, 41, 0.1); }
    .contact-button { display: inline-block; width: 100%; max-width: 350px; background: linear-gradient(135deg, #76BC29, #9ED443); color: white; padding: 20px 25px; text-decoration: none; border-radius: 50px; font-weight: bold; font-size: 1.2em; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(118, 188, 41, 0.3); box-sizing: border-box; margin-top: 20px; }
    .contact-button:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(118, 188, 41, 0.4); opacity: 0.95; }

    /* 注意書きボックス */
    .note-box { background: #fff8f0; border: 1px solid #ffcc99; padding: 20px; border-radius: 6px; font-size: 0.95em; color: #555; }
    
    /* レスポンシブ調整 (510px前後での崩れ防止) */
    @media (max-width: 768px) { 
      .article-container { padding: 30px 15px; } /* 余白を少し詰める */
      header h1 { font-size: 1.5em; } 
      
      .role-table, .role-table tbody, .role-table tr, .role-table th, .role-table td { display: block; width: 100%; box-sizing: border-box; }
      .role-table th { 
        border-bottom: none; 
        border-radius: 4px 4px 0 0; 
        background: #f0f7e6;
        width: 100%; /* 幅を100%に */
        white-space: normal; /* 折り返しを許可 */
      }
      .role-table td { border-top: none; margin-bottom: 15px; border-radius: 0 0 4px 4px; }
      
      .merit-container { flex-direction: column; }
      .merit-box { min-width: auto; } /* 縦積み時にmin-widthを解除 */
      
      .target-grid { grid-template-columns: 1fr; } /* スマホでは完全に1カラム化 */

      .info-item, .target-box { padding: 20px 15px; } /* 内部の余白調整 */
    }
  </style>

  <header>
    <h1>医療・福祉関係者向け<br>居住支援法人との連携ガイド</h1>
    <p>患者様・利用者様の「住まい」を守るための実務と連携フロー</p>
  </header>

  <div class="article-container">
    <p>
      退院調整や地域移行支援の中で、<strong>「医療・介護のニーズはあるが、住まいが見つからない」「保証人がおらず契約できない」</strong>というケースにお困りではありませんか？<br>
      私たち居住支援法人が、医療・福祉専門職の皆様と連携し、住まいの確保から入居後の生活安定までをサポートします。本ガイドでは、具体的な連携方法や活用事例について解説します。
    </p>

 <div style="text-align:leftoriginal;word-break: break-all;"><p class="clearfix" style=""><img src="//cdn.img-asp.jp/cms/707996_1_0_0_1.jpg" style="max-width: 100%;float:left;" alt=""></p></div>


    <section>
      <h2>こんなケースでご相談ください</h2>
      <div class="target-box">
        <p style="margin-top:0;">以下のような課題をお持ちの患者様・利用者様がいれば、まずはお声がけください。</p>
        
        <!-- レイアウト修正：リスト形式からグリッドカード形式に変更 -->
        <div class="target-grid">
          <div class="target-card">
            <div class="target-title">退院・退所先が決まらない</div>
            <div class="target-text">入院中・施設入所中で帰る家がなく、一般賃貸の審査にも通りにくい方。</div>
          </div>
          <div class="target-card">
            <div class="target-title">連帯保証人がいない</div>
            <div class="target-text">親族とは疎遠、または親族も高齢で保証能力がなく、契約が進まない方。</div>
          </div>
          <div class="target-card">
            <div class="target-title">立ち退きを迫られている</div>
            <div class="target-text">現在の住居が取り壊し等の理由で退去が必要だが、次の転居先が見つからない高齢者の方。</div>
          </div>
          <div class="target-card">
            <div class="target-title">生活保護受給中で転居が必要</div>
            <div class="target-text">規定の家賃内（住宅扶助額内）で物件を探す必要があるが、不動産店で断られ続けている方。</div>
          </div>
        </div>

      </div>
    </section>

    <section>
      <h2>居住支援法人とは？</h2>
      <p>
        「住宅セーフティネット法」に基づき都道府県から指定を受けた法人です。福祉と不動産の橋渡し役として、主に以下の3つの業務を行います。
      </p>
      <ul class="info-list">
        <li class="info-item">
          <div class="info-head check-icon">1. 入居相談・物件マッチング</div>
          <p>
            ご本人の身体状況（ADL）や経済状況に合わせ、理解のある大家さんや物件を調整・紹介します。バリアフリーや1階限定などの条件交渉も行います。
          </p>
        </li>
        <li class="info-item">
          <div class="info-head check-icon">2. 家賃債務保証の調整</div>
          <p>
            連帯保証人がいない方のために、法人が保証を行ったり、利用可能な家賃債務保証会社を手配したりして、入居のハードルを下げます。
          </p>
        </li>
        <li class="info-item">
          <div class="info-head check-icon">3. 入居後の見守り・生活支援</div>
          <p>
            定期的な安否確認（訪問・電話）や、家賃滞納・近隣トラブル時の対応などを行い、地域生活の継続を支えます。死後事務委任契約などの調整を行う法人もあります。
          </p>
        </li>
      </ul>
    </section>

    <section>
      <h2>医療・福祉職の皆様との連携メリット</h2>
      <div class="merit-container">
        <div class="merit-box">
          <div class="merit-title">退院支援の円滑化</div>
          <div class="merit-desc">
            「住む場所」というボトルネックを解消することで、退院調整がスムーズに進みます。待機期間の短縮にも繋がります。
          </div>
        </div>
        <div class="merit-box">
          <div class="merit-title">専門外業務の負担減</div>
          <div class="merit-desc">
            物件探しや不動産契約への同行、引越し手配など、福祉職だけでは手が回らない「住まい」の実務を分担できます。
          </div>
        </div>
        <div class="merit-box">
          <div class="merit-title">入居後の安心確保</div>
          <div class="merit-desc">
            入居後も法人が「見守り」として関わるため、孤立死のリスクを減らし、異変時の早期発見・通報体制が整います。
          </div>
        </div>
      </div>
    </section>

    <section>
      <h2>具体的な連携フロー</h2>
      <p>ご相談から入居、その後の生活まで、以下のような流れで連携します。</p>
      
      <ul class="info-list">
        <li class="info-item">
          <div class="info-head"><span class="step-num">STEP 1</span>ニーズの把握・アセスメント</div>
          <p>
            「帰る家がない」「退去を迫られている」などの課題が判明した段階で、介入を検討します。早めにご相談いただけると選択肢が広がります。
          </p>
        </li>
        <li class="info-item">
          <div class="info-head"><span class="step-num">STEP 2</span>相談・情報共有</div>
          <p>
            SWやケアマネジャー様から当法人へご連絡ください。ADL、認知症の有無、経済状況、緊急連絡先の有無などを共有し、支援方針をすり合わせます。
          </p>
        </li>
        <li class="info-item">
          <div class="info-head"><span class="step-num">STEP 3</span>物件探し・契約・入居</div>
          <p>
            法人が提携不動産店と連携し物件を提案。内見同行、契約時の同席、重要事項説明のサポート、引っ越しの手配支援も行います。
            <br><small>※入院中で外出できない場合は、代理での内見や病院での契約手続きも調整可能です。</small>
          </p>
        </li>
        <li class="info-item">
          <div class="info-head"><span class="step-num">STEP 4</span>入居後の連携（見守り）</div>
          <p>
            入居後は法人が定期訪問（見守り）を行います。異変があれば速やかに医療・福祉チームへ報告する体制をとります。
          </p>
        </li>
      </ul>
    </section>

    <section>
      <h2>よくある連携ケース</h2>
      
      <h3>ケース①：身寄りのない認知症高齢者（退院支援）</h3>
      <table class="role-table">
        <tbody>
          <tr>
            <th>課題</th>
            <td>入院によりアパート解約済。軽度の認知症があり独居に不安があるが、施設入所は拒否されている。</td>
          </tr>
          <tr>
            <th>連携内容</th>
            <td>
              <strong>【SW】</strong>医療情報の提供、ケアプランの調整。<br>
              <strong>【居住支援法人】</strong>「見守りサービス付き」を条件に大家さんと交渉し入居決定。週1回の訪問を実施。<br>
              <strong>【結果】</strong>介護サービスと法人の見守りで在宅生活を維持。
            </td>
          </tr>
        </tbody>
      </table>

      <h3>ケース②：精神障害のある方（地域移行）</h3>
      <table class="role-table">
        <tbody>
          <tr>
            <th>課題</th>
            <td>長期入院からの退院。単身生活を強く希望しているが、幻聴などによる近隣トラブルのリスクが懸念される。</td>
          </tr>
          <tr>
            <th>連携内容</th>
            <td>
              <strong>【相談支援専門員】</strong>生活リズムの構築支援。<br>
              <strong>【居住支援法人】</strong>「障害に理解のある大家さん」の物件を紹介。トラブル時は法人が不動産側の窓口対応を担当することで、管理会社の不安を払拭。<br>
              <strong>【結果】</strong>役割分担が明確になり、地域移行が実現。
            </td>
          </tr>
        </tbody>
      </table>
    </section>

    <section>
      <h2>よくある質問（Q&A）</h2>
      
      <div class="qa-item">
        <div class="qa-q">相談に費用はかかりますか？</div>
        <div class="qa-a">
          ご相談や物件の提案までは原則無料です。実際に入居する際の仲介手数料や、契約後の「見守りサービス料」「家賃債務保証料」などはご本人の負担となります。生活保護受給中の方は、初期費用の一部が支給されるケースもありますのでご相談ください。
        </div>
      </div>
      
      <div class="qa-item">
        <div class="qa-q">生活保護申請中でも対応できますか？</div>
        <div class="qa-a">
          はい、可能です。福祉事務所のケースワーカー様とも連携し、転居と同時に保護受給が開始できるよう、物件選定（住宅扶助額内）や入居日の調整を行います。
        </div>
      </div>

      <div class="qa-item">
        <div class="qa-q">本人が入院中で外出できないのですが…</div>
        <div class="qa-a">
          支援員が病院へ伺い、ご本人と面談させていただきます。物件の内見については、支援員が動画や写真を撮影して病院にお持ちし、確認していただく形も可能です。
        </div>
      </div>
    </section>
    
    <section>
      <div class="note-box">
        <strong>連携時のポイント：役割分担の明確化</strong><br><br>
        居住支援法人は「住まい確保と契約維持」のプロですが、医療・身体介助の専門家ではありません。<br>
        入居後の生活を支えるには、医療・福祉サービスの継続的な関与が不可欠です。「医療的な判断は病院へ」「家賃や設備の話は居住支援法人へ」といった連絡系統を入居前に整理しておくとスムーズです。
      </div>
    </section>

    <div class="cta-area">
      <h2>連携に関するご相談はこちら</h2>
      <p>退院調整や住まいの確保にお困りの際は、お気軽にご連絡ください。<br>院内勉強会や退院前カンファレンスへの参加も可能です。</p>
      <a href="https://www.happi-ness-home.com/contact-pro/" class="contact-button">専門職専用 お問い合わせ窓口</a>
    </div>
  </div>]]></description>
            <pubDate>2025-10-03</pubDate>
        </item>
                
        <item>
            <title>「あきらめなくてよかった」成功事例集</title>
            <link>https://www.happi-ness-home.com/blog/entry-707988/</link>
            <description><![CDATA[<!DOCTYPE html>
<html lang="ja">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>「あきらめなくてよかった」居住支援の成功事例｜もっとはうす</title>
  <style>
    /* --- ベーススタイル --- */
    body { font-family: 'Hiragino Sans', 'Yu Gothic', sans-serif; margin: 0; padding: 0; line-height: 1.8; color: #333; background-color: #fff; }
    
    /* ヘッダー */
    header { background: linear-gradient(135deg, #76BC29, #9ED443); color: white; padding: 25px 15px; text-align: center; }
    header h1 { margin: 10px 0 10px 0; font-size: 1.8em; font-weight: bold; color: white; line-height: 1.3; }
    header p { font-size: 0.95em; margin-bottom: 0; opacity: 0.95; color: white; }
    
    /* 記事用コンテナ */
    .article-container { width: 100%; box-sizing: border-box; margin: 0 auto; padding: 30px 15px; }
    
    /* 見出し */
    h2 { color: #76BC29; border-bottom: 3px solid #76BC29; padding-bottom: 10px; margin-top: 50px; margin-bottom: 25px; font-size: 1.5em; position: relative; }
    h2::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 60px; height: 3px; background: #9ED443; }
    h3 { color: #444; font-size: 1.3em; margin-top: 35px; margin-bottom: 20px; padding-left: 12px; border-left: 5px solid #9ED443; background: #f9fdf6; padding: 10px 12px; border-radius: 0 6px 6px 0; }
    
    p { margin-bottom: 20px; text-align: justify; letter-spacing: 0.05em; font-size: 1em; line-height: 1.8; }

    /* --- コンテンツ装飾 --- */
    
    /* 強調ボックス */
    .highlight-box { background: #f9fdf6; border: 2px solid #e0f0d0; border-radius: 10px; padding: 25px 20px; margin: 30px 0; position: relative; }
    .highlight-box::before { content: 'STORY'; position: absolute; top: -12px; left: 15px; background: #76BC29; color: white; padding: 3px 12px; border-radius: 20px; font-weight: bold; font-size: 0.8em; }
    
    /* 画像スタイル */
    .responsive-img { width: 100%; height: auto; border-radius: 8px; border: 1px solid #e0f0d0; margin-bottom: 20px; }

    /* 事例紹介ボックス */
    .case-card {
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 12px;
      padding: 20px;
      margin-bottom: 30px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }
    .case-header {
      display: flex;
      align-items: center;
      margin-bottom: 15px;
      padding-bottom: 10px;
      border-bottom: 1px dashed #ddd;
    }
    .case-icon {
      width: 50px;
      height: 50px;
      background: #e0f0d0;
      color: #76BC29;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 1.2em;
      margin-right: 15px;
      flex-shrink: 0;
    }
    .case-title {
      font-weight: bold;
      font-size: 1.1em;
      color: #333;
      line-height: 1.4;
    }
    
    /* ポイントリスト (Flexbox対応) */
    .point-list { list-style: none; padding: 0; margin: 15px 0 0 0; }
    .point-item {
      display: flex;
      align-items: flex-start;
      margin-bottom: 10px;
      font-size: 0.95em;
      color: #555;
    }
    .point-mark {
      color: #76BC29;
      margin-right: 8px;
      font-weight: bold;
      flex-shrink: 0;
    }

    /* CTAボタン */
    .cta-area { text-align: center; margin: 40px 0; padding: 30px 20px; background: #f6fcf0; border-radius: 12px; }
    .contact-button { display: block; width: 100%; max-width: 300px; margin: 0 auto; background: linear-gradient(135deg, #76BC29, #9ED443); color: white; padding: 15px 20px; text-decoration: none; border-radius: 50px; font-weight: bold; font-size: 1.1em; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(118, 188, 41, 0.3); box-sizing: border-box; }
    .contact-button:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(118, 188, 41, 0.4); }

    /* スマホ対応 */
    @media (max-width: 768px) {
      header h1 { font-size: 1.6em; }
    }
  </style>
</head>
<body>

  <header>
    <h1>「あきらめなくてよかった」成功事例集</h1>
    <p>住まい探しに困っていた方々が、新しい生活を始めるまでのストーリー</p>
  </header>

  <div class="article-container">

    <p>
      「不動産屋に断られ続けて心が折れそう」「頼れる人がいなくて不安」<br>
      そんな状況でも、居住支援を活用して理想の住まいを見つけた方々がいます。
    </p>
    <p>
      ここでは、実際に私たちがサポートした事例の中から、3つのケースをご紹介します。
    </p>

    <!-- 画像1: 笑顔で新生活を送る人々のイメージ（ダミー） -->
<div style="text-align:leftoriginal;word-break: break-all;"><p class="clearfix" style=""><img src="//cdn.img-asp.jp/cms/707988_1_0_0_1.jpg" style="max-width: 100%;float:left;" alt=""></p></div>


    <section>
      <h2>事例1：高齢・単身での住み替え</h2>
      
      <div class="case-card">
        <div class="case-header">
          <div class="case-icon">A</div>
          <div class="case-title">立ち退きを迫られたが、高齢を理由に断られ続けた70代男性</div>
        </div>
        <p>
          <strong>相談時の状況：</strong><br>
          長年住んでいたアパートが取り壊しになり、退去することに。しかし、不動産屋を何件回っても「高齢の単身者はちょっと…」と断られ、途方に暮れていました。
        </p>
        <p>
          <strong>サポート内容：</strong><br>
          居住支援法人が「見守りサービス」の利用を条件に、協力大家さんへ交渉。万が一の時の対応を法人が引き受けることで、入居審査を通過しました。
        </p>
        <ul class="point-list">
          <li class="point-item">
            <span class="point-mark">✔</span>
            <div>条件に合う1階の物件をご紹介</div>
          </li>
          <li class="point-item">
            <span class="point-mark">✔</span>
            <div>定期訪問で大家さんの不安も解消</div>
          </li>
        </ul>
      </div>
    </section>

    <section>
      <h2>事例2：入院からの退院先確保</h2>

      <div class="case-card">
        <div class="case-header">
          <div class="case-icon">B</div>
          <div class="case-title">入院中に家がなくなり、退院先が決まらなかった60代女性</div>
        </div>
        <p>
          <strong>相談時の状況：</strong><br>
          病気で入院中に以前の住居を引き払ってしまい、帰る家がない状態。身寄りもなく、病院のソーシャルワーカーさんを通じて相談がありました。
        </p>
        <p>
          <strong>サポート内容：</strong><br>
          退院日に合わせて入居できるよう、スピーディーに物件を選定。家賃債務保証の手続きも代行し、安心して療養できる環境を整えました。
        </p>
        <ul class="point-list">
          <li class="point-item">
            <span class="point-mark">✔</span>
            <div>病院と連携してスムーズに入居</div>
          </li>
          <li class="point-item">
            <span class="point-mark">✔</span>
            <div>介護サービスの申請もサポート</div>
          </li>
        </ul>
      </div>

      <!-- 画像2: スタッフが寄り添うサポート風景（ダミー） -->
<div style="text-align:leftoriginal;word-break: break-all;"><p class="clearfix" style=""><img src="//cdn.img-asp.jp/cms/707988_2_0_0_1.jpg" style="max-width: 100%;float:left;" alt=""></p></div>

    </section>

    <section>
      <h2>事例3：障がいのある方の自立</h2>

      <div class="case-card">
        <div class="case-header">
          <div class="case-icon">C</div>
          <div class="case-title">音に敏感で、集合住宅での生活に不安があった障がい者の男性</div>
        </div>
        <p>
          <strong>相談時の状況：</strong><br>
          聴覚過敏の特性があり、以前のアパートでは隣人の生活音が原因でトラブルに。静かな環境を求めていましたが、予算内で見つけるのが困難でした。
        </p>
        <p>
          <strong>サポート内容：</strong><br>
          地域の空き家（戸建て）を活用した物件をご提案。隣室と壁が接していないため音のストレスが減り、落ち着いて生活できるようになりました。
        </p>
        <ul class="point-list">
          <li class="point-item">
            <span class="point-mark">✔</span>
            <div>特性に配慮した物件選び</div>
          </li>
          <li class="point-item">
            <span class="point-mark">✔</span>
            <div>入居後の生活相談も継続中</div>
          </li>
        </ul>
      </div>
    </section>

    <section>
      <h2>あなたの「困った」も解決できます</h2>
      <p>
        住まいの悩みは一人ひとり違いますが、必ず解決策はあります。<br>
        「私の場合は無理かも」とあきらめる前に、ぜひ一度私たちにお話を聞かせてください。
      </p>
    </section>

    <!-- CTA -->
    <div class="cta-area">
      <h2 style="margin-top: 0; border: none; font-size: 1.4em;">ご相談・お問い合わせはこちら</h2>
      <p>
        経験豊富なスタッフが、あなたの住まい探しを親身にサポートします。
      </p>
      <a href="https://www.happi-ness-home.com/contact/" class="contact-button">お問い合わせはこちら</a>
      <p style="margin-top: 20px; font-size: 0.85em; color: #666;">※ご相談は無料です。秘密は厳守いたします。</p>
    </div>

  </div><!-- /article-container -->

</body>
</html>]]></description>
            <pubDate>2025-09-02</pubDate>
        </item>
                
        <item>
            <title>空き家活用・福祉転用のメリット</title>
            <link>https://www.happi-ness-home.com/blog/entry-707982/</link>
            <description><![CDATA[
  <style>
    /* --- ベーススタイル --- */
    body { font-family: 'Hiragino Sans', 'Yu Gothic', sans-serif; margin: 0; padding: 0; line-height: 1.8; color: #333; background-color: #fff; }
    
    /* ヘッダー */
    header { background: linear-gradient(135deg, #76BC29, #9ED443); color: white; padding: 25px 15px; text-align: center; }
    header h1 { margin: 10px 0 10px 0; font-size: 1.8em; font-weight: bold; color: white; line-height: 1.3; }
    header p { font-size: 0.95em; margin-bottom: 0; opacity: 0.95; color: white; }
    
    /* 記事用コンテナ */
    .article-container { width: 100%; box-sizing: border-box; margin: 0 auto; padding: 30px 15px; }
    
    /* 見出し */
    h2 { color: #76BC29; border-bottom: 3px solid #76BC29; padding-bottom: 10px; margin-top: 50px; margin-bottom: 25px; font-size: 1.5em; position: relative; }
    h2::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 60px; height: 3px; background: #9ED443; }
    h3 { color: #444; font-size: 1.3em; margin-top: 35px; margin-bottom: 20px; padding-left: 12px; border-left: 5px solid #9ED443; background: #f9fdf6; padding: 10px 12px; border-radius: 0 6px 6px 0; }
    
    p { margin-bottom: 20px; text-align: justify; letter-spacing: 0.05em; font-size: 1em; line-height: 1.8; }

    /* --- コンテンツ装飾 --- */
    
    /* 強調ボックス */
    .highlight-box { background: #f9fdf6; border: 2px solid #e0f0d0; border-radius: 10px; padding: 25px 20px; margin: 30px 0; position: relative; }
    .highlight-box::before { content: 'CHECK'; position: absolute; top: -12px; left: 15px; background: #76BC29; color: white; padding: 3px 12px; border-radius: 20px; font-weight: bold; font-size: 0.8em; }
    
    /* 画像スタイル */
    .responsive-img { width: 100%; height: auto; border-radius: 8px; border: 1px solid #e0f0d0; margin-bottom: 20px; }

    /* メリットリスト */
    .merit-list { list-style: none; padding: 0; margin: 20px 0; }
    .merit-item { 
      background: #fff; 
      border: 2px solid #e0f0d0; 
      border-radius: 8px; 
      padding: 20px; 
      margin-bottom: 20px;
    }
    .merit-head { 
      font-weight: bold; 
      color: #76BC29; 
      font-size: 1.1em; 
      display: flex; 
      align-items: center; 
      margin-bottom: 10px; 
    }
    .merit-head::before { 
      content: '★'; 
      margin-right: 8px; 
      font-size: 1.2em; 
    }

    /* CTAボタン */
    .cta-area { text-align: center; margin: 40px 0; padding: 30px 20px; background: #f6fcf0; border-radius: 12px; }
    .contact-button { display: block; width: 100%; max-width: 300px; margin: 0 auto; background: linear-gradient(135deg, #76BC29, #9ED443); color: white; padding: 15px 20px; text-decoration: none; border-radius: 50px; font-weight: bold; font-size: 1.1em; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(118, 188, 41, 0.3); box-sizing: border-box; }
    .contact-button:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(118, 188, 41, 0.4); }

    /* スマホ対応 */
    @media (max-width: 768px) {
      header h1 { font-size: 1.6em; }
    }
  </style>


  <header>
    <h1>空き家活用のススメ</h1>
    <p>「貸しにくい」物件が「感謝される」住まいへ。居住支援という新しい選択肢</p>
  </header>

  <div class="article-container">

    <p>
      「築年数が古くて借り手がつかない」「実家を相続したが使い道がない」<br>
      そんな空き家のお悩み、実は<strong>社会貢献</strong>と<strong>安定収益</strong>につなげるチャンスかもしれません。
    </p>
    <p>
      高齢者や障がい者など、住まいの確保が難しい方々へ物件を提供することは、現代の空室対策として非常に注目されています。
    </p>

    <!-- 画像1: リノベーションと活用のイメージ（ダミー） -->
<div style="text-align:leftoriginal;word-break: break-all;"><p class="clearfix" style=""><img src="//cdn.img-asp.jp/cms/707982_1_0_0_1.jpg" style="max-width: 100%;float:left;" alt=""></p></div>


    <section>
      <h2>なぜ今、「居住支援」としての活用なのか</h2>
      
      <div class="highlight-box">
        <p style="margin-bottom: 0; font-weight: bold;">
          結論：需要が尽きず、長く住んでもらえるからです。
        </p>
      </div>

      <p>
        少子高齢化が進む中、単身高齢者や障がいのある方の「住まい探し」は年々深刻化しています。一方で、一般的な賃貸物件では入居を断られるケースも少なくありません。
      </p>
      <p>
        こうした方々に住まいを提供することで、<strong>競合物件との差別化</strong>を図ることができます。また、一度入居されると転居が少ないため、<strong>長期間の安定した家賃収入</strong>が見込めるのも大きな特徴です。
      </p>
    </section>

    <section>
      <h2>オーナー様の3つのメリット</h2>

      <ul class="merit-list">
        <li class="merit-item">
          <div class="merit-head">1. 改修費の補助が受けられる</div>
          <p>
            「住宅セーフティネット制度」に登録することで、バリアフリー化や耐震改修などのリフォーム費用に対し、国や自治体から補助金が出る場合があります。<br>
            初期投資を抑えつつ、物件の価値を高めることが可能です。
          </p>
        </li>
        <li class="merit-item">
          <div class="merit-head">2. 家賃・原状回復の不安を解消</div>
          <p>
            「家賃滞納が心配」「万が一の事故が怖い」という声にお応えするため、私たち居住支援法人が間に入ります。<br>
            家賃債務保証会社の利用サポートや、孤独死保険、残置物処理のスキームを提案し、リスクを最小限に抑えます。
          </p>
        </li>
        <li class="merit-item">
          <div class="merit-head">3. 定期的な見守りで安心管理</div>
          <p>
            入居後も居住支援法人が定期的に訪問や電話による「見守り」を行います。<br>
            入居者様の異変にいち早く気づくだけでなく、ゴミ出しなどの近隣トラブルの芽を未然に防ぐ役割も果たします。
          </p>
        </li>
      </ul>

<div style="text-align:leftoriginal;word-break: break-all;"><p class="clearfix" style=""><img src="//cdn.img-asp.jp/cms/707982_2_0_0_1.jpg" style="max-width: 100%;float:left;" alt=""></p></div>

    </section>

    <section>
      <h2>「貸す」ことで地域貢献を</h2>
      <p>
        空き家を放置することは、防犯や防災の観点からも地域のリスクとなります。<br>
        しかし、それを必要とする誰かに貸し出すことは、立派な<strong>「地域貢献（SDGs）」</strong>です。
      </p>
      <p>
        「私の物件でも大丈夫？」と思われたら、まずは一度ご相談ください。<br>
        建物の状況やオーナー様のご意向に合わせた活用プランをご提案いたします。
      </p>
    </section>

    <!-- CTA -->
    <div class="cta-area">
      <h2 style="margin-top: 0; border: none; font-size: 1.4em;">空き家・空室のご相談はこちら</h2>
      <p>
        居住支援のプロフェッショナルが、オーナー様の不安を解消し、最適な活用方法を一緒に考えます。
      </p>
      <a href="https://www.happi-ness-home.com/contact/" class="contact-button">お問い合わせはこちら</a>
      <p style="margin-top: 20px; font-size: 0.85em; color: #666;">※ご相談は無料です。秘密は厳守いたします。</p>
    </div>

  </div><!-- /article-container -->]]></description>
            <pubDate>2025-08-22</pubDate>
        </item>
                
        <item>
            <title>居住支援サービス</title>
            <link>https://www.happi-ness-home.com/blog/entry-660164/</link>
            <description><![CDATA[<style>
header,
footer {
  background: linear-gradient(135deg, #76BC29, #9ED443);
  color: white;
  padding: 30px 20px;
  text-align: center;
}

header img {
  max-width: 200px;
  margin-bottom: 10px;
}

header h1 {
  margin: 15px 0 10px 0;
  font-size: 2.2em;
  font-weight: bold;
  color: #fff;
}

header p {
  font-size: 1.1em;
  margin-bottom: 0;
  opacity: 0.9;
  color: #fff;
}

section {
  padding: 50px 20px;
  max-width: 1000px;
  margin: 0 auto;
}

h2 {
  color: #76BC29;
  border-bottom: 3px solid #76BC29;
  padding-bottom: 15px;
  margin-bottom: 30px;
  font-size: 1.8em;
  position: relative;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 60px;
  height: 3px;
  background: #9ED443;
}

.intro-section {
  background: #f9fdf6;
  margin: 0 -20px;
  padding: 50px 20px;
}

.intro-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.intro-text {
  flex: 1;
  min-width: 300px;
  padding: 0 10px;
}
.intro-text p {
  line-height: 2;
}

.intro-image {
  flex: 1;
  min-width: 300px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.support-item {
  background: #fff;
  border: 1px solid #e0f0d0;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(118, 188, 41, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.support-item p {
  line-height: 2;
}

.support-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(118, 188, 41, 0.15);
}

.support-item h3 {
  color: #76BC29;
  margin-top: 0;
  font-size: 1.3em;
  border-left: 4px solid #9ED443;
  padding-left: 15px;
  margin-bottom: 16px;
}

.target-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.target-item {
  background: #f6fcf0;
  border: 1px solid #d5ecc0;
  border-radius: 8px;
  padding: 20px;
}

.target-item::before {
  content: '✓';
  color: #76BC29;
  font-weight: bold;
  font-size: 1.2em;
  margin-right: 10px;
}

.flow-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.flow-step {
  background: #fff;
  border: 2px solid #e0f0d0;
  border-radius: 15px;
  padding: 25px;
  position: relative;
}
.flow-step p {
  line-height: 2;
}

.flow-step::before {
  content: attr(data-step);
  position: absolute;
  top: -15px;
  left: 20px;
  background: #76BC29;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.flow-step h3 {
  color: #76BC29;
  margin-top: 10px;
  margin-bottom: 15px;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.case-box {
  background: #fff;
  border: 1px solid #e0f0d0;
  border-radius: 12px;
  padding: 30px;
  border-left: 5px solid #9ED443;
}
.case-box p {
  line-height: 2;
}

.case-box h3 {
  color: #76BC29;
  margin-top: 0;
  font-size: 1.2em;
  margin-bottom: 16px;
font-weight: bold;
}
.case-box h3.sup {
  margin-top: 24px;
background-color: #76BC29;
color: #fff;
display: inline-block;
padding: 4px 10px;
font-size: 0.95em;
margin-bottom: 12px;
}
#contact p {
  line-height: 2;
}
.contact-button {
  display: inline-block;
  background: linear-gradient(135deg, #76BC29, #9ED443);
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(118, 188, 41, 0.3);
  margin: 20px 10px;
}

.contact-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(118, 188, 41, 0.4);
}

.contact-center {
  text-align: center;
  margin: 40px 0;
}

.contact-info {
  background: #f6fcf0;
  border-radius: 12px;
  padding: 30px;
  margin-top: 30px;
}
.contact-info p {
  line-height: 2;
}

.contact-info strong {
  color: #76BC29;
  font-size: 1.2em;
}

.faq-item {
  background: #fff;
  border: 1px solid #e0f0d0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question {
  background: #f6fcf0;
  padding: 20px;
  cursor: pointer;
  border-bottom: 1px solid #e0f0d0;
  font-weight: bold;
  color: #76BC29;
  position: relative;
}

.faq-question::after {
  content: '+';
  position: absolute;
  top: 13px;
  right: 20px;
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 20px;
  display: none;
}
.faq-answer p {
  line-height: 2;
}

.faq-answer.active {
  display: block;
}

.image-placeholder {
  width: calc(100% - 20px);
  height: 200px;
  background: linear-gradient(135deg, #f0f9e8, #e5f4d5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #76BC29;
  font-size: 14px;
  border-radius: 8px;
  margin: 20px 0;
  padding: 10px;
}

.image-placeholder img {
border-radius: 8px;
height: 200px;
}

iframe {
  width: 100%;
  height: 350px;
  border: 0;
  border-radius: 12px;
}

footer {
  margin-top: 50px;
}

@media (max-width: 768px) {
  .intro-content {
    flex-direction: column;
  }

  .support-grid,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .flow-container {
    grid-template-columns: 1fr;
  }

  header h1 {
    font-size: 1.8em;
  }

  section {
    padding: 30px 15px;
  }
}
</style>
  <header>
    <h1>居住支援サービス</h1>
    <p>住まい探しに困っている方々へ、安心と希望を届けます</p>
  </header>

  <section class="intro-section">
    <div class="intro-content">
      <div class="intro-text">
        <h2>居住支援とは</h2>
        <p>高齢者・障がい者・生活困窮者・外国人・子育て世帯・被災者など、住宅確保に配慮が必要な方々が、安心して住まいを見つけ、暮らし続けられるよう、私たちは総合的にサポートしています。</p>
        <p>一人ひとりの状況に寄り添い、関係機関と連携しながら、最適な住まいの提供と継続的な生活支援を行います。</p>
      </div>
      <div class="intro-image">
        <div class="image-placeholder">
        <img src="//cdn.img-asp.jp/cms/660164_2_0_0_1.jpg" style="max-width: 100%;" alt="">
        </div>
      </div>
    </div>
  </section>

  <section>
    <h2>支援内容</h2>
    <div class="support-grid">
      <div class="support-item">
        <h3>住まいの紹介・契約支援</h3>
        <p>物件探しから契約に至るまで、お客様の状況に応じた柔軟な対応を行います。初期費用の相談や保証人の問題も含めて、総合的にサポートいたします。</p>
      </div>
      <div class="support-item">
        <h3>入居後の生活サポート</h3>
        <p>地域包括支援センターや福祉関係機関と連携し、生活上の困りごとも継続して支援します。定期的な訪問や電話での安否確認も行います。</p>
      </div>
      <div class="support-item">
        <h3>オーナー・管理会社への調整</h3>
        <p>入居への不安や条件を整理し、貸主・管理会社との橋渡し役を担います。入居者の状況を丁寧に説明し、理解を得られるよう努めます。</p>
      </div>
    </div>
    
    <div class="contact-center">
      <a href="#contact" class="contact-button">まずはお気軽にご相談ください</a>
    </div>
  </section>

  <section>
    <h2>支援対象者</h2>
    <div class="target-grid">
      <div class="target-item">高齢者（要支援・要介護認定を受けている方など）</div>
      <div class="target-item">障がい者（身体・精神・知的など）</div>
      <div class="target-item">生活保護受給者または生活困窮世帯</div>
      <div class="target-item">外国籍の方（在留資格に応じて対応）</div>
      <div class="target-item">子育て中のひとり親家庭</div>
      <div class="target-item">その他、特に配慮を必要とする事情のある方</div>
    </div>
  </section>

  <section>
    <h2>居住支援のサポートフロー</h2>
    <div class="flow-container">
      <div class="flow-step" data-step="1">
        <h3>ご相談・ヒアリング</h3>
        <p>まずは現在の状況やご希望を丁寧にお伺いします。秘密は厳守いたします。</p>
      </div>
      <div class="flow-step" data-step="2">
        <h3>物件のご提案・内見</h3>
        <p>条件に合う物件をいくつかご提案し、実際にご案内します。</p>
      </div>
      <div class="flow-step" data-step="3">
        <h3>契約・入居サポート</h3>
        <p>契約手続きや必要な書類のご説明、関係機関との調整を行います。</p>
      </div>
      <div class="flow-step" data-step="4">
        <h3>入居後のフォロー</h3>
        <p>住み始めてからも必要に応じてフォローし、安心して暮らせるよう支援します。</p>
      </div>
    </div>
    <div class="image-placeholder">
      <img src="//cdn.img-asp.jp/cms/660164_3_0_0_1.jpg" style="max-width: 100%; alt=" "="">
    </div>
  </section>

  <section>
    <h2>居住支援の事例</h2>
        <div class="case-grid">
        <div class="case-box">
            <h3>事例①：法的トラブル後の住まい確保支援</h3>
            <p>法的な問題により一定期間の身柄拘束を経験され、その間に賃貸契約が解除となった方。現在はネットカフェ等で生活し、日払いの仕事で日収8,000円〜1万円の収入はありますが、住所がないため安定した就職が困難な状況。区役所の自立支援窓口を通じてご相談をいただきました。</p>
            <div class="support-content">
                <h3 class="sup">支援内容</h3>
                <p>貸主様に事情をご説明し、初期費用のお支払い時期についてご相談。先行して契約・入居を進めることで住所を確保し、安定した就職先が決定いたしました。就職後の給与支給までの期間は、区役所福祉課と連携し、住宅扶助を含む生活保護制度を活用。その後、初期費用も完済され、自立した生活を送られています。</p>
            </div>
        </div>
        
        <div class="case-box">
            <h3>事例②：高齢者ご夫婦の住み替え支援</h3>
            <p>80代のご夫婦が、長年お勤めされていた商業ビルの管理人室にお住まいでしたが、ご退職に伴い新しいお住まいが必要となりました。ご子息様に保証人をお引き受けいただける環境でした。</p>
            <div class="support-content">
                <h3 class="sup">支援内容</h3>
                <p>高齢者の方にも安心してお住まいいただける物件をご紹介し、通常の入居審査を実施いたしました。特に問題なく審査が通り、スムーズに新生活をスタートしていただくことができました。</p>
            </div>
        </div>
        
        <div class="case-box">
            <h3>事例③：DV被害者の緊急住まい支援</h3>
            <p>DV被害により配偶者に対する退去命令が出されましたが、お住まいの賃貸契約名義が加害者となっていました。その後、管理会社より賃貸契約の解除通知があり、1週間以内という短期間での退去が必要な緊急事態となりました。</p>
            <div class="support-content">
                <h3 class="sup">支援内容</h3>
                <p>まず空室物件での「一時使用契約」により、緊急避難先を確保いたしました。その後、生活保護の申請手続きを進め、保護決定後に正式なお住まいへのお引越しを実施。引越し費用についても制度を活用してサポートいたしました。</p>
            </div>
        </div>
        
        <div class="case-box">
            <h3>事例④：単身女性の安全確保と住まい支援</h3>
            <p>職場でのハラスメント問題により心身に不調をきたし、お仕事を継続できなくなった女性の方。収入が途絶えたことで家賃の支払いが困難となり、現在のお住まいの継続が難しい状況となりました。ご家族のサポートも受けにくい環境でした。</p>
            <div class="support-content">
                <h3 class="sup">支援内容</h3>
                <p>まず安心してお住まいいただける物件での「短期契約」からスタート。並行して就労支援機関と連携し、体調面を考慮した働き方のご提案を行いました。生活保護制度も活用しながら、段階的に自立に向けた支援を継続中です。</p>
            </div>
        </div>
    </div>
    
    <div class="contact-center">
      <a href="#contact" class="contact-button">あなたの状況もお聞かせください</a>
    </div>
    
    <div class="image-placeholder">
      <img src="//cdn.img-asp.jp/cms/660164_4_0_0_1.jpg" style="max-width: 100%;" alt="">
    </div>
  </section>

  <section>
    <h2>よくある質問</h2>
    <div class="faq-item">
      <div class="faq-question" onclick="toggleFAQ(this)">相談にお金はかかりますか？</div>
      <div class="faq-answer">
        <p>ご相談は無料です。お気軽にご連絡ください。</p>
      </div>
    </div>
    <div class="faq-item">
      <div class="faq-question" onclick="toggleFAQ(this)">生活保護を受けていても住める物件はありますか？</div>
      <div class="faq-answer">
        <p>はい、生活保護受給者の方も入居可能な物件を多数取り扱っております。住宅扶助の範囲内で適切な物件をご提案いたします。</p>
      </div>
    </div>
    <div class="faq-item">
      <div class="faq-question" onclick="toggleFAQ(this)">保証人がいない場合はどうすればよいですか？</div>
      <div class="faq-answer">
        <p>保証人がいない方でも、保証会社を利用することで入居可能な物件をご紹介できます。状況に応じて最適なプランをご提案いたします。</p>
      </div>
    </div>
    <div class="faq-item">
      <div class="faq-question" onclick="toggleFAQ(this)">外国籍ですが、日本語が不安です。対応していただけますか？</div>
      <div class="faq-answer">
        <p>外国籍の方のサポートも行っております。簡単な通訳対応や、多言語に対応できる関係機関とも連携していますので、安心してご相談ください。</p>
      </div>
    </div>
    <div class="faq-item">
      <div class="faq-question" onclick="toggleFAQ(this)">車椅子でも住める物件はありますか？</div>
      <div class="faq-answer">
        <p>バリアフリー対応の物件や、車椅子での生活に適した物件もご紹介可能です。必要な設備や間取りなど、詳しくご相談ください。</p>
      </div>
    </div>
    <div class="faq-item">
      <div class="faq-question" onclick="toggleFAQ(this)">入居後のトラブル対応もしてもらえますか？</div>
      <div class="faq-answer">
        <p>入居後も継続的にサポートいたします。生活上の困りごとや近隣トラブルなど、お気軽にご相談ください。関係機関と連携して解決に努めます。</p>
      </div>
    </div>
  </section>

  <section id="contact">
    <h2>お問い合わせ</h2>
    <p>ご本人、ご家族、支援機関、医療・福祉関係者など、どなたでもご相談いただけます。まずはお気軽にご連絡ください。</p>
    
    <div class="contact-center">
      <a href="tel:06-6971-5165" class="contact-button"> お電話でのご相談</a>
      <a href="mailto:mothouseosaka@gmail.com" class="contact-button">✉️ メールでのご相談</a>
    </div>
    
    <div class="contact-info">
      <p><strong>もっとはうす（株式会社ARCTURUS）</strong><br>
      〒537-0024 大阪市東成区東小橋1-15-2<br>
      TEL：06-6971-5165<br>
      営業時間：10:30～20:00 <br>（定休日：水・日（予約のみ対応可））<br>
      ※緊急時は時間外でも対応いたします</p>
    </div>
   
  </section>

  <section>
    <h2>アクセス</h2>
    <iframe src="https://www.google.com/maps?q=大阪市東成区東小橋1-15-2&output=embed"></iframe>
    <p style="text-align: center; margin-top: 15px; color: #666;">JR環状線「玉造駅」より徒歩5分</p>
  </section>

  <script>
    function toggleFAQ(element) {
      const answer = element.nextElementSibling;
      const isActive = element.classList.contains('active');
      
      // Close all FAQ items
      document.querySelectorAll('.faq-question').forEach(q => q.classList.remove('active'));
      document.querySelectorAll('.faq-answer').forEach(a => a.classList.remove('active'));
      
      // Open clicked item if it wasn't active
      if (!isActive) {
        element.classList.add('active');
        answer.classList.add('active');
      }
    }
    
    // Smooth scrolling for anchor links
    document.querySelectorAll('a[href^="#"]').forEach(anchor => {
      anchor.addEventListener('click', function (e) {
        e.preventDefault();
        const target = document.querySelector(this.getAttribute('href'));
        if (target) {
          target.scrollIntoView({
            behavior: 'smooth',
            block: 'start'
          });
        }
      });
    });
  </script>]]></description>
            <pubDate>2025-08-01</pubDate>
        </item>
                
        <item>
            <title>保証人がいないを解決する方法</title>
            <link>https://www.happi-ness-home.com/blog/entry-707983/</link>
            <description><![CDATA[
  <style>
    /* --- ベーススタイル --- */
    body { font-family: 'Hiragino Sans', 'Yu Gothic', sans-serif; margin: 0; padding: 0; line-height: 1.8; color: #333; background-color: #fff; }
    
    /* ヘッダー */
    header { background: linear-gradient(135deg, #76BC29, #9ED443); color: white; padding: 25px 15px; text-align: center; }
    header h1 { margin: 10px 0 10px 0; font-size: 1.8em; font-weight: bold; color: white; line-height: 1.3; }
    header p { font-size: 0.95em; margin-bottom: 0; opacity: 0.95; color: white; }
    
    /* 記事用コンテナ */
    .article-container { width: 100%; box-sizing: border-box; margin: 0 auto; padding: 30px 15px; }
    
    /* 見出し */
    h2 { color: #76BC29; border-bottom: 3px solid #76BC29; padding-bottom: 10px; margin-top: 50px; margin-bottom: 25px; font-size: 1.5em; position: relative; }
    h2::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 60px; height: 3px; background: #9ED443; }
    h3 { color: #444; font-size: 1.3em; margin-top: 35px; margin-bottom: 20px; padding-left: 12px; border-left: 5px solid #9ED443; background: #f9fdf6; padding: 10px 12px; border-radius: 0 6px 6px 0; }
    
    p { margin-bottom: 20px; text-align: justify; letter-spacing: 0.05em; font-size: 1em; line-height: 1.8; }

    /* --- コンテンツ装飾 --- */
    
    /* 強調ボックス */
    .highlight-box { background: #f9fdf6; border: 2px solid #e0f0d0; border-radius: 10px; padding: 25px 20px; margin: 30px 0; position: relative; }
    .highlight-box::before { content: 'CHECK'; position: absolute; top: -12px; left: 15px; background: #76BC29; color: white; padding: 3px 12px; border-radius: 20px; font-weight: bold; font-size: 0.8em; }
    
    /* 画像スタイル */
    .responsive-img { width: 100%; height: auto; border-radius: 8px; border: 1px solid #e0f0d0; margin-bottom: 20px; }

    /* ステップリスト (Flexbox修正版) */
    .step-list { list-style: none; padding: 0; margin: 20px 0; }
    .step-item { 
      background: #fff; 
      border: 2px solid #e0f0d0; 
      border-radius: 8px; 
      padding: 20px; 
      margin-bottom: 20px;
      display: flex; /* Flexboxに変更 */
      align-items: flex-start; /* 上揃え */
    }
    .step-num {
      background: #76BC29;
      color: white;
      width: 30px;
      height: 30px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      margin-right: 15px; /* テキストとの間隔 */
      flex-shrink: 0; /* 番号が潰れないように固定 */
      margin-top: 3px; /* テキストの高さに合わせて微調整 */
    }
    .step-content {
      width: 100%; /* 残りの幅を確保 */
    }
    .step-title {
      font-weight: bold;
      color: #76BC29;
      font-size: 1.1em;
      margin-bottom: 10px;
      margin-top: 0;
      display: block;
      line-height: 1.4;
    }

    /* CTAボタン */
    .cta-area { text-align: center; margin: 40px 0; padding: 30px 20px; background: #f6fcf0; border-radius: 12px; }
    .contact-button { display: block; width: 100%; max-width: 300px; margin: 0 auto; background: linear-gradient(135deg, #76BC29, #9ED443); color: white; padding: 15px 20px; text-decoration: none; border-radius: 50px; font-weight: bold; font-size: 1.1em; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(118, 188, 41, 0.3); box-sizing: border-box; }
    .contact-button:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(118, 188, 41, 0.4); }

    /* スマホ対応 */
    @media (max-width: 768px) {
      header h1 { font-size: 1.6em; }
    }
  </style>


  <header>
    <h1>「保証人がいない！」を解決する方法</h1>
    <p>頼れる人がいなくても大丈夫。住まいを借りるための具体的なステップ</p>
  </header>

  <div class="article-container">

    <p>
      「親族が高齢で頼めない」「身寄りがなく保証人がいない」<br>
      お部屋探しで一番の壁になりがちなのが、この<strong>連帯保証人</strong>の問題です。
    </p>
    <p>
      しかし、諦める必要はありません。現在は保証人がいなくても借りられる仕組みが整っています。
    </p>

    <!-- 画像1: 悩む人と解決の光（ダミー） -->
<div style="text-align:leftoriginal;word-break: break-all;"><p class="clearfix" style=""><img src="//cdn.img-asp.jp/cms/707983_1_0_0_1.jpg" style="max-width: 100%;float:left;" alt=""></p></div>


    <section>
      <h2>解決策1：家賃債務保証会社の利用</h2>
      
      <div class="highlight-box">
        <p style="margin-bottom: 0; font-weight: bold;">
          ポイント：保証人の代わりに「保証会社」が家賃を保証します。
        </p>
      </div>

      <p>
        「家賃債務保証会社」とは、入居者が保証料を支払うことで、連帯保証人の代わりになってくれる会社のことです。<br>
        最近の賃貸物件では、連帯保証人ではなく、この保証会社の利用を必須とするケースが増えています。
      </p>
      <p>
        ただし、保証会社を利用するには審査があります。収入面などで不安がある場合は、次の方法を検討しましょう。
      </p>
    </section>

    <section>
      <h2>解決策2：居住支援法人のサポート</h2>

      <p>
        私たちのような「居住支援法人」は、保証会社の審査が通りにくい方や、緊急連絡先すらいないという方の強い味方です。
      </p>

      <ul class="step-list">
        <li class="step-item">
          <div class="step-num">1</div>
          <div class="step-content">
            <span class="step-title">家賃債務保証の提供</span>
            <p>
              居住支援法人が提携している保証会社を紹介したり、法人自体が家賃保証を行うケースがあります。<br>
              高齢者や障がい者など、一般の保証会社では断られやすい方でも利用しやすいのが特徴です。
            </p>
          </div>
        </li>
        <li class="step-item">
          <div class="step-num">2</div>
          <div class="step-content">
            <span class="step-title">緊急連絡先の引き受け</span>
            <p>
              契約時に必要な「緊急連絡先」になってくれる人がいない場合、居住支援法人がその役割を引き受けることができます。<br>
              （※見守り契約などがセットになる場合があります）
            </p>
          </div>
        </li>
        <li class="step-item">
          <div class="step-num">3</div>
          <div class="step-content">
            <span class="step-title">大家さんへの説明・交渉</span>
            <p>
              「保証人がいないと不安」という大家さんに対して、居住支援法人が見守りや死後事務を行うことを説明し、安心して入居を許可してもらえるよう働きかけます。
            </p>
          </div>
        </li>
      </ul>

      <!-- 画像2: 居住支援法人がサポートしているイメージ（ダミー） -->
<div style="text-align:leftoriginal;word-break: break-all;"><p class="clearfix" style=""><img src="//cdn.img-asp.jp/cms/707983_2_0_0_1.jpg" style="max-width: 100%;float:left;" alt=""></p></div>

    </section>

    <section>
      <h2>まずは相談から始めましょう</h2>
      <p>
        保証人がいないことは、決して恥ずかしいことではありません。<br>
        社会の仕組み（セーフティネット）を上手に活用すれば、希望の住まいは必ず見つかります。
      </p>
      <p>
        「私の場合はどうなるの？」と思われたら、まずはお気軽にご相談ください。<br>
        あなたの状況に合わせた最適なプランをご提案します。
      </p>
    </section>

    <!-- CTA -->
    <div class="cta-area">
      <h2 style="margin-top: 0; border: none; font-size: 1.4em;">お部屋探しのご相談はこちら</h2>
      <p>
        居住支援のプロフェッショナルが、保証人不要の物件探しをお手伝いします。
      </p>
      <a href="https://www.happi-ness-home.com/contact/" class="contact-button">お問い合わせはこちら</a>
      <p style="margin-top: 20px; font-size: 0.85em; color: #666;">※ご相談は無料です。秘密は厳守いたします。</p>
    </div>

  </div><!-- /article-container -->
]]></description>
            <pubDate>2025-07-22</pubDate>
        </item>
                
        <item>
            <title>こんなときどこに相談する？</title>
            <link>https://www.happi-ness-home.com/blog/entry-707967/</link>
            <description><![CDATA[
  <style>
    /* --- ベーススタイル --- */
    body { font-family: 'Hiragino Sans', 'Yu Gothic', sans-serif; margin: 0; padding: 0; line-height: 1.8; color: #333; background-color: #fff; }
    
    /* ヘッダー */
    header { background: linear-gradient(135deg, #76BC29, #9ED443); color: white; padding: 25px 15px; text-align: center; }
    header h1 { margin: 10px 0 10px 0; font-size: 1.8em; font-weight: bold; color: white; line-height: 1.3; }
    header p { font-size: 0.95em; margin-bottom: 0; opacity: 0.95; color: white; }
    
    /* 記事用コンテナ */
    .article-container { width: 100%; box-sizing: border-box; margin: 0 auto; padding: 30px 15px; }
    
    /* 見出し */
    h2 { color: #76BC29; border-bottom: 3px solid #76BC29; padding-bottom: 10px; margin-top: 50px; margin-bottom: 25px; font-size: 1.5em; position: relative; }
    h2::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 60px; height: 3px; background: #9ED443; }
    h3 { color: #444; font-size: 1.3em; margin-top: 35px; margin-bottom: 20px; padding-left: 12px; border-left: 5px solid #9ED443; background: #f9fdf6; padding: 10px 12px; border-radius: 0 6px 6px 0; }
    
    p { margin-bottom: 20px; text-align: justify; letter-spacing: 0.05em; font-size: 1em; line-height: 1.8; }

    /* --- コンテンツ装飾 --- */
    
    /* ケース別ボックス */
    .case-box { border: 2px solid #e0f0d0; border-radius: 12px; padding: 20px; margin-bottom: 30px; background-color: #fff; }
    .case-title { font-weight: bold; color: #76BC29; font-size: 1.2em; margin-bottom: 15px; display: flex; align-items: center; }
    .case-title::before { content: 'Q'; background: #76BC29; color: white; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-right: 10px; font-size: 0.9em; flex-shrink: 0; }
    
    .answer-box { background-color: #f9fdf6; padding: 15px; border-radius: 8px; margin-top: 10px; }
    .answer-title { font-weight: bold; color: #333; margin-bottom: 10px; display: flex; align-items: center; }
    .answer-title::before { content: 'A'; color: #76BC29; font-weight: bold; font-size: 1.3em; margin-right: 10px; }

    /* 具体的な業務リスト（修正版：Flexboxで配置） */
    .service-list { list-style: none; padding: 0; margin: 20px 0; }
    .service-list li { 
      margin-bottom: 15px; 
      position: relative; 
      font-weight: bold; 
      color: #444;
      display: flex; /* フレックスボックスを使用 */
      align-items: flex-start; /* 上揃え */
    }
    .service-list li::before { 
      content: '●'; 
      color: #76BC29; 
      margin-right: 8px; /* テキストとの間隔 */
      flex-shrink: 0; /* マークが縮まないようにする */
      /* absolute配置を削除 */
    }
    /* ラッパーdivを用意しなくても、li内のテキストを適切に扱うためのスタイル */
    .service-list li > div {
      display: block;
      width: 100%;
    }
    .service-detail { font-weight: normal; font-size: 0.9em; color: #666; display: block; margin-top: 5px; }

    /* 画像スタイル */
    .responsive-img { width: 100%; height: auto; border-radius: 8px; border: 1px solid #e0f0d0; margin-bottom: 20px; }

    /* CTAボタン */
    .cta-area { text-align: center; margin: 40px 0; padding: 30px 20px; background: #f6fcf0; border-radius: 12px; }
    .contact-button { display: block; width: 100%; max-width: 300px; margin: 0 auto; background: linear-gradient(135deg, #76BC29, #9ED443); color: white; padding: 15px 20px; text-decoration: none; border-radius: 50px; font-weight: bold; font-size: 1.1em; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(118, 188, 41, 0.3); box-sizing: border-box; }
    .contact-button:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(118, 188, 41, 0.4); }

    /* スマホ対応 */
    @media (max-width: 768px) {
      header h1 { font-size: 1.6em; }
    }
  </style>

  <header>
    <h1>こんなときどこに相談する？</h1>
    <p>住まいのお悩み別・正しい相談先ガイド</p>
  </header>

  <div class="article-container">

    <p>
      「住まい」に関する悩みは、状況によって相談すべき場所が異なります。<br>
      ご自身の状況に合わせて、最適な相談先を見つけましょう。
    </p>

  <div style="text-align:leftoriginal;word-break: break-all;"><p class="clearfix" style=""><img src="//cdn.img-asp.jp/cms/707967_1_0_0_1.jpg" style="max-width: 100%;float:left;" alt=""></p></div>


    <section>
      <h2>状況別：相談先チェック</h2>

      <!-- ケース1 -->
      <div class="case-box">
        <div class="case-title">家賃が払えない・住む場所がない</div>
        <p>「失業して家賃が払えない」「ネットカフェで生活している」など、経済的に困窮している場合。</p>
        <div class="answer-box">
          <div class="answer-title">自立相談支援機関（役所など）</div>
          <p>
            各自治体の福祉窓口（生活福祉課など）へ相談してください。<br>
            <strong>「住居確保給付金」</strong>（家賃相当額の支給）や、一時的な宿泊場所の提供を受けられる可能性があります。
          </p>
        </div>
      </div>

      <!-- ケース2 -->
      <div class="case-box">
        <div class="case-title">高齢・障がい等を理由に入居を断られる</div>
        <p>「不動産屋に行ったが『高齢者はNG』と言われた」「障がいがあることを伝えたら断られた」という場合。</p>
        <div class="answer-box">
          <div class="answer-title">居住支援法人（私たちなど）</div>
          <p>
            高齢者や障がい者の受け入れに理解のある大家さんや物件を紹介します。<br>
            私たちのような<strong>居住支援法人</strong>は、入居後の見守りサポートなどをセットにすることで、大家さんの不安を解消し、入居を後押しします。
          </p>
        </div>
      </div>

      <!-- ケース3 -->
      <div class="case-box">
        <div class="case-title">身寄りがなく、保証人がいない</div>
        <p>「頼れる家族がいない」「保証会社も通らない」といった場合。</p>
        <div class="answer-box">
          <div class="answer-title">居住支援法人 / 社会福祉協議会</div>
          <p>
            居住支援法人が家賃債務保証を行うケースや、保証会社を利用するためのサポートを行います。<br>
            また、金銭管理に不安がある場合は、社会福祉協議会の<strong>「日常生活自立支援事業」</strong>などを活用し、生活の安定を図ることも可能です。
          </p>
        </div>
      </div>

    </section>

    <section>
      <h2>居住支援法人ができること</h2>
      <p>
        私たち「居住支援法人」は、単にお部屋を紹介するだけではありません。<br>
        入居前から入居後、そして万が一の時まで、一貫してサポートします。
      </p>

     <div style="text-align:leftoriginal;word-break: break-all;"><p class="clearfix" style=""><img src="//cdn.img-asp.jp/cms/707967_2_0_0_1.jpg" style="max-width: 100%;float:left;" alt=""></p></div>

      <h3>1. 入居前のサポート</h3>
      <ul class="service-list">
        <li>
          <div>
            物件探し・同行
            <span class="service-detail">条件に合う物件を探し、内見に同行します。</span>
          </div>
        </li>
        <li>
          <div>
            契約サポート
            <span class="service-detail">契約手続きの同席や、書類作成のお手伝いをします。</span>
          </div>
        </li>
      </ul>

      <h3>2. 入居中のサポート</h3>
      <ul class="service-list">
        <li>
          <div>
            見守り・安否確認
            <span class="service-detail">定期的な電話や訪問で、変わりがないか確認します。</span>
          </div>
        </li>
        <li>
          <div>
            生活相談
            <span class="service-detail">「介護保険を使いたい」「近隣とトラブルになった」などの困りごとに対応します。</span>
          </div>
        </li>
      </ul>

      <h3>3. 退去時・万が一のサポート</h3>
      <ul class="service-list">
        <li>
          <div>
            死後事務（葬儀・納骨）
            <span class="service-detail">身寄りがない場合、葬儀や納骨の手配を生前に契約（死後事務委任）することができます。</span>
          </div>
        </li>
        <li>
          <div>
            残置物処理
            <span class="service-detail">お部屋に残された荷物の片付けを手配します。</span>
          </div>
        </li>
      </ul>
    </section>

    <!-- CTA -->
    <div class="cta-area">
      <h2 style="margin-top: 0; border: none; font-size: 1.4em;">ひとりで抱え込まずご相談ください</h2>
      <p>
        「どこに相談していいかわからない」という場合も、まずは私たちにご連絡ください。<br>
        必要に応じて、適切な行政窓口や支援機関へお繋ぎします。
      </p>
      <a href="https://www.happi-ness-home.com/contact/" class="contact-button">お問い合わせはこちら</a>
      <p style="margin-top: 20px; font-size: 0.85em; color: #666;">※ご相談は無料です。秘密は厳守いたします。</p>
    </div>

  </div><!-- /article-container -->]]></description>
            <pubDate>2025-07-21</pubDate>
        </item>
                
        <item>
            <title>居住支援の社会的意義とSDGs</title>
            <link>https://www.happi-ness-home.com/blog/entry-708003/</link>
            <description><![CDATA[<html lang="ja">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>居住支援の社会的意義とSDGs｜パートナー募集</title>
  <style>
    /* --- ベーススタイル (ガイド記事を踏襲) --- */
    body { font-family: 'Hiragino Sans', 'Yu Gothic', sans-serif; margin: 0; padding: 0; line-height: 1.8; color: #333; background-color: #fff; }
    
    /* ヘッダー：ビジョンを伝える少し落ち着いたトーン */
    header { background: linear-gradient(135deg, #2c7873, #52de97); color: white; padding: 50px 20px; text-align: center; }
    header h1 { margin: 10px 0 15px 0; font-size: 1.8em; font-weight: bold; color: white; line-height: 1.4; }
    header p { font-size: 1.1em; margin-bottom: 0; opacity: 0.95; color: white; font-weight: 500; }
    
    .article-container { width: 100%; box-sizing: border-box; max-width: 840px; margin: 0 auto; padding: 50px 20px; }
    
    /* 見出しスタイル */
    h2 { color: #2c7873; border-bottom: 3px solid #2c7873; padding-bottom: 10px; margin-top: 60px; margin-bottom: 30px; font-size: 1.6em; position: relative; }
    h2::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 60px; height: 3px; background: #52de97; }
    
    h3 { color: #333; font-size: 1.3em; margin-top: 40px; margin-bottom: 20px; font-weight: bold; }
    
    p { margin-bottom: 25px; text-align: justify; letter-spacing: 0.05em; font-size: 1em; line-height: 1.9; }
    
    /* 強調テキスト */
    .highlight { background: linear-gradient(transparent 60%, #e0f2f1 60%); font-weight: bold; color: #004d40; }

    /* SDGs ボックススタイル */
    .sdgs-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 25px;
      margin: 40px 0;
    }
    .sdgs-card {
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 4px 6px rgba(0,0,0,0.05);
      transition: transform 0.3s;
      position: relative;
      overflow: hidden;
    }
    .sdgs-card:hover { transform: translateY(-3px); }
    
    /* 各SDGsカラーのアクセントバー */
    .sdgs-card.goal11 { border-top: 6px solid #FD9D24; } /* 住み続けられるまちづくり */
    .sdgs-card.goal3 { border-top: 6px solid #4C9F38; }  /* 健康と福祉 */
    .sdgs-card.goal17 { border-top: 6px solid #19486A; }  /* パートナーシップ */
    .sdgs-card.goal1 { border-top: 6px solid #E5243B; }   /* 貧困をなくそう */

    .sdgs-num { font-weight: bold; font-size: 0.9em; display: inline-block; padding: 2px 8px; border-radius: 4px; color: white; margin-bottom: 10px; }
    .goal11 .sdgs-num { background-color: #FD9D24; }
    .goal3 .sdgs-num { background-color: #4C9F38; }
    .goal17 .sdgs-num { background-color: #19486A; }
    .goal1 .sdgs-num { background-color: #E5243B; }

    .sdgs-title { font-weight: bold; font-size: 1.15em; margin-bottom: 10px; display: block; }
    .sdgs-desc { font-size: 0.95em; color: #555; }

    /* メッセージボックス */
    .message-box {
      background-color: #f4fcfc;
      padding: 40px 30px;
      border-radius: 8px;
      margin: 50px 0;
      text-align: center;
      border: 1px solid #d4eaea;
    }
    .message-title { font-size: 1.4em; color: #2c7873; font-weight: bold; margin-bottom: 20px; }
    
    /* CTAエリア */
    .cta-area { text-align: center; margin: 60px 0; padding: 50px 20px; background: #eef7f6; border-radius: 12px; }
    .contact-button { display: inline-block; max-width: 380px; width: 80%; background: #2c7873; color: white; padding: 20px 25px; text-decoration: none; border-radius: 50px; font-weight: bold; font-size: 1.2em; transition: all 0.3s ease; box-shadow: 0 4px 10px rgba(44, 120, 115, 0.3); }
    .contact-button:hover { color: #fff; background-color: #24635f; transform: translateY(-2px); box-shadow: 0 6px 15px rgba(44, 120, 115, 0.4); }

    /* レスポンシブ画像 */
    .vision-img { width: 100%; height: auto; border-radius: 8px; margin-bottom: 30px; object-fit: cover; }

    @media (max-width: 768px) {
      .sdgs-container { grid-template-columns: 1fr; }
      header h1 { font-size: 1.5em; }
    }
  </style>

  <header>
    <h1>「住まい」から始まる、<br>誰もが安心できる地域社会へ</h1>
    <p>居住支援が担う社会的使命とSDGsへの貢献</p>
  </header>

  <div class="article-container">
    
    <section>
      <p>
        医療・福祉の現場で日々尽力されている皆様へ。<br>
        私たち居住支援法人は、単に「部屋を紹介する」だけの存在ではありません。<br>
        <span class="highlight">「住まいは人権である（Housing First）」</span>という理念のもと、すべての人が地域の中で安心して暮らせる土台を作ることを使命としています。
      </p>
      <p>
        今、なぜ医療・福祉と不動産の連携が必要なのか。SDGs（持続可能な開発目標）の視点から、私たちが目指す未来についてお伝えします。
      </p>
    </section>

    <!-- イメージ画像エリア -->
<div style="text-align:leftoriginal;word-break: break-all;"><p class="clearfix" style=""><img src="//cdn.img-asp.jp/cms/708003_1_0_0_1.jpg" style="max-width: 100%;float:left;" alt=""></p></div>


    <section>
      <h2>居住支援 × SDGs で解決する社会課題</h2>
      <p>
        私たちの活動は、SDGsの以下の目標達成に直結しています。医療・福祉関係者の皆様との連携こそが、この目標を実現する鍵となります。
      </p>

      <div class="sdgs-container">
        <!-- Goal 11 -->
        <div class="sdgs-card goal11">
          <span class="sdgs-num">Goal 11</span>
          <span class="sdgs-title">住み続けられるまちづくりを</span>
          <div class="sdgs-desc">
            高齢者、障害者、低所得者など、住宅確保要配慮者が地域から排除されることなく、安全な住居にアクセスできる社会を実現します。空き家問題の解消にも寄与します。
          </div>
        </div>

        <!-- Goal 3 -->
        <div class="sdgs-card goal3">
          <span class="sdgs-num">Goal 3</span>
          <span class="sdgs-title">すべての人に健康と福祉を</span>
          <div class="sdgs-desc">
            「住まい」の喪失は、健康悪化や医療中断の最大のリスクです。安定した住居を確保することで、在宅医療や介護サービスが適切に機能する環境を整えます。
          </div>
        </div>

        <!-- Goal 1 -->
        <div class="sdgs-card goal1">
          <span class="sdgs-num">Goal 1</span>
          <span class="sdgs-title">貧困をなくそう</span>
          <div class="sdgs-desc">
            住居は生活再建の基盤（ベース）です。住所不定による就労の困難さや、社会的孤立を防ぎ、貧困の連鎖を断ち切るための最初のステップを支援します。
          </div>
        </div>

        <!-- Goal 17 -->
        <div class="sdgs-card goal17">
          <span class="sdgs-num">Goal 17</span>
          <span class="sdgs-title">パートナーシップで目標を達成しよう</span>
          <div class="sdgs-desc">
            不動産分野だけ、福祉分野だけでは解決できない複合的な課題に対し、多職種連携（チームアプローチ）で挑みます。
          </div>
        </div>
      </div>
    </section>

    <section>
      <h2>私たちが共に実現したい未来</h2>
      
      <h3>1. 「社会的入院」のない地域へ</h3>
      <p>
        病状は安定しているのに「帰る家がない」という理由だけで入院を余儀なくされる方がいます。<br>
        私たちが受け皿となる住まいを用意し、医療・福祉職の皆様が入居後のケアを担うことで、ご本人が望む地域生活への移行を実現します。
      </p>

      <h3>2. 孤立死（孤独死）を防ぐ見守りの輪</h3>
      <p>
        大家さんが高齢者の入居を拒む最大の理由は「孤独死への不安」です。<br>
        私たちが定期的な安否確認を行い、異変時に速やかに医療機関やケアマネジャーへ繋ぐスキームを構築することで、大家さんの不安を解消し、入居のハードルを下げることができます。
      </p>

      <h3>3. 誰もが「断られない」不動産市場を作る</h3>
      <p>
        障害や年齢を理由に入居を断られる経験は、ご本人の尊厳を深く傷つけます。<br>
        福祉的な視点を持った不動産管理を行うことで、誰もが当たり前に住まいを選べる市場への変革を目指しています。
      </p>
    </section>

    <div class="message-box">
      <div class="message-title">パートナーを募集しています</div>
      <p style="margin-bottom: 0;">
        地域包括ケアシステムの基盤である「住まい」を守るために、<br>
        あなたの専門知識と力を貸してください。<br><br>
        <strong>
        ・退院支援に課題を感じている病院・SW様<br>
        ・利用者の住居確保に苦慮している訪問看護・介護事業所様<br>
        ・空室対策と社会貢献を両立したい不動産オーナー様
        </strong>
        <br><br>
        まずは一度、情報交換や勉強会から始めませんか？
      </p>
    </div>

    <div class="cta-area">
      <h2>連携・協働に関するお問い合わせ</h2>
      <p>講演依頼、ケース会議への参加、連携協定のご相談など<br>柔軟に対応させていただきます。</p>
      <a href="https://www.happi-ness-home.com/contact/" class="contact-button">お問い合わせ窓口</a>

    </div>

  </div>]]></description>
            <pubDate>2025-07-01</pubDate>
        </item>
                
        <item>
            <title>居住支援法人とは</title>
            <link>https://www.happi-ness-home.com/blog/entry-707956/</link>
            <description><![CDATA[
  <style>
    /* --- ベーススタイル --- */
    body { font-family: 'Hiragino Sans', 'Yu Gothic', sans-serif; margin: 0; padding: 0; line-height: 1.8; color: #333; background-color: #fff; }
    
    /* 510px幅を想定しているため、ヘッダーもシンプルに */
    header { background: linear-gradient(135deg, #76BC29, #9ED443); color: white; padding: 25px 15px; text-align: center; }
    
    /* ヘッダータイトル調整: 白文字、サイズ確保 */
    header h1 { margin: 10px 0 10px 0; font-size: 1.8em; font-weight: bold; color: white; line-height: 1.3; }
    header p { font-size: 0.95em; margin-bottom: 0; opacity: 0.95; color: white; }
    
    /* 記事用コンテナ：親要素（510px）に合わせるため幅100% */
    .article-container { width: 100%; box-sizing: border-box; margin: 0 auto; padding: 30px 15px; }
    
    /* 見出しスタイル：スマホ・狭幅向けにサイズ調整 */
    h2 { color: #76BC29; border-bottom: 3px solid #76BC29; padding-bottom: 10px; margin-top: 50px; margin-bottom: 25px; font-size: 1.5em; position: relative; }
    h2::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 60px; height: 3px; background: #9ED443; }
    h3 { color: #444; font-size: 1.3em; margin-top: 35px; margin-bottom: 20px; padding-left: 12px; border-left: 5px solid #9ED443; background: #f9fdf6; padding: 10px 12px; border-radius: 0 6px 6px 0; }
    h4 { color: #76BC29; font-size: 1.1em; margin-top: 25px; margin-bottom: 10px; font-weight: bold; display: flex; align-items: center; }
    h4::before { content: '■'; margin-right: 8px; font-size: 0.8em; }

    /* テキストスタイル */
    p { margin-bottom: 20px; text-align: justify; letter-spacing: 0.05em; font-size: 1em; line-height: 1.8; }

    /* --- コンテンツ装飾用クラス --- */
    
    /* 強調ボックス */
    .highlight-box { background: #f9fdf6; border: 2px solid #e0f0d0; border-radius: 10px; padding: 25px 20px; margin: 30px 0; position: relative; }
    .highlight-box::before { content: 'POINT'; position: absolute; top: -12px; left: 15px; background: #76BC29; color: white; padding: 3px 12px; border-radius: 20px; font-weight: bold; font-size: 0.8em; }
    .highlight-box strong { color: #76BC29; font-weight: bold; background: linear-gradient(transparent 70%, #d5ecc0 70%); }

    /* 1カラムレイアウト（縦積み） */
    .col-1-stack { display: block; margin: 25px 0; }
    .col-1-text { margin-bottom: 20px; }
    .col-1-img { width: 100%; margin-bottom: 20px; text-align: center; }
    
    /* 画像用スタイル */
    .responsive-img {
      width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.08);
      border: 1px solid #e0f0d0;
    }
    
    /* 図解風ボックス */
    .concept-diagram { background: #fff; border: 1px solid #ddd; border-radius: 10px; padding: 15px; text-align: center; margin: 25px 0; box-shadow: 0 4px 8px rgba(0,0,0,0.05); }
    .diagram-caption { font-size: 0.85em; color: #666; margin-top: 10px; }

    /* メリットリスト（1列） */
    .merit-list { display: grid; grid-template-columns: 1fr; gap: 15px; margin: 25px 0; }
    .merit-item { background: #fff; border: 2px solid #e0f0d0; border-radius: 8px; padding: 20px; }
    .merit-title { color: #76BC29; font-weight: bold; font-size: 1.1em; margin-bottom: 8px; display: block; text-align: center; }
    
    /* チェックリスト */
    .check-list { list-style: none; padding: 0; margin: 20px 0; }
    .check-list li { position: relative; padding-left: 30px; margin-bottom: 15px; font-weight: bold; color: #444; }
    .check-list li::before { content: '✔'; color: #76BC29; position: absolute; left: 0; top: 0; font-size: 1.2em; }

    /* CTAボタン */
    .cta-area { text-align: center; margin: 40px 0; padding: 30px 20px; background: #f6fcf0; border-radius: 12px; }
    .contact-button { display: block; width: 100%; max-width: 300px; margin: 0 auto; background: linear-gradient(135deg, #76BC29, #9ED443); color: white; padding: 15px 20px; text-decoration: none; border-radius: 50px; font-weight: bold; font-size: 1.1em; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(118, 188, 41, 0.3); box-sizing: border-box; }
    .contact-button:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(118, 188, 41, 0.4); }

    /* スマホ対応 */
    @media (max-width: 768px) {
      header h1 { font-size: 1.6em; }
    }
  </style>
</head>
<body>

  <header>
    <h1>居住支援法人とは？</h1>
    <p>都道府県の指定を受けた「住まいのサポート役」について解説します</p>
  </header>

  <div class="article-container">

    <!-- 導入部 -->
    <div class="highlight-box">
      <h3 style="margin-top: 0; border: none; padding: 0; background: none; text-align: center; font-size: 1.4em; color: #76BC29;">居住支援法人（きょじゅうしえんほうじん）</h3>
      <p style="text-align: center; margin-bottom: 20px;">
        <strong>「住宅セーフティネット法」に基づき<br>都道府県が指定する公的な支援団体</strong>
      </p>
      <p style="margin-bottom: 0;">
        高齢者、障がい者、子育て世帯など、住まい探しに困っている方々が、民間賃貸住宅へスムーズに入居し、安心して暮らし続けられるようにサポートを行う法人のことです。
      </p>
    </div>

    <!-- 1. 居住支援法人の役割 -->
    <section>
      <h2>大家さんと入居者の「架け橋」</h2>
      
      <div class="col-1-stack">
        <div class="col-1-text">
          <p>
            「部屋を貸したいけれど、家賃滞納や孤独死が心配」という大家さんと、「部屋を借りたいけれど、保証人がいない・断られてしまう」という入居希望者。<br>
            この両者の間に入り、不安を取り除くのが<strong>居住支援法人</strong>の役割です。
          </p>
          <p>
            NPO法人、社会福祉法人、不動産会社などが、活動実績や財務状況などの審査を経て、都道府県知事から指定を受けます。公的なお墨付きがあるため、安心して相談できるのが特徴です。
          </p>
        </div>
        <div class="col-1-img">
          <!-- 生成された画像1: 架け橋のイメージ -->
<div style="text-align:leftoriginal;word-break: break-all;"><p class="clearfix" style=""><img src="//cdn.img-asp.jp/cms/707956_1_0_0_1.jpg" style="max-width: 100%;float:left;" alt=""></p></div>

        </div>
      </div>
    </section>

    <!-- 2. 具体的な業務内容 -->
    <section>
      <h2>具体的に何をしてくれるの？</h2>
      <p>
        居住支援法人が行う業務は多岐にわたりますが、主に以下の3つの柱でサポートを行います。
      </p>

      <div class="merit-list">
        <div class="merit-item">
          <span class="merit-title">1. 家賃債務保証の提供</span>
          <p>連帯保証人がいない方のために、法人が家賃保証を引き受けたり、保証会社との手続きをサポートします。これにより、入居のハードルがぐっと下がります。</p>
        </div>
        <div class="merit-item">
          <span class="merit-title">2. 入居支援・マッチング</span>
          <p>「高齢者歓迎」「保証人不要」など、条件に合う物件の情報を提供し、内見への同行や契約手続きのサポートを行います。</p>
        </div>
        <div class="merit-item">
          <span class="merit-title">3. 生活支援・見守り</span>
          <p>入居後も定期的な訪問や電話連絡を行い、安否確認や生活相談に応じます。また、万が一の時のための「死後事務（葬儀や残置物の処理）」を引き受ける場合もあります。</p>
        </div>
      </div>

      <div class="col-1-img">
        <!-- 生成された画像2: 支援業務のイメージ -->
        <!-- ※同じ画像が出る場合はプレースホルダーに差し替えてください -->
        <img src="https://placehold.jp/30/f0f9e8/76bc29/510x340.png?text=【画像】見守りや家賃保証など%0A具体的な支援サービスの様子" alt="居住支援サービスのイメージ" class="responsive-img">
      </div>
    </section>

    <!-- 3. 利用するメリット -->
    <section>
      <h2>利用するメリット</h2>
      
      <div class="concept-diagram">
        <h4 style="margin-top:0; justify-content:center;">入居者（借り手）のメリット</h4>
        <ul class="check-list" style="text-align: left; display: inline-block;">
          <li>保証人がいなくても部屋が借りやすくなる</li>
          <li>入居後も相談できる相手がいる安心感</li>
          <li>就労支援や福祉サービスへのつなぎも期待できる</li>
        </ul>
      </div>

      <div class="concept-diagram" style="margin-top: 20px;">
        <h4 style="margin-top:0; justify-content:center;">大家さん（貸し手）のメリット</h4>
        <ul class="check-list" style="text-align: left; display: inline-block;">
          <li>家賃滞納のリスクを軽減できる</li>
          <li>安否確認やトラブル対応を任せられる</li>
          <li>空き家・空き室を有効活用できる</li>
        </ul>
      </div>
    </section>

    <!-- CTA -->
    <div class="cta-area">
      <h2 style="margin-top: 0; border: none; font-size: 1.4em;">まずはお気軽にご相談ください</h2>
      <p>
        私たちは都道府県から指定を受けた居住支援法人として、皆様の住まい探しと安心な暮らしを全力でサポートします。
      </p>
      <a href="https://www.happi-ness-home.com/contact/" class="contact-button">お問い合わせはこちら</a>
      <p style="margin-top: 20px; font-size: 0.85em; color: #666;">※ご相談は無料です。秘密は厳守いたします。</p>
    </div>

  </div><!-- /article-container -->]]></description>
            <pubDate>2025-06-27</pubDate>
        </item>
                
        <item>
            <title>居住支援とは</title>
            <link>https://www.happi-ness-home.com/blog/entry-707912/</link>
            <description><![CDATA[
  <style>
    /* --- ベーススタイル --- */
    body { font-family: 'Hiragino Sans', 'Yu Gothic', sans-serif; margin: 0; padding: 0; line-height: 1.8; color: #333; background-color: #fff; }
    
    /* 510px幅を想定しているため、ヘッダーもシンプルに */
    header { background: linear-gradient(135deg, #76BC29, #9ED443); color: white; padding: 25px 15px; text-align: center; }
    
    /* ヘッダータイトル調整: 白文字、サイズ確保 */
    header h1 { margin: 10px 0 10px 0; font-size: 1.8em; font-weight: bold; color: white; line-height: 1.3; }
    header p { font-size: 0.95em; margin-bottom: 0; opacity: 0.95; color: white; }
    
    /* 記事用コンテナ：親要素（510px）に合わせるため幅100% */
    .article-container { width: 100%; box-sizing: border-box; margin: 0 auto; padding: 30px 15px; }
    
    /* 見出しスタイル：スマホ・狭幅向けにサイズ調整 */
    h2 { color: #76BC29; border-bottom: 3px solid #76BC29; padding-bottom: 10px; margin-top: 50px; margin-bottom: 25px; font-size: 1.5em; position: relative; }
    h2::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 60px; height: 3px; background: #9ED443; }
    h3 { color: #444; font-size: 1.3em; margin-top: 35px; margin-bottom: 20px; padding-left: 12px; border-left: 5px solid #9ED443; background: #f9fdf6; padding: 10px 12px; border-radius: 0 6px 6px 0; }
    h4 { color: #76BC29; font-size: 1.1em; margin-top: 25px; margin-bottom: 10px; font-weight: bold; display: flex; align-items: center; }
    h4::before { content: '■'; margin-right: 8px; font-size: 0.8em; }

    /* 指定されたスタイルに変更 */
    p { margin-bottom: 20px; text-align: justify; letter-spacing: 0.05em; font-size: 1em; line-height: 1.8; }

    /* --- コンテンツ装飾用クラス --- */
    
    /* 強調ボックス */
    .highlight-box { background: #f9fdf6; border: 2px solid #e0f0d0; border-radius: 10px; padding: 25px 20px; margin: 30px 0; position: relative; }
    .highlight-box::before { content: 'POINT'; position: absolute; top: -12px; left: 15px; background: #76BC29; color: white; padding: 3px 12px; border-radius: 20px; font-weight: bold; font-size: 0.8em; }
    .highlight-box strong { color: #76BC29; font-weight: bold; background: linear-gradient(transparent 70%, #d5ecc0 70%); }

    /* 1カラムレイアウト（縦積み） */
    .col-1-stack { display: block; margin: 25px 0; }
    .col-1-text { margin-bottom: 20px; }
    .col-1-img { width: 100%; margin-bottom: 20px; text-align: center; }
    
    /* 画像用スタイル */
    .responsive-img {
      width: 100%;
      height: auto;
      border-radius: 8px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.08);
      border: 1px solid #e0f0d0;
    }
    
    /* 図解風ボックス */
    .concept-diagram { background: #fff; border: 1px solid #ddd; border-radius: 10px; padding: 15px; text-align: center; margin: 25px 0; box-shadow: 0 4px 8px rgba(0,0,0,0.05); }
    .diagram-caption { font-size: 0.85em; color: #666; margin-top: 10px; }

    /* メリットリスト（1列） */
    .merit-list { display: grid; grid-template-columns: 1fr; gap: 15px; margin: 25px 0; }
    .merit-item { background: #fff; border: 2px solid #e0f0d0; border-radius: 8px; padding: 20px; }
    .merit-title { color: #76BC29; font-weight: bold; font-size: 1.1em; margin-bottom: 8px; display: block; text-align: center; }
    
    /* ステップフロー（崩れ対策：Flexbox化） */
    .step-flow { counter-reset: step; list-style: none; padding: 0; margin: 25px 0; }
    .step-item { 
      display: flex; /* フレックスボックスに変更 */
      align-items: flex-start; /* 上揃え */
      margin-bottom: 25px; 
    }
    .step-item::before { 
      counter-increment: step; 
      content: counter(step); 
      /* absoluteをやめてstatic配置 */
      position: static;
      margin-right: 15px; /* アイコンとテキストの間隔 */
      width: 32px; 
      height: 32px; 
      background: #76BC29; 
      color: white; 
      text-align: center; 
      line-height: 32px; 
      border-radius: 50%; 
      font-weight: bold; 
      font-size: 0.9em; 
      flex-shrink: 0; /* アイコンが縮まないようにする */
    }
    .step-head { font-weight: bold; font-size: 1.05em; color: #333; display: block; margin-bottom: 3px; }

    /* CTAボタン */
    .cta-area { text-align: center; margin: 40px 0; padding: 30px 20px; background: #f6fcf0; border-radius: 12px; }
    .contact-button { display: block; width: 100%; max-width: 300px; margin: 0 auto; background: linear-gradient(135deg, #76BC29, #9ED443); color: white; padding: 15px 20px; text-decoration: none; border-radius: 50px; font-weight: bold; font-size: 1.1em; transition: all 0.3s ease; box-shadow: 0 4px 15px rgba(118, 188, 41, 0.3); box-sizing: border-box; }
    .contact-button:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(118, 188, 41, 0.4); }

    /* パンくずリストスタイル削除 */

    /* スマホ対応 */
    @media (max-width: 768px) {
      /* スマホでもh1が極端に小さくならないように調整 */
      header h1 { font-size: 1.6em; }
    }
  </style>

  <header>
    <h1>居住支援とは？</h1>
    <p>誰もが自分らしく、地域で暮らし続けるための「住まい」と「見守り」の仕組み</p>
  </header>

  <!-- パンくずリスト削除済み -->

  <div class="article-container">

    <!-- 導入部 -->
    <div class="highlight-box">
      <h3 style="margin-top: 0; border: none; padding: 0; background: none; text-align: center; font-size: 1.4em; color: #76BC29;">居住支援（きょじゅうしえん）の定義</h3>
      <p style="text-align: center; margin-bottom: 20px;">
        <strong>「住まいの確保」</strong>と<strong>「入居後の生活支援」</strong>をセットで提供する仕組み
      </p>
      <p style="margin-bottom: 0;">
        高齢者、障がい者、外国人、子育て世帯など、住まい探しに困難を抱える方々（住宅確保要配慮者）が、民間賃貸住宅へスムーズに入居し、地域社会の中で安心して暮らし続けられるようにサポートする公的な取り組みです。
      </p>
    </div>

    <!-- 1. 社会的背景 -->
    <section>
      <h2>なぜ今、「居住支援」が必要なのか？</h2>
      
      <!-- 1カラム構成に変更 -->
      <div class="col-1-stack">
        <div class="col-1-text">
          <p>
            現在、日本は少子高齢化が進み、単身世帯が急増しています。これまでのように「家族が保証人になり、生活を支える」というモデルが成り立ちにくくなっています。<br>
            一方で、賃貸住宅市場では「空き家」が増加しており、本来であれば部屋は余っている状態です。
          </p>
          <p>
            しかし、多くの大家さん（賃貸人）は、「家賃の滞納」「孤独死などの事故」「近隣トラブル」への不安から、高齢者や単身者への貸し出しを躊躇してしまう現状があります。<br>
            この<strong>「借りたいのに借りられない人」</strong>と<strong>「貸したいのに不安な大家さん」</strong>のミスマッチを解消するために生まれたのが、私たち居住支援法人の役割です。
          </p>
        </div>
      </div>
    </section>

    <!-- 2. 仕組み -->
    <section>
      <h2>居住支援の仕組みと連携</h2>
      <p>
        居住支援は、私たちのような「不動産・福祉事業者」だけで完結するものではありません。地域の「行政（福祉課・住宅課）」、「医療機関」、「地域住民（民生委員など）」と連携し、チームで支えるのが特徴です。
      </p>

      <div class="concept-diagram">
        <!-- 図解部分 -->
        <div style="display: flex; flex-direction: column; gap: 15px; padding: 15px; text-align: center; background: #fcffff; border-radius: 8px;">
           <div style="background:#e0f0d0; padding:15px; border-radius:8px;">
             <strong>入居者（借り手）</strong><br><span style="font-size:0.8em">住まいが見つからない<br>生活に不安がある</span>
           </div>
           
           <div style="color: #76BC29; font-size: 1.5em; line-height: 0.5;">▼</div>
           
           <div style="background:#76BC29; color:white; padding:20px; border-radius:8px;">
             <strong>居住支援法人（つなぐ役割）</strong><br>
             物件紹介・見守り・死後事務・緊急対応
           </div>
           
           <div style="color: #76BC29; font-size: 1.5em; line-height: 0.5;">▼</div>

           <div style="background:#e0f0d0; padding:15px; border-radius:8px;">
             <strong>大家さん（貸し手）</strong><br><span style="font-size:0.8em">空き家を埋めたい<br>トラブルが心配</span>
           </div>
        </div>
        <p class="diagram-caption">図：三者の信頼関係を構築する居住支援のイメージ</p>
      </div>

      <p>
        平成29年に改正された<strong>「住宅セーフティネット法」</strong>に基づき、都道府県から指定を受けた法人が「居住支援法人」として活動しています。私たちは、公正中立な立場で、双方の不安を取り除きます。
      </p>
    </section>

    <!-- 3. 具体的な支援内容 -->
    <section>
      <h2>具体的なサポート内容（3つの柱）</h2>
      <p>支援内容は大きく分けて、「入居前」「入居中」「万が一の時」の3段階があります。</p>

      <h3>1. 住まいの確保支援（入居前）</h3>
      <div class="col-1-stack">
        <div class="col-1-text">
          <p>
            ご本人の身体状況や経済状況（年金受給額や生活保護の有無）をヒアリングし、無理のない家賃で暮らせる物件を探します。
          </p>
          <ul class="step-flow">
            <li class="step-item">
              <!-- before要素を使わずdivで囲む手もあるが、CSSで対応済み -->
              <div style="width: 100%;">
                <span class="step-head">同行・内見サポート</span>
                物件の内見に同行し、段差の有無やスーパーへの距離など、生活のしやすさを一緒に確認します。
              </div>
            </li>
            <li class="step-item">
              <div style="width: 100%;">
                <span class="step-head">契約・保証人サポート</span>
                保証人がいない場合は、家賃債務保証会社の利用手続きをサポートします。また、契約書類の記入もお手伝いします。
              </div>
            </li>
          </ul>
        </div>
      </div>

      <h3>2. 生活支援・見守り（入居中）</h3>
      <p>
        鍵をお渡しして終わりではありません。地域で孤立しないよう、継続的に関わり続けます。
      </p>
      <div class="merit-list">
        <div class="merit-item">
          <span class="merit-title">定期的な見守り</span>
          <p>電話や訪問による安否確認を行います。「元気ですか？」「困ったことはないですか？」と声をかけることで、病気の早期発見や孤独死の防止につなげます。</p>
        </div>
        <div class="merit-item">
          <span class="merit-title">生活相談・つなぎ</span>
          <p>「介護保険を使いたい」「電球が切れて交換できない」といった日常の困りごとをヒアリングし、地域の福祉サービスやボランティアへつなぎます。</p>
        </div>
      </div>

      <h3>3. 死後事務・残置物対応（万が一の時）</h3>
      <p>
        身寄りのない高齢者の方にとって最大の不安は「亡くなった後のこと」です。居住支援では、以下のような備えも提案します。
      </p>
      <ul style="list-style-type: disc; padding-left: 20px; margin-bottom: 20px;">
        <li><strong>死後事務委任契約：</strong> 葬儀や納骨の手配をあらかじめ契約しておきます。</li>
        <li><strong>残置物処理：</strong> お部屋に残された家財道具の片付けや、契約解除の手続きを代行します。</li>
      </ul>
      <p>これにより、大家さんも安心して物件を提供することが可能になります。</p>
    </section>

    <!-- 4. 大家さんへのメッセージ -->
    <section>
      <h2>不動産オーナー・管理会社の皆様へ</h2>
      <p>
        「高齢者の入居はリスクが高い」とお考えではありませんか？<br>
        居住支援法人が介入することで、そのリスクは大幅に軽減できます。空き室対策の一環としても、ぜひ居住支援をご活用ください。
      </p>

      <div class="highlight-box" style="background-color: #fff9f0; border-color: #ffdcb0;">
        <h4 style="margin-top:0; color: #d68c1e;">居住支援法人が入るメリット</h4>
        <ul style="list-style: none; padding: 0;">
          <li style="margin-bottom: 10px;">✅ <strong>家賃滞納リスクの軽減：</strong> 家賃債務保証会社との連携や、金銭管理の支援を行います。</li>
          <li style="margin-bottom: 10px;">✅ <strong>異変の早期発見：</strong> 定期訪問により、お部屋の中で倒れているなどの事態を早期に発見できます。</li>
          <li style="margin-bottom: 10px;">✅ <strong>原状回復の保証：</strong> 万が一の孤独死等に備えた保険や、残置物処理のスキームを提案します。</li>
          <li>✅ <strong>クレーム対応：</strong> 入居者様とのコミュニケーションが難しい場合、私たちが間に入って調整します。</li>
        </ul>
      </div>
    </section>

    <!-- 5. よくある事例 -->
    <section>
      <h2>支援の事例紹介</h2>
      
      <h3>Case 1: 入院中で退院先がないAさん（70代男性）</h3>
      <p>
        <strong>状況：</strong> 脳梗塞で入院中。回復したが、自宅は階段しかないアパートの2階で戻ることができず、退院の目処が立っていなかった。<br>
        <strong>支援：</strong> 病院のソーシャルワーカー（MSW）から相談を受け、1階でバリアフリー対応の賃貸物件を紹介。介護保険の申請もサポートし、ヘルパー利用をセットにして退院が実現した。
      </p>

      <h3>Case 2: 夫に先立たれ、家賃支払いが不安なBさん（80代女性）</h3>
      <p>
        <strong>状況：</strong> 持ち家に住んでいたが維持管理が難しくなり売却。賃貸を探したが「高齢」を理由に5社から断られてしまった。<br>
        <strong>支援：</strong> 高齢者受け入れに理解のある「協力大家さん」の物件を紹介。見守りサービスを付帯することを条件に入居審査を通過。現在は地域の民生委員ともつながり、安心して暮らしている。
      </p>
    </section>

    <!-- CTA -->
    <div class="cta-area">
      <h2 style="margin-top: 0; border: none; font-size: 1.4em;">まずはお気軽にご相談ください</h2>
      <p>
        「住む場所がない」「親の住まいを探している」「空き家を活用したい」<br>
        どのようなご相談でも構いません。居住支援のプロフェッショナルが丁寧にお話を伺います。
      </p>
      <!-- リンク先変更 -->
      <a href="https://www.happi-ness-home.com/contact/" class="contact-button">お問い合わせはこちら</a>
      <p style="margin-top: 20px; font-size: 0.85em; color: #666;">※ご相談は無料です。秘密は厳守いたします。</p>
    </div>

  </div><!-- /article-container -->]]></description>
            <pubDate>2025-06-27</pubDate>
        </item>
                
        <item>
            <title>【売買物件】堺市区東区高松　中古戸建　１５８０万円</title>
            <link>https://www.happi-ness-home.com/blog/entry-585964/</link>
            <description><![CDATA[<div><span style="font-size: x-large;"><br></span></div><span style="font-size: x-large;">堺市区東区高松　中古戸建　１５８０万円</span><div><span style="font-size: x-large;"><br></span></div><div><img class="alreadyUpImage 1" style="display: block;margin: 0 auto;max-width: 100%; " src="https://www.img-asp.jp/cms/585964_1_0_0_1.jpg"></div><div><span style="font-size: x-large;"><br></span></div><div><span style="font-size: medium;">南海高野線「萩原天神」駅　徒歩１０分</span></div><div><span style="font-size: medium;">４LDKの中古戸建です。</span></div><div><span style="font-size: medium;"><br></span></div><div><div>○４LDK</div><div>（リビングダイニングキッチン約9.75帖／和室約６帖／和室約６帖／洋室約６帖／洋室約7.5帖／ロフト）</div><div>○駐車場あり</div><div>○土地面積：９５．５８㎡</div><div><br></div><div>◎設備</div><div>システムキッチン</div><div>コンロ３口</div><div>独立洗面所</div><div>追炊き機能</div><div>温水洗浄便座</div><div>風呂トイレ別</div><div>室内洗濯機置場</div><div><br></div><div>◎最寄り駅</div><div>・南海高野線／萩原天神駅／徒歩１０分</div><div><span ヒラギノ角ゴ="" pro="" w3",="" "hiragino="" kaku="" gothic="" pro",="" メイリオ,="" meiryo,="" "ＭＳ="" Ｐゴシック",="" helvetica,="" sans-serif;="" font-size:="" 13.28px;"="" style="background-color: rgb(255, 255, 255); color: rgb(51, 51, 51);"><br></span></div><div>★販売価格／１５８０万円</div></div>]]></description>
            <pubDate>2024-12-23</pubDate>
        </item>
            </channel>
</rss>
