{"id":2,"date":"2025-12-12T23:41:04","date_gmt":"2025-12-12T23:41:04","guid":{"rendered":"https:\/\/www.ace-jewelry.net\/?page_id=2"},"modified":"2026-01-08T01:20:21","modified_gmt":"2026-01-07T16:20:21","slug":"%e3%83%9b%e3%83%bc%e3%83%a0","status":"publish","type":"page","link":"https:\/\/www.ace-jewelry.net\/","title":{"rendered":"\u30db\u30fc\u30e0"},"content":{"rendered":"\n<div class=\"wp-block-group sme-hidden-sm is-layout-constrained wp-block-group-is-layout-constrained\">\n<!DOCTYPE html>\n<html lang=\"ja\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>ACE Jewelry &#8211; \u30aa\u30fc\u30c0\u30fc\u30e1\u30a4\u30c9\u30b8\u30e5\u30a8\u30ea\u30fc<\/title>\n    <link rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\">\n    <link rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin>\n    <link href=\"https:\/\/fonts.googleapis.com\/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&#038;family=Montserrat:wght@300;400;500;600&#038;display=swap\" rel=\"stylesheet\">\n    <style>\n        :root {\n            --primary-tiffany: #0abab5;\n            --dark-tiffany: #008b8b;\n            --light-tiffany: #81d8d0;\n            --deep-navy: #1a1a2e;\n            --soft-cream: #f0f8f8;\n            --pearl-white: #FEFEFE;\n            --charcoal: #2d2d2d;\n            --accent-silver: #c0c0c0;\n            --light-gray: #e8e8e8;\n        }\n\n        * {\n            margin: 0;\n            padding: 0;\n            box-sizing: border-box;\n        }\n\n        body {\n            font-family: 'Montserrat', sans-serif;\n            color: var(--charcoal);\n            background-color: var(--pearl-white);\n            overflow-x: hidden;\n        }\n\n        .serif-font {\n            font-family: 'Cormorant Garamond', serif;\n        }\n\n        \/* Header Navigation *\/\n        header {\n            position: fixed;\n            top: 0;\n            left: 0;\n            right: 0;\n            z-index: 1000;\n            background: rgba(255, 255, 255, 0.98);\n            backdrop-filter: blur(10px);\n            border-bottom: 1px solid rgba(10, 186, 181, 0.1);\n            transition: all 0.4s ease;\n        }\n\n        header.scrolled {\n            background: rgba(255, 255, 255, 0.95);\n            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);\n        }\n\n        .header-content {\n            max-width: 1400px;\n            margin: 0 auto;\n            padding: 1rem 3rem;\n            display: flex;\n            justify-content: space-between;\n            align-items: center;\n        }\n\n        .logo {\n            display: block;\n            transition: opacity 0.3s ease;\n        }\n\n        .logo img {\n            height: 60px;\n            width: auto;\n            display: block;\n        }\n\n        .logo:hover {\n            opacity: 0.8;\n        }\n\n        nav ul {\n            list-style: none;\n            display: flex;\n            gap: 3rem;\n            align-items: center;\n        }\n\n        nav a {\n            text-decoration: none;\n            color: var(--charcoal);\n            font-size: 0.9rem;\n            font-weight: 400;\n            letter-spacing: 0.05em;\n            position: relative;\n            transition: color 0.3s ease;\n        }\n\n        nav a::after {\n            content: '';\n            position: absolute;\n            bottom: -5px;\n            left: 0;\n            width: 0;\n            height: 1px;\n            background: var(--primary-tiffany);\n            transition: width 0.3s ease;\n        }\n\n        nav a:hover {\n            color: var(--primary-tiffany);\n        }\n\n        nav a:hover::after {\n            width: 100%;\n        }\n\n        .cta-button {\n            background: var(--primary-tiffany);\n            color: white !important;\n            padding: 0.75rem 2rem;\n            border-radius: 2px;\n            text-decoration: none;\n            font-size: 0.9rem;\n            font-weight: 500;\n            letter-spacing: 0.05em;\n            transition: all 0.3s ease;\n            border: 1px solid var(--primary-tiffany);\n        }\n\n        .cta-button:hover {\n            background: var(--dark-tiffany);\n            border-color: var(--dark-tiffany);\n            transform: translateY(-2px);\n            box-shadow: 0 6px 20px rgba(10, 186, 181, 0.3);\n        }\n\n        \/* Hero Section with Background Image *\/\n        .hero {\n            height: 100vh;\n            display: flex;\n            align-items: center;\n            justify-content: center;\n            position: relative;\n            background-image: url('https:\/\/www.ace-jewelry.net\/wp-content\/uploads\/2025\/12\/main-scaled.jpeg');\n            background-size: cover;\n            background-position: center;\n            background-repeat: no-repeat;\n            overflow: hidden;\n            margin-top: 0;\n        }\n\n        .hero::before {\n            content: '';\n            position: absolute;\n            top: 0;\n            left: 0;\n            right: 0;\n            bottom: 0;\n            background: rgba(0, 0, 0, 0.35);\n            z-index: 0;\n        }\n\n        .hero-content {\n            text-align: center;\n            z-index: 1;\n            position: relative;\n            animation: fadeInUp 1.2s ease;\n        }\n\n        @keyframes fadeInUp {\n            from {\n                opacity: 0;\n                transform: translateY(40px);\n            }\n            to {\n                opacity: 1;\n                transform: translateY(0);\n            }\n        }\n\n        .hero-subtitle {\n            font-size: 0.95rem;\n            letter-spacing: 0.3em;\n            color: white;\n            font-weight: 500;\n            margin-bottom: 1.5rem;\n            opacity: 0;\n            animation: fadeIn 1s ease 0.3s forwards;\n            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);\n        }\n\n        @keyframes fadeIn {\n            to { opacity: 1; }\n        }\n\n        .hero-title {\n            font-family: 'Cormorant Garamond', serif;\n            font-size: 5rem;\n            font-weight: 300;\n            line-height: 1.2;\n            color: white;\n            margin-bottom: 1rem;\n            opacity: 0;\n            animation: fadeIn 1s ease 0.6s forwards;\n            text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.6);\n        }\n\n        .hero-title strong {\n            font-weight: 600;\n            display: block;\n            margin-top: 0.5rem;\n        }\n\n        .hero-description {\n            font-size: 1.1rem;\n            color: white;\n            margin-bottom: 3rem;\n            letter-spacing: 0.05em;\n            opacity: 0;\n            animation: fadeIn 1s ease 0.9s forwards;\n            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);\n        }\n\n        .hero-cta {\n            opacity: 0;\n            animation: fadeIn 1s ease 1.2s forwards;\n        }\n\n        \/* About Section *\/\n        .about-section {\n            padding: 8rem 3rem;\n            max-width: 1400px;\n            margin: 0 auto;\n            display: grid;\n            grid-template-columns: 1fr 1fr;\n            gap: 6rem;\n            align-items: center;\n        }\n\n        .about-image {\n            position: relative;\n            overflow: hidden;\n            border-radius: 2px;\n        }\n\n        .about-image img {\n            width: 100%;\n            height: 600px;\n            object-fit: cover;\n            transition: transform 0.6s ease;\n        }\n\n        .about-image:hover img {\n            transform: scale(1.05);\n        }\n\n        .about-content h3 {\n            font-size: 0.9rem;\n            letter-spacing: 0.2em;\n            color: var(--primary-tiffany);\n            margin-bottom: 1rem;\n            font-weight: 500;\n        }\n\n        .about-content h2 {\n            font-family: 'Cormorant Garamond', serif;\n            font-size: 3.5rem;\n            font-weight: 400;\n            color: var(--deep-navy);\n            margin-bottom: 2rem;\n            line-height: 1.2;\n        }\n\n        .about-content p {\n            font-size: 1rem;\n            line-height: 1.8;\n            color: var(--charcoal);\n            margin-bottom: 1.5rem;\n            opacity: 0.9;\n        }\n\n        \/* Features Section *\/\n        .features-section {\n            background: var(--soft-cream);\n            padding: 6rem 3rem;\n        }\n\n        .features-grid {\n            max-width: 1400px;\n            margin: 0 auto;\n            display: grid;\n            grid-template-columns: repeat(4, 1fr);\n            gap: 3rem;\n        }\n\n        .feature-card {\n            text-align: center;\n            padding: 2rem;\n            transition: transform 0.3s ease;\n        }\n\n        .feature-card:hover {\n            transform: translateY(-10px);\n        }\n\n        .feature-icon {\n            width: 60px;\n            height: 60px;\n            margin: 0 auto 1.5rem;\n            background: var(--primary-tiffany);\n            border-radius: 50%;\n            display: flex;\n            align-items: center;\n            justify-content: center;\n            color: white;\n            font-size: 1.5rem;\n        }\n\n        .feature-card h3 {\n            font-family: 'Cormorant Garamond', serif;\n            font-size: 1.5rem;\n            color: var(--deep-navy);\n            margin-bottom: 1rem;\n            font-weight: 500;\n        }\n\n        .feature-card p {\n            font-size: 0.9rem;\n            color: var(--charcoal);\n            line-height: 1.6;\n            opacity: 0.85;\n        }\n\n        \/* Products Section *\/\n        .products-section {\n            padding: 8rem 3rem;\n            max-width: 1400px;\n            margin: 0 auto;\n        }\n\n        .section-header {\n            text-align: center;\n            margin-bottom: 4rem;\n        }\n\n        .section-header h3 {\n            font-size: 0.9rem;\n            letter-spacing: 0.2em;\n            color: var(--primary-tiffany);\n            margin-bottom: 1rem;\n            font-weight: 500;\n        }\n\n        .section-header h2 {\n            font-family: 'Cormorant Garamond', serif;\n            font-size: 3.5rem;\n            font-weight: 400;\n            color: var(--deep-navy);\n        }\n\n        .products-grid {\n            display: grid;\n            grid-template-columns: repeat(4, 1fr);\n            gap: 2rem;\n        }\n\n        .product-card {\n            position: relative;\n            overflow: hidden;\n            border-radius: 2px;\n            background: white;\n            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);\n            transition: all 0.4s ease;\n        }\n\n        .product-card:hover {\n            transform: translateY(-10px);\n            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);\n        }\n\n        .product-image {\n            position: relative;\n            overflow: hidden;\n            padding-top: 100%;\n            background: var(--soft-cream);\n        }\n\n        .product-image img {\n            position: absolute;\n            top: 0;\n            left: 0;\n            width: 100%;\n            height: 100%;\n            object-fit: cover;\n            transition: transform 0.6s ease;\n        }\n\n        .product-card:hover .product-image img {\n            transform: scale(1.1);\n        }\n\n        .product-info {\n            padding: 1.5rem;\n            text-align: center;\n        }\n\n        .product-info h3 {\n            font-family: 'Cormorant Garamond', serif;\n            font-size: 1.3rem;\n            color: var(--deep-navy);\n            margin-bottom: 0.5rem;\n            font-weight: 500;\n        }\n\n        .product-price {\n            color: var(--primary-tiffany);\n            font-size: 1.1rem;\n            font-weight: 500;\n        }\n\n        \/* Premium Section *\/\n        .premium-section {\n            background: var(--deep-navy);\n            color: white;\n            padding: 8rem 3rem;\n            position: relative;\n            overflow: hidden;\n        }\n\n        .premium-section::before {\n            content: '';\n            position: absolute;\n            top: 0;\n            left: 0;\n            right: 0;\n            bottom: 0;\n            background: url('data:image\/svg+xml,<svg width=\"100\" height=\"100\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><defs><pattern id=\"grid\" width=\"100\" height=\"100\" patternUnits=\"userSpaceOnUse\"><path d=\"M 100 0 L 0 0 0 100\" fill=\"none\" stroke=\"rgba(212,175,55,0.05)\" stroke-width=\"1\"\/><\/pattern><\/defs><rect width=\"100%\" height=\"100%\" fill=\"url(%23grid)\"\/><\/svg>');\n            opacity: 0.3;\n        }\n\n        .premium-content {\n            max-width: 1400px;\n            margin: 0 auto;\n            display: grid;\n            grid-template-columns: 1fr 1fr;\n            gap: 6rem;\n            align-items: center;\n            position: relative;\n            z-index: 1;\n        }\n\n        .premium-text h3 {\n            font-size: 0.9rem;\n            letter-spacing: 0.2em;\n            color: var(--primary-tiffany);\n            margin-bottom: 1rem;\n            font-weight: 500;\n        }\n\n        .premium-text h2 {\n            font-family: 'Cormorant Garamond', serif;\n            font-size: 3rem;\n            font-weight: 400;\n            margin-bottom: 2rem;\n            line-height: 1.2;\n        }\n\n        .premium-text p {\n            font-size: 1rem;\n            line-height: 1.8;\n            opacity: 0.9;\n            margin-bottom: 1rem;\n        }\n\n        .premium-price {\n            font-size: 2rem;\n            color: var(--primary-tiffany);\n            font-weight: 500;\n            margin: 2rem 0;\n        }\n\n        .premium-image {\n            position: relative;\n        }\n\n        .premium-image img {\n            width: 100%;\n            height: 500px;\n            object-fit: cover;\n            border-radius: 2px;\n            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);\n        }\n\n        \/* Process Section *\/\n        .process-section {\n            padding: 8rem 3rem;\n            max-width: 1400px;\n            margin: 0 auto;\n        }\n\n        .process-grid {\n            display: grid;\n            grid-template-columns: repeat(4, 1fr);\n            gap: 3rem;\n            margin-top: 4rem;\n        }\n\n        .process-step {\n            text-align: center;\n            position: relative;\n        }\n\n        .process-number {\n            width: 80px;\n            height: 80px;\n            margin: 0 auto 2rem;\n            background: linear-gradient(135deg, var(--primary-tiffany), var(--dark-tiffany));\n            border-radius: 50%;\n            display: flex;\n            align-items: center;\n            justify-content: center;\n            font-family: 'Cormorant Garamond', serif;\n            font-size: 2rem;\n            color: white;\n            font-weight: 600;\n            box-shadow: 0 8px 25px rgba(10, 186, 181, 0.3);\n        }\n\n        .process-step h3 {\n            font-family: 'Cormorant Garamond', serif;\n            font-size: 1.5rem;\n            color: var(--deep-navy);\n            margin-bottom: 1rem;\n            font-weight: 500;\n        }\n\n        .process-step p {\n            font-size: 0.95rem;\n            color: var(--charcoal);\n            line-height: 1.6;\n            opacity: 0.85;\n        }\n\n        \/* Access Section *\/\n        .access-section {\n            background: var(--soft-cream);\n            padding: 6rem 3rem;\n        }\n\n        .access-container {\n            max-width: 1200px;\n            margin: 0 auto;\n        }\n\n        .access-container > h2 {\n            font-family: 'Cormorant Garamond', serif;\n            font-size: 3rem;\n            color: var(--deep-navy);\n            text-align: center;\n            margin-bottom: 3rem;\n        }\n\n        .access-info-block {\n            background: white;\n            padding: 2.5rem;\n            border-radius: 8px;\n            text-align: center;\n            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);\n            margin-bottom: 3rem;\n        }\n\n        .access-info-block h3 {\n            font-family: 'Cormorant Garamond', serif;\n            font-size: 2rem;\n            color: var(--primary-tiffany);\n            margin-bottom: 1.5rem;\n        }\n\n        .access-info-block p {\n            font-size: 1.1rem;\n            line-height: 2;\n            color: var(--charcoal);\n            margin: 0.5rem 0;\n        }\n\n        \/* \u5e97\u8217\u753b\u50cf *\/\n        .store-photos {\n            display: flex;\n            flex-direction: column;\n            gap: 1.5rem;\n        }\n\n        .photos-row-2 {\n            display: grid;\n            grid-template-columns: 1fr 1fr;\n            gap: 1.5rem;\n        }\n\n        .photos-row-3 {\n            display: grid;\n            grid-template-columns: repeat(3, 1fr);\n            gap: 1.5rem;\n        }\n\n        .store-photos img {\n            width: 100%;\n            height: 280px;\n            object-fit: cover;\n            border-radius: 8px;\n            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);\n            transition: transform 0.3s ease, box-shadow 0.3s ease;\n        }\n\n        .store-photos img:hover {\n            transform: translateY(-5px);\n            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);\n        }\n\n        \/* Footer *\/\n        footer {\n            background: #708090; \n            color: white;\n            padding: 4rem 3rem 2rem;\n        }\n\n        .footer-content {\n            max-width: 1400px;\n            margin: 0 auto;\n            display: grid;\n            grid-template-columns: 2fr 1fr 1fr 1fr;\n            gap: 4rem;\n            margin-bottom: 3rem;\n        }\n\n        .footer-brand {\n            display: flex;\n            align-items: center;\n            justify-content: center;\n        }\n\n        .footer-brand h2 {\n            font-family: 'Cormorant Garamond', serif;\n            font-size: 2rem;\n            margin-bottom: 0;\n            letter-spacing: 0.1em;\n        }\n\n        .footer-brand p {\n            opacity: 0.8;\n            line-height: 1.8;\n            margin-bottom: 1rem;\n        }\n\n        .footer-links h3 {\n            font-size: 1rem;\n            margin-bottom: 1.5rem;\n            color: var(--primary-tiffany);\n            letter-spacing: 0.05em;\n        }\n\n        .footer-links ul {\n            list-style: none;\n        }\n\n        .footer-links li {\n            margin-bottom: 0.8rem;\n        }\n\n        .footer-links a {\n            color: rgba(255, 255, 255, 0.8);\n            text-decoration: none;\n            font-size: 0.9rem;\n            transition: color 0.3s ease;\n        }\n\n        .footer-links a:hover {\n            color: var(--primary-tiffany);\n        }\n\n        .footer-bottom {\n            max-width: 1400px;\n            margin: 0 auto;\n            padding-top: 2rem;\n            border-top: 1px solid rgba(255, 255, 255, 0.1);\n            text-align: center;\n            opacity: 0.7;\n            font-size: 0.85rem;\n        }\n\n        .social-icons {\n            display: flex;\n            gap: 1rem;\n            margin-top: 1rem;\n        }\n\n        .social-icons a {\n            width: 40px;\n            height: 40px;\n            display: flex;\n            align-items: center;\n            justify-content: center;\n            background: rgba(255, 255, 255, 0.1);\n            border-radius: 50%;\n            color: rgba(255, 255, 255, 0.8);\n            transition: all 0.3s ease;\n        }\n\n        .social-icons a:hover {\n            background: var(--primary-tiffany);\n            color: white;\n            transform: translateY(-3px);\n        }\n\n        .payment-icons {\n            display: flex;\n            gap: 0.75rem;\n            margin-top: 1rem;\n            flex-wrap: nowrap;\n            overflow-x: auto;\n        }\n\n        .payment-icons img {\n            border-radius: 4px;\n            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);\n            transition: transform 0.3s ease;\n            flex-shrink: 0;\n        }\n\n        .payment-icons img:hover {\n            transform: translateY(-2px);\n        }\n\n        \/* Responsive *\/\n        @media (max-width: 1024px) {\n            .hero-title {\n                font-size: 3.5rem;\n            }\n\n            .about-section,\n            .premium-content {\n                grid-template-columns: 1fr;\n                gap: 3rem;\n            }\n\n            .products-grid {\n                grid-template-columns: repeat(2, 1fr);\n            }\n\n            .features-grid,\n            .process-grid {\n                grid-template-columns: repeat(2, 1fr);\n            }\n\n            .footer-content {\n                grid-template-columns: 1fr 1fr;\n                gap: 2rem;\n            }\n        }\n\n        @media (max-width: 768px) {\n            .header-content {\n                padding: 1rem 1.5rem;\n                flex-direction: column;\n                gap: 1rem;\n            }\n\n            .logo img {\n                height: 50px;\n            }\n\n            nav ul {\n                gap: 1rem;\n                font-size: 0.8rem;\n                flex-wrap: wrap;\n                justify-content: center;\n            }\n\n            .cta-button {\n                padding: 0.6rem 1.5rem;\n                font-size: 0.85rem;\n            }\n\n            .hero {\n                padding: 2rem 1.5rem;\n                height: auto;\n                min-height: 80vh;\n            }\n\n            .hero-title {\n                font-size: 2.5rem;\n            }\n\n            .hero-subtitle {\n                font-size: 0.85rem;\n            }\n\n            .hero-description {\n                font-size: 1rem;\n            }\n\n            .about-section {\n                padding: 4rem 1.5rem;\n                gap: 2rem;\n            }\n\n            .about-content h2 {\n                font-size: 2.5rem;\n            }\n\n            .features-section {\n                padding: 4rem 1.5rem;\n            }\n\n            .products-section {\n                padding: 4rem 1.5rem;\n            }\n\n            .products-grid,\n            .features-grid,\n            .process-grid {\n                grid-template-columns: 1fr;\n                gap: 1.5rem;\n            }\n\n            .section-header h2 {\n                font-size: 2.5rem;\n            }\n\n            .premium-section {\n                padding: 4rem 1.5rem;\n            }\n\n            .premium-content {\n                gap: 2rem;\n            }\n\n            .premium-text h2 {\n                font-size: 2rem;\n            }\n\n            .premium-price {\n                font-size: 1.5rem;\n            }\n\n            .process-section {\n                padding: 4rem 1.5rem;\n            }\n\n            .access-section {\n                padding: 4rem 1.5rem;\n            }\n\n            .access-container > h2 {\n                font-size: 2.5rem;\n            }\n\n            .access-info-block {\n                padding: 2rem;\n            }\n\n            .access-info-block h3 {\n                font-size: 1.5rem;\n            }\n\n            .access-info-block p {\n                font-size: 1rem;\n            }\n\n            .photos-row-2,\n            .photos-row-3 {\n                grid-template-columns: 1fr;\n            }\n\n            .store-photos img {\n                height: 220px;\n            }\n\n            .footer-content {\n                grid-template-columns: 1fr;\n                gap: 2rem;\n                padding: 0 1.5rem;\n            }\n\n            .social-icons {\n                justify-content: center;\n            }\n\n            .payment-icons {\n                justify-content: center;\n            }\n        }\n\n        @media (max-width: 480px) {\n            .logo img {\n                height: 40px;\n            }\n\n            .hero-title {\n                font-size: 2rem;\n            }\n\n            .hero-subtitle {\n                font-size: 0.75rem;\n                letter-spacing: 0.2em;\n            }\n\n            .about-content h2,\n            .section-header h2,\n            .premium-text h2 {\n                font-size: 2rem;\n            }\n\n            .product-info h3 {\n                font-size: 1.1rem;\n            }\n\n            .feature-card h3,\n            .process-step h3 {\n                font-size: 1.2rem;\n            }\n\n            nav ul {\n                gap: 0.5rem;\n            }\n\n            nav a {\n                font-size: 0.75rem;\n            }\n\n            .access-container > h2 {\n                font-size: 2rem;\n            }\n\n            .access-info-block h3 {\n                font-size: 1.3rem;\n            }\n\n            .access-info-block p {\n                font-size: 0.9rem;\n            }\n\n            .store-photos img {\n                height: 200px;\n            }\n        }\n\n        \/* Scroll animations *\/\n        .fade-in {\n            opacity: 0;\n            transform: translateY(30px);\n            transition: opacity 0.8s ease, transform 0.8s ease;\n        }\n\n        .fade-in.visible {\n            opacity: 1;\n            transform: translateY(0);\n        }\n    <\/style>\n<\/head>\n<body>\n    <header id=\"header\">\n        <div class=\"header-content\">\n            <a href=\"https:\/\/www.ace-jewelry.net\/\" class=\"logo\">\n                <img decoding=\"async\" src=\"https:\/\/www.ace-jewelry.net\/wp-content\/uploads\/2025\/12\/logo.jpg\" alt=\"ACE Jewelry\">\n            <\/a>\n            <nav>\n                <ul>\n                    <li><a href=\"https:\/\/www.ace-jewelry.net\/\">\u30db\u30fc\u30e0<\/a><\/li>\n                    <li><a href=\"https:\/\/www.ace-jewelry.net\/?page_id=22\">\u5546\u54c1\u4e00\u89a7<\/a><\/li>\n                    <li><a href=\"https:\/\/www.ace-jewelry.net\/?page_id=25\">\u30ab\u30c6\u30b4\u30ea\u30fc<\/a><\/li>\n                    <li><a href=\"https:\/\/www.ace-jewelry.net\/?page_id=16\" class=\"cta-button\">\u6765\u5e97\u4e88\u7d04<\/a><\/li>\n                    <li><a href=\"https:\/\/www.ace-jewelry.net\/?page_id=19\">\u304a\u554f\u3044\u5408\u308f\u305b<\/a><\/li>\n                <\/ul>\n            <\/nav>\n        <\/div>\n    <\/header>\n\n    <section class=\"hero\">\n        <div class=\"hero-content\">\n            <div class=\"hero-subtitle\">ACE Jewelry\u3078\u3088\u3046\u3053\u305d<\/div>\n            <h1 class=\"hero-title serif-font\">\n                \u6c38\u9060\u3092\u7e8f\u3046\u3001\n                <strong>\u552f\u4e00\u7121\u4e8c\u306e\u8f1d\u304d<\/strong>\n            <\/h1>\n            <p class=\"hero-description\">\u6642\u3092\u7d21\u3050\u3001\u81f3\u9ad8\u306e\u5b9d\u98fe<\/p>\n            <div class=\"hero-cta\">\n                <a href=\"https:\/\/www.ace-jewelry.net\/?page_id=16\" class=\"cta-button\">\u6765\u5e97\u4e88\u7d04\u3059\u308b \u25b6<\/a>\n            <\/div>\n        <\/div>\n    <\/section>\n\n    <section class=\"about-section fade-in\">\n        <div class=\"about-image\">\n            <img decoding=\"async\" src=\"data:image\/svg+xml,%3Csvg width='600' height='600' xmlns='http:\/\/www.w3.org\/2000\/svg'%3E%3Cdefs%3E%3ClinearGradient id='grad' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:%23FAF7F2;stop-opacity:1' \/%3E%3Cstop offset='100%25' style='stop-color:%23E8DCC8;stop-opacity:1' \/%3E%3C\/linearGradient%3E%3C\/defs%3E%3Crect width='600' height='600' fill='url(%23grad)'\/%3E%3Ccircle cx='300' cy='250' r='120' fill='none' stroke='%230abab5' stroke-width='2' opacity='0.3'\/%3E%3Ccircle cx='300' cy='250' r='90' fill='none' stroke='%230abab5' stroke-width='2' opacity='0.5'\/%3E%3Ccircle cx='300' cy='250' r='60' fill='%230abab5' opacity='0.2'\/%3E%3Ctext x='300' y='400' font-family='serif' font-size='24' fill='%231a1a2e' text-anchor='middle' opacity='0.6'%3Eace-jewelry%3C\/text%3E%3C\/svg%3E\" alt=\"\u30b8\u30e5\u30a8\u30ea\u30fc\u5236\u4f5c\u306e\u69d8\u5b50\">\n        <\/div>\n        <div class=\"about-content\">\n            <h3>ACE Jewelry\u3068\u306f<\/h3>\n            <h2 class=\"serif-font\">\u6642\u3092\u7d21\u3050\u3001\u81f3\u9ad8\u306e\u5b9d\u98fe<\/h2>\n            <p>ACE Jewelry\u306f\u3001\u304a\u5ba2\u3055\u307e\u4e00\u4eba\u3072\u3068\u308a\u306e\u4eba\u751f\u306b\u5bc4\u308a\u6dfb\u3046\u3001\u5b8c\u5168\u30aa\u30fc\u30c0\u30fc\u30e1\u30a4\u30c9\u306e\u30b8\u30e5\u30a8\u30ea\u30fc\u30a2\u30c8\u30ea\u30a8\u3067\u3059\u3002<\/p>\n            <p>\u30c7\u30b6\u30a4\u30f3\u306e\u7f8e\u3057\u3055\u3060\u3051\u3067\u306a\u304f\u3001\u304a\u5ba2\u3055\u307e\u306e\u60f3\u3044\u3001\u5927\u5207\u306a\u8a18\u5ff5\u65e5\u3001\u305d\u3057\u3066\u672a\u6765\u3078\u306e\u9858\u3044\u307e\u3067\u3002\u3059\u3079\u3066\u3092\u8077\u4eba\u306e\u624b\u3067\u4e00\u3064\u3072\u3068\u3064\u4e01\u5be7\u306b\u5f62\u306b\u3057\u3066\u3044\u304d\u307e\u3059\u3002<\/p>\n            <p>\u53d7\u3051\u7d99\u304c\u308c\u305f\u30b8\u30e5\u30a8\u30ea\u30fc\u306e\u30ea\u30e1\u30a4\u30af\u3001\u4eba\u751f\u306e\u7bc0\u76ee\u3092\u5f69\u308b\u7279\u5225\u306a\u4e00\u54c1\u3001\u65e5\u5e38\u306b\u5bc4\u308a\u6dfb\u3046\u4e0a\u8cea\u306a\u30a2\u30af\u30bb\u30b5\u30ea\u30fc\u3002\u3042\u306a\u305f\u306e\u300c\u3053\u3046\u3042\u308a\u305f\u3044\u300d\u3092\u3001\u719f\u7df4\u306e\u8077\u4eba\u6280\u8853\u3067\u73fe\u5b9f\u3078\u3068\u6607\u83ef\u3055\u305b\u307e\u3059\u3002<\/p>\n            <p>\u8eab\u306b\u3064\u3051\u308b\u305f\u3073\u306b\u7269\u8a9e\u304c\u6df1\u307e\u308a\u3001\u5e74\u6708\u3068\u3068\u3082\u306b\u3042\u306a\u305f\u81ea\u8eab\u306e\u4e00\u90e8\u3068\u306a\u3063\u3066\u3044\u304f\u3002ACE Jewelry\u306e\u30b8\u30e5\u30a8\u30ea\u30fc\u304c\u3001\u305d\u3093\u306a\u300c\u6c38\u9060\u306e\u8f1d\u304d\u300d\u3068\u3057\u3066\u3042\u306a\u305f\u306e\u4eba\u751f\u306b\u5bc4\u308a\u6dfb\u3044\u7d9a\u3051\u308b\u3053\u3068\u3092\u9858\u3063\u3066\u304a\u308a\u307e\u3059\u3002<\/p>\n        <\/div>\n    <\/section>\n\n    <section class=\"features-section\">\n        <div class=\"features-grid fade-in\">\n            <div class=\"feature-card\">\n                <div class=\"feature-icon\">\u25c6<\/div>\n                <h3 class=\"serif-font\">\u6700\u9ad8\u54c1\u8cea\u306e\u7d20\u6750<\/h3>\n                <p>\u53b3\u9078\u3055\u308c\u305f\u5929\u7136\u77f3\u306e\u307f\u3092\u4f7f\u7528\u3057\u3001\u8077\u4eba\u306e\u624b\u3067\u4e01\u5be7\u306b\u4ed5\u4e0a\u3052\u3089\u308c\u3066\u3044\u307e\u3059<\/p>\n            <\/div>\n            <div class=\"feature-card\">\n                <div class=\"feature-icon\">\u2713<\/div>\n                <h3 class=\"serif-font\">\u30aa\u30f3\u30e9\u30a4\u30f3\u30b5\u30dd\u30fc\u30c8<\/h3>\n                <p>\u3054\u8cfc\u5165\u524d\u3001\u3054\u8cfc\u5165\u5f8c\u306e\u3054\u76f8\u8ac7\u306b\u5bfe\u5fdc\u3044\u305f\u3057\u307e\u3059<\/p>\n            <\/div>\n            <div class=\"feature-card\">\n                <div class=\"feature-icon\">\u21ba<\/div>\n                <h3 class=\"serif-font\">30\u65e5\u9593\u8fd4\u54c1\u4fdd\u8a3c<\/h3>\n                <p>\u5546\u54c1\u306b\u554f\u984c\u304c\u3042\u308b\u5834\u5408\u5bfe\u5fdc\u3057\u307e\u3059<\/p>\n            <\/div>\n            <div class=\"feature-card\">\n                <div class=\"feature-icon\">\u25c9<\/div>\n                <h3 class=\"serif-font\">\u5b8c\u5168\u4e88\u7d04\u5236<\/h3>\n                <p>\u304a\u5ba2\u69d8\u3060\u3051\u306e\u30d7\u30e9\u30a4\u30d9\u30fc\u30c8\u306a\u6642\u9593\u3067\u3086\u3063\u304f\u308a\u3068\u304a\u9078\u3073\u3044\u305f\u3060\u3051\u307e\u3059<\/p>\n            <\/div>\n        <\/div>\n    <\/section>\n\n    <section class=\"products-section fade-in\">\n        <div class=\"section-header\">\n            <h3>\u65b0\u7740\u5546\u54c1<\/h3>\n            <h2 class=\"serif-font\">\u30aa\u30fc\u30c0\u30fc\u30e1\u30a4\u30c9\u4e00\u4f8b<\/h2>\n        <\/div>\n        <div class=\"products-grid\">\n            <div class=\"product-card\">\n                <div class=\"product-image\">\n                    <img decoding=\"async\" src=\"https:\/\/www.ace-jewelry.net\/wp-content\/uploads\/2025\/12\/1.jpg\" alt=\"\u6642\u3092\u7d21\u3050\u81f3\u9ad8\u306e\">\n                <\/div>\n                <div class=\"product-info\">\n                    <h3 class=\"serif-font\">\u6642\u3092\u7d21\u3050\u81f3\u9ad8\u306e<\/h3>\n                    <div class=\"product-price\">\u00a5475,000<\/div>\n                <\/div>\n            <\/div>\n            <div class=\"product-card\">\n                <div class=\"product-image\">\n                    <img decoding=\"async\" src=\"https:\/\/www.ace-jewelry.net\/wp-content\/uploads\/2025\/12\/2.jpg\" alt=\"\u30a2\u30e1\u30b8\u30b9\u30c8\u3000\u30d5\u30e9\u30ef\u30fc\u30c9\">\n                <\/div>\n                <div class=\"product-info\">\n                    <h3 class=\"serif-font\">\u30a2\u30e1\u30b8\u30b9\u30c8\u3000\u30d5\u30e9\u30ef\u30fc\u30c9<\/h3>\n                    <div class=\"product-price\">\u00a5499,000<\/div>\n                <\/div>\n            <\/div>\n            <div class=\"product-card\">\n                <div class=\"product-image\">\n                    <img decoding=\"async\" src=\"https:\/\/www.ace-jewelry.net\/wp-content\/uploads\/2025\/12\/3.jpg\" alt=\"\u30c0\u30a4\u30a2\u30e2\u30f3\u30c9\u3000\u30d4\u30a2\u30b9\">\n                <\/div>\n                <div class=\"product-info\">\n                    <h3 class=\"serif-font\">\u30c0\u30a4\u30a2\u30e2\u30f3\u30c9\u3000\u30d4\u30a2\u30b9<\/h3>\n                    <div class=\"product-price\">\u00a5365,000<\/div>\n                <\/div>\n            <\/div>\n            <div class=\"product-card\">\n                <div class=\"product-image\">\n                    <img decoding=\"async\" src=\"https:\/\/www.ace-jewelry.net\/wp-content\/uploads\/2025\/12\/4.jpg\" alt=\"\u30a4\u30f3\u30bf\u30fc\u30ed\u30c3\u30ad\u30f3\u30b0\u30cf\u30fc\u30c8\u30d4\u30a2\u30b9\">\n                <\/div>\n                <div class=\"product-info\">\n                    <h3 class=\"serif-font\">\u30a4\u30f3\u30bf\u30fc\u30ed\u30c3\u30ad\u30f3\u30b0\u30cf\u30fc\u30c8\u30d4\u30a2\u30b9<\/h3>\n                    <div class=\"product-price\">\u00a5488,000<\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/section>\n\n    <section class=\"premium-section fade-in\">\n        <div class=\"premium-content\">\n            <div class=\"premium-text\">\n                <h3>\u30d7\u30ec\u30df\u30a2\u30e0\u30b3\u30ec\u30af\u30b7\u30e7\u30f3<\/h3>\n                <h2 class=\"serif-font\">\u4eba\u751f\u306e\u8f1d\u304d\u3092\u3001\u6c38\u9060\u306b\u523b\u3080<\/h2>\n                <p>\u5bc4\u308a\u6dfb\u3046\u3088\u3046\u306b\u914d\u3055\u308c\u305f2\u7c92\u306e\u30c0\u30a4\u30e4\u30e2\u30f3\u30c9\u3002\u5927\u304d\u3055\u306e\u9055\u3044\u304c\u751f\u3080\u512a\u7f8e\u306a\u30d0\u30e9\u30f3\u30b9\u304c\u3001\u3075\u305f\u308a\u306e\u7d46\u3068\u6c38\u9060\u306e\u8a93\u3044\u3092\u8c61\u5fb4\u3057\u307e\u3059\u3002<\/p>\n                <h3 style=\"margin-top: 2rem;\">PT950\u30c0\u30d6\u30eb\u30c0\u30a4\u30e4\u30e2\u30f3\u30c9\u30ea\u30f3\u30b0 0.5ct&#038;0.2ct<\/h3>\n                <div class=\"premium-price\">\u00a5698,000<\/div>\n            <\/div>\n            <div class=\"premium-image\">\n                <img decoding=\"async\" src=\"data:image\/svg+xml,%3Csvg width='600' height='500' xmlns='http:\/\/www.w3.org\/2000\/svg'%3E%3Cdefs%3E%3CradialGradient id='premium'%3E%3Cstop offset='0%25' style='stop-color:%232d2d2d'\/%3E%3Cstop offset='100%25' style='stop-color:%231a1a2e'\/%3E%3C\/radialGradient%3E%3C\/defs%3E%3Crect width='600' height='500' fill='url(%23premium)'\/%3E%3Cellipse cx='300' cy='250' rx='100' ry='30' fill='none' stroke='%230abab5' stroke-width='4' opacity='0.6'\/%3E%3Ccircle cx='280' cy='250' r='15' fill='%23FEFEFE' opacity='0.9'\/%3E%3Ccircle cx='320' cy='250' r='10' fill='%23FEFEFE' opacity='0.8'\/%3E%3Cpath d='M 270 255 L 330 255' stroke='%230abab5' stroke-width='3'\/%3E%3C\/svg%3E\" alt=\"\u30d7\u30ec\u30df\u30a2\u30e0\u30c0\u30a4\u30e4\u30e2\u30f3\u30c9\u30ea\u30f3\u30b0\">\n            <\/div>\n        <\/div>\n    <\/section>\n\n    <section class=\"process-section fade-in\">\n        <div class=\"section-header\">\n            <h3>\u3054\u6765\u5e97\u306e\u6d41\u308c<\/h3>\n            <h2 class=\"serif-font\">\u521d\u3081\u3066\u306e\u304a\u5ba2\u69d8\u3082\u5b89\u5fc3\u3057\u3066\u3054\u6765\u5e97\u3044\u305f\u3060\u3051\u307e\u3059<\/h2>\n        <\/div>\n        <div class=\"process-grid\">\n            <div class=\"process-step\">\n                <div class=\"process-number serif-font\">01<\/div>\n                <h3 class=\"serif-font\">\u3054\u4e88\u7d04<\/h3>\n                <p>\u30aa\u30f3\u30e9\u30a4\u30f3\u307e\u305f\u306f\u304a\u96fb\u8a71\u3067\u3054\u4e88\u7d04\u304f\u3060\u3055\u3044<\/p>\n            <\/div>\n            <div class=\"process-step\">\n                <div class=\"process-number serif-font\">02<\/div>\n                <h3 class=\"serif-font\">\u3054\u6765\u5e97<\/h3>\n                <p>\u3054\u76f8\u8ac7\u3044\u305f\u3060\u304d\u306a\u304c\u3089\u3001\u5546\u54c1\u9078\u5b9a\u3092\u884c\u3044\u307e\u3059<\/p>\n            <\/div>\n            <div class=\"process-step\">\n                <div class=\"process-number serif-font\">03<\/div>\n                <h3 class=\"serif-font\">\u3054\u8a66\u7740\u30fb\u3054\u76f8\u8ac7<\/h3>\n                <p>\u5c02\u9580\u30b9\u30bf\u30c3\u30d5\u304c\u30b5\u30dd\u30fc\u30c8\u3044\u305f\u3057\u307e\u3059<\/p>\n            <\/div>\n            <div class=\"process-step\">\n                <div class=\"process-number serif-font\">04<\/div>\n                <h3 class=\"serif-font\">\u3054\u8cfc\u5165\u30fb\u30a2\u30d5\u30bf\u30fc\u30b1\u30a2<\/h3>\n                <p>\u6c38\u4e45\u4fdd\u8a3c\u3068\u30e1\u30f3\u30c6\u30ca\u30f3\u30b9\u30b5\u30fc\u30d3\u30b9<\/p>\n            <\/div>\n        <\/div>\n        <div style=\"text-align: center; margin-top: 4rem;\">\n            <a href=\"https:\/\/www.ace-jewelry.net\/?page_id=16\" class=\"cta-button\">\u3054\u6765\u5e97\u4e88\u7d04<\/a>\n        <\/div>\n    <\/section>\n\n    <!-- \u30a2\u30af\u30bb\u30b9\u30bb\u30af\u30b7\u30e7\u30f3 -->\n    <section class=\"access-section\">\n        <div class=\"access-container\">\n            <h2 class=\"serif-font\">\u30a2\u30af\u30bb\u30b9<\/h2>\n            \n            <div class=\"access-info-block\">\n                <h3 class=\"serif-font\">ACE Jewelry<\/h3>\n                <p>\u3012730-0034 \u5e83\u5cf6\u5e02\u4e2d\u533a\u65b0\u5929\u57301-26 \uff15F<\/p>\n                <p>TEL\u3000082-909-2447<\/p>\n                <p>E-mail  info@ace-jewelry.net<\/p>\n                <p>\u55b6\u696d\u6642\u9593 10:00-22:00<\/p>\n            <\/div>\n\n            <!-- \u5e97\u8217\u753b\u50cf\u30ae\u30e3\u30e9\u30ea\u30fc -->\n            <div class=\"store-photos\">\n                <!-- \u4e0a\u6bb5\uff1a2\u679a -->\n                <div class=\"photos-row-2\">\n                    <img decoding=\"async\" src=\"https:\/\/www.ace-jewelry.net\/wp-content\/uploads\/2026\/01\/ph1.jpg\" alt=\"ACE Jewelry \u5e97\u8217\u770b\u677f\">\n                    <img decoding=\"async\" src=\"https:\/\/www.ace-jewelry.net\/wp-content\/uploads\/2026\/01\/ph2.jpg\" alt=\"ACE Jewelry \u5e97\u5185\">\n                <\/div>\n                \n                <!-- \u4e0b\u6bb5\uff1a3\u679a -->\n                <div class=\"photos-row-3\">\n                    <img decoding=\"async\" src=\"https:\/\/www.ace-jewelry.net\/wp-content\/uploads\/2026\/01\/ph3.jpg\" alt=\"ACE Jewelry \u5e97\u51852\">\n                    <img decoding=\"async\" src=\"https:\/\/www.ace-jewelry.net\/wp-content\/uploads\/2026\/01\/ph4.jpg\" alt=\"ACE Jewelry \u30b8\u30e5\u30a8\u30ea\u30fc\u5c55\u793a\">\n                    <img decoding=\"async\" src=\"https:\/\/www.ace-jewelry.net\/wp-content\/uploads\/2026\/01\/ph5.jpg\" alt=\"ACE Jewelry \u5916\u89b3\">\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/section>\n\n    <footer>\n        <div class=\"footer-content\">\n            <div class=\"footer-brand\">\n                <h2 class=\"serif-font\">ACE Jewelry<\/h2>\n            <\/div>\n            <div class=\"footer-links\">\n                <h3>\u30ab\u30c6\u30b4\u30ea\u30fc<\/h3>\n                <ul>\n                    <li><a href=\"https:\/\/www.ace-jewelry.net\/?page_id=25\">\u30ea\u30f3\u30b0<\/a><\/li>\n                    <li><a href=\"https:\/\/www.ace-jewelry.net\/?page_id=25\">\u30d4\u30a2\u30b9<\/a><\/li>\n                    <li><a href=\"https:\/\/www.ace-jewelry.net\/?page_id=25\">\u30cd\u30c3\u30af\u30ec\u30b9<\/a><\/li>\n                    <li><a href=\"https:\/\/www.ace-jewelry.net\/?page_id=25\">\u30d6\u30ec\u30b9\u30ec\u30c3\u30c8<\/a><\/li>\n                <\/ul>\n            <\/div>\n            <div class=\"footer-links\">\n                <h3>\u30a4\u30f3\u30d5\u30a9\u30e1\u30fc\u30b7\u30e7\u30f3<\/h3>\n                <ul>\n                    <li><a href=\"https:\/\/www.ace-jewelry.net\/?page_id=16\">\u6765\u5e97\u4e88\u7d04<\/a><\/li>\n                    <li><a href=\"https:\/\/www.ace-jewelry.net\/?page_id=19\">\u304a\u554f\u3044\u5408\u308f\u305b<\/a><\/li>\n                <\/ul>\n            <\/div>\n            <div class=\"footer-links\">\n                <h3>Connect with us<\/h3>\n                <div class=\"social-icons\">\n                    <a href=\"#\" aria-label=\"Facebook\">\n                        <svg width=\"32\" height=\"32\" viewBox=\"0 0 24 24\" fill=\"currentColor\">\n                            <path d=\"M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z\"\/>\n                        <\/svg>\n                    <\/a>\n                    <a href=\"#\" aria-label=\"Instagram\">\n                        <svg width=\"32\" height=\"32\" viewBox=\"0 0 24 24\" fill=\"currentColor\">\n                            <path d=\"M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z\"\/>\n                        <\/svg>\n                    <\/a>\n                    <a href=\"#\" aria-label=\"X (Twitter)\">\n                        <svg width=\"32\" height=\"32\" viewBox=\"0 0 24 24\" fill=\"currentColor\">\n                            <path d=\"M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z\"\/>\n                        <\/svg>\n                    <\/a>\n                <\/div>\n                <h3 style=\"margin-top: 2rem;\">Secure payment<\/h3>\n                <div class=\"payment-icons\">\n                    <img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.ace-jewelry.net\/wp-content\/uploads\/2025\/12\/image.gif\" alt=\"American Express\" width=\"50\" height=\"32\">\n                    <img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.ace-jewelry.net\/wp-content\/uploads\/2025\/12\/image-1.gif\" alt=\"JCB\" width=\"50\" height=\"32\">\n                    <img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.ace-jewelry.net\/wp-content\/uploads\/2025\/12\/image-2.gif\" alt=\"Mastercard\" width=\"50\" height=\"32\">\n                    <img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.ace-jewelry.net\/wp-content\/uploads\/2025\/12\/image-3.gif\" alt=\"Diners Club\" width=\"50\" height=\"32\">\n                    <img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.ace-jewelry.net\/wp-content\/uploads\/2025\/12\/image-4.gif\" alt=\"VISA\" width=\"50\" height=\"32\">\n                <\/div>\n            <\/div>\n        <\/div>\n        <div class=\"footer-bottom\">\n            <p>\u00a9 2025 ACE Jewelry. All Rights Reserved.<\/p>\n        <\/div>\n    <\/footer>\n\n    <script>\n        \/\/ Scroll effects\n        window.addEventListener('scroll', () => {\n            const header = document.getElementById('header');\n            if (window.scrollY > 50) {\n                header.classList.add('scrolled');\n            } else {\n                header.classList.remove('scrolled');\n            }\n\n            \/\/ Fade in animations\n            const fadeElements = document.querySelectorAll('.fade-in');\n            fadeElements.forEach(element => {\n                const elementTop = element.getBoundingClientRect().top;\n                const windowHeight = window.innerHeight;\n                if (elementTop < windowHeight * 0.85) {\n                    element.classList.add('visible');\n                }\n            });\n        });\n    <\/script>\n<\/body>\n<\/html>\n<\/div>\n\n\n\n<div class=\"wp-block-group sme-hidden-md sme-hidden-lg-up is-layout-constrained wp-block-group-is-layout-constrained\">\n<!DOCTYPE html>\n<html lang=\"ja\">\n<head>\n    <meta charset=\"UTF-8\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\">\n    <title>ACE Jewelry - \u30aa\u30fc\u30c0\u30fc\u30e1\u30a4\u30c9\u30b8\u30e5\u30a8\u30ea\u30fc<\/title>\n    <link rel=\"preconnect\" href=\"https:\/\/fonts.googleapis.com\">\n    <link rel=\"preconnect\" href=\"https:\/\/fonts.gstatic.com\" crossorigin>\n    <link href=\"https:\/\/fonts.googleapis.com\/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&#038;family=Montserrat:wght@300;400;500;600&#038;display=swap\" rel=\"stylesheet\">\n    <style>\n        :root {\n            --primary-tiffany: #0abab5;\n            --dark-tiffany: #008b8b;\n            --light-tiffany: #81d8d0;\n            --deep-navy: #1a1a2e;\n            --soft-cream: #f0f8f8;\n            --pearl-white: #FEFEFE;\n            --charcoal: #2d2d2d;\n            --accent-silver: #c0c0c0;\n            --light-gray: #e8e8e8;\n        }\n\n        * {\n            margin: 0;\n            padding: 0;\n            box-sizing: border-box;\n        }\n\n        body {\n            font-family: 'Montserrat', sans-serif;\n            color: var(--charcoal);\n            background-color: var(--pearl-white);\n            overflow-x: hidden;\n        }\n\n        .serif-font {\n            font-family: 'Cormorant Garamond', serif;\n        }\n\n        \/* Header Navigation *\/\n        header {\n            position: fixed;\n            top: 0;\n            left: 0;\n            right: 0;\n            z-index: 1000;\n            background: rgba(255, 255, 255, 0.98);\n            backdrop-filter: blur(10px);\n            border-bottom: 1px solid rgba(10, 186, 181, 0.1);\n            transition: all 0.4s ease;\n        }\n\n        header.scrolled {\n            background: rgba(255, 255, 255, 0.95);\n            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);\n        }\n\n        .header-content {\n            max-width: 1400px;\n            margin: 0 auto;\n            padding: 1rem 3rem;\n            display: flex;\n            justify-content: space-between;\n            align-items: center;\n        }\n\n        .logo {\n            display: block;\n            transition: opacity 0.3s ease;\n        }\n\n        .logo img {\n            height: 60px;\n            width: auto;\n            display: block;\n        }\n\n        .logo:hover {\n            opacity: 0.8;\n        }\n\n        nav ul {\n            list-style: none;\n            display: flex;\n            gap: 3rem;\n            align-items: center;\n        }\n\n        nav a {\n            text-decoration: none;\n            color: var(--charcoal);\n            font-size: 0.9rem;\n            font-weight: 400;\n            letter-spacing: 0.05em;\n            position: relative;\n            transition: color 0.3s ease;\n        }\n\n        nav a::after {\n            content: '';\n            position: absolute;\n            bottom: -5px;\n            left: 0;\n            width: 0;\n            height: 1px;\n            background: var(--primary-tiffany);\n            transition: width 0.3s ease;\n        }\n\n        nav a:hover {\n            color: var(--primary-tiffany);\n        }\n\n        nav a:hover::after {\n            width: 100%;\n        }\n\n        nav a.cta-button {\n            background: var(--primary-tiffany);\n            color: white !important;\n            padding: 0.75rem 2rem;\n            border-radius: 2px;\n        }\n\n        nav a.cta-button:hover {\n            background: var(--dark-tiffany);\n            transform: translateY(-2px);\n            box-shadow: 0 6px 20px rgba(10, 186, 181, 0.3);\n        }\n\n        nav a.cta-button::after {\n            display: none;\n        }\n\n        \/* \u30cf\u30f3\u30d0\u30fc\u30ac\u30fc\u30e1\u30cb\u30e5\u30fc *\/\n        .hamburger {\n            display: none;\n            flex-direction: column;\n            cursor: pointer;\n            padding: 0.5rem;\n            z-index: 1001;\n        }\n\n        .hamburger span {\n            width: 25px;\n            height: 3px;\n            background-color: var(--charcoal);\n            margin: 3px 0;\n            transition: 0.3s;\n        }\n\n        .hamburger.active span:nth-child(1) {\n            transform: rotate(-45deg) translate(-5px, 6px);\n        }\n\n        .hamburger.active span:nth-child(2) {\n            opacity: 0;\n        }\n\n        .hamburger.active span:nth-child(3) {\n            transform: rotate(45deg) translate(-5px, -6px);\n        }\n\n        \/* Hero Section *\/\n        .hero {\n            height: 100vh;\n            display: flex;\n            align-items: center;\n            justify-content: center;\n            position: relative;\n            background: linear-gradient(135deg, var(--soft-cream) 0%, var(--pearl-white) 100%);\n            overflow: hidden;\n            margin-top: 0;\n        }\n\n        .hero::before {\n            content: '';\n            position: absolute;\n            top: -50%;\n            right: -10%;\n            width: 80%;\n            height: 150%;\n            background: radial-gradient(circle, rgba(10, 186, 181, 0.08) 0%, transparent 70%);\n            animation: float 20s ease-in-out infinite;\n        }\n\n        @keyframes float {\n            0%, 100% { transform: translate(0, 0) rotate(0deg); }\n            33% { transform: translate(30px, -30px) rotate(5deg); }\n            66% { transform: translate(-20px, 20px) rotate(-5deg); }\n        }\n\n        .hero-content {\n            text-align: center;\n            z-index: 1;\n            animation: fadeInUp 1.2s ease;\n        }\n\n        @keyframes fadeInUp {\n            from {\n                opacity: 0;\n                transform: translateY(40px);\n            }\n            to {\n                opacity: 1;\n                transform: translateY(0);\n            }\n        }\n\n        .hero-subtitle {\n            font-size: 0.95rem;\n            letter-spacing: 0.3em;\n            color: var(--primary-tiffany);\n            font-weight: 500;\n            margin-bottom: 1.5rem;\n            opacity: 0;\n            animation: fadeIn 1s ease 0.3s forwards;\n        }\n\n        @keyframes fadeIn {\n            to { opacity: 1; }\n        }\n\n        .hero-title {\n            font-family: 'Cormorant Garamond', serif;\n            font-size: 5rem;\n            font-weight: 300;\n            line-height: 1.2;\n            color: var(--deep-navy);\n            margin-bottom: 1rem;\n            opacity: 0;\n            animation: fadeIn 1s ease 0.6s forwards;\n        }\n\n        .hero-title strong {\n            font-weight: 600;\n            display: block;\n            margin-top: 0.5rem;\n        }\n\n        .hero-description {\n            font-size: 1.1rem;\n            color: var(--charcoal);\n            margin-bottom: 3rem;\n            letter-spacing: 0.05em;\n            opacity: 0;\n            animation: fadeIn 1s ease 0.9s forwards;\n        }\n\n        .hero-cta {\n            opacity: 0;\n            animation: fadeIn 1s ease 1.2s forwards;\n        }\n\n        .cta-button {\n            background: var(--primary-tiffany);\n            color: white;\n            padding: 0.75rem 2rem;\n            border-radius: 2px;\n            text-decoration: none;\n            font-size: 0.9rem;\n            font-weight: 500;\n            letter-spacing: 0.05em;\n            transition: all 0.3s ease;\n            border: 1px solid var(--primary-tiffany);\n            display: inline-block;\n        }\n\n        .cta-button:hover {\n            background: var(--dark-tiffany);\n            border-color: var(--dark-tiffany);\n            transform: translateY(-2px);\n            box-shadow: 0 6px 20px rgba(10, 186, 181, 0.3);\n        }\n\n        \/* About Section *\/\n        .about-section {\n            padding: 8rem 3rem;\n            max-width: 1400px;\n            margin: 0 auto;\n            display: grid;\n            grid-template-columns: 1fr 1fr;\n            gap: 6rem;\n            align-items: center;\n        }\n\n        .about-image {\n            position: relative;\n            overflow: hidden;\n            border-radius: 2px;\n        }\n\n        .about-image img {\n            width: 100%;\n            height: 600px;\n            object-fit: cover;\n            transition: transform 0.6s ease;\n        }\n\n        .about-image:hover img {\n            transform: scale(1.05);\n        }\n\n        .about-content h3 {\n            font-size: 0.9rem;\n            letter-spacing: 0.2em;\n            color: var(--primary-tiffany);\n            margin-bottom: 1rem;\n            font-weight: 500;\n        }\n\n        .about-content h2 {\n            font-family: 'Cormorant Garamond', serif;\n            font-size: 3.5rem;\n            font-weight: 400;\n            color: var(--deep-navy);\n            margin-bottom: 2rem;\n            line-height: 1.2;\n        }\n\n        .about-content p {\n            font-size: 1rem;\n            line-height: 1.8;\n            color: var(--charcoal);\n            margin-bottom: 1.5rem;\n            opacity: 0.9;\n        }\n\n        \/* Features Section *\/\n        .features-section {\n            background: var(--soft-cream);\n            padding: 6rem 3rem;\n        }\n\n        .features-grid {\n            max-width: 1400px;\n            margin: 0 auto;\n            display: grid;\n            grid-template-columns: repeat(4, 1fr);\n            gap: 3rem;\n        }\n\n        .feature-card {\n            text-align: center;\n            padding: 2rem;\n            transition: transform 0.3s ease;\n        }\n\n        .feature-card:hover {\n            transform: translateY(-10px);\n        }\n\n        .feature-icon {\n            width: 60px;\n            height: 60px;\n            margin: 0 auto 1.5rem;\n            background: var(--primary-tiffany);\n            border-radius: 50%;\n            display: flex;\n            align-items: center;\n            justify-content: center;\n            color: white;\n            font-size: 1.5rem;\n        }\n\n        .feature-card h3 {\n            font-family: 'Cormorant Garamond', serif;\n            font-size: 1.5rem;\n            color: var(--deep-navy);\n            margin-bottom: 1rem;\n            font-weight: 500;\n        }\n\n        .feature-card p {\n            font-size: 0.9rem;\n            color: var(--charcoal);\n            line-height: 1.6;\n            opacity: 0.85;\n        }\n\n        \/* Products Section *\/\n        .products-section {\n            padding: 8rem 3rem;\n            max-width: 1400px;\n            margin: 0 auto;\n        }\n\n        .section-header {\n            text-align: center;\n            margin-bottom: 4rem;\n        }\n\n        .section-header h3 {\n            font-size: 0.9rem;\n            letter-spacing: 0.2em;\n            color: var(--primary-tiffany);\n            margin-bottom: 1rem;\n            font-weight: 500;\n        }\n\n        .section-header h2 {\n            font-family: 'Cormorant Garamond', serif;\n            font-size: 3.5rem;\n            font-weight: 400;\n            color: var(--deep-navy);\n        }\n\n        .products-grid {\n            display: grid;\n            grid-template-columns: repeat(4, 1fr);\n            gap: 2rem;\n        }\n\n        .product-card {\n            position: relative;\n            overflow: hidden;\n            border-radius: 2px;\n            background: white;\n            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);\n            transition: all 0.4s ease;\n        }\n\n        .product-card:hover {\n            transform: translateY(-10px);\n            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);\n        }\n\n        .product-image {\n            position: relative;\n            overflow: hidden;\n            padding-top: 100%;\n            background: var(--soft-cream);\n        }\n\n        .product-image img {\n            position: absolute;\n            top: 0;\n            left: 0;\n            width: 100%;\n            height: 100%;\n            object-fit: cover;\n            transition: transform 0.6s ease;\n        }\n\n        .product-card:hover .product-image img {\n            transform: scale(1.1);\n        }\n\n        .product-info {\n            padding: 1.5rem;\n            text-align: center;\n        }\n\n        .product-info h3 {\n            font-family: 'Cormorant Garamond', serif;\n            font-size: 1.3rem;\n            color: var(--deep-navy);\n            margin-bottom: 0.5rem;\n            font-weight: 500;\n        }\n\n        .product-price {\n            color: var(--primary-tiffany);\n            font-size: 1.1rem;\n            font-weight: 500;\n        }\n\n        \/* Premium Section *\/\n        .premium-section {\n            background: var(--deep-navy);\n            color: white;\n            padding: 8rem 3rem;\n            position: relative;\n            overflow: hidden;\n        }\n\n        .premium-section::before {\n            content: '';\n            position: absolute;\n            top: 0;\n            left: 0;\n            right: 0;\n            bottom: 0;\n            background: url('data:image\/svg+xml,<svg width=\"100\" height=\"100\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\"><defs><pattern id=\"grid\" width=\"100\" height=\"100\" patternUnits=\"userSpaceOnUse\"><path d=\"M 100 0 L 0 0 0 100\" fill=\"none\" stroke=\"rgba(212,175,55,0.05)\" stroke-width=\"1\"\/><\/pattern><\/defs><rect width=\"100%\" height=\"100%\" fill=\"url(%23grid)\"\/><\/svg>');\n            opacity: 0.3;\n        }\n\n        .premium-content {\n            max-width: 1400px;\n            margin: 0 auto;\n            display: grid;\n            grid-template-columns: 1fr 1fr;\n            gap: 6rem;\n            align-items: center;\n            position: relative;\n            z-index: 1;\n        }\n\n        .premium-text h3 {\n            font-size: 0.9rem;\n            letter-spacing: 0.2em;\n            color: var(--primary-tiffany);\n            margin-bottom: 1rem;\n            font-weight: 500;\n        }\n\n        .premium-text h2 {\n            font-family: 'Cormorant Garamond', serif;\n            font-size: 3rem;\n            font-weight: 400;\n            margin-bottom: 2rem;\n            line-height: 1.2;\n        }\n\n        .premium-text p {\n            font-size: 1rem;\n            line-height: 1.8;\n            opacity: 0.9;\n            margin-bottom: 1rem;\n        }\n\n        .premium-price {\n            font-size: 2rem;\n            color: var(--primary-tiffany);\n            font-weight: 500;\n            margin: 2rem 0;\n        }\n\n        .premium-image {\n            position: relative;\n        }\n\n        .premium-image img {\n            width: 100%;\n            height: 500px;\n            object-fit: cover;\n            border-radius: 2px;\n            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);\n        }\n\n        \/* Process Section *\/\n        .process-section {\n            padding: 8rem 3rem;\n            max-width: 1400px;\n            margin: 0 auto;\n        }\n\n        .process-grid {\n            display: grid;\n            grid-template-columns: repeat(4, 1fr);\n            gap: 3rem;\n            margin-top: 4rem;\n        }\n\n        .process-step {\n            text-align: center;\n            position: relative;\n        }\n\n        .process-number {\n            width: 80px;\n            height: 80px;\n            margin: 0 auto 2rem;\n            background: linear-gradient(135deg, var(--primary-tiffany), var(--dark-tiffany));\n            border-radius: 50%;\n            display: flex;\n            align-items: center;\n            justify-content: center;\n            font-family: 'Cormorant Garamond', serif;\n            font-size: 2rem;\n            color: white;\n            font-weight: 600;\n            box-shadow: 0 8px 25px rgba(10, 186, 181, 0.3);\n        }\n\n        .process-step h3 {\n            font-family: 'Cormorant Garamond', serif;\n            font-size: 1.5rem;\n            color: var(--deep-navy);\n            margin-bottom: 1rem;\n            font-weight: 500;\n        }\n\n        .process-step p {\n            font-size: 0.95rem;\n            color: var(--charcoal);\n            line-height: 1.6;\n            opacity: 0.85;\n        }\n\n        \/* Access Section *\/\n        .access-section {\n            background: var(--soft-cream);\n            padding: 6rem 3rem;\n        }\n\n        .access-container {\n            max-width: 1200px;\n            margin: 0 auto;\n        }\n\n        .access-container > h2 {\n            font-family: 'Cormorant Garamond', serif;\n            font-size: 3rem;\n            color: var(--deep-navy);\n            text-align: center;\n            margin-bottom: 3rem;\n        }\n\n        .access-info-block {\n            background: white;\n            padding: 2.5rem;\n            border-radius: 8px;\n            text-align: center;\n            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);\n            margin-bottom: 3rem;\n        }\n\n        .access-info-block h3 {\n            font-family: 'Cormorant Garamond', serif;\n            font-size: 2rem;\n            color: var(--primary-tiffany);\n            margin-bottom: 1.5rem;\n        }\n\n        .access-info-block p {\n            font-size: 1.1rem;\n            line-height: 2;\n            color: var(--charcoal);\n            margin: 0.5rem 0;\n        }\n\n        \/* \u5e97\u8217\u753b\u50cf *\/\n        .store-photos {\n            display: flex;\n            flex-direction: column;\n            gap: 1.5rem;\n        }\n\n        .photos-row-2 {\n            display: grid;\n            grid-template-columns: 1fr 1fr;\n            gap: 1.5rem;\n        }\n\n        .photos-row-3 {\n            display: grid;\n            grid-template-columns: repeat(3, 1fr);\n            gap: 1.5rem;\n        }\n\n        .store-photos img {\n            width: 100%;\n            height: 280px;\n            object-fit: cover;\n            border-radius: 8px;\n            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);\n            transition: transform 0.3s ease, box-shadow 0.3s ease;\n        }\n\n        .store-photos img:hover {\n            transform: translateY(-5px);\n            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);\n        }\n\n        \/* Footer *\/\n        footer {\n            background: #708090;\n            color: white;\n            padding: 4rem 3rem 2rem;\n        }\n\n        .footer-content {\n            max-width: 1400px;\n            margin: 0 auto;\n            display: grid;\n            grid-template-columns: 2fr 1fr 1fr 1fr;\n            gap: 4rem;\n            margin-bottom: 3rem;\n        }\n\n        .footer-brand {\n            display: flex;\n            align-items: center;\n            justify-content: center;\n        }\n\n        .footer-brand h2 {\n            font-family: 'Cormorant Garamond', serif;\n            font-size: 2rem;\n            margin-bottom: 0;\n            letter-spacing: 0.1em;\n        }\n\n        .footer-links h3 {\n            font-size: 1rem;\n            margin-bottom: 1.5rem;\n            color: var(--primary-tiffany);\n            letter-spacing: 0.05em;\n        }\n\n        .footer-links ul {\n            list-style: none;\n        }\n\n        .footer-links li {\n            margin-bottom: 0.8rem;\n        }\n\n        .footer-links a {\n            color: rgba(255, 255, 255, 0.8);\n            text-decoration: none;\n            font-size: 0.9rem;\n            transition: color 0.3s ease;\n        }\n\n        .footer-links a:hover {\n            color: var(--primary-tiffany);\n        }\n\n        .footer-bottom {\n            max-width: 1400px;\n            margin: 0 auto;\n            padding-top: 2rem;\n            border-top: 1px solid rgba(255, 255, 255, 0.1);\n            text-align: center;\n            opacity: 0.7;\n            font-size: 0.85rem;\n        }\n\n        .social-icons {\n            display: flex;\n            gap: 1rem;\n            margin-top: 1rem;\n        }\n\n        .social-icons a {\n            width: 40px;\n            height: 40px;\n            display: flex;\n            align-items: center;\n            justify-content: center;\n            background: rgba(255, 255, 255, 0.1);\n            border-radius: 50%;\n            color: rgba(255, 255, 255, 0.8);\n            transition: all 0.3s ease;\n        }\n\n        .social-icons a:hover {\n            background: var(--primary-tiffany);\n            color: white;\n            transform: translateY(-3px);\n        }\n\n        .payment-icons {\n            display: flex;\n            gap: 0.75rem;\n            margin-top: 1rem;\n            flex-wrap: nowrap;\n            overflow-x: auto;\n        }\n\n        .payment-icons img {\n            border-radius: 4px;\n            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);\n            transition: transform 0.3s ease;\n            flex-shrink: 0;\n        }\n\n        .payment-icons img:hover {\n            transform: translateY(-2px);\n        }\n\n        \/* Responsive *\/\n        @media (max-width: 1024px) {\n            .hero-title {\n                font-size: 3.5rem;\n            }\n\n            .about-section,\n            .premium-content {\n                grid-template-columns: 1fr;\n                gap: 3rem;\n            }\n\n            .products-grid {\n                grid-template-columns: repeat(2, 1fr);\n            }\n\n            .features-grid,\n            .process-grid {\n                grid-template-columns: repeat(2, 1fr);\n            }\n\n            .footer-content {\n                grid-template-columns: 1fr 1fr;\n                gap: 2rem;\n            }\n        }\n\n        @media (max-width: 768px) {\n            .hamburger {\n                display: flex;\n            }\n\n            nav {\n                position: fixed;\n                top: 80px;\n                left: -100%;\n                width: 100%;\n                height: calc(100vh - 80px);\n                background: white;\n                transition: left 0.3s ease;\n                z-index: 999;\n                overflow-y: auto;\n            }\n\n            nav.active {\n                left: 0;\n            }\n\n            nav ul {\n                flex-direction: column;\n                padding: 2rem;\n                gap: 0;\n            }\n\n            nav li {\n                width: 100%;\n                border-bottom: 1px solid var(--light-gray);\n            }\n\n            nav a {\n                display: block;\n                padding: 1.5rem 0;\n                text-align: center;\n                font-size: 1rem;\n            }\n\n            nav a.cta-button {\n                margin: 1rem auto;\n                padding: 1rem 2rem;\n                width: auto;\n                display: block;\n                text-align: center;\n            }\n\n            nav a::after {\n                display: none;\n            }\n\n            .header-content {\n                padding: 1rem 1.5rem;\n                flex-direction: row;\n                justify-content: space-between;\n            }\n\n            .logo img {\n                height: 50px;\n            }\n\n            .hero {\n                padding: 2rem 1.5rem;\n                height: auto;\n                min-height: 80vh;\n            }\n\n            .hero-title {\n                font-size: 2.5rem;\n            }\n\n            .hero-subtitle {\n                font-size: 0.85rem;\n            }\n\n            .hero-description {\n                font-size: 1rem;\n            }\n\n            .about-section {\n                padding: 4rem 1.5rem;\n                gap: 2rem;\n            }\n\n            .about-content h2 {\n                font-size: 2.5rem;\n            }\n\n            .features-section {\n                padding: 4rem 1.5rem;\n            }\n\n            .products-section {\n                padding: 4rem 1.5rem;\n            }\n\n            .products-grid,\n            .features-grid,\n            .process-grid {\n                grid-template-columns: 1fr;\n                gap: 1.5rem;\n            }\n\n            .section-header h2 {\n                font-size: 2.5rem;\n            }\n\n            .premium-section {\n                padding: 4rem 1.5rem;\n            }\n\n            .premium-content {\n                gap: 2rem;\n            }\n\n            .premium-text h2 {\n                font-size: 2rem;\n            }\n\n            .premium-price {\n                font-size: 1.5rem;\n            }\n\n            .process-section {\n                padding: 4rem 1.5rem;\n            }\n\n            .access-section {\n                padding: 4rem 1.5rem;\n            }\n\n            .access-container > h2 {\n                font-size: 2.5rem;\n            }\n\n            .access-info-block {\n                padding: 2rem;\n            }\n\n            .access-info-block h3 {\n                font-size: 1.5rem;\n            }\n\n            .access-info-block p {\n                font-size: 1rem;\n            }\n\n            .photos-row-2,\n            .photos-row-3 {\n                grid-template-columns: 1fr;\n            }\n\n            .store-photos img {\n                height: 220px;\n            }\n\n            .footer-content {\n                grid-template-columns: 1fr;\n                gap: 2rem;\n                padding: 0 1.5rem;\n            }\n\n            .social-icons {\n                justify-content: center;\n            }\n\n            .payment-icons {\n                justify-content: center;\n            }\n        }\n\n        @media (max-width: 480px) {\n            .logo img {\n                height: 40px;\n            }\n\n            .hero-title {\n                font-size: 2rem;\n            }\n\n            .hero-subtitle {\n                font-size: 0.75rem;\n                letter-spacing: 0.2em;\n            }\n\n            .about-content h2,\n            .section-header h2,\n            .premium-text h2 {\n                font-size: 2rem;\n            }\n\n            .product-info h3 {\n                font-size: 1.1rem;\n            }\n\n            .feature-card h3,\n            .process-step h3 {\n                font-size: 1.2rem;\n            }\n\n            .access-container > h2 {\n                font-size: 2rem;\n            }\n\n            .access-info-block h3 {\n                font-size: 1.3rem;\n            }\n\n            .access-info-block p {\n                font-size: 0.9rem;\n            }\n\n            .store-photos img {\n                height: 200px;\n            }\n        }\n\n        \/* Scroll animations *\/\n        .fade-in {\n            opacity: 0;\n            transform: translateY(30px);\n            transition: opacity 0.8s ease, transform 0.8s ease;\n        }\n\n        .fade-in.visible {\n            opacity: 1;\n            transform: translateY(0);\n        }\n    <\/style>\n<\/head>\n<body>\n    <header id=\"header\">\n        <div class=\"header-content\">\n            <a href=\"https:\/\/www.ace-jewelry.net\/\" class=\"logo\">\n                <img decoding=\"async\" src=\"https:\/\/www.ace-jewelry.net\/wp-content\/uploads\/2025\/12\/logo.jpg\" alt=\"ACE Jewelry\">\n            <\/a>\n            \n            <!-- \u30cf\u30f3\u30d0\u30fc\u30ac\u30fc\u30e1\u30cb\u30e5\u30fc\u30dc\u30bf\u30f3 -->\n            <div class=\"hamburger\" id=\"hamburger\">\n                <span><\/span>\n                <span><\/span>\n                <span><\/span>\n            <\/div>\n            \n            <nav id=\"nav\">\n                <ul>\n                    <li><a href=\"https:\/\/www.ace-jewelry.net\/\">\u30db\u30fc\u30e0<\/a><\/li>\n                    <li><a href=\"https:\/\/www.ace-jewelry.net\/?page_id=22\">\u5546\u54c1\u4e00\u89a7<\/a><\/li>\n                    <li><a href=\"https:\/\/www.ace-jewelry.net\/?page_id=25\">\u30ab\u30c6\u30b4\u30ea\u30fc<\/a><\/li>\n                    <li><a href=\"https:\/\/www.ace-jewelry.net\/?page_id=16\" class=\"cta-button\">\u6765\u5e97\u4e88\u7d04<\/a><\/li>\n                    <li><a href=\"https:\/\/www.ace-jewelry.net\/?page_id=19\">\u304a\u554f\u3044\u5408\u308f\u305b<\/a><\/li>\n                <\/ul>\n            <\/nav>\n        <\/div>\n    <\/header>\n\n    <section class=\"hero\">\n        <div class=\"hero-content\">\n            <div class=\"hero-subtitle\">ACE Jewelry\u3078\u3088\u3046\u3053\u305d<\/div>\n            <h1 class=\"hero-title serif-font\">\n                \u6c38\u9060\u3092\u7e8f\u3046\u3001\n                <strong>\u552f\u4e00\u7121\u4e8c\u306e\u8f1d\u304d<\/strong>\n            <\/h1>\n            <p class=\"hero-description\">\u6642\u3092\u7d21\u3050\u3001\u81f3\u9ad8\u306e\u5b9d\u98fe<\/p>\n            <div class=\"hero-cta\">\n                <a href=\"https:\/\/www.ace-jewelry.net\/?page_id=16\" class=\"cta-button\">\u6765\u5e97\u4e88\u7d04\u3059\u308b \u25b6<\/a>\n            <\/div>\n        <\/div>\n    <\/section>\n\n    <section class=\"about-section fade-in\">\n        <div class=\"about-image\">\n            <img decoding=\"async\" src=\"data:image\/svg+xml,%3Csvg width='600' height='600' xmlns='http:\/\/www.w3.org\/2000\/svg'%3E%3Cdefs%3E%3ClinearGradient id='grad' x1='0%25' y1='0%25' x2='100%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:%23FAF7F2;stop-opacity:1' \/%3E%3Cstop offset='100%25' style='stop-color:%23E8DCC8;stop-opacity:1' \/%3E%3C\/linearGradient%3E%3C\/defs%3E%3Crect width='600' height='600' fill='url(%23grad)'\/%3E%3Ccircle cx='300' cy='250' r='120' fill='none' stroke='%230abab5' stroke-width='2' opacity='0.3'\/%3E%3Ccircle cx='300' cy='250' r='90' fill='none' stroke='%230abab5' stroke-width='2' opacity='0.5'\/%3E%3Ccircle cx='300' cy='250' r='60' fill='%230abab5' opacity='0.2'\/%3E%3Ctext x='300' y='400' font-family='serif' font-size='24' fill='%231a1a2e' text-anchor='middle' opacity='0.6'%3Eace-jewelry%3C\/text%3E%3C\/svg%3E\" alt=\"\u30b8\u30e5\u30a8\u30ea\u30fc\u5236\u4f5c\u306e\u69d8\u5b50\">\n        <\/div>\n        <div class=\"about-content\">\n            <h3>ACE Jewelry\u3068\u306f<\/h3>\n            <h2 class=\"serif-font\">\u6642\u3092\u7d21\u3050\u3001\u81f3\u9ad8\u306e\u5b9d\u98fe<\/h2>\n            <p>ACE Jewelry\u306f\u3001\u304a\u5ba2\u3055\u307e\u4e00\u4eba\u3072\u3068\u308a\u306e\u4eba\u751f\u306b\u5bc4\u308a\u6dfb\u3046\u3001\u5b8c\u5168\u30aa\u30fc\u30c0\u30fc\u30e1\u30a4\u30c9\u306e\u30b8\u30e5\u30a8\u30ea\u30fc\u30a2\u30c8\u30ea\u30a8\u3067\u3059\u3002<\/p>\n            <p>\u30c7\u30b6\u30a4\u30f3\u306e\u7f8e\u3057\u3055\u3060\u3051\u3067\u306a\u304f\u3001\u304a\u5ba2\u3055\u307e\u306e\u60f3\u3044\u3001\u5927\u5207\u306a\u8a18\u5ff5\u65e5\u3001\u305d\u3057\u3066\u672a\u6765\u3078\u306e\u9858\u3044\u307e\u3067\u3002\u3059\u3079\u3066\u3092\u8077\u4eba\u306e\u624b\u3067\u4e00\u3064\u3072\u3068\u3064\u4e01\u5be7\u306b\u5f62\u306b\u3057\u3066\u3044\u304d\u307e\u3059\u3002<\/p>\n            <p>\u53d7\u3051\u7d99\u304c\u308c\u305f\u30b8\u30e5\u30a8\u30ea\u30fc\u306e\u30ea\u30e1\u30a4\u30af\u3001\u4eba\u751f\u306e\u7bc0\u76ee\u3092\u5f69\u308b\u7279\u5225\u306a\u4e00\u54c1\u3001\u65e5\u5e38\u306b\u5bc4\u308a\u6dfb\u3046\u4e0a\u8cea\u306a\u30a2\u30af\u30bb\u30b5\u30ea\u30fc\u3002\u3042\u306a\u305f\u306e\u300c\u3053\u3046\u3042\u308a\u305f\u3044\u300d\u3092\u3001\u719f\u7df4\u306e\u8077\u4eba\u6280\u8853\u3067\u73fe\u5b9f\u3078\u3068\u6607\u83ef\u3055\u305b\u307e\u3059\u3002<\/p>\n            <p>\u8eab\u306b\u3064\u3051\u308b\u305f\u3073\u306b\u7269\u8a9e\u304c\u6df1\u307e\u308a\u3001\u5e74\u6708\u3068\u3068\u3082\u306b\u3042\u306a\u305f\u81ea\u8eab\u306e\u4e00\u90e8\u3068\u306a\u3063\u3066\u3044\u304f\u3002ACE Jewelry\u306e\u30b8\u30e5\u30a8\u30ea\u30fc\u304c\u3001\u305d\u3093\u306a\u300c\u6c38\u9060\u306e\u8f1d\u304d\u300d\u3068\u3057\u3066\u3042\u306a\u305f\u306e\u4eba\u751f\u306b\u5bc4\u308a\u6dfb\u3044\u7d9a\u3051\u308b\u3053\u3068\u3092\u9858\u3063\u3066\u304a\u308a\u307e\u3059\u3002<\/p>\n        <\/div>\n    <\/section>\n\n    <section class=\"features-section\">\n        <div class=\"features-grid fade-in\">\n            <div class=\"feature-card\">\n                <div class=\"feature-icon\">\u25c6<\/div>\n                <h3 class=\"serif-font\">\u6700\u9ad8\u54c1\u8cea\u306e\u7d20\u6750<\/h3>\n                <p>\u53b3\u9078\u3055\u308c\u305f\u5929\u7136\u77f3\u306e\u307f\u3092\u4f7f\u7528\u3057\u3001\u8077\u4eba\u306e\u624b\u3067\u4e01\u5be7\u306b\u4ed5\u4e0a\u3052\u3089\u308c\u3066\u3044\u307e\u3059<\/p>\n            <\/div>\n            <div class=\"feature-card\">\n                <div class=\"feature-icon\">\u2713<\/div>\n                <h3 class=\"serif-font\">\u30aa\u30f3\u30e9\u30a4\u30f3\u30b5\u30dd\u30fc\u30c8<\/h3>\n                <p>\u3054\u8cfc\u5165\u524d\u3001\u3054\u8cfc\u5165\u5f8c\u306e\u3054\u76f8\u8ac7\u306b\u5bfe\u5fdc\u3044\u305f\u3057\u307e\u3059<\/p>\n            <\/div>\n            <div class=\"feature-card\">\n                <div class=\"feature-icon\">\u21ba<\/div>\n                <h3 class=\"serif-font\">30\u65e5\u9593\u8fd4\u54c1\u4fdd\u8a3c<\/h3>\n                <p>\u5546\u54c1\u306b\u554f\u984c\u304c\u3042\u308b\u5834\u5408\u5bfe\u5fdc\u3057\u307e\u3059<\/p>\n            <\/div>\n            <div class=\"feature-card\">\n                <div class=\"feature-icon\">\u25c9<\/div>\n                <h3 class=\"serif-font\">\u5b8c\u5168\u4e88\u7d04\u5236<\/h3>\n                <p>\u304a\u5ba2\u69d8\u3060\u3051\u306e\u30d7\u30e9\u30a4\u30d9\u30fc\u30c8\u306a\u6642\u9593\u3067\u3086\u3063\u304f\u308a\u3068\u304a\u9078\u3073\u3044\u305f\u3060\u3051\u307e\u3059<\/p>\n            <\/div>\n        <\/div>\n    <\/section>\n\n    <section class=\"products-section fade-in\">\n        <div class=\"section-header\">\n            <h3>\u65b0\u7740\u5546\u54c1<\/h3>\n            <h2 class=\"serif-font\">\u30aa\u30fc\u30c0\u30fc\u30e1\u30a4\u30c9\u4e00\u4f8b<\/h2>\n        <\/div>\n        <div class=\"products-grid\">\n            <div class=\"product-card\">\n                <div class=\"product-image\">\n                    <img decoding=\"async\" src=\"https:\/\/www.ace-jewelry.net\/wp-content\/uploads\/2025\/12\/1.jpg\" alt=\"\u6642\u3092\u7d21\u3050\u81f3\u9ad8\u306e\">\n                <\/div>\n                <div class=\"product-info\">\n                    <h3 class=\"serif-font\">\u6642\u3092\u7d21\u3050\u81f3\u9ad8\u306e<\/h3>\n                    <div class=\"product-price\">\u00a5475,000<\/div>\n                <\/div>\n            <\/div>\n            <div class=\"product-card\">\n                <div class=\"product-image\">\n                    <img decoding=\"async\" src=\"https:\/\/www.ace-jewelry.net\/wp-content\/uploads\/2025\/12\/2.jpg\" alt=\"\u30a2\u30e1\u30b8\u30b9\u30c8\u3000\u30d5\u30e9\u30ef\u30fc\u30c9\">\n                <\/div>\n                <div class=\"product-info\">\n                    <h3 class=\"serif-font\">\u30a2\u30e1\u30b8\u30b9\u30c8\u3000\u30d5\u30e9\u30ef\u30fc\u30c9<\/h3>\n                    <div class=\"product-price\">\u00a5499,000<\/div>\n                <\/div>\n            <\/div>\n            <div class=\"product-card\">\n                <div class=\"product-image\">\n                    <img decoding=\"async\" src=\"https:\/\/www.ace-jewelry.net\/wp-content\/uploads\/2025\/12\/3.jpg\" alt=\"\u30c0\u30a4\u30a2\u30e2\u30f3\u30c9\u3000\u30d4\u30a2\u30b9\">\n                <\/div>\n                <div class=\"product-info\">\n                    <h3 class=\"serif-font\">\u30c0\u30a4\u30a2\u30e2\u30f3\u30c9\u3000\u30d4\u30a2\u30b9<\/h3>\n                    <div class=\"product-price\">\u00a5365,000<\/div>\n                <\/div>\n            <\/div>\n            <div class=\"product-card\">\n                <div class=\"product-image\">\n                    <img decoding=\"async\" src=\"https:\/\/www.ace-jewelry.net\/wp-content\/uploads\/2025\/12\/4.jpg\" alt=\"\u30a4\u30f3\u30bf\u30fc\u30ed\u30c3\u30ad\u30f3\u30b0\u30cf\u30fc\u30c8\u30d4\u30a2\u30b9\">\n                <\/div>\n                <div class=\"product-info\">\n                    <h3 class=\"serif-font\">\u30a4\u30f3\u30bf\u30fc\u30ed\u30c3\u30ad\u30f3\u30b0\u30cf\u30fc\u30c8\u30d4\u30a2\u30b9<\/h3>\n                    <div class=\"product-price\">\u00a5488,000<\/div>\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/section>\n\n    <section class=\"premium-section fade-in\">\n        <div class=\"premium-content\">\n            <div class=\"premium-text\">\n                <h3>\u30d7\u30ec\u30df\u30a2\u30e0\u30b3\u30ec\u30af\u30b7\u30e7\u30f3<\/h3>\n                <h2 class=\"serif-font\">\u4eba\u751f\u306e\u8f1d\u304d\u3092\u3001\u6c38\u9060\u306b\u523b\u3080<\/h2>\n                <p>\u5bc4\u308a\u6dfb\u3046\u3088\u3046\u306b\u914d\u3055\u308c\u305f2\u7c92\u306e\u30c0\u30a4\u30e4\u30e2\u30f3\u30c9\u3002\u5927\u304d\u3055\u306e\u9055\u3044\u304c\u751f\u3080\u512a\u7f8e\u306a\u30d0\u30e9\u30f3\u30b9\u304c\u3001\u3075\u305f\u308a\u306e\u7d46\u3068\u6c38\u9060\u306e\u8a93\u3044\u3092\u8c61\u5fb4\u3057\u307e\u3059\u3002<\/p>\n                <h3 style=\"margin-top: 2rem;\">PT950\u30c0\u30d6\u30eb\u30c0\u30a4\u30e4\u30e2\u30f3\u30c9\u30ea\u30f3\u30b0 0.5ct&0.2ct<\/h3>\n                <div class=\"premium-price\">\u00a5698,000<\/div>\n            <\/div>\n            <div class=\"premium-image\">\n                <img decoding=\"async\" src=\"data:image\/svg+xml,%3Csvg width='600' height='500' xmlns='http:\/\/www.w3.org\/2000\/svg'%3E%3Cdefs%3E%3CradialGradient id='premium'%3E%3Cstop offset='0%25' style='stop-color:%232d2d2d'\/%3E%3Cstop offset='100%25' style='stop-color:%231a1a2e'\/%3E%3C\/radialGradient%3E%3C\/defs%3E%3Crect width='600' height='500' fill='url(%23premium)'\/%3E%3Cellipse cx='300' cy='250' rx='100' ry='30' fill='none' stroke='%230abab5' stroke-width='4' opacity='0.6'\/%3E%3Ccircle cx='280' cy='250' r='15' fill='%23FEFEFE' opacity='0.9'\/%3E%3Ccircle cx='320' cy='250' r='10' fill='%23FEFEFE' opacity='0.8'\/%3E%3Cpath d='M 270 255 L 330 255' stroke='%230abab5' stroke-width='3'\/%3E%3C\/svg%3E\" alt=\"\u30d7\u30ec\u30df\u30a2\u30e0\u30c0\u30a4\u30e4\u30e2\u30f3\u30c9\u30ea\u30f3\u30b0\">\n            <\/div>\n        <\/div>\n    <\/section>\n\n    <section class=\"process-section fade-in\">\n        <div class=\"section-header\">\n            <h3>\u3054\u6765\u5e97\u306e\u6d41\u308c<\/h3>\n            <h2 class=\"serif-font\">\u521d\u3081\u3066\u306e\u304a\u5ba2\u69d8\u3082\u5b89\u5fc3\u3057\u3066\u3054\u6765\u5e97\u3044\u305f\u3060\u3051\u307e\u3059<\/h2>\n        <\/div>\n        <div class=\"process-grid\">\n            <div class=\"process-step\">\n                <div class=\"process-number serif-font\">01<\/div>\n                <h3 class=\"serif-font\">\u3054\u4e88\u7d04<\/h3>\n                <p>\u30aa\u30f3\u30e9\u30a4\u30f3\u307e\u305f\u306f\u304a\u96fb\u8a71\u3067\u3054\u4e88\u7d04\u304f\u3060\u3055\u3044<\/p>\n            <\/div>\n            <div class=\"process-step\">\n                <div class=\"process-number serif-font\">02<\/div>\n                <h3 class=\"serif-font\">\u3054\u6765\u5e97<\/h3>\n                <p>\u3054\u76f8\u8ac7\u3044\u305f\u3060\u304d\u306a\u304c\u3089\u3001\u5546\u54c1\u9078\u5b9a\u3092\u884c\u3044\u307e\u3059<\/p>\n            <\/div>\n            <div class=\"process-step\">\n                <div class=\"process-number serif-font\">03<\/div>\n                <h3 class=\"serif-font\">\u3054\u8a66\u7740\u30fb\u3054\u76f8\u8ac7<\/h3>\n                <p>\u5c02\u9580\u30b9\u30bf\u30c3\u30d5\u304c\u30b5\u30dd\u30fc\u30c8\u3044\u305f\u3057\u307e\u3059<\/p>\n            <\/div>\n            <div class=\"process-step\">\n                <div class=\"process-number serif-font\">04<\/div>\n                <h3 class=\"serif-font\">\u3054\u8cfc\u5165\u30fb\u30a2\u30d5\u30bf\u30fc\u30b1\u30a2<\/h3>\n                <p>\u6c38\u4e45\u4fdd\u8a3c\u3068\u30e1\u30f3\u30c6\u30ca\u30f3\u30b9\u30b5\u30fc\u30d3\u30b9<\/p>\n            <\/div>\n        <\/div>\n        <div style=\"text-align: center; margin-top: 4rem;\">\n            <a href=\"https:\/\/www.ace-jewelry.net\/?page_id=16\" class=\"cta-button\">\u3054\u6765\u5e97\u4e88\u7d04<\/a>\n        <\/div>\n    <\/section>\n\n    <!-- \u30a2\u30af\u30bb\u30b9\u30bb\u30af\u30b7\u30e7\u30f3 -->\n    <section class=\"access-section\">\n        <div class=\"access-container\">\n            <h2 class=\"serif-font\">\u30a2\u30af\u30bb\u30b9<\/h2>\n            \n            <div class=\"access-info-block\">\n                <h3 class=\"serif-font\">ACE Jewelry<\/h3>\n                <p>\u3012730-0034 \u5e83\u5cf6\u5e02\u4e2d\u533a\u65b0\u5929\u57301-26 \uff15F<\/p>\n                <p>TEL\u3000082-909-2447<\/p>\n                <p>E-mail  info@ace-jewelry.net<\/p>\n                <p>\u55b6\u696d\u6642\u9593 10:00-22:00<\/p>\n            <\/div>\n\n            <!-- \u5e97\u8217\u753b\u50cf\u30ae\u30e3\u30e9\u30ea\u30fc -->\n            <div class=\"store-photos\">\n                <!-- \u4e0a\u6bb5\uff1a2\u679a -->\n                <div class=\"photos-row-2\">\n                    <img decoding=\"async\" src=\"https:\/\/www.ace-jewelry.net\/wp-content\/uploads\/2026\/01\/ph1.jpg\" alt=\"ACE Jewelry \u5e97\u8217\u770b\u677f\">\n                    <img decoding=\"async\" src=\"https:\/\/www.ace-jewelry.net\/wp-content\/uploads\/2026\/01\/ph2.jpg\" alt=\"ACE Jewelry \u5e97\u5185\">\n                <\/div>\n                \n                <!-- \u4e0b\u6bb5\uff1a3\u679a -->\n                <div class=\"photos-row-3\">\n                    <img decoding=\"async\" src=\"https:\/\/www.ace-jewelry.net\/wp-content\/uploads\/2026\/01\/ph3.jpg\" alt=\"ACE Jewelry \u5e97\u51852\">\n                    <img decoding=\"async\" src=\"https:\/\/www.ace-jewelry.net\/wp-content\/uploads\/2026\/01\/ph4.jpg\" alt=\"ACE Jewelry \u30b8\u30e5\u30a8\u30ea\u30fc\u5c55\u793a\">\n                    <img decoding=\"async\" src=\"https:\/\/www.ace-jewelry.net\/wp-content\/uploads\/2026\/01\/ph5.jpg\" alt=\"ACE Jewelry \u5916\u89b3\">\n                <\/div>\n            <\/div>\n        <\/div>\n    <\/section>\n\n    <footer>\n        <div class=\"footer-content\">\n            <div class=\"footer-brand\">\n                <h2 class=\"serif-font\">ACE Jewelry<\/h2>\n            <\/div>\n            <div class=\"footer-links\">\n                <h3>\u30ab\u30c6\u30b4\u30ea\u30fc<\/h3>\n                <ul>\n                    <li><a href=\"https:\/\/www.ace-jewelry.net\/?page_id=25\">\u30ea\u30f3\u30b0<\/a><\/li>\n                    <li><a href=\"https:\/\/www.ace-jewelry.net\/?page_id=25\">\u30d4\u30a2\u30b9<\/a><\/li>\n                    <li><a href=\"https:\/\/www.ace-jewelry.net\/?page_id=25\">\u30cd\u30c3\u30af\u30ec\u30b9<\/a><\/li>\n                    <li><a href=\"https:\/\/www.ace-jewelry.net\/?page_id=25\">\u30d6\u30ec\u30b9\u30ec\u30c3\u30c8<\/a><\/li>\n                <\/ul>\n            <\/div>\n            <div class=\"footer-links\">\n                <h3>\u30a4\u30f3\u30d5\u30a9\u30e1\u30fc\u30b7\u30e7\u30f3<\/h3>\n                <ul>\n                    <li><a href=\"https:\/\/www.ace-jewelry.net\/?page_id=16\">\u6765\u5e97\u4e88\u7d04<\/a><\/li>\n                    <li><a href=\"https:\/\/www.ace-jewelry.net\/?page_id=19\">\u304a\u554f\u3044\u5408\u308f\u305b<\/a><\/li>\n                <\/ul>\n            <\/div>\n            <div class=\"footer-links\">\n                <h3>Connect with us<\/h3>\n                <div class=\"social-icons\">\n                    <a href=\"#\" aria-label=\"Facebook\">\n                        <svg width=\"32\" height=\"32\" viewBox=\"0 0 24 24\" fill=\"currentColor\">\n                            <path d=\"M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z\"\/>\n                        <\/svg>\n                    <\/a>\n                    <a href=\"#\" aria-label=\"Instagram\">\n                        <svg width=\"32\" height=\"32\" viewBox=\"0 0 24 24\" fill=\"currentColor\">\n                            <path d=\"M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z\"\/>\n                        <\/svg>\n                    <\/a>\n                    <a href=\"#\" aria-label=\"X (Twitter)\">\n                        <svg width=\"32\" height=\"32\" viewBox=\"0 0 24 24\" fill=\"currentColor\">\n                            <path d=\"M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z\"\/>\n                        <\/svg>\n                    <\/a>\n                <\/div>\n                <h3 style=\"margin-top: 2rem;\">Secure payment<\/h3>\n                <div class=\"payment-icons\">\n                    <img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.ace-jewelry.net\/wp-content\/uploads\/2025\/12\/image.gif\" alt=\"American Express\" width=\"50\" height=\"32\">\n                    <img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.ace-jewelry.net\/wp-content\/uploads\/2025\/12\/image-1.gif\" alt=\"JCB\" width=\"50\" height=\"32\">\n                    <img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.ace-jewelry.net\/wp-content\/uploads\/2025\/12\/image-2.gif\" alt=\"Mastercard\" width=\"50\" height=\"32\">\n                    <img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.ace-jewelry.net\/wp-content\/uploads\/2025\/12\/image-3.gif\" alt=\"Diners Club\" width=\"50\" height=\"32\">\n                    <img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/www.ace-jewelry.net\/wp-content\/uploads\/2025\/12\/image-4.gif\" alt=\"VISA\" width=\"50\" height=\"32\">\n                <\/div>\n            <\/div>\n        <\/div>\n        <div class=\"footer-bottom\">\n            <p>\u00a9 2025 ACE Jewelry. All Rights Reserved.<\/p>\n        <\/div>\n    <\/footer>\n\n    <script>\n        \/\/ \u30cf\u30f3\u30d0\u30fc\u30ac\u30fc\u30e1\u30cb\u30e5\u30fc\u306e\u52d5\u4f5c\n        const hamburger = document.getElementById('hamburger');\n        const nav = document.getElementById('nav');\n\n        hamburger.addEventListener('click', () => {\n            hamburger.classList.toggle('active');\n            nav.classList.toggle('active');\n        });\n\n        \/\/ \u30e1\u30cb\u30e5\u30fc\u9805\u76ee\u3092\u30af\u30ea\u30c3\u30af\u3057\u305f\u3089\u30e1\u30cb\u30e5\u30fc\u3092\u9589\u3058\u308b\n        const navLinks = document.querySelectorAll('nav a');\n        navLinks.forEach(link => {\n            link.addEventListener('click', () => {\n                hamburger.classList.remove('active');\n                nav.classList.remove('active');\n            });\n        });\n\n        \/\/ Scroll effects\n        window.addEventListener('scroll', () => {\n            const header = document.getElementById('header');\n            if (window.scrollY > 50) {\n                header.classList.add('scrolled');\n            } else {\n                header.classList.remove('scrolled');\n            }\n\n            \/\/ Fade in animations\n            const fadeElements = document.querySelectorAll('.fade-in');\n            fadeElements.forEach(element => {\n                const elementTop = element.getBoundingClientRect().top;\n                const windowHeight = window.innerHeight;\n                if (elementTop < windowHeight * 0.85) {\n                    element.classList.add('visible');\n                }\n            });\n        });\n    <\/script>\n<\/body>\n<\/html>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>ACE Jewelry &#8211; \u30aa\u30fc\u30c0\u30fc\u30e1\u30a4\u30c9\u30b8\u30e5\u30a8\u30ea\u30fc \u30db\u30fc\u30e0 \u5546\u54c1\u4e00\u89a7 \u30ab\u30c6\u30b4\u30ea\u30fc \u6765\u5e97\u4e88\u7d04 \u304a\u554f\u3044\u5408\u308f\u305b ACE Jewelry\u3078\u3088\u3046\u3053\u305d \u6c38\u9060\u3092\u7e8f\u3046\u3001 \u552f\u4e00\u7121\u4e8c\u306e\u8f1d\u304d \u6642\u3092\u7d21\u3050\u3001\u81f3\u9ad8\u306e\u5b9d\u98fe \u6765\u5e97\u4e88\u7d04\u3059\u308b \u25b6 ACE  [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"footnotes":"","wp-seo-meta-description":"","wp-seo-meta-robots":[]},"class_list":{"0":"post-2","1":"page","2":"type-page","3":"status-publish","5":"c-entry"},"_links":{"self":[{"href":"https:\/\/www.ace-jewelry.net\/index.php?rest_route=\/wp\/v2\/pages\/2","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.ace-jewelry.net\/index.php?rest_route=\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/www.ace-jewelry.net\/index.php?rest_route=\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/www.ace-jewelry.net\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.ace-jewelry.net\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=2"}],"version-history":[{"count":72,"href":"https:\/\/www.ace-jewelry.net\/index.php?rest_route=\/wp\/v2\/pages\/2\/revisions"}],"predecessor-version":[{"id":250,"href":"https:\/\/www.ace-jewelry.net\/index.php?rest_route=\/wp\/v2\/pages\/2\/revisions\/250"}],"wp:attachment":[{"href":"https:\/\/www.ace-jewelry.net\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=2"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}