/*
Theme Name: Uranai Navigate Complete
Version: 9.0.0 - Title Fixed
Description: 完全版 - すべての問題を解決
*/
        /* ========================================
           CSS変数定義
        ======================================== */
        :root {
            --royal-purple: #2d1b69;
            --deep-purple: #1a0f3d;
            --light-purple: #b8a4d4;
            --accent-gold: #c9a961;
            --light-gold: #e6d5a8;
            --navy: #0a1128;
            --white: #ffffff;
            --off-white: #f8f8f8;
            --gradient-1: linear-gradient(180deg, #1a0f3d 0%, #2d1b69 50%, #1a0f3d 100%);
            --gradient-2: linear-gradient(135deg, #2d1b69 0%, #1a0f3d 100%);
            --gradient-purple: linear-gradient(135deg, #1a0f3d 0%, #2d1b69 100%);
            --gradient-gold: linear-gradient(135deg, #c9a961 0%, #e6d5a8 100%);
            --gradient-gold-shimmer: linear-gradient(90deg, #c9a961 0%, #e6d5a8 50%, #c9a961 100%);
            --shadow-deep: 0 10px 40px rgba(0, 0, 0, 0.4);
            --shadow-purple: 0 8px 32px rgba(45, 27, 105, 0.3);
            --shadow-gold: 0 4px 20px rgba(201, 169, 97, 0.2);
        }

        /* ========================================
           カスタムカーソル（無効化）
        ======================================== */
        /* カーソルは通常表示 */
        /* * {
            cursor: none !important;
        } */

        .custom-cursor {
            display: none; /* カーソルの丸を非表示 */
            width: 20px;
            height: 20px;
            border: 2px solid var(--accent-gold);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            transition: all 0.15s ease;
            mix-blend-mode: difference;
        }

        .cursor-follower {
            display: none; /* カーソルの丸を非表示 */
            width: 8px;
            height: 8px;
            background: var(--accent-gold);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            transition: all 0.05s ease;
        }

        .custom-cursor.hover {
            transform: scale(2);
            background: rgba(201, 169, 97, 0.1);
        }

        /* ========================================
           マウスフォロー光エフェクト
        ======================================== */
        .mouse-glow {
            position: fixed;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(201, 169, 97, 0.15) 0%, transparent 70%);
            pointer-events: none;
            z-index: 1;
            transition: all 0.3s ease;
        }

        /* ========================================
           グラデーション波アニメーション
        ======================================== */
        @keyframes wave {
            0%, 100% {
                clip-path: polygon(
                    0% 45%,
                    15% 44%,
                    33% 50%,
                    54% 60%,
                    70% 61%,
                    84% 59%,
                    100% 52%,
                    100% 100%,
                    0% 100%
                );
            }
            50% {
                clip-path: polygon(
                    0% 60%,
                    16% 65%,
                    34% 66%,
                    51% 62%,
                    67% 50%,
                    84% 45%,
                    100% 46%,
                    100% 100%,
                    0% 100%
                );
            }
        }

        .wave-bg {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, transparent 0%, var(--royal-purple) 100%);
            animation: wave 10s ease-in-out infinite;
            opacity: 0.3;
        }

        /* ========================================
           タイピングエフェクト
        ======================================== */
        @keyframes typing {
            from { width: 0 }
            to { width: 100% }
        }

        @keyframes blink {
            0%, 100% { border-color: transparent }
            50% { border-color: var(--accent-gold) }
        }

        .typing-text {
            overflow: hidden;
            border-right: 3px solid var(--accent-gold);
            white-space: nowrap;
            animation: typing 3.5s steps(40, end), blink 0.75s step-end infinite;
        }

        /* ========================================
           3Dカードエフェクト
        ======================================== */
        .card-3d {
            transform-style: preserve-3d;
            transition: transform 0.3s ease;
        }

        .card-3d:hover {
            transform: perspective(1000px) rotateY(5deg) rotateX(5deg);
        }

        /* ========================================
           スクロールトリガーアニメーション
        ======================================== */
        .fade-in-up {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-in-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .scale-in {
            opacity: 0;
            transform: scale(0.8);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .scale-in.visible {
            opacity: 1;
            transform: scale(1);
        }

        /* ========================================
           カウントアップ数字
        ======================================== */
        .counter {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent-gold);
            font-family: 'Cinzel', serif;
        }

        /* ========================================
           グロー効果強化
        ======================================== */
        @keyframes glow-pulse {
            0%, 100% {
                box-shadow: 0 0 20px rgba(201, 169, 97, 0.3);
            }
            50% {
                box-shadow: 0 0 40px rgba(201, 169, 97, 0.6);
            }
        }

        .glow-effect {
            animation: glow-pulse 3s ease-in-out infinite;
        }

        /* ========================================
           パーティクルエフェクト強化
        ======================================== */
        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        .floating {
            animation: float 3s ease-in-out infinite;
        }

        /* ========================================
           ネオンテキスト
        ======================================== */
        .neon-text {
            text-shadow: 
                0 0 10px rgba(201, 169, 97, 0.8),
                0 0 20px rgba(201, 169, 97, 0.6),
                0 0 30px rgba(201, 169, 97, 0.4),
                0 0 40px rgba(201, 169, 97, 0.2);
            animation: neon-flicker 2s ease-in-out infinite alternate;
        }

        @keyframes neon-flicker {
            0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
                text-shadow: 
                    0 0 10px rgba(201, 169, 97, 0.8),
                    0 0 20px rgba(201, 169, 97, 0.6),
                    0 0 30px rgba(201, 169, 97, 0.4),
                    0 0 40px rgba(201, 169, 97, 0.2);
            }
            20%, 24%, 55% {
                text-shadow: none;
            }
        }

        /* ========================================
           リップルエフェクト
        ======================================== */
        .ripple {
            position: relative;
            overflow: hidden;
        }

        .ripple::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(201, 169, 97, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .ripple:hover::after {
            width: 300px;
            height: 300px;
        }

    <style>
        :root {
            --primary-purple: #2D1B3D;
            --deep-purple: #1A0F2E;
            --royal-purple: #4A2C5C;
            --accent-gold: #C9A961;
            --rich-gold: #B8964F;
            --light-gold: #E8D7AE;
            --navy: #0D0A1A;
            --light-purple: #7A648F;
            --white: #FFFFFF;
            --off-white: #F5F2ED;
            --gradient-1: linear-gradient(180deg, #0D0A1A 0%, #1A0F2E 50%, #2D1B3D 100%);
            --gradient-2: linear-gradient(135deg, #B8964F 0%, #C9A961 50%, #E8D7AE 100%);
            --gradient-gold-shimmer: linear-gradient(90deg, #B8964F 0%, #C9A961 25%, #E8D7AE 50%, #C9A961 75%, #B8964F 100%);
            --shadow-gold: 0 8px 32px rgba(201, 169, 97, 0.4);
            --shadow-purple: 0 12px 48px rgba(45, 27, 61, 0.6);
            --shadow-deep: 0 20px 60px rgba(0, 0, 0, 0.5);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Noto Sans JP', sans-serif;
            background: var(--navy);
            color: var(--white);
            overflow-x: hidden;
            line-height: 1.7;
        }

        /* Starfield Background */
        .stars {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        .star {
            position: absolute;
            width: 2px;
            height: 2px;
            background: white;
            border-radius: 50%;
            animation: twinkle 3s infinite;
        }

        @keyframes twinkle {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }

        /* PR Notice (ステマ規制対応) */
        .pr-notice {
            background: rgba(201, 169, 97, 0.1);
            border-bottom: 1px solid rgba(201, 169, 97, 0.3);
            padding: 0.5rem 2rem;
            text-align: center;
            font-size: 0.85rem;
            color: var(--light-gold);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1001;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
        }

        .pr-notice.hidden {
            opacity: 0;
            transform: translateY(-100%);
            pointer-events: none;
        }

        /* Header */
        header {
            position: fixed;
            top: 36px;
            width: 100%;
            background: rgba(10, 17, 40, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid rgba(201, 169, 97, 0.2);
            transition: all 0.3s ease;
        }

        header.scrolled {
            top: 0;
            padding: 0.3rem 0;
            background: rgba(10, 17, 40, 0.98);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
        }

        .header-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0.8rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }

        header.scrolled .header-container {
            padding: 0.5rem 2rem;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.6rem;
            font-weight: 700;
            background: var(--gradient-gold-shimmer);
            background-size: 200% 100%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 3px;
            position: relative;
            animation: shimmer 4s ease-in-out infinite;
            font-style: italic;
            transition: all 0.3s ease;
        }

        header.scrolled .logo {
            font-size: 1.2rem;
            letter-spacing: 2px;
        }

        @keyframes shimmer {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .logo::before {
            content: '⟡';
            position: absolute;
            left: -28px;
            color: var(--accent-gold);
            font-size: 1.2rem;
            font-style: normal;
            transition: all 0.3s ease;
        }

        .logo::after {
            content: '⟡';
            position: absolute;
            right: -28px;
            color: var(--accent-gold);
            font-size: 1.2rem;
            font-style: normal;
            transition: all 0.3s ease;
        }

        header.scrolled .logo::before,
        header.scrolled .logo::after {
            font-size: 0.9rem;
        }

        nav ul {
            display: flex;
            gap: 2rem;
            list-style: none;
        }

        header.scrolled nav ul {
            gap: 1.5rem;
        }

        nav a {
            color: var(--white);
            text-decoration: none;
            font-weight: 400;
            font-size: 0.95rem;
            position: relative;
            transition: all 0.3s ease;
        }

        header.scrolled nav a {
            font-size: 0.85rem;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-gold);
            transition: width 0.3s ease;
        }

        nav a:hover {
            color: var(--accent-gold);
        }

        nav a:hover::after {
            width: 100%;
        }

        /* ========================================
           ハンバーガーメニュー
        ======================================== */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 6px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            z-index: 1001;
        }

        .hamburger span {
            display: block;
            width: 28px;
            height: 3px;
            background: var(--accent-gold);
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -8px);
        }

        /* モバイル用メニュー */
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: rgba(10, 17, 40, 0.98);
                backdrop-filter: blur(20px);
                padding: 100px 2rem 2rem;
                transition: right 0.3s ease;
                box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
                border-left: 1px solid rgba(201, 169, 97, 0.3);
            }

            nav.active {
                right: 0;
            }

            nav ul {
                flex-direction: column;
                gap: 2rem;
            }

            nav li {
                opacity: 0;
                transform: translateX(50px);
                transition: all 0.3s ease;
            }

            nav.active li {
                opacity: 1;
                transform: translateX(0);
            }

            nav.active li:nth-child(1) { transition-delay: 0.1s; }
            nav.active li:nth-child(2) { transition-delay: 0.2s; }
            nav.active li:nth-child(3) { transition-delay: 0.3s; }
            nav.active li:nth-child(4) { transition-delay: 0.4s; }
            nav.active li:nth-child(5) { transition-delay: 0.5s; }
            nav.active li:nth-child(6) { transition-delay: 0.6s; }

            nav a {
                font-size: 1.1rem;
                padding: 0.5rem 0;
                display: block;
            }

            /* メニューオーバーレイ */
            .menu-overlay {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: rgba(0, 0, 0, 0.7);
                z-index: 999;
                backdrop-filter: blur(5px);
            }

            .menu-overlay.active {
                display: block;
            }
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 10rem 2rem 4rem;
            background: linear-gradient(180deg, #1a0f3d 0%, #2d1b69 50%, #1a0f3d 100%);
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 50% 50%, rgba(201, 169, 97, 0.15) 0%, transparent 70%);
            animation: pulse 8s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.3; transform: scale(1); }
            50% { opacity: 0.6; transform: scale(1.1); }
        }

        .hero-stars {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }

        .hero-star {
            position: absolute;
            width: 2px;
            height: 2px;
            background: white;
            border-radius: 50%;
            animation: twinkle 3s infinite;
        }

        .hero-star.large {
            width: 3px;
            height: 3px;
            box-shadow: 0 0 6px rgba(201, 169, 97, 0.8);
        }

        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 900px;
            animation: fadeInUp 1s ease-out;
        }

        .parallax-layer {
            transition: transform 0.3s ease-out;
        }

        .hero-subtitle {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.1rem;
            color: var(--light-gold);
            margin-bottom: 1.2rem;
            font-weight: 300;
            letter-spacing: 2px;
            opacity: 0;
            animation: fadeIn 1s ease-out 0.3s forwards;
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: 3.2rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: var(--white);
            text-shadow: 0 2px 20px rgba(201, 169, 97, 0.3);
            opacity: 0;
            animation: fadeIn 1s ease-out 0.6s forwards;
            font-style: italic;
        }

        .hero-description {
            font-size: 1.05rem;
            line-height: 1.8;
            color: var(--off-white);
            margin-bottom: 2.5rem;
            opacity: 0;
            animation: fadeIn 1s ease-out 0.9s forwards;
            max-width: 650px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
            opacity: 0;
            animation: fadeIn 1s ease-out 1.2s forwards;
        }

        .cta-button {
            display: inline-block;
            padding: 1.1rem 2.8rem;
            background: var(--gradient-gold-shimmer);
            background-size: 200% 100%;
            color: var(--deep-purple);
            font-size: 1rem;
            font-weight: 700;
            text-decoration: none;
            border-radius: 50px;
            box-shadow: var(--shadow-gold);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            letter-spacing: 0.3px;
        }

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

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

        .cta-button:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: var(--shadow-deep);
            background-position: 100% 0;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.7rem 2rem;
            background: rgba(201, 169, 97, 0.12);
            border: 2px solid var(--accent-gold);
            border-radius: 50px;
            color: var(--light-gold);
            font-size: 0.95rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        /* Scroll Indicator */
        .scroll-indicator {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.8rem;
            margin-top: 3rem;
            animation: fadeIn 1s ease-out 1.5s forwards;
            opacity: 0;
        }

        .scroll-text {
            color: var(--light-gold);
            font-size: 0.85rem;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-weight: 300;
        }

        .scroll-icon {
            width: 26px;
            height: 42px;
            border: 2px solid var(--accent-gold);
            border-radius: 20px;
            position: relative;
            display: flex;
            justify-content: center;
            padding-top: 8px;
        }

        .scroll-wheel {
            width: 4px;
            height: 8px;
            background: var(--accent-gold);
            border-radius: 2px;
            animation: scrollWheel 2s ease-in-out infinite;
        }

        @keyframes scrollWheel {
            0% {
                transform: translateY(0);
                opacity: 1;
            }
            100% {
                transform: translateY(20px);
                opacity: 0;
            }
        }

        /* Section Base */
        section {
            position: relative;
            padding: 3rem 2rem;
            z-index: 10;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            text-align: center;
            margin-bottom: 0.6rem;
            color: var(--accent-gold);
            text-shadow: 0 2px 10px rgba(201, 169, 97, 0.3);
            font-style: italic;
        }

        .section-subtitle {
            text-align: center;
            color: var(--light-purple);
            font-size: 0.95rem;
            margin-bottom: 2.5rem;
            font-weight: 300;
        }

        .container {
            max-width: 1000px;
            margin: 0 auto;
        }

        /* Concerns Section */
        .concerns {
            background: linear-gradient(to bottom, var(--navy), var(--deep-purple));
        }

        .concern-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }

        .concern-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            padding: 2rem;
            border-radius: 20px;
            border: 1px solid rgba(201, 169, 97, 0.2);
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .concern-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .concern-card:hover::before {
            opacity: 1;
        }

        .concern-card:hover {
            transform: translateY(-8px);
            border-color: var(--accent-gold);
            box-shadow: var(--shadow-gold);
        }

        .concern-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: radial-gradient(circle, rgba(201, 169, 97, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            position: relative;
        }

        .concern-icon svg {
            width: 35px;
            height: 35px;
            stroke: var(--accent-gold);
            fill: none;
            stroke-width: 2;
            filter: drop-shadow(0 4px 12px rgba(201, 169, 97, 0.3));
        }

        .concern-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.8rem;
            color: var(--accent-gold);
        }

        .concern-description {
            color: var(--off-white);
            line-height: 1.7;
            font-size: 0.9rem;
        }

        /* Features Section */
        .features {
            background: var(--gradient-1);
        }

        .feature-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .feature-card {
            text-align: center;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 15px;
            border: 1px solid rgba(201, 169, 97, 0.1);
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: var(--accent-gold);
        }

        .feature-number {
            display: inline-block;
            width: 50px;
            height: 50px;
            line-height: 50px;
            border-radius: 50%;
            background: var(--gradient-2);
            color: var(--accent-gold);
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 1.2rem;
            box-shadow: var(--shadow-gold);
        }

        .feature-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.8rem;
            color: var(--accent-gold);
        }

        .feature-description {
            color: var(--off-white);
            line-height: 1.7;
            font-size: 0.9rem;
        }

        /* Advisors Section */
        .advisors {
            background: linear-gradient(to bottom, var(--deep-purple), var(--navy));
        }

        .advisor-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .advisor-card {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid rgba(201, 169, 97, 0.2);
            transition: all 0.3s ease;
        }

        .advisor-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-purple);
            border-color: var(--accent-gold);
        }

        .advisor-image {
            width: 100%;
            height: 240px;
            position: relative;
            overflow: hidden;
            border-bottom: 3px solid var(--accent-gold);
        }

        .advisor-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .advisor-image-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #1A0F2E 0%, #2D1B3D 50%, #4A2C5C 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .advisor-image-placeholder::before {
            content: '';
            position: absolute;
            width: 150%;
            height: 150%;
            background: radial-gradient(circle, rgba(201, 169, 97, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        .advisor-icon {
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(201, 169, 97, 0.15);
            border: 3px solid var(--accent-gold);
            border-radius: 50%;
            position: relative;
            z-index: 2;
        }

        .advisor-icon svg {
            width: 40px;
            height: 40px;
            stroke: var(--accent-gold);
            fill: var(--accent-gold);
            filter: drop-shadow(0 4px 16px rgba(201, 169, 97, 0.5));
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .advisor-info {
            padding: 1.5rem;
        }

        .advisor-name {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--accent-gold);
            margin-bottom: 0.4rem;
        }

        .advisor-specialty {
            color: var(--light-purple);
            font-size: 0.85rem;
            margin-bottom: 1.2rem;
        }

        .advisor-description {
            color: var(--off-white);
            line-height: 1.6;
            margin-bottom: 1.2rem;
            font-size: 0.9rem;
        }

        .advisor-cta {
            display: inline-block;
            padding: 0.7rem 1.8rem;
            background: transparent;
            border: 2px solid var(--accent-gold);
            color: var(--accent-gold);
            text-decoration: none;
            border-radius: 30px;
            transition: all 0.3s ease;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .advisor-cta:hover {
            background: var(--accent-gold);
            color: var(--deep-purple);
        }

        /* Testimonials Section */
        .testimonials {
            background: var(--navy);
            overflow: hidden;
        }

        .testimonial-carousel {
            position: relative;
            max-width: 500px;
            margin: 0 auto;
            padding: 1rem 0 2rem;
        }

        .testimonial-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .testimonial-card {
            min-width: 100%;
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            padding: 1.5rem;
            border-radius: 12px;
            border: 1px solid rgba(201, 169, 97, 0.15);
            position: relative;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        .quote-icon {
            display: none;
        }

        .testimonial-rating {
            display: none;
        }

        .star {
            color: var(--accent-gold);
            font-size: 0.9rem;
        }

        .star.empty {
            color: rgba(201, 169, 97, 0.3);
        }

        .testimonial-text {
            color: var(--off-white);
            line-height: 1.6;
            margin-bottom: 1rem;
            font-size: 0.9rem;
            text-align: center;
        }

        .testimonial-footer {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding-top: 0.8rem;
            border-top: 1px solid rgba(201, 169, 97, 0.15);
        }

        .testimonial-author-info {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 0.5rem;
        }

        .testimonial-author {
            color: var(--light-gold);
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 0.15rem;
        }

        .testimonial-age {
            color: var(--light-purple);
            font-size: 0.75rem;
        }

        .testimonial-category {
            background: rgba(201, 169, 97, 0.1);
            color: var(--accent-gold);
            padding: 0.3rem 0.8rem;
            border-radius: 15px;
            font-size: 0.7rem;
            font-weight: 600;
        }

        .carousel-controls {
            display: flex;
            justify-content: center;
            gap: 0.6rem;
            margin-top: 1rem;
        }

        .carousel-button {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(201, 169, 97, 0.08);
            border: 1.5px solid rgba(201, 169, 97, 0.4);
            color: var(--accent-gold);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .carousel-button:hover {
            background: var(--accent-gold);
            color: var(--deep-purple);
            transform: scale(1.05);
            border-color: var(--accent-gold);
        }

        .carousel-indicators {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            margin-top: 1rem;
        }

        .indicator {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: rgba(201, 169, 97, 0.25);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .indicator.active {
            background: var(--accent-gold);
            transform: scale(1.4);
        }

        /* Blog Section */
        .blog {
            background: var(--gradient-1);
        }

        .blog-list {
            max-width: 900px;
            margin: 0 auto 3rem;
        }

        .blog-item {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(201, 169, 97, 0.15);
            border-left: 4px solid var(--accent-gold);
            padding: 2rem 2.5rem;
            margin-bottom: 1.5rem;
            border-radius: 12px;
            transition: all 0.3s ease;
            position: relative;
            cursor: pointer;
        }

        .blog-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--gradient-gold-shimmer);
            background-size: 100% 200%;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .blog-item:hover {
            transform: translateX(8px);
            border-color: var(--accent-gold);
            background: rgba(255, 255, 255, 0.05);
            box-shadow: var(--shadow-gold);
        }

        .blog-item:hover::before {
            opacity: 1;
        }

        .blog-item-header {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 0.8rem;
        }

        .blog-category {
            display: inline-block;
            padding: 0.35rem 1.2rem;
            background: rgba(201, 169, 97, 0.15);
            color: var(--accent-gold);
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .blog-date {
            color: var(--light-purple);
            font-size: 0.85rem;
        }

        .blog-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.8rem;
            color: var(--white);
            line-height: 1.5;
        }

        .blog-excerpt {
            color: var(--light-purple);
            line-height: 1.8;
            margin-bottom: 1rem;
            font-size: 0.95rem;
        }

        .blog-link {
            color: var(--accent-gold);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }

        .blog-link:hover {
            gap: 1rem;
            color: var(--light-gold);
        }

        .blog-link::after {
            content: '→';
            transition: transform 0.3s ease;
        }

        .blog-link:hover::after {
            transform: translateX(4px);
        }

        .view-all-link {
            display: block;
            text-align: center;
            margin-top: 3rem;
            color: var(--accent-gold);
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
            padding: 1rem;
            border: 2px solid rgba(201, 169, 97, 0.3);
            border-radius: 50px;
            max-width: 300px;
            margin-left: auto;
            margin-right: auto;
        }

        .view-all-link:hover {
            border-color: var(--accent-gold);
            background: rgba(201, 169, 97, 0.1);
            transform: translateY(-2px);
        }

        /* FAQ Section */
        .faq {
            background: linear-gradient(to bottom, var(--deep-purple), var(--navy));
        }

        .faq-list {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(201, 169, 97, 0.2);
            border-radius: 15px;
            margin-bottom: 1.5rem;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: var(--accent-gold);
        }

        .faq-question {
            padding: 1.8rem 2rem;
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--accent-gold);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-answer {
            padding: 0 2rem 1.8rem;
            color: var(--off-white);
            line-height: 1.9;
            display: none;
        }

        .faq-item.active .faq-answer {
            display: block;
        }

        .faq-toggle {
            color: var(--accent-gold);
            font-size: 1.5rem;
        }

        /* CTA Section */
        .cta-section {
            background: var(--gradient-1);
            text-align: center;
            padding: 4rem 2rem;
        }

        .cta-section .cta-button {
            font-size: 1rem;
            padding: 1.2rem 3rem;
        }

        /* Footer */
        footer {
            background: var(--navy);
            padding: 4rem 2rem 2rem;
            border-top: 1px solid rgba(201, 169, 97, 0.2);
        }

        /* Fixed Banner */
        .fixed-banner {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 999;
            width: 300px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .fixed-banner:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 48px rgba(0, 0, 0, 0.6);
        }

        .fixed-banner img {
            width: 100%;
            height: auto;
            display: block;
        }

        .banner-close {
            position: absolute;
            top: 8px;
            right: 8px;
            width: 28px;
            height: 28px;
            background: rgba(0, 0, 0, 0.7);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 18px;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 1000;
        }

        .banner-close:hover {
            background: rgba(0, 0, 0, 0.9);
            transform: scale(1.1);
        }

        .fixed-banner.hidden {
            display: none;
        }

        @media (max-width: 768px) {
            .fixed-banner {
                width: 250px;
                bottom: 15px;
                right: 15px;
            }
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-bottom: 2rem;
        }

        @media (max-width: 968px) {
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
        }

        @media (max-width: 480px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }

        .footer-section h3 {
            color: var(--accent-gold);
            font-size: 1.1rem;
            margin-bottom: 1rem;
            font-family: 'Playfair Display', serif;
            font-style: italic;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.6rem;
        }

        .footer-links a {
            color: var(--light-purple);
            text-decoration: none;
            transition: color 0.3s ease;
            font-size: 0.9rem;
        }

        .footer-links a:hover {
            color: var(--accent-gold);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(201, 169, 97, 0.2);
            color: var(--light-purple);
            font-size: 0.9rem;
        }

        .footer-disclaimer {
            background: rgba(201, 169, 97, 0.05);
            border: 1px solid rgba(201, 169, 97, 0.2);
            padding: 1.5rem;
            border-radius: 10px;
            margin-bottom: 2rem;
            color: var(--light-purple);
            font-size: 0.9rem;
            line-height: 1.7;
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

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

        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            nav ul {
                flex-direction: column;
                gap: 1rem;
            }

            .header-container {
                flex-direction: column;
                gap: 1rem;
            }

            .logo::before,
            .logo::after {
                display: none;
            }

            .concern-grid,
            .feature-grid,
            .testimonial-grid,
            .advisor-grid {
                grid-template-columns: 1fr;
            }
        }

/* ================================================================
   タイトル表示の完全修正
   ================================================================ */

.blog-card-title,
.entry-title,
h1.entry-title,
h2.entry-title,
.page-title {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
    hyphens: auto !important;
    line-height: 1.4 !important;
    white-space: normal !important;
}

.blog-card-title a,
.entry-title a {
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
}

/* ================================================================
   モバイル最適化 - ヘッダー
   ================================================================ */

/* デスクトップではそのまま */
@media (min-width: 769px) {
    header {
        padding: 1.5rem 0;
    }
}

/* モバイルではスリム化 */
@media (max-width: 768px) {
    header {
        padding: 0.5rem 0 !important;
        transition: transform 0.3s ease;
    }
    
    .header-container {
        padding: 0 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo {
        font-size: 1.2rem !important;
    }
    
    /* スクロール時に隠れる */
    header.header-hidden {
        transform: translateY(-100%);
    }
    
    header.header-visible {
        transform: translateY(0);
    }
}

/* ================================================================
   タイトル改行の根本的な修正
   ================================================================ */

/* すべてのタイトルに適用 */
.blog-card-title,
.blog-card-title a,
.entry-title,
.entry-title a,
h1.entry-title,
h2.entry-title,
h1,
h2 {
    /* 日本語の自然な改行を許可 */
    word-break: normal !important;
    overflow-wrap: anywhere !important;
    /* 行の高さを調整 */
    line-height: 1.5 !important;
    /* 左寄せ */
    text-align: left !important;
    /* 通常の空白処理 */
    white-space: normal !important;
}

/* 記事カード内のタイトル - 特に重要 */
.blog-card-title {
    font-size: 1.3rem !important;
    margin-bottom: 1rem !important;
    display: block !important;
}

.blog-card-title a {
    display: inline !important;
    text-decoration: none !important;
}

/* デスクトップ */
@media (min-width: 769px) {
    .blog-card-title {
        font-size: 1.5rem !important;
    }
}

/* モバイル */
@media (max-width: 768px) {
    .blog-card-title {
        font-size: 1.2rem !important;
    }
}
