 .map-background {
    background-image: url('<?php echo get_template_directory_uri(); ?>/NST-LP-tokyoMap.png');
}
 
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-dark: #1a1a1a;
            --secondary-dark: #0d0d0d;
            --neon-pink: #ff007f;
            --electric-blue: #007bff;
            --neon-cyan: #00ffff;
            --white: #ffffff;
            --gray-light: #cccccc;
            --gray-dark: #333333;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--primary-dark);
            color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
            /* cursor: none; */
        }

        /* Custom Cursor */
        /* .cursor {
            position: fixed;
            width: 20px;
            height: 20px;
            background: radial-gradient(circle, var(--neon-pink), transparent);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            mix-blend-mode: difference;
            transition: all 0.1s ease;
        } */

        /* .cursor.hover {
            transform: scale(2);
            background: radial-gradient(circle, var(--electric-blue), transparent);
        } */

        /* Header */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(10px);
            padding: 15px 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .site-header.scrolled {
            background: rgba(0, 0, 0, 0.95);
            box-shadow: 0 4px 20px rgba(255, 0, 127, 0.2);
        }

        .site-title a {
            color: var(--white);
            text-decoration: none;
            font-size: 1.2em;
            font-weight: 700;
            background: linear-gradient(45deg, var(--neon-pink), var(--electric-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .header-cta {
            background: linear-gradient(45deg, var(--neon-pink), var(--electric-blue));
            color: var(--white);
            padding: 10px 20px;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            font-size: 0.9em;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            position: relative;
            overflow: hidden;
        }

        .header-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .header-cta:hover {
            transform: scale(1.05);
            box-shadow: 0 0 30px rgba(255, 0, 127, 0.5);
        }

        .header-cta:hover::before {
            left: 100%;
        }

        /* Hero Section */
        #hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            background: radial-gradient(ellipse at center, rgba(255, 0, 127, 0.1) 0%, rgba(0, 123, 255, 0.05) 50%, var(--primary-dark) 100%);
            overflow: hidden;
        }

        #hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 80%, rgba(255, 0, 127, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(0, 123, 255, 0.1) 0%, transparent 50%);
            animation: floating 6s ease-in-out infinite;
        }

        @keyframes floating {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(1deg); }
        }

        .hero-content {
            text-align: center;
            z-index: 2;
            position: relative;
            opacity: 0;
            animation: heroFadeIn 2s ease-out 0.5s forwards;
        }

        @keyframes heroFadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-content {
            transform: translateY(30px);
        }

        .hero-content h1 {
            font-size: clamp(2rem, 8vw, 4rem);
            font-weight: 700;
            margin-bottom: 20px;
            background: linear-gradient(45deg, var(--neon-pink), var(--electric-blue), var(--neon-cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 30px rgba(255, 0, 127, 0.3);
            animation: glow 2s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from { filter: drop-shadow(0 0 20px rgba(255, 0, 127, 0.3)); }
            to { filter: drop-shadow(0 0 40px rgba(0, 123, 255, 0.5)); }
        }

        .hero-content p {
            font-size: clamp(1rem, 3vw, 1.3rem);
            margin-bottom: 30px;
            color: var(--gray-light);
            font-weight: 300;
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Section Animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        /* Sections */
        section {
            padding: 80px 0;
            position: relative;
        }

        section h2 {
            font-size: clamp(2rem, 5vw, 3rem);
            text-align: center;
            margin-bottom: 40px;
            background: linear-gradient(45deg, var(--neon-pink), var(--electric-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Vibe Section */
        #vibe {
            background: linear-gradient(135deg, rgba(255, 0, 127, 0.05) 0%, rgba(0, 123, 255, 0.05) 100%);
            text-align: center;
        }

        #vibe p {
            font-size: 1.1em;
            color: var(--gray-light);
            line-height: 1.8;
        }

        .instagram-feed-placeholder {
            background: var(--gray-dark);
            padding: 60px;
            border-radius: 15px;
            border: 2px solid rgba(255, 0, 127, 0.2);
            transition: all 0.3s ease;
        }

        .instagram-feed-placeholder:hover {
            border-color: var(--neon-pink);
            box-shadow: 0 0 30px rgba(255, 0, 127, 0.2);
        }

        /* Event Cards */
        .event-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .event-item {
            background: linear-gradient(145deg, var(--gray-dark), #2a2a2a);
            border-radius: 15px;
            padding: 25px;
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            border: 1px solid rgba(255, 0, 127, 0.1);
            position: relative;
            overflow: hidden;
        }

        .event-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--neon-pink), var(--electric-blue));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .event-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 0, 127, 0.2);
            border-color: var(--neon-pink);
        }

        .event-item:hover::before {
            transform: scaleX(1);
        }

        .event-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .event-item:hover img {
            transform: scale(1.05);
        }

        .event-item h3 {
            margin-bottom: 15px;
            font-size: 1.3em;
            color: var(--white);
        }

        .event-item p {
            color: var(--gray-light);
            margin-bottom: 10px;
        }

        .cta-link {
            display: inline-block;
            background: linear-gradient(45deg, var(--neon-pink), var(--electric-blue));
            color: var(--white);
            padding: 12px 25px;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 600;
            margin-top: 15px;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
            position: relative;
            overflow: hidden;
        }

        .cta-link:hover {
            transform: scale(1.05);
            box-shadow: 0 0 30px rgba(255, 0, 127, 0.4);
        }

        /* Rules Section */
        #rules {
            background: rgba(0, 123, 255, 0.05);
        }

        #rules ul {
            list-style: none;
            margin-top: 30px;
        }

        #rules li {
            background: var(--gray-dark);
            margin-bottom: 15px;
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid var(--neon-pink);
            transition: all 0.3s ease;
        }

        #rules li:hover {
            background: #3a3a3a;
            transform: translateX(10px);
        }

        /* FAQ Section */
        #faq details {
            background: var(--gray-dark);
            margin-bottom: 15px;
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        #faq summary {
            padding: 20px;
            cursor: pointer;
            position: relative;
            transition: all 0.3s ease;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        #faq summary::after {
            content: '+';
            font-size: 1.5em;
            color: var(--neon-pink);
            transition: all 0.3s ease;
        }

        #faq details[open] summary::after {
            transform: rotate(45deg);
            color: var(--electric-blue);
        }

        #faq summary:hover {
            background: rgba(255, 0, 127, 0.1);
        }

        #faq details[open] summary {
            border-bottom: 1px solid rgba(255, 0, 127, 0.2);
        }

        #faq details p {
            padding: 0 20px 20px;
            color: var(--gray-light);
            animation: fadeInUp 0.3s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Map Section */
        .map-placeholder {
            border-radius: 15px;
            border: 2px solid rgba(0, 123, 255, 0.3);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray-light);
            background: var(--gray-dark);
        }

        .map-placeholder:hover {
            border-color: var(--electric-blue);
            box-shadow: 0 0 30px rgba(0, 123, 255, 0.2);
        }

        /* Footer */
        footer {
            background: var(--secondary-dark);
            padding: 60px 0;
            text-align: center;
            border-top: 1px solid var(--gray-dark);
        }

        .social-links a {
            color: var(--white);
            text-decoration: none;
            padding: 15px 30px;
            background: linear-gradient(45deg, var(--neon-pink), var(--electric-blue));
            border-radius: 25px;
            font-weight: 600;
            display: inline-block;
            margin: 10px;
            transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        }

        .social-links a:hover {
            transform: scale(1.1);
            box-shadow: 0 0 30px rgba(255, 0, 127, 0.4);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .site-header {
                padding: 10px 15px;
            }
            
            .site-title a {
                font-size: 1em;
            }
            
            .header-cta {
                padding: 8px 16px;
                font-size: 0.8em;
            }
            
            section {
                padding: 60px 0;
            }
            
            .event-list {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            #rules ul, #faq {
                padding: 0 10px;
            }
        }

        /* Particle Animation */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            background: var(--neon-pink);
            border-radius: 50%;
            opacity: 0.1;
            animation: float 6s infinite ease-in-out;
        }

        .particle:nth-child(2n) {
            background: var(--electric-blue);
            animation-delay: -2s;
        }

        .particle:nth-child(3n) {
            background: var(--neon-cyan);
            animation-delay: -4s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10%, 90% {
                opacity: 0.1;
            }
            50% {
                opacity: 0.3;
            }
        }

        /* --- Explore Our Tokyo Section --- */
#explore-tokyo {
    padding-bottom: 100px;
}

/* --- Modal Window --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--primary-dark);
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid var(--gray-dark);
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.modal-overlay.visible .modal-content {
    transform: scale(1);
}

.modal-close-button {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2em;
    cursor: pointer;
    line-height: 1;
}

#modal-title {
    margin-bottom: 20px;
    font-size: 1.8em;
    color: var(--neon-pink);
}

.modal-video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    margin-bottom: 30px;
}

.modal-video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.modal-gallery-container h4 {
    font-size: 1.2em;
    margin-bottom: 15px;
    border-left: 3px solid var(--electric-blue);
    padding-left: 10px;
}

.gallery-wrapper {
    overflow: hidden;
    position: relative;
}

.gallery-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.gallery-track img {
    width: 33.333%; /* 3枚表示 */
    flex-shrink: 0;
    padding: 0 5px;
    border-radius: 8px;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 1.5em;
    cursor: pointer;
    z-index: 10;
}
.gallery-nav.prev { left: 10px; }
.gallery-nav.next { right: 10px; }