
        /* Ensure font-display: swap for any custom fonts */
        @font-face {
            font-display: swap;
        }

        body {
            font-family: 'Noto Sans JP', sans-serif;
            color: #3a3a3aff;
        }
        .font-jost {
            font-family: 'Jost', sans-serif;
        }
        .font-noto-bold {
            font-weight: 700;
        }
        .font-noto-medium {
            font-weight: 500;
        }
        .font-noto-regular {
            font-weight: 400;
        }

        .image-bg-1 {
            background-image: url("images/bg_1.webp");
            background-position: right 20% bottom 45%;
        }
        .image-bg-2 {
            background-image: url("images/section_2_bg_mobile.webp");
        }
        .image-bg-blue-consult {
            background-image: url("images/blue-bg-consult_mobile.webp");
            object-fit: cover;
            background-position: center;
            background-size: cover;
        }

        @media (width >= 40rem) {
            .image-bg-1 {
                background-position: center;
            }
            .image-bg-2 {
                background-image: url("images/section_2_bg.webp");
            }
            .image-bg-blue-consult {
                background-image: url("images/blue-bg-consult.webp");
                background-position-y: 68%;
            }
        }

        /* Carousel Styles */
        .carousel {
            margin: auto;
            max-width: calc(108% - 6rem);
            position: relative;
            z-index: 1;
        }

        @media (width >= 40rem) {
            /* Carousel Styles */
            .carousel {
                margin: auto;
                max-width: calc(108%);
                position: relative;
                z-index: 1;
            }
        }

        .carousel-num {
            position: absolute;
            font-size: 10px;
            color: #191919;
            text-shadow: 1px 1px #F15025;
            width: 100%;
            bottom: 4px;
            left: 0;
            line-height: 2rem;
            display: flex;
            z-index: 1;
            opacity: 0.6;
        }

        .carousel-num i {
            flex: 1;
            text-align: center;
        }

        .carousel-wrapper {
            position: relative;
        }

        .custom-scrollbar {
            background-color: #828993;
            height: 4px;
            border-radius: 2px;
            pointer-events: none;
            z-index: 5;
        }

        .custom-thumb {
            background-color: #ffffff;
            height: 100%;
            width: 40px; /* Will be updated dynamically */
            transition: background-color 0.3s;
        }


        .carousel-stage {
            aspect-ratio: 16/10;
            display: flex;
            overflow-x: scroll;
            overflow-y: hidden;
            scroll-snap-type: x mandatory;
            border-radius: 12px;
            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none;  /* IE/Edge */
        }

        .carousel-stage::-webkit-scrollbar {
            display: none; /* Webkit */
        }

        .carousel-stage::-webkit-scrollbar-track {
            background-color: #828993;
            margin-right: 32px;
            margin-left: 32px;
        }

        .carousel-stage::-webkit-scrollbar-thumb {
            background-color: #ffffff;
            border-radius: 4px;
        }

        .carousel-item {
            height: 100%;
            flex: 1 0 100%;
            scroll-snap-align: start;
            padding-bottom: 32px;
        }

        .carousel-content {
            width: 100%;
            height: 100%;
            filter: sepia(0) brightness(1) saturate(1);
        }

        .carousel-image {
            width: 100%;
            height: 100%;
            object-fit: fill;
            border-radius: 12px;
        }

        .carousel-controls {
            position: absolute;
            top: 48%;
            left: -6%;
            width: 112%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            z-index: 2;
        }

        .carousel-control {
            background: rgba(0, 0, 0, 0.3);
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .carousel-control:hover {
            background: rgba(255, 255, 255, 0.9);
        }

        /* Sticky Footer Styles */
        .sticky-footer {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(8px);
            padding: 1rem;
            box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
            z-index: 40;
            display: none;
        }

        .sticky-footer-inner {
            max-width: 640px;
            margin: 0 auto;
            display: flex;
            gap: 1rem;
            justify-content: center;
        }

        .sticky-footer-button {
            flex: 1;
            padding: 0.75rem 1rem;
            border-radius: 8px;
            font-weight: 700;
            text-align: center;
            transition: all 0.3s ease;
            letter-spacing: 0.05em;
        }

        .sticky-footer-button--orange {
            background-color: #dc6303;
            color: white;
        }

        .sticky-footer-button--orange:hover {
            background-color: #ff7a1a;
        }

        .sticky-footer-button--blue {
            background-color: #007cbe;
            color: white;
        }

        .sticky-footer-button--blue:hover {
            background-color: #0095e0;
        }

        @media (min-width: 640px) {
            .sticky-footer {
                padding: 1.5rem;
            }

            .sticky-footer-button {
                padding: 1rem 2rem;
                font-size: 1rem;
            }
        }

        /* FAQ Accordion Styles */
        .faq-item {
            border-top: 1px solid #e5e7eb;
        }

        .faq-question {
            display: flex;
            padding: 1rem 0;
            cursor: pointer;
        }

        .faq-question .active {
            opacity: 0.7;
        }

        .faq-question-text .active {
            opacity: 0.7;
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
        }

        .faq-answer.active {
            max-height: 500px;
            transition: max-height 0.5s ease-in;
        }

        .faq-toggle {
            width: 20px;
            height: 20px;
            position: relative;
            background-color: #3a3a3aff;
            border-radius: 999px;
            transition: transform 0.3s ease;
        }

        .faq-toggle::before,
        .faq-toggle::after {
            content: '';
            position: absolute;
            background-color: #ffffff;
            transition: transform 0.3s ease;
        }

        .faq-toggle::before {
            top: 50%;
            left: 20%;
            width: 60%;
            height: 2px;
            transform: translateY(-50%);
        }

        .faq-toggle::after {
            top: 20%;
            left: 50%;
            width: 2px;
            height: 60%;
            transform: translateX(-50%);
        }

        .faq-toggle.active::after {
            transform: translateX(-50%) rotate(90deg);
        }

        @media (max-width: 640px) {
            .footer-inner {
                padding: 0 1rem 0.8rem 1rem;
            }
            .footer-logo {
                height: 28px;
            }
            .footer-copyright {
                font-size: 0.75rem;
            }
        }

        .step-caption {
            font-size: 0.95em;
            color: #fff;
            font-family: 'Noto Sans JP', 'Jost', sans-serif;
            font-weight: 500;
            letter-spacing: 0.08em;
            margin-bottom: 0.5rem;
        }
        .slash-left, .slash-right {
            font-family: 'Jost', 'Noto Sans JP', sans-serif;
            font-size: 1.1em;
            color: #fff;
            opacity: 0.35;
            margin: 0 0.25em;
            font-weight: 700;
        }
        .slash-left {
            margin-right: 0.4em;
        }
        .slash-right {
            margin-left: 0.4em;
        }
        @media (max-width: 640px) {
            .step-caption {
                font-size: 0.85em;
            }
            .slash-left, .slash-right {
                font-size: 1em;
            }
        }
        .footer-link {
            color: #3a3a3a;
            font-size: 0.95rem;
            font-family: 'Noto Sans JP', sans-serif;
            font-weight: 400;
            letter-spacing: 0.02em;
            text-decoration: none;
            transition: color 0.2s;
            padding: 0.2rem 0.5rem;
            border-radius: 4px;
        }
        .footer-link:hover {
            color: #007cbe;
            background: #f3f7fa;
        }
        .footer-logo {
            height: 36px;
            width: auto;
            margin-bottom: 0.2rem;
        }
        @media (max-width: 640px) {
            .footer-logo {
                height: 28px;
            }
            .footer-link {
                font-size: 0.9rem;
            }
            .footer-copyright {
                font-size: 0.75rem;
            }
        }
    