        /* Interフォントの読み込み */

        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Noto+Sans+JP:wght@400;500;700&display=swap');

        

        body {

            font-family: 'Inter', 'Noto Sans JP', sans-serif;

            line-height: 1.8;

        }



        /* ブログ記事用のカスタムスタイル */

        .blog-content h2 {

            font-size: 1.75rem; /* 28px */

            font-weight: 700;

            margin-top: 2.5rem; /* 40px */

            margin-bottom: 1rem; /* 16px */

            border-bottom: 2px solid #10B981; /* 緑色の下線 */

            padding-bottom: 0.5rem; /* 8px */

        }



        .blog-content h3 {

            font-size: 1.3rem; /* 20px */

            font-weight: 600;

            margin-top: 2rem; /* 32px */

            margin-bottom: 0.75rem; /* 12px */

            padding-left: 0.75rem; /* 12px */

            border-left: 4px solid #10B981;

        }



        .blog-content p {

            font-size: 1rem; /* 16px */

            margin-bottom: 1.5rem; /* 24px */

        }



        .blog-content strong {

            color: #D94635; /* 強調したい部分を赤系に */

            font-weight: 700;

        }



        .blog-content .explanation {

            background-color: #F3F4F6; /* 薄いグレー */

            border-left: 4px solid #F59E0B; /* オレンジの線 */

            padding: 1rem 1.5rem;

            margin-bottom: 1.5rem;

            border-radius: 0.375rem; /* 6px */

        }



        /* チャット風会話 */

        .chat-container {

            max-width: 600px;

            margin: 2rem auto;

            background-color: #E5E7EB; /* スマホの背景風 */

            border: 1px solid #D1D5DB;

            border-radius: 1rem; /* 16px */

            padding: 1rem;

            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);

        }



        .message-row {

            display: flex;

            align-items: flex-end; /* アイコンと吹き出しの底を合わせる */

            margin-bottom: 1rem; /* 16px */

        }



        .message-avatar img {

            width: 48px; /* 3rem */

            height: 48px; /* 3rem */

            border-radius: 9999px; /* 円形 */

            object-fit: cover;

            border: 2px solid white;

            box-shadow: 0 1px 3px rgba(0,0,0,0.1);

        }



        .message-bubble {

            max-width: 75%;

            padding: 0.75rem 1rem; /* 12px 16px */

            border-radius: 1.125rem; /* 18px */

            font-size: 0.95rem;

            line-height: 1.6;

            word-wrap: break-word;

        }



        /* Aさん（左側） */

        .message-row-left {

            justify-content: flex-start;

        }

        .message-row-left .message-avatar {

            margin-right: 0.5rem; /* 8px */

        }

        .message-row-left .message-bubble {

            background-color: #FFFFFF;

            color: #1F2937;

            border-top-left-radius: 0.25rem; /* 4px */

        }



        /* 税理士（右側） */

        .message-row-right {

            justify-content: flex-end;

        }

        .message-row-right .message-avatar {

            margin-left: 0.5rem; /* 8px */

            order: 2; /* アイコンを右側に */

        }

        .message-row-right .message-bubble {

            background-color: #10B981; /* 緑色 */

            color: #FFFFFF;

            border-top-right-radius: 0.25rem; /* 4px */

            order: 1;

        }
/* Interフォントの読み込み */
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Noto+Sans+JP:wght@400;500;700&display=swap');
        
        body {
            font-family: 'Inter', 'Noto Sans JP', sans-serif;
            line-height: 1.8;
        }

        /* ブログ記事用のカスタムスタイル */
        .blog-content h2 {
            font-size: 1.75rem; /* 28px */
            font-weight: 700;
            margin-top: 2.5rem; /* 40px */
            margin-bottom: 1rem; /* 16px */
            border-bottom: 2px solid #10B981; /* 緑色の下線 */
            padding-bottom: 0.5rem; /* 8px */
        }

        .blog-content h3 {
            font-size: 1.3rem; /* 20px */
            font-weight: 600;
            margin-top: 2rem; /* 32px */
            margin-bottom: 0.75rem; /* 12px */
            padding-left: 0.75rem; /* 12px */
            border-left: 4px solid #10B981;
        }

        .blog-content p {
            font-size: 1rem; /* 16px */
            margin-bottom: 1.5rem; /* 24px */
        }

        .blog-content strong {
            color: #D94635; /* 強調したい部分を赤系に */
            font-weight: 700;
        }

        .blog-content .explanation {
            background-color: #F3F4F6; /* 薄いグレー */
            border-left: 4px solid #F59E0B; /* オレンジの線 */
            padding: 1rem 1.5rem;
            margin-bottom: 1.5rem;
            border-radius: 0.375rem; /* 6px */
        }

        /* チャット風会話 */
        .chat-container {
            max-width: 600px;
            margin: 2rem auto;
            background-color: #E5E7EB; /* スマホの背景風 */
            border: 1px solid #D1D5DB;
            border-radius: 1rem; /* 16px */
            padding: 1rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }

        .message-row {
            display: flex;
            align-items: flex-end; /* アイコンと吹き出しの底を合わせる */
            margin-bottom: 1rem; /* 16px */
        }

        .message-avatar img {
            width: 48px; /* 3rem */
            height: 48px; /* 3rem */
            border-radius: 9999px; /* 円形 */
            object-fit: cover;
            border: 2px solid white;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }

        .message-bubble {
            max-width: 75%;
            padding: 0.75rem 1rem; /* 12px 16px */
            border-radius: 1.125rem; /* 18px */
            font-size: 0.95rem;
            line-height: 1.6;
            word-wrap: break-word;
        }

        /* Aさん（左側） */
        .message-row-left {
            justify-content: flex-start;
        }
        .message-row-left .message-avatar {
            margin-right: 0.5rem; /* 8px */
        }
        .message-row-left .message-bubble {
            background-color: #FFFFFF;
            color: #1F2937;
            border-top-left-radius: 0.25rem; /* 4px */
        }

        /* 税理士（右側） */
        .message-row-right {
            justify-content: flex-end;
        }
        .message-row-right .message-avatar {
            margin-left: 0.5rem; /* 8px */
            order: 2; /* アイコンを右側に */
        }
        .message-row-right .message-bubble {
            background-color: #10B981; /* 緑色 */
            color: #FFFFFF;
            border-top-right-radius: 0.25rem; /* 4px */
            order: 1;
        }
       /* Interフォントの読み込み */
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Noto+Sans+JP:wght@400;500;700&display=swap');
        
        body {
            font-family: 'Inter', 'Noto Sans JP', sans-serif;
            line-height: 1.8;
        }

        /* ブログ記事用のカスタムスタイル */
        .blog-content h2 {
            font-size: 1.75rem; /* 28px */
            font-weight: 700;
            margin-top: 2.5rem; /* 40px */
            margin-bottom: 1rem; /* 16px */
            border-bottom: 2px solid #10B981; /* 緑色の下線 */
            padding-bottom: 0.5rem; /* 8px */
        }

        .blog-content h3 {
            font-size: 1.3rem; /* 20px */
            font-weight: 600;
            margin-top: 2rem; /* 32px */
            margin-bottom: 0.75rem; /* 12px */
            padding-left: 0.75rem; /* 12px */
            border-left: 4px solid #10B981;
        }

        .blog-content p {
            font-size: 1rem; /* 16px */
            margin-bottom: 1.5rem; /* 24px */
        }

        .blog-content strong {
            color: #D94635; /* 強調したい部分を赤系に */
            font-weight: 700;
        }

        .blog-content .explanation {
            background-color: #F3F4F6; /* 薄いグレー */
            border-left: 4px solid #F59E0B; /* オレンジの線 */
            padding: 1rem 1.5rem;
            margin-bottom: 1.5rem;
            border-radius: 0.375rem; /* 6px */
        }

        /* グラフコンテナ */
        #tax-chart {
            width: 100%;
            min-height: 400px;
            background-color: #f9f9f9;
            border-radius: 8px;
            margin-bottom: 1.5rem;
        }
        
        /* D3.js用ツールチップ */
        .tooltip {
            position: absolute;
            background-color: white;
            border: 1px solid #ccc;
            border-radius: 6px;
            padding: 8px 12px;
            font-size: 0.9rem;
            pointer-events: none; /* マウスイベントを無効化 */
            opacity: 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.15);
            transition: opacity 0.2s;
        }

        /* チャット風会話 */
        .chat-container {
            max-width: 600px;
            margin: 2rem auto;
            background-color: #E5E7EB; /* スマホの背景風 */
            border: 1px solid #D1D5DB;
            border-radius: 1rem; /* 16px */
            padding: 1rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }

        .message-row {
            display: flex;
            align-items: flex-end; /* アイコンと吹き出しの底を合わせる */
            margin-bottom: 1rem; /* 16px */
        }

        .message-avatar img {
            width: 48px; /* 3rem */
            height: 48px; /* 3rem */
            border-radius: 9999px; /* 円形 */
            object-fit: cover;
            border: 2px solid white;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }

        .message-bubble {
            max-width: 75%;
            padding: 0.75rem 1rem; /* 12px 16px */
            border-radius: 1.125rem; /* 18px */
            font-size: 0.95rem;
            line-height: 1.6;
            word-wrap: break-word;
        }

        /* Aさん（左側） */
        .message-row-left {
            justify-content: flex-start;
        }
        .message-row-left .message-avatar {
            margin-right: 0.5rem; /* 8px */
        }
        .message-row-left .message-bubble {
            background-color: #FFFFFF;
            color: #1F2937;
            border-top-left-radius: 0.25rem; /* 4px */
        }

        /* 税理士（右側） */
        .message-row-right {
            justify-content: flex-end;
        }
        .message-row-right .message-avatar {
            margin-left: 0.5rem; /* 8px */
            order: 2; /* アイコンを右側に */
        }
        .message-row-right .message-bubble {
            background-color: #10B981; /* 緑色 */
            color: #FFFFFF;
            border-top-right-radius: 0.25rem; /* 4px */
            order: 1;
        }
    /* Interフォントの読み込み */
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Noto+Sans+JP:wght@400;500;700&display=swap');
        
        body {
            font-family: 'Inter', 'Noto+Sans 'JP', sans-serif;
            line-height: 1.8;
        }

        /* ブログ記事用のカスタムスタイル */
        .blog-content h2 {
            font-size: 1.75rem; /* 28px */
            font-weight: 700;
            margin-top: 2.5rem; /* 40px */
            margin-bottom: 1rem; /* 16px */
            border-bottom: 2px solid #10B981; /* 緑色の下線 */
            padding-bottom: 0.5rem; /* 8px */
        }

        .blog-content h3 {
            font-size: 1.3rem; /* 20px */
            font-weight: 600;
            margin-top: 2rem; /* 32px */
            margin-bottom: 0.75rem; /* 12px */
            padding-left: 0.75rem; /* 12px */
            border-left: 4px solid #10B981;
        }

        .blog-content p {
            font-size: 1rem; /* 16px */
            margin-bottom: 1.5rem; /* 24px */
        }

        .blog-content strong {
            color: #D94635; /* 強調したい部分を赤系に */
            font-weight: 700;
        }

        .blog-content .explanation {
            background-color: #F3F4F6; /* 薄いグレー */
            border-left: 4px solid #F59E0B; /* オレンジの線 */
            padding: 1rem 1.5rem;
            margin-bottom: 1.5rem;
            border-radius: 0.375rem; /* 6px */
        }
        
        .blog-content ul.custom-list {
            list-style: none;
            padding-left: 0;
        }
        
        .blog-content ul.custom-list li {
            position: relative;
            padding-left: 1.75em; /* チェックマークのためのスペース */
            margin-bottom: 0.75rem; /* 12px */
            font-size: 1rem;
        }
        
        .blog-content ul.custom-list li::before {
            content: '✔'; /* チェックマーク */
            position: absolute;
            left: 0;
            top: 0;
            color: #10B981; /* 緑色 */
            font-weight: 700;
            font-size: 1.25em;
            line-height: 1.2;
        }


        /* チャット風会話 */
        .chat-container {
            max-width: 600px;
            margin: 2rem auto;
            background-color: #E5E7EB; /* スマホの背景風 */
            border: 1px solid #D1D5DB;
            border-radius: 1rem; /* 16px */
            padding: 1rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }

        .message-row {
            display: flex;
            align-items: flex-end; /* アイコンと吹き出しの底を合わせる */
            margin-bottom: 1rem; /* 16px */
        }

        .message-avatar img {
            width: 48px; /* 3rem */
            height: 48px; /* 3rem */
            border-radius: 9999px; /* 円形 */
            object-fit: cover;
            border: 2px solid white;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }

        .message-bubble {
            max-width: 75%;
            padding: 0.75rem 1rem; /* 12px 16px */
            border-radius: 1.125rem; /* 18px */
            font-size: 0.95rem;
            line-height: 1.6;
            word-wrap: break-word;
        }

        /* Aさん（左側） */
        .message-row-left {
            justify-content: flex-start;
        }
        .message-row-left .message-avatar {
            margin-right: 0.5rem; /* 8px */
        }
        .message-row-left .message-bubble {
            background-color: #FFFFFF;
            color: #1F2937;
            border-top-left-radius: 0.25rem; /* 4px */
        }

        /* 税理士（右側） */
        .message-row-right {
            justify-content: flex-end;
        }
        .message-row-right .message-avatar {
            margin-left: 0.5rem; /* 8px */
            order: 2; /* アイコンを右側に */
        }
        .message-row-right .message-bubble {
            background-color: #10B981; /* 緑色 */
            color: #FFFFFF;
            border-top-right-radius: 0.25rem; /* 4px */
            order: 1;
        }
        /* フォントのアンチエイリアスを適用 */
        body {
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
    /* Interフォントの読み込み */
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Noto+Sans+JP:wght@400;500;700&display=swap');
        
        body {
            font-family: 'Inter', 'Noto Sans JP', sans-serif;
            line-height: 1.8;
        }

        /* ブログ記事用のカスタムスタイル */
        .blog-content h2 {
            font-size: 1.75rem; /* 28px */
            font-weight: 700;
            margin-top: 2.5rem; /* 40px */
            margin-bottom: 1rem; /* 16px */
            border-bottom: 2px solid #10B981; /* 緑色の下線 */
            padding-bottom: 0.5rem; /* 8px */
        }

        .blog-content h3 {
            font-size: 1.3rem; /* 20px */
            font-weight: 600;
            margin-top: 2rem; /* 32px */
            margin-bottom: 0.75rem; /* 12px */
            padding-left: 0.75rem; /* 12px */
            border-left: 4px solid #10B981;
        }

        .blog-content p {
            font-size: 1rem; /* 16px */
            margin-bottom: 1.5rem; /* 24px */
        }

        .blog-content strong {
            color: #D94635; /* 強調したい部分を赤系に */
            font-weight: 700;
        }

        .blog-content .explanation {
            background-color: #F3F4F6; /* 薄いグレー */
            border-left: 4px solid #F59E0B; /* オレンジの線 */
            padding: 1rem 1.5rem;
            margin-bottom: 1.5rem;
            border-radius: 0.375rem; /* 6px */
        }

        /* チャット風会話 */
        .chat-container {
            max-width: 600px;
            margin: 2rem auto;
            background-color: #E5E7EB; /* スマホの背景風 */
            border: 1px solid #D1D5DB;
            border-radius: 1rem; /* 16px */
            padding: 1rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }

        .message-row {
            display: flex;
            align-items: flex-end; /* アイコンと吹き出しの底を合わせる */
            margin-bottom: 1rem; /* 16px */
        }

        .message-avatar img {
            width: 48px; /* 3rem */
            height: 48px; /* 3rem */
            border-radius: 9999px; /* 円形 */
            object-fit: cover;
            border: 2px solid white;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }

        .message-bubble {
            max-width: 75%;
            padding: 0.75rem 1rem; /* 12px 16px */
            border-radius: 1.125rem; /* 18px */
            font-size: 0.95rem;
            line-height: 1.6;
            word-wrap: break-word;
        }

        /* Aさん（左側） */
        .message-row-left {
            justify-content: flex-start;
        }
        .message-row-left .message-avatar {
            margin-right: 0.5rem; /* 8px */
        }
        .message-row-left .message-bubble {
            background-color: #FFFFFF;
            color: #1F2937;
            border-top-left-radius: 0.25rem; /* 4px */
        }

        /* 税理士（右側） */
        .message-row-right {
            justify-content: flex-end;
        }
        .message-row-right .message-avatar {
            margin-left: 0.5rem; /* 8px */
            order: 2; /* アイコンを右側に */
        }
        .message-row-right .message-bubble {
            background-color: #10B981; /* 緑色 */
            color: #FFFFFF;
            border-top-right-radius: 0.25rem; /* 4px */
            order: 1;
        }

        /* ▼▼▼ グラフ用のスタイルを追加 ▼▼▼ */
        .chart-illustration-container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap; /* スマホ用に折り返し */
            gap: 1.5rem; /* 24px */
            margin: 2.5rem 0; /* 40px 0 */
            padding: 1.5rem; /* 24px */
            background-color: #F9FAFB; /* 薄いグレー背景 */
            border-radius: 0.75rem; /* 12px */
            border: 1px solid #E5E7EB; /* 枠線 */
        }
        .chart-case {
            flex: 1;
            min-width: 220px; /* 最小幅 */
            text-align: center;
        }
        .chart-case h4 {
            font-weight: 600;
            font-size: 1.1rem;
            color: #1F2937;
        }
        .chart-case p {
            font-size: 0.9rem;
            color: #4B5563;
            margin-bottom: 1rem;
        }
        .bar-container {
            position: relative;
            height: 200px;
            background-color: #E5E7EB; /* 背景 */
            border-radius: 0.375rem; /* 6px */
            overflow: hidden; /* アニメーションのため */
            display: flex;
            flex-direction: column-reverse; /* 下から積み上げる */
            border: 1px solid #D1D5DB;
        }
        .control-line {
            position: absolute;
            width: 100%;
            border-top: 2px dashed #9CA3AF; /* 控除ライン（点線） */
            top: 50%; /* 中央に設定（例：控除額10万円） */
            left: 0;
            z-index: 10;
        }
        .control-line-label {
            position: absolute;
            top: calc(50% - 22px); /* ラインの上に配置 */
            left: 5px;
            font-size: 0.75rem; /* 12px */
            font-weight: 500;
            color: #6B7280;
            background-color: #F9FAFB;
            padding: 0 4px;
            border-radius: 4px;
        }

        .bar {
            width: 100%;
            animation: growBar 0.8s ease-out forwards;
            transform-origin: bottom;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.8rem;
            font-weight: 600;
            text-shadow: 0 1px 2px rgba(0,0,0,0.2);
            opacity: 0;
        }

        .tax-bar {
            background-color: #3B82F6; /* 青色（減税額） */
        }
        .benefit-bar {
            background-color: #F59E0B; /* オレンジ（給付額） */
        }

        /* アニメーション */
        @keyframes growBar {
            from {
                height: 0;
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
        
        /* ケースごとのバーの高さ */
        .case-a .tax-bar { height: 75%; animation-delay: 0.1s; } /* 納税額 > 控除額 */
        .case-a .benefit-bar { height: 0; }
        .case-a .control-line { top: 60%; } /* 控除額は納税額より低い */
        .case-a .control-line-label { top: calc(60% - 22px); }


        .case-b .tax-bar { height: 30%; animation-delay: 0.1s; } /* 納税額 < 控除額 */
        .case-b .benefit-bar { height: 20%; animation-delay: 0.5s; } /* 差額を給付 */
        .case-b .control-line { top: 50%; } /* 控除額（納税＋給付） */
        .case-b .control-line-label { top: calc(50% - 22px); }

        .case-c .tax-bar { height: 0; } /* 納税額ゼロ */
        .case-c .benefit-bar { height: 50%; animation-delay: 0.1s; } /* 全額給付 */
        .case-c .control-line { top: 50%; } /* 控除額 */
        .case-c .control-line-label { top: calc(50% - 22px); }
        /* ▲▲▲ グラフ用のスタイルを追加 ▲▲▲ */
        /* Interフォントの読み込み */
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Noto+Sans+JP:wght@400;500;700&display=swap');
        
        body {
            font-family: 'Inter', 'Noto Sans JP', sans-serif;
            line-height: 1.8;
        }

        /* ブログ記事用のカスタムスタイル */
        .blog-content h2 {
            font-size: 1.75rem; /* 28px */
            font-weight: 700;
            margin-top: 2.5rem; /* 40px */
            margin-bottom: 1rem; /* 16px */
            border-bottom: 2px solid #10B981; /* 緑色の下線 */
            padding-bottom: 0.5rem; /* 8px */
        }

        .blog-content h3 {
            font-size: 1.3rem; /* 20px */
            font-weight: 600;
            margin-top: 2rem; /* 32px */
            margin-bottom: 0.75rem; /* 12px */
            padding-left: 0.75rem; /* 12px */
            border-left: 4px solid #10B981;
        }

        .blog-content p {
            font-size: 1rem; /* 16px */
            margin-bottom: 1.5rem; /* 24px */
        }

        .blog-content strong {
            color: #D94635; /* 強調したい部分を赤系に */
            font-weight: 700;
        }

        .blog-content .explanation {
            background-color: #F3F4F6; /* 薄いグレー */
            border-left: 4px solid #F59E0B; /* オレンジの線 */
            padding: 1rem 1.5rem;
            margin-bottom: 1.5rem;
            border-radius: 0.375rem; /* 6px */
        }
        
        /* 表のカスタムスタイル */
        .tax-table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
        }
        .tax-table th, .tax-table td {
            border: 1px solid #E5E7EB;
            padding: 0.75rem;
            text-align: center;
        }
        .tax-table th {
            background-color: #ECFDF5; /* 薄い緑 */
            font-weight: 700;
            color: #065F46;
        }
        .tax-table td:last-child {
            font-weight: 700;
            color: #10B981;
        }

        /* チャット風会話 */
        .chat-container {
            max-width: 600px;
            margin: 2rem auto;
            background-color: #E5E7EB; /* スマホの背景風 */
            border: 1px solid #D1D5DB;
            border-radius: 1rem; /* 16px */
            padding: 1rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }

        .message-row {
            display: flex;
            align-items: flex-end; /* アイコンと吹き出しの底を合わせる */
            margin-bottom: 1rem; /* 16px */
        }

        .message-avatar img {
            width: 48px; /* 3rem */
            height: 48px; /* 3rem */
            border-radius: 9999px; /* 円形 */
            object-fit: cover;
            border: 2px solid white;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }

        .message-bubble {
            max-width: 75%;
            padding: 0.75rem 1rem; /* 12px 16px */
            border-radius: 1.125rem; /* 18px */
            font-size: 0.95rem;
            line-height: 1.6;
            word-wrap: break-word;
        }

        /* Aさん（左側） */
        .message-row-left {
            justify-content: flex-start;
        }
        .message-row-left .message-avatar {
            margin-right: 0.5rem; /* 8px */
        }
        .message-row-left .message-bubble {
            background-color: #FFFFFF;
            color: #1F2937;
            border-top-left-radius: 0.25rem; /* 4px */
        }

        /* 税理士（右側） */
        .message-row-right {
            justify-content: flex-end;
        }
        .message-row-right .message-avatar {
            margin-left: 0.5rem; /* 8px */
            order: 2; /* アイコンを右側に */
        }
        .message-row-right .message-bubble {
            background-color: #10B981; /* 緑色 */
            color: #FFFFFF;
            border-top-right-radius: 0.25rem; /* 4px */
            order: 1;
        }
    <style>
        /* Interフォントの読み込み */
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Noto+Sans+JP:wght@400;500;700&display=swap');
        
        body {
            font-family: 'Inter', 'Noto Sans JP', sans-serif;
            line-height: 1.8;
        }

        /* ブログ記事用のカスタムスタイル */
        .blog-content h2 {
            font-size: 1.75rem; /* 28px */
            font-weight: 700;
            margin-top: 2.5rem; /* 40px */
            margin-bottom: 1rem; /* 16px */
            border-bottom: 2px solid #10B981; /* 緑色の下線 */
            padding-bottom: 0.5rem; /* 8px */
        }

        .blog-content h3 {
            font-size: 1.3rem; /* 20px */
            font-weight: 600;
            margin-top: 2rem; /* 32px */
            margin-bottom: 0.75rem; /* 12px */
            padding-left: 0.75rem; /* 12px */
            border-left: 4px solid #F59E0B; /* オレンジの線 */
        }

        .blog-content p {
            font-size: 1rem; /* 16px */
            margin-bottom: 1.5rem; /* 24px */
        }

        .blog-content strong {
            color: #D94635; /* 強調したい部分を赤系に */
            font-weight: 700;
        }

        .blog-content .explanation {
            background-color: #F3F4F6; /* 薄いグレー */
            border-left: 4px solid #10B981; /* 緑の線 */
            padding: 1rem 1.5rem;
            margin-bottom: 1.5rem;
            border-radius: 0.375rem; /* 6px */
        }

        /* チャット風会話 */
        .chat-container {
            max-width: 600px;
            margin: 2rem auto;
            background-color: #E5E7EB; /* スマホの背景風 */
            border: 1px solid #D1D5DB;
            border-radius: 1rem; /* 16px */
            padding: 1rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }

        .message-row {
            display: flex;
            align-items: flex-end; /* アイコンと吹き出しの底を合わせる */
            margin-bottom: 1rem; /* 16px */
        }

        .message-avatar img {
            width: 48px; /* 3rem */
            height: 48px; /* 3rem */
            border-radius: 9999px; /* 円形 */
            object-fit: cover;
            border: 2px solid white;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }

        .message-bubble {
            max-width: 75%;
            padding: 0.75rem 1rem; /* 12px 16px */
            border-radius: 1.125rem; /* 18px */
            font-size: 0.95rem;
            line-height: 1.6;
            word-wrap: break-word;
        }

        /* Aさん（左側） */
        .message-row-left {
            justify-content: flex-start;
        }
        .message-row-left .message-avatar {
            margin-right: 0.5rem; /* 8px */
        }
        .message-row-left .message-bubble {
            background-color: #FFFFFF;
            color: #1F2937;
            border-top-left-radius: 0.25rem; /* 4px */
        }

        /* 税理士（右側） */
        .message-row-right {
            justify-content: flex-end;
        }
        .message-row-right .message-avatar {
            margin-left: 0.5rem; /* 8px */
            order: 2; /* アイコンを右側に */
        }
        .message-row-right .message-bubble {
            background-color: #10B981; /* 緑色 */
            color: #FFFFFF;
            border-top-right-radius: 0.25rem; /* 4px */
            order: 1;
        }
        /* 図のスタイル */
        .figure-box {
            background-color: #ECFDF5; /* Light green background */
            border: 2px solid #059669; /* Dark green border */
            padding: 1rem;
            border-radius: 0.5rem;
            margin: 1.5rem 0;
            text-align: center;
        }
        .figure-title {
            font-size: 1.125rem;
            font-weight: 700;
            color: #059669;
            margin-bottom: 0.75rem;
        }
    </style>
    <style>
        /* Interフォントの読み込み */
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Noto+Sans+JP:wght@400;500;700&display=swap');
        
        body {
            font-family: 'Inter', 'Noto Sans JP', sans-serif;
            line-height: 1.8;
            background-color: #f3f4f6; /* 全体の背景色 */
        }

        /* ブログ記事用のカスタムスタイル */
        
        /* H2見出し：グラデーションとアクセント */
        .blog-content h2 {
            font-size: 1.6rem;
            font-weight: 700;
            margin-top: 3rem;
            margin-bottom: 1.5rem;
            padding: 0.75rem 1rem;
            background: linear-gradient(to right, #ecfdf5, #ffffff); /* 薄い緑～白 */
            border-left: 6px solid #10B981; /* 緑のアクセントバー */
            border-radius: 0 8px 8px 0;
            color: #065f46; /* 濃い緑色の文字 */
            box-shadow: 0 1px 2px rgba(0,0,0,0.05);
        }

        /* H3見出し：破線で軽やかに */
        .blog-content h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin-top: 2.5rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px dashed #10B981; /* 緑の破線 */
            color: #059669;
            padding-left: 0.25rem;
        }

        .blog-content p {
            font-size: 1rem;
            margin-bottom: 1.5rem;
            color: #374151; /* 読みやすいダークグレー */
        }

        /* 蛍光マーカー風の強調 */
        .blog-content strong {
            background: linear-gradient(transparent 60%, #fde047 60%); /* 黄色のマーカー */
            padding: 0 2px;
            color: #111827;
            font-weight: 800;
        }

        /* 専門用語解説ボックス：付箋紙風 */
        .blog-content .explanation {
            background-color: #fffbeb; /* 薄い黄色 */
            border: 2px solid #fcd34d; /* 黄色の枠線 */
            padding: 1.5rem;
            margin-bottom: 2rem;
            border-radius: 12px;
            position: relative;
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
        }
        
        .blog-content .explanation strong {
            background: none; /* マーカー解除 */
            color: #b45309; /* 濃いオレンジ文字 */
            display: block;
            margin-bottom: 0.5rem;
            font-size: 1.1em;
            border-bottom: 1px solid #fcd34d;
            padding-bottom: 4px;
        }

        /* リストの装飾 */
        .blog-content ul {
            background-color: #f0fdf4; /* 非常に薄い緑背景 */
            border-radius: 12px;
            padding: 1.5rem 2rem;
            margin-bottom: 2rem;
            list-style: none; /* デフォルト点を消す */
            border: 1px solid #d1fae5;
        }

        .blog-content ul li {
            position: relative;
            padding-left: 1.5rem;
            margin-bottom: 0.75rem;
            color: #374151;
            font-weight: 500;
        }

        .blog-content ul li::before {
            content: '✔'; /* チェックマーク */
            position: absolute;
            left: 0;
            color: #10B981; /* 緑色 */
            font-weight: bold;
        }

        /* チャット風会話 */
        .chat-container {
            max-width: 600px;
            margin: 2.5rem auto;
            background-color: #f1f5f9; /* 明るめのブルーグレー背景 */
            border: 2px solid #e2e8f0;
            border-radius: 20px;
            padding: 1.5rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
        }

        .message-row {
            display: flex;
            align-items: flex-end;
            margin-bottom: 1.25rem;
        }

        .message-avatar img {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid white;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .message-bubble {
            max-width: 75%;
            padding: 1rem 1.25rem;
            border-radius: 1.25rem;
            font-size: 0.95rem;
            line-height: 1.6;
            position: relative;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }

        /* Aさん（左側） */
        .message-row-left {
            justify-content: flex-start;
        }
        .message-row-left .message-avatar {
            margin-right: 0.75rem;
        }
        .message-row-left .message-bubble {
            background-color: #FFFFFF;
            color: #1f2937;
            border-top-left-radius: 4px;
        }

        /* 税理士（右側） */
        .message-row-right {
            justify-content: flex-end;
        }
        .message-row-right .message-avatar {
            margin-left: 0.75rem;
            order: 2;
        }
        .message-row-right .message-bubble {
            background: linear-gradient(135deg, #10B981, #059669); /* 緑のグラデーション */
            color: #FFFFFF;
            border-top-right-radius: 4px;
            order: 1;
            font-weight: 500;
        }
    </style>