.hero {
                background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
                padding: 80px 5% 60px;
                text-align: center;
            }
            .hero h1 {
                font-size: 36px;
                color: #2e7d32;
                margin-bottom: 20px;
                max-width: 1200px;
                margin-left: auto;
                margin-right: auto;
            }

            .container {
                max-width: 1200px;
                margin: 0 auto;
                padding: 60px 5%;
            }
            .section {
                margin-bottom: 80px;
            }
            .section-title {
                font-size: 28px;
                color: #2e7d32;
                margin-bottom: 30px;
                padding-bottom: 15px;
                border-bottom: 3px solid #4caf50;
            }

            .overview-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 30px;
            }
            .overview-card {
                background: white;
                padding: 30px;
                border-radius: 12px;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            }
            .overview-card h3 {
                font-size: 18px;
                color: #2e7d32;
                margin-bottom: 15px;
                display: flex;
                align-items: center;
                gap: 10px;
            }
            .overview-card p {
                color: #555;
                line-height: 1.8;
            }
            .icon {
                width: 24px;
                height: 24px;
                color: #4caf50;
            }

            .case-title-section {
                margin-bottom: 60px;
            }
            .case-title-card {
                background: white;
                padding: 40px;
                border-radius: 12px;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
                text-align: center;
            }
            .case-badge {
                display: inline-block;
                background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
                color: white;
                padding: 8px 20px;
                border-radius: 20px;
                font-size: 13px;
                font-weight: 600;
                margin-bottom: 20px;
            }
            .case-title-card h2 {
                font-size: 32px;
                color: #2e7d32;
                margin-bottom: 25px;
                font-weight: 700;
            }
            .case-meta-info {
                display: flex;
                gap: 30px;
                justify-content: center;
                flex-wrap: wrap;
            }
            .meta-item {
                display: flex;
                align-items: center;
                gap: 8px;
                color: #666;
                font-size: 14px;
            }

            /* 課題 */
            .challenge-image-container {
                background: white;
                padding: 40px;
                border-radius: 12px;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
                margin-bottom: 50px;
            }
            .challenge-image-container > h3 {
                font-size: 20px;
                color: #ff9800;
                margin-bottom: 28px;
                display: flex;
                align-items: center;
                gap: 10px;
                font-weight: 700;
            }
            .challenge-cards-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
                gap: 20px;
            }
            .challenge-item-card {
                background: #fff8f0;
                border: 2px solid #ffe0b2;
                border-radius: 12px;
                padding: 24px;
                display: flex;
                gap: 14px;
                align-items: flex-start;
                transition: transform 0.2s;
            }
            .challenge-item-card:hover {
                transform: translateY(-3px);
            }
            .challenge-num {
                width: 32px;
                height: 32px;
                background: #ff9800;
                color: white;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-weight: bold;
                font-size: 15px;
                flex-shrink: 0;
            }
            .challenge-item-card p {
                color: #555;
                font-size: 14px;
                line-height: 1.7;
            }
            .challenge-item-card strong {
                display: block;
                color: #e65100;
                margin-bottom: 6px;
                font-size: 15px;
            }

            /* 解決策タイムライン */
            .solution-detailed {
                background: white;
                padding: 40px;
                border-radius: 12px;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            }
            .solution-detailed h3 {
                font-size: 24px;
                color: #2e7d32;
                margin-bottom: 40px;
                display: flex;
                align-items: center;
                gap: 12px;
            }
            .solution-timeline {
                position: relative;
                padding-left: 50px;
            }
            .solution-timeline::before {
                content: "";
                position: absolute;
                left: 20px;
                top: 0;
                height: calc(100% - 55px);
                width: 3px;
                background: linear-gradient(180deg, #4caf50 0%, #81c784 100%);
            }
            .timeline-item {
                position: relative;
                margin-bottom: 35px;
                padding-bottom: 35px;
                border-bottom: 1px solid #f0f0f0;
            }
            .timeline-item:last-child {
                border-bottom: none;
                margin-bottom: 0;
                padding-bottom: 0;
            }
            .timeline-number {
                position: absolute;
                left: -50px;
                top: 0;
                width: 40px;
                height: 40px;
                background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                color: white;
                font-weight: bold;
                font-size: 16px;
                box-shadow: 0 4px 10px rgba(76, 175, 80, 0.3);
            }
            .timeline-content h4 {
                color: #2e7d32;
                font-size: 17px;
                margin-bottom: 12px;
                font-weight: 600;
            }
            .timeline-content p {
                color: #555;
                line-height: 1.8;
                font-size: 14px;
            }

            /* ★ AI システム構成図 */
            .ai-diagram {
                background: linear-gradient(135deg, #f0f4ff 0%, #e8f5e9 100%);
                border-radius: 14px;
                padding: 40px 30px;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 0;
            }
            .ai-diagram-section {
                background: white;
                padding: 40px;
                border-radius: 12px;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            }
            .ai-diagram-section > p {
                color: #666;
                margin-bottom: 30px;
                font-size: 14px;
            }

            .diag-layer {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 100%;
            }
            .diag-conn {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 6px;
                margin: 10px 0;
            }
            .diag-conn-line {
                width: 3px;
                height: 28px;
                background: linear-gradient(180deg, #81c784, #4caf50);
                border-radius: 2px;
            }
            .diag-conn-label {
                background: white;
                border: 1px solid #a5d6a7;
                border-radius: 20px;
                padding: 3px 14px;
                font-size: 11px;
                color: #2e7d32;
                font-weight: 600;
                white-space: nowrap;
            }

            /* ユーザー層 */
            .user-row {
                display: flex;
                gap: 20px;
                justify-content: center;
                flex-wrap: wrap;
            }
            .user-box {
                background: white;
                border: 2px solid #a5d6a7;
                border-radius: 12px;
                padding: 16px 20px;
                text-align: center;
                min-width: 120px;
                box-shadow: 0 3px 10px rgba(76, 175, 80, 0.1);
            }
            .user-box-icon {
                width: 38px;
                height: 38px;
                background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
                border-radius: 8px;
                display: flex;
                align-items: center;
                justify-content: center;
                margin: 0 auto 8px;
            }
            .user-box-icon svg {
                width: 22px;
                height: 22px;
                color: #2e7d32;
            }
            .user-box-title {
                font-size: 12px;
                font-weight: 700;
                color: #333;
            }
            .user-box-sub {
                font-size: 10px;
                color: #888;
                margin-top: 3px;
            }

            /* AIコアボックス */
            .ai-core-box {
                background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
                border-radius: 16px;
                padding: 28px 40px;
                text-align: center;
                box-shadow: 0 6px 20px rgba(46, 125, 50, 0.3);
                min-width: 280px;
            }
            .ai-core-icon {
                width: 52px;
                height: 52px;
                background: rgba(255, 255, 255, 0.2);
                border-radius: 14px;
                display: flex;
                align-items: center;
                justify-content: center;
                margin: 0 auto 12px;
            }
            .ai-core-icon svg {
                width: 32px;
                height: 32px;
                color: white;
            }
            .ai-core-title {
                font-size: 18px;
                font-weight: 700;
                color: white;
                margin-bottom: 6px;
            }
            .ai-core-sub {
                font-size: 12px;
                color: rgba(255, 255, 255, 0.8);
            }
            .ai-core-badges {
                display: flex;
                gap: 8px;
                justify-content: center;
                flex-wrap: wrap;
                margin-top: 14px;
            }
            .ai-core-badge {
                background: rgba(255, 255, 255, 0.2);
                border: 1px solid rgba(255, 255, 255, 0.35);
                border-radius: 20px;
                padding: 3px 12px;
                font-size: 11px;
                color: white;
                font-weight: 600;
            }

            /* データソース層 */
            .datasource-group {
                background: white;
                border: 2px solid #a5d6a7;
                border-radius: 14px;
                overflow: hidden;
                box-shadow: 0 4px 12px rgba(76, 175, 80, 0.1);
            }
            .datasource-header {
                background: #f1f8f4;
                border-bottom: 1px solid #c8e6c9;
                padding: 8px 16px;
                font-size: 11px;
                font-weight: 700;
                color: #2e7d32;
                text-align: center;
                letter-spacing: 0.5px;
            }
            .datasource-body {
                display: flex;
            }
            .ds-cell {
                padding: 16px 18px;
                text-align: center;
                flex: 1;
            }
            .ds-cell + .ds-cell {
                border-left: 1px dashed #c8e6c9;
            }
            .ds-cell-icon {
                width: 38px;
                height: 38px;
                border-radius: 8px;
                display: flex;
                align-items: center;
                justify-content: center;
                margin: 0 auto 8px;
            }
            .ds-cell-icon.green {
                background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
            }
            .ds-cell-icon.blue {
                background: linear-gradient(135deg, #e3f2fd, #bbdefb);
            }
            .ds-cell-icon.purple {
                background: linear-gradient(135deg, #f3e5f5, #e1bee7);
            }
            .ds-cell-icon svg {
                width: 22px;
                height: 22px;
            }
            .ds-cell-icon.green svg {
                color: #2e7d32;
            }
            .ds-cell-icon.blue svg {
                color: #1565c0;
            }
            .ds-cell-icon.purple svg {
                color: #6a1b9a;
            }
            .ds-cell-title {
                font-size: 12px;
                font-weight: 700;
                color: #333;
            }
            .ds-cell-sub {
                font-size: 10px;
                color: #888;
                margin-top: 3px;
                line-height: 1.5;
            }

            /* ★ 機能4カード */
            .features-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
                gap: 24px;
            }
            .feature-card {
                background: white;
                border-radius: 14px;
                padding: 28px;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
                border-top: 4px solid #4caf50;
                transition: transform 0.2s;
                position: relative;
                overflow: hidden;
            }
            .feature-card:hover {
                transform: translateY(-4px);
                box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
            }
            .feature-card::after {
                content: "";
                position: absolute;
                bottom: -20px;
                right: -20px;
                width: 80px;
                height: 80px;
                background: rgba(76, 175, 80, 0.05);
                border-radius: 50%;
            }
            .feature-icon {
                width: 48px;
                height: 48px;
                background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
                border-radius: 12px;
                display: flex;
                align-items: center;
                justify-content: center;
                margin-bottom: 16px;
            }
            .feature-icon svg {
                width: 28px;
                height: 28px;
                color: #2e7d32;
            }
            .feature-card h4 {
                font-size: 16px;
                font-weight: 700;
                color: #2e7d32;
                margin-bottom: 10px;
            }
            .feature-card p {
                font-size: 13px;
                color: #555;
                line-height: 1.8;
            }

            /* ★ チャット画面モック */
            .chat-mock-section {
                background: white;
                padding: 40px;
                border-radius: 12px;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            }
            .chat-mock-section > p {
                color: #666;
                margin-bottom: 28px;
                font-size: 14px;
            }
            .chat-mock-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
                gap: 30px;
            }
            .chat-mock-frame {
                border-radius: 14px;
                overflow: hidden;
                box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
                border: 1px solid #e0e0e0;
            }
            .chat-mock-titlebar {
                background: #2e7d32;
                padding: 12px 16px;
                display: flex;
                align-items: center;
                gap: 10px;
            }
            .chat-mock-dots {
                display: flex;
                gap: 6px;
            }
            .chat-mock-dots span {
                width: 10px;
                height: 10px;
                border-radius: 50%;
                background: rgba(255, 255, 255, 0.4);
            }
            .chat-mock-title {
                font-size: 13px;
                font-weight: 700;
                color: white;
            }
            .chat-mock-body {
                background: #f8f9fa;
                padding: 20px;
                min-height: 260px;
                display: flex;
                flex-direction: column;
                gap: 14px;
            }
            .chat-bubble {
                max-width: 82%;
                display: flex;
                flex-direction: column;
                gap: 4px;
            }
            .chat-bubble.user {
                align-self: flex-end;
                align-items: flex-end;
            }
            .chat-bubble.ai {
                align-self: flex-start;
                align-items: flex-start;
            }
            .bubble-label {
                font-size: 10px;
                color: #999;
                font-weight: 600;
            }
            .bubble-text {
                padding: 10px 14px;
                border-radius: 12px;
                font-size: 13px;
                line-height: 1.6;
            }
            .chat-bubble.user .bubble-text {
                background: #4caf50;
                color: white;
                border-radius: 12px 12px 4px 12px;
            }
            .chat-bubble.ai .bubble-text {
                background: white;
                color: #333;
                border: 1px solid #e0e0e0;
                border-radius: 12px 12px 12px 4px;
                box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
            }
            .chat-mock-input {
                background: white;
                border-top: 1px solid #e0e0e0;
                padding: 12px 16px;
                display: flex;
                gap: 10px;
                align-items: center;
            }
            .chat-input-bar {
                flex: 1;
                background: #f5f5f5;
                border-radius: 20px;
                padding: 8px 16px;
                font-size: 13px;
                color: #999;
            }
            .chat-send-btn {
                width: 34px;
                height: 34px;
                background: #4caf50;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                flex-shrink: 0;
            }
            .chat-send-btn svg {
                width: 18px;
                height: 18px;
                color: white;
            }

            /* 技術スタック */
            .tech-stack {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 20px;
            }
            .tech-category {
                background: white;
                padding: 25px;
                border-radius: 12px;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            }
            .tech-category h4 {
                font-size: 16px;
                color: #2e7d32;
                margin-bottom: 15px;
                font-weight: bold;
            }
            .tech-tags {
                display: flex;
                flex-wrap: wrap;
                gap: 8px;
            }
            .tech-tag {
                background: #e8f5e9;
                color: #2e7d32;
                padding: 6px 14px;
                border-radius: 20px;
                font-size: 13px;
                font-weight: 500;
            }

            /* CTA */
            .cta-section {
                background: linear-gradient(135deg, #e8f5e9 0%, #f1f8f4 100%);
                padding: 60px 5%;
                text-align: center;
            }
            .cta-content {
                max-width: 800px;
                margin: 0 auto;
            }
            .cta-section h2 {
                font-size: 32px;
                color: #2e7d32;
                margin-bottom: 20px;
            }
            .cta-section p {
                font-size: 16px;
                color: #555;
                margin-bottom: 30px;
            }
            .cta-buttons {
                display: flex;
                gap: 20px;
                justify-content: center;
                flex-wrap: wrap;
            }
            .btn {
                padding: 15px 40px;
                border-radius: 30px;
                text-decoration: none;
                font-weight: bold;
                font-size: 16px;
                transition: all 0.3s;
                display: inline-block;
            }
            .btn-primary {
                background: #4caf50;
                color: white;
            }
            .btn-primary:hover {
                background: #45a049;
                transform: translateY(-2px);
                box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
            }
            .btn-secondary {
                background: white;
                color: #4caf50;
                border: 2px solid #4caf50;
            }
            .btn-secondary:hover {
                background: #4caf50;
                color: white;
            }

@media (max-width: 968px) {
                .overview-grid {
                    grid-template-columns: 1fr;
                }
                .challenge-cards-grid {
                    grid-template-columns: 1fr;
                }
                .card-content {
                    grid-template-columns: 1fr;
                }
                .case-title-card {
                    padding: 28px 20px;
                }
                .chat-mock-grid {
                    grid-template-columns: 1fr;
                }
            }

            @media (max-width: 768px) {
                nav {
                    padding: 14px 20px;
                }
                .logo img {
                    max-width: 120px;
                    margin-right: 10px;
                }
                .team-name {
                    font-size: 18px;
                }
                .nav-links {
                    display: none;
                }
                .hamburger {
                    display: flex;
                }
                .hero {
                    padding: 50px 5% 40px;
                }
                .hero h1 {
                    font-size: clamp(20px, 5vw, 28px);
                }
                .container {
                    padding: 24px 4%;
                }
                .section {
                    margin-bottom: 28px;
                }
                .section-title {
                    font-size: 22px;
                }
                .case-title-card h2 {
                    font-size: 22px;
                }
                .solution-timeline {
                    padding-left: 44px;
                }
                .solution-timeline::before {
                    left: 15px;
                    top: 0;
                }
                .timeline-number {
                    left: -44px;
                    width: 30px;
                    height: 30px;
                    font-size: 14px;
                }
                .challenge-image-container,
                .solution-detailed {
                    padding: 20px 16px;
                }
                .challenge-image-container h3,
                .challenge-image-container > h3 {
                    font-size: 16px;
                    gap: 8px;
                }
                .solution-detailed h3 {
                    font-size: 18px;
                }
                .challenge-item-card strong {
                    font-size: 13px;
                }
                .challenge-item-card p {
                    font-size: 12.5px;
                }
                /* AI固有 */
                .ai-diagram-section {
                    padding: 20px 16px;
                    overflow: hidden;
                }
                .ai-diagram {
                    overflow-x: auto;
                    padding: 20px 12px;
                }
                .datasource-body {
                    flex-direction: column;
                }
                .ds-cell + .ds-cell {
                    border-left: none;
                    border-top: 1px dashed #c8e6c9;
                }
                .chat-mock-section {
                    padding: 20px 16px;
                }
                .chat-mock-grid {
                    grid-template-columns: 1fr;
                }
                .chat-mock-frame {
                    min-height: 200px;
                }
                .cta-section {
                    padding: 40px 5%;
                }
                .cta-section h2 {
                    font-size: 22px;
                }
                .cta-section p {
                    font-size: 14px;
                }
                .cta-buttons {
                    flex-direction: column;
                    align-items: stretch;
                }
                .btn {
                    width: 100%;
                    text-align: center;
                    padding: 14px 24px;
                    font-size: 15px;
                }
                .tech-stack {
                    grid-template-columns: repeat(2, 1fr);
                }
                .breadcrumb {
                    font-size: 12px;
                }
                .hero-meta {
                    gap: 12px;
                    font-size: 13px;
                }
                .case-meta-info {
                    gap: 12px;
                }
                .footer-top {
                    grid-template-columns: 1fr;
                    gap: 40px;
                }
                .footer-nav-grid {
                    grid-template-columns: 1fr 1fr;
                    gap: 24px;
                }
                .footer-bottom {
                    flex-direction: column;
                    align-items: flex-start;
                    gap: 12px;
                }
                .footer-inner {
                    padding: 40px 24px 32px;
                }
            }

            @media (max-width: 480px) {
                .tech-stack {
                    grid-template-columns: 1fr;
                }
                .solution-timeline {
                    padding-left: 38px;
                }
                .solution-timeline::before {
                    left: 13px;
                    top: 0;
                }
                .timeline-number {
                    left: -38px;
                    width: 26px;
                    height: 26px;
                    font-size: 12px;
                }
                .case-title-card h2 {
                    font-size: 18px;
                }
            }