.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;
            }
            .meta-item svg {
                color: #4caf50;
            }

            /* 課題 */
            .challenge-solution-section {
                margin-bottom: 40px;
            }
            .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: 24px;
                color: #ff9800;
                margin-bottom: 25px;
                display: flex;
                align-items: center;
                gap: 12px;
            }
            .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;
            }

            /* 構成図 */
            .system-diagram {
                background: white;
                padding: 40px;
                border-radius: 12px;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            }
            .diagram-visual-container {
                background: linear-gradient(135deg, #f0f4ff 0%, #e8f5e9 100%);
                padding: 50px 30px;
                border-radius: 12px;
                margin-top: 25px;
            }

            /* Before / After 構成図 */
            .before-after-layout {
                display: grid;
                grid-template-columns: 1fr auto 1fr;
                gap: 30px;
                max-width: 960px;
                margin: 0 auto;
                align-items: center;
            }

            .infra-box {
                background: white;
                border-radius: 14px;
                padding: 28px;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            }
            .infra-box-header {
                text-align: center;
                margin-bottom: 20px;
            }
            .infra-badge {
                display: inline-block;
                padding: 6px 18px;
                border-radius: 20px;
                font-size: 13px;
                font-weight: 700;
                margin-bottom: 10px;
            }
            .infra-badge.before {
                background: #fbe9e7;
                color: #bf360c;
            }
            .infra-badge.after {
                background: #e8f5e9;
                color: #1b5e20;
            }
            .infra-box-header h4 {
                font-size: 16px;
                color: #444;
            }

            .infra-item {
                display: flex;
                align-items: center;
                gap: 12px;
                background: #f9f9f9;
                border-radius: 8px;
                padding: 12px 16px;
                margin-bottom: 10px;
                font-size: 14px;
                color: #555;
            }
            .infra-item:last-child {
                margin-bottom: 0;
            }
            .infra-item svg {
                flex-shrink: 0;
                width: 20px;
                height: 20px;
            }
            .infra-item.old svg {
                color: #e57373;
            }
            .infra-item.new svg {
                color: #4caf50;
            }

            .aws-item {
                background: #fff8e1;
                border-left: 3px solid #ff9900;
            }
            .aws-item svg {
                color: #ff9900;
            }

            .arrow-migrate {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }
            .arrow-migrate-icon {
                font-size: 28px;
                color: #4caf50;
            }
            .arrow-migrate-label {
                background: white;
                padding: 8px 14px;
                border-radius: 20px;
                font-size: 12px;
                color: #555;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
                white-space: nowrap;
                text-align: center;
                line-height: 1.5;
            }

            /* セキュリティ構成 */
            .security-layout {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 24px;
                margin-top: 25px;
            }
            .security-card {
                background: white;
                border-radius: 12px;
                padding: 28px;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
                border-top: 5px solid;
            }
            .security-card.network {
                border-color: #1565c0;
            }
            .security-card.identity {
                border-color: #6a1b9a;
            }
            .security-card.monitoring {
                border-color: #ff6f00;
            }
            .security-card.backup {
                border-color: #2e7d32;
            }
            .security-card h4 {
                font-size: 16px;
                font-weight: 700;
                margin-bottom: 16px;
                display: flex;
                align-items: center;
                gap: 10px;
            }
            .security-card.network h4 {
                color: #1565c0;
            }
            .security-card.identity h4 {
                color: #6a1b9a;
            }
            .security-card.monitoring h4 {
                color: #ff6f00;
            }
            .security-card.backup h4 {
                color: #2e7d32;
            }
            .security-card-icon {
                width: 36px;
                height: 36px;
                border-radius: 8px;
                display: flex;
                align-items: center;
                justify-content: center;
                flex-shrink: 0;
            }
            .security-card.network .security-card-icon {
                background: #e3f2fd;
            }
            .security-card.identity .security-card-icon {
                background: #f3e5f5;
            }
            .security-card.monitoring .security-card-icon {
                background: #fff3e0;
            }
            .security-card.backup .security-card-icon {
                background: #e8f5e9;
            }
            .security-card-icon svg {
                width: 22px;
                height: 22px;
            }
            .security-card.network .security-card-icon svg {
                color: #1565c0;
            }
            .security-card.identity .security-card-icon svg {
                color: #6a1b9a;
            }
            .security-card.monitoring .security-card-icon svg {
                color: #ff6f00;
            }
            .security-card.backup .security-card-icon svg {
                color: #2e7d32;
            }
            .security-list {
                list-style: none;
            }
            .security-list li {
                font-size: 13px;
                color: #555;
                padding: 6px 0;
                border-bottom: 1px solid #f5f5f5;
                display: flex;
                align-items: flex-start;
                gap: 8px;
                line-height: 1.6;
            }
            .security-list li:last-child {
                border-bottom: none;
            }
            .security-list li::before {
                content: "✓";
                font-weight: bold;
                flex-shrink: 0;
                margin-top: 1px;
            }
            .security-card.network .security-list li::before {
                color: #1565c0;
            }
            .security-card.identity .security-list li::before {
                color: #6a1b9a;
            }
            .security-card.monitoring .security-list li::before {
                color: #ff6f00;
            }
            .security-card.backup .security-list li::before {
                color: #2e7d32;
            }

            /* 技術スタック */
            .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;
            }
            .tech-tag.aws {
                background: #fff3e0;
                color: #e65100;
            }

            /* 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;
                }
                .before-after-layout {
                    grid-template-columns: 1fr;
                }
                .arrow-migrate-icon {
                    transform: rotate(90deg);
                }
            }

            @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;
                }
                .system-diagram {
                    padding: 20px 16px;
                    overflow: hidden;
                }
                .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;
                }
            }