.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;
            }

            /* ★ サービス4本柱カード */
            .service-pillars {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
                gap: 24px;
                margin-bottom: 50px;
            }
            .pillar-card {
                background: white;
                border-radius: 14px;
                overflow: hidden;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
                transition: transform 0.2s;
            }
            .pillar-card:hover {
                transform: translateY(-4px);
                box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
            }
            .pillar-card-header {
                padding: 24px 24px 16px;
                display: flex;
                align-items: center;
                gap: 14px;
            }
            .pillar-icon {
                width: 48px;
                height: 48px;
                border-radius: 12px;
                display: flex;
                align-items: center;
                justify-content: center;
                flex-shrink: 0;
            }
            .pillar-icon svg {
                width: 28px;
                height: 28px;
            }
            .pillar-icon.green {
                background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
            }
            .pillar-icon.green svg {
                color: #2e7d32;
            }
            .pillar-icon.blue {
                background: linear-gradient(135deg, #e3f2fd, #bbdefb);
            }
            .pillar-icon.blue svg {
                color: #1565c0;
            }
            .pillar-icon.orange {
                background: linear-gradient(135deg, #fff3e0, #ffe0b2);
            }
            .pillar-icon.orange svg {
                color: #e65100;
            }
            .pillar-icon.purple {
                background: linear-gradient(135deg, #f3e5f5, #e1bee7);
            }
            .pillar-icon.purple svg {
                color: #6a1b9a;
            }
            .pillar-card-header h4 {
                font-size: 16px;
                font-weight: 700;
                color: #2e7d32;
            }
            .pillar-card-header span {
                font-size: 11px;
                color: #888;
            }
            .pillar-card-body {
                padding: 0 24px 24px;
            }
            .pillar-card-body p {
                font-size: 13px;
                color: #555;
                line-height: 1.8;
                margin-bottom: 14px;
            }
            .pillar-list {
                list-style: none;
            }
            .pillar-list li {
                font-size: 13px;
                color: #555;
                padding: 5px 0;
                border-bottom: 1px solid #f5f5f5;
                display: flex;
                align-items: flex-start;
                gap: 8px;
                line-height: 1.6;
            }
            .pillar-list li:last-child {
                border-bottom: none;
            }
            .pillar-list li::before {
                content: "✓";
                font-weight: 700;
                color: #4caf50;
                flex-shrink: 0;
                margin-top: 1px;
            }
            .pillar-divider {
                height: 4px;
            }
            .pillar-divider.green {
                background: linear-gradient(90deg, #4caf50, #81c784);
            }
            .pillar-divider.blue {
                background: linear-gradient(90deg, #1565c0, #42a5f5);
            }
            .pillar-divider.orange {
                background: linear-gradient(90deg, #e65100, #ffa726);
            }
            .pillar-divider.purple {
                background: linear-gradient(90deg, #6a1b9a, #ab47bc);
            }

            /* ★ 月次サポートフロー */
            .monthly-flow {
                background: white;
                padding: 40px;
                border-radius: 12px;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            }
            .monthly-flow h3 {
                font-size: 24px;
                color: #2e7d32;
                margin-bottom: 10px;
                display: flex;
                align-items: center;
                gap: 12px;
            }
            .monthly-flow > p {
                color: #666;
                font-size: 14px;
                margin-bottom: 32px;
            }
            .flow-steps {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                gap: 0;
                position: relative;
            }
            .flow-step {
                display: flex;
                flex-direction: column;
                align-items: center;
                text-align: center;
                padding: 0 8px;
                position: relative;
            }
            .flow-step:not(:last-child)::after {
                content: "›";
                position: absolute;
                right: -10px;
                top: 28px;
                font-size: 24px;
                color: #a5d6a7;
                font-weight: bold;
                z-index: 1;
            }
            .flow-step-circle {
                width: 56px;
                height: 56px;
                border-radius: 50%;
                background: linear-gradient(135deg, #4caf50, #66bb6a);
                display: flex;
                align-items: center;
                justify-content: center;
                margin-bottom: 12px;
                box-shadow: 0 4px 12px rgba(76, 175, 80, 0.25);
            }
            .flow-step-circle svg {
                width: 28px;
                height: 28px;
                color: white;
            }
            .flow-step h5 {
                font-size: 13px;
                font-weight: 700;
                color: #2e7d32;
                margin-bottom: 6px;
            }
            .flow-step p {
                font-size: 11px;
                color: #777;
                line-height: 1.6;
            }

            /* ★ 契約プランバナー */
            .plan-banner {
                background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
                border-radius: 14px;
                padding: 36px 40px;
                display: grid;
                grid-template-columns: 1fr auto;
                gap: 30px;
                align-items: center;
                margin-top: 40px;
            }
            .plan-banner-text h4 {
                font-size: 20px;
                color: white;
                margin-bottom: 8px;
                font-weight: 700;
            }
            .plan-banner-text p {
                font-size: 14px;
                color: rgba(255, 255, 255, 0.85);
                line-height: 1.8;
            }
            .plan-banner-badges {
                display: flex;
                gap: 10px;
                flex-wrap: wrap;
                margin-top: 14px;
            }
            .plan-badge {
                background: rgba(255, 255, 255, 0.18);
                border: 1px solid rgba(255, 255, 255, 0.35);
                border-radius: 20px;
                padding: 4px 14px;
                font-size: 12px;
                color: white;
                font-weight: 600;
            }
            .plan-banner-icon {
                width: 80px;
                height: 80px;
                background: rgba(255, 255, 255, 0.15);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                flex-shrink: 0;
            }
            .plan-banner-icon svg {
                width: 44px;
                height: 44px;
                color: white;
            }

            /* タイムライン */
            .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;
            }

            .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;
                }
            }

            @media (max-width: 900px) {
                .flow-steps {
                    grid-template-columns: repeat(2, 1fr);
                    gap: 20px;
                }
                .flow-step:not(:last-child)::after {
                    display: none;
                }
                .plan-banner {
                    grid-template-columns: 1fr;
                    text-align: center;
                }
                .plan-banner-badges {
                    justify-content: center;
                }
                .plan-banner-icon {
                    margin: 0 auto;
                }
            }

            @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;
                }
                .flow-steps {
                    grid-template-columns: 1fr;
                }
                .plan-banner {
                    padding: 16px;
                }
                .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;
                }
            }