

        /* ページヘッダー */
        .page-header {
            background: linear-gradient(135deg, #fff9f0 0%, #ffe8d0 100%);
            padding: 150px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .page-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(237, 141, 48, 0.15) 0%, transparent 70%);
            border-radius: 50%;
        }

        .page-header h1 {
            font-size: 3rem;
            color: #c05f1a;
            margin-bottom: 1rem;
            position: relative;
            z-index: 2;
        }

        .page-header p {
            font-size: 1.2rem;
            color: #666;
            position: relative;
            z-index: 2;
        }

        /* サービス詳細セクション */
        .service-detail {
            padding: 100px 0;
            background: white;
        }

        .service-grid {
            display: grid;
            gap: 6rem;
        }

        .service-item {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .service-item:nth-child(even) {
            direction: rtl;
        }

        .service-item:nth-child(even) > * {
            direction: ltr;
        }

        .service-content h2 {
            font-size: 2.5rem;
            color: #c05f1a;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .service-icon {
            padding: 1rem;
            background: linear-gradient(135deg, #e67e22, #f39c12);
            border-radius: 20px;
            display:flex;
            align-items: center;
            text-align: center;
        }

        .service-icon img {
            width: 65%;
            display: block;
            margin: 0 auto;
        }

        .service-content p {
            font-size: 1.1rem;
            color: #666;
            line-height: 1.8;
            margin-bottom: 2rem;
        }

        .features-list {
            list-style: none;
            margin-bottom: 2rem;
        }

        .features-list li {
            padding: 0.5rem 0;
            position: relative;
            padding-left: 2rem;
            color: #555;
        }

        .features-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #e67e22;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .service-image {
            background: linear-gradient(135deg, #fff9f0 0%, #ffe8d0 100%);
            border-radius: 20px;
            padding: 3rem;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
        }

        .service-image::before {
            content: '';
            position: absolute;
            top: -20px;
            right: -20px;
            width: 100px;
            height: 100px;
            background: radial-gradient(circle, rgba(237, 141, 48, 0.15) 0%, transparent 70%);
            border-radius: 50%;
        }

        .image-placeholder {
            font-size: 8rem;
            color: #e67e22;
            margin-bottom: 1rem;
            position: relative;
            z-index: 2;
        }

        .image-placeholder img {
            width: 80%;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #e67e22, #f39c12);
            color: white;
            padding: 1rem 2rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(230, 126, 34, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(230, 126, 34, 0.4);
        }

        /* プロセスセクション */
        .process {
            padding: 100px 0;
            background: linear-gradient(135deg, #fff9f0 0%, #ffe8d0 100%);
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            color: #c05f1a;
            margin-bottom: 3rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #e67e22, #f39c12);
            border-radius: 2px;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .process-step {
            background: white;
            padding: 2.5rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            position: relative;
            transition: all 0.3s ease;
        }

        .process-step:hover {
            transform: translateY(-5px);
        }

        .step-number {
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #e67e22, #f39c12);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .process-step h3 {
            font-size: 1.3rem;
            color: #c05f1a;
            margin: 1rem 0;
        }

        .process-step p {
            color: #666;
            line-height: 1.6;
        }

        /* フッター */
        footer {
            background: #c05f1a;
            color: white;
            padding: 3rem 0 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h4 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: #f39c12;
        }

        .footer-section p,
        .footer-section a {
            color: #ccc;
            text-decoration: none;
            line-height: 1.8;
        }

        .footer-section a:hover {
            color: #f39c12;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid #e67e22;
            color: #999;
        }

        /* レスポンシブ */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .page-header h1 {
                font-size: 2.5rem;
            }

            .service-item {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .service-content h2 {
                font-size: 2rem;
            }

            .process-steps {
                grid-template-columns: 1fr;
            }
        }
         