       @charset "utf-8";

        .about-container {
            max-width: 1100px;
            margin: 0 auto;
        }

        /* 左側：画像エリア */
        .visual-section {
            flex: 1;
            text-align: center;
            /* PC表示時はスクロールに追従 */
            top: 20px;
        }

        .visual-section img {
            max-width: 60%;
            height: auto;
            margin-bottom: 1.5em;

        }

        /* 右側：コンテンツエリア */
        .content-section {
            flex: 1.2;
            background-color: #F2F2F2; /* 背景の薄いグレー */
            padding: 20px;
            border: 1px solid #A6A6A6;
            display: flex;
            flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
        }

        .header-title {
            background-color: #0070C0; /* 濃いブルー */
            color: #ffffff;
            padding: 12px 15px;
            font-weight: bold;
        }

        /* 各カード（①〜③）のスタイル */
        .about-card {
            background-color: #ffffff;
            border: 1px solid #A6A6A6;
            margin-bottom: 20px;
        }

        .about-card:last-child {
            margin-bottom: 0;
        }

        .about-card-header {
            background-color: #DEEBF7; /* 薄い水色の見出し */
            padding: 8px 15px;
            border-bottom: 1px solid #A6A6A6;
            font-weight: bold;
            text-align: center;
        }

        .about-card-body {
            display: flex;
            padding: 15px;
            justify-content: space-between;
            align-items: flex-start;
        }

        .about-card-text {
            flex: 1;
            padding-right: 10px;
        }

        .item {
            display: flex;
            margin-bottom: 6px;
        }

        .label {
            min-width: 45px;
            font-weight: bold;
        }

        /* アイコン（右側のイラスト用スペース） */
        .about-card-icon {
            width: 70px;
            text-align: right;
        }

        .about-card-icon img {
            max-width: 100%;
            height: auto;
        }

        .overview-img{
            text-align:center;
            width:70%;
        }

        /* レスポンシブ対応（スマホ表示） */
        @media (max-width: 768px) {
        .about-container {
                flex-direction: column;
            }
            .visual-section {
                position: static;
                width: 100%;
                margin-bottom: 20px;
            }
            .content-section {
                width: 100%;
                box-sizing: border-box;
                padding: 15px;
            }
            .header-title {
                margin: -15px -15px 15px -15px;
                font-size: 1rem;
            }
            .about-card-body {
                padding: 12px;
            }
            .about-card-icon {
                width: 30px;
                  }

            .item {
                font-size: 1.2rem;
            }
                    .visual-section img {
            max-width: 100%;
            height: auto;
                        margin-bottom: 1.5em;

        }

        }

        .overview-container {
            width: 100%;
            max-width: 900px;
            margin: 0 auto;
			line-height:1;
        }

        /* --- PC表示のスタイル --- */
        .grid-header {
            display: grid;
            grid-template-columns: 140px 1fr 40px 1fr;
            text-align: center;
            font-weight: bold;
            padding-bottom: 10px;
        }

        .overview-section {
            display: grid;
            grid-template-columns: 140px 1fr 40px 1fr;
            border-top: 1px dashed;
            border-bottom: 1px dashed;
            margin-bottom: -1px;
            padding: 20px 0;
            align-items: start;
        }

        .role {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            padding-top: 10px;
        }
        .role-icon { font-size: 40px; margin-bottom: 5px; }

        .arrow-col {
            display: flex;
            align-items: center;
            justify-content: center;
            align-self: center;
            color: var(--arrow-color);
            font-size: 18px;
        }

        /* リストスタイル */
        .list-container { padding: 0 10px; }
        .list-container ul { list-style: none; padding: 0; margin: 0; }
        .list-container li {
            padding: 8px 0 8px 1.8em;
            position: relative;
        }
        .list-container li:last-child { border-bottom: none; }

        .expectation li::before {
            content: attr(data-num);
            position: absolute;
            left: 0;
        }
        .action li::before {
            content: "✓";
            position: absolute;
            left: 5px;
        }

        /* --- スマホ表示のスタイル (768px以下) --- */
        @media (max-width: 768px) {
            .grid-header { display: none; } /* ヘッダーを隠す */

            .overview-section {
                display: block; /* Gridを解除して縦並びに */
                margin-bottom: 30px;
                padding: 0;
                overflow: hidden;
            }

            .role {
                background: var(--bg-light);
                flex-direction: row; /* アイコンと文字を横並びに */
                padding: 15px;
                gap: 15px;
                border-bottom: 1px dashed;
            }
            .role-icon { font-size: 24px; margin-bottom: 0; }

            .list-container { padding: 15px; }

            /* スマホ用の「期待」「行動」ラベル */
            .expectation-container::before {
                content: "期待";
                display: inline-block;
                background: #eee;
                padding: 2px 10px;
                border-radius: 4px;
                font-weight: bold;
                font-size: 0.85em;
                margin-bottom: 10px;
            }
            .action-container::before {
                content: "行動";
                display: inline-block;.header-title
                background: #eee;
                padding: 2px 10px;
                border-radius: 4px;
                font-weight: bold;
                font-size: 0.85em;
                margin-bottom: 10px;
            }

            /* スマホ時の矢印調整 */
            .arrow-col {
                padding: 5px 0;
                transform: rotate(90deg); /* 矢印を下に向けさせる */
                font-size: 24px;
                height: 30px;
            }
                    .overview-img{
            width:100%;
        }

        }
    