
        :root {
            --color-bg: #f8fdf9;
            --color-bg-soft: #f0f9f4;
            --color-bg-card: #ffffff;
            --color-bg-gallery: #e8f5f0;
            
            --color-green-lightest: #f0f9f2;
            --color-green-light: #e8f5e9;
            --color-green-soft: #a8d5ba;
            --color-green-main: #7bc89c;
            --color-green-accent: #5db87d;
            --color-green-dark: #4a9968;
            
            --color-aqua-light: #e0f7fa;
            --color-aqua-soft: #a7dce8;
            --color-aqua-main: #6cc4db;
            --color-aqua-accent: #4db6d4;
            
            --color-pink-soft: #f8e8f0;
            --color-pink-main: #e8a0c0;
            
            --color-text-main: #3d5a47;
            --color-text-soft: #5a7d66;
            --color-text-muted: #8ba898;
            
            --color-white: #ffffff;
            --color-border: #d4e8dc;
            
            --font-display: 'Quicksand', 'M PLUS Rounded 1c', sans-serif;
            --font-body: 'M PLUS Rounded 1c', sans-serif;
            
            --shadow-soft: 0 4px 20px rgba(93, 184, 125, 0.08);
            --shadow-card: 0 8px 30px rgba(93, 184, 125, 0.12);
            --shadow-hover: 0 20px 60px rgba(93, 184, 125, 0.2);
        }

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

        html.lenis, html.lenis body {
            height: auto;
        }

        .lenis.lenis-smooth {
            scroll-behavior: auto !important;
        }

        .lenis.lenis-stopped {
            overflow: hidden;
        }

        body {
            font-family: var(--font-body);
            background-color: var(--color-bg);
            color: var(--color-text-main);
            line-height: 1.8;
            overflow-x: hidden;
        }

        /* ========================================
           ローディングスクリーン
        ======================================== */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--color-green-accent) 0%, var(--color-aqua-accent) 100%);
            z-index: 10001;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px;
        }

        .loading-logo {
            margin-bottom: 40px;
            overflow: hidden;
            text-align: center;
        }

        .loading-logo img {
            height: clamp(40px, 8vw, 60px);
            width: auto;
            opacity: 0;
            transform: translateY(30px);
        }

        .loading-progress {
            width: 200px;
            height: 3px;
            background: rgba(255,255,255,0.2);
            border-radius: 2px;
            overflow: hidden;
        }

        .loading-progress-bar {
            width: 0%;
            height: 100%;
            background: var(--color-white);
            border-radius: 2px;
        }

        .loading-percent {
            margin-top: 16px;
            font-size: 0.9rem;
            color: rgba(255,255,255,0.8);
            font-weight: 600;
        }

        /* ========================================
           カスタムカーソル
        ======================================== */
        .cursor-trail {
            position: fixed;
            width: 12px;
            height: 12px;
            background: linear-gradient(135deg, var(--color-green-main), var(--color-aqua-main));
            border-radius: 50%;
            pointer-events: none;
            z-index: 9998;
            opacity: 0.7;
            box-shadow: 0 0 15px rgba(93, 184, 125, 0.5);
            left: 0;
            top: 0;
        }

        /* ========================================
           ヘッダー
        ======================================== */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 20px 0;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            opacity: 0;
            transition: opacity 0.5s;
        }

        header.scrolled {
            padding: 12px 0;
        }

        header.scrolled::before {
            opacity: 1;
            box-shadow: 0 4px 30px rgba(93, 184, 125, 0.1);
        }

        .header-inner {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 32px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
            z-index: 1;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            transition: all 0.4s;
        }

        .logo img {
            height: 36px;
            width: auto;
            filter: brightness(0) invert(1);
            transition: filter 0.4s;
        }

        header.scrolled .logo img {
            filter: none;
            height: 32px;
        }

        /* ナビゲーション */
        nav {
            display: flex;
            gap: 6px;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 12px 20px;
            color: var(--color-white);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            border-radius: 30px;
            transition: all 0.4s;
            text-shadow: 0 1px 4px rgba(0,0,0,0.15);
            position: relative;
            overflow: hidden;
        }

        .nav-link::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--color-green-main), var(--color-aqua-main));
            opacity: 0;
            transform: scale(0);
            border-radius: 30px;
            transition: all 0.4s;
            z-index: -1;
        }

        .nav-link:hover::before {
            opacity: 1;
            transform: scale(1);
        }

        header.scrolled .nav-link {
            color: var(--color-text-main);
            text-shadow: none;
        }

        header.scrolled .nav-link:hover {
            color: var(--color-white);
        }

        /* ドロップダウン矢印 */
        .nav-link .arrow {
            font-size: 0.6em;
            transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            display: inline-block;
        }

        .nav-item:hover .arrow {
            transform: rotate(180deg);
        }

        /* ドロップダウンメニュー */
        .dropdown {
            position: absolute;
            top: calc(100% + 15px);
            left: 50%;
            transform: translateX(-50%) translateY(10px);
            min-width: 220px;
            background: var(--color-white);
            border-radius: 20px;
            padding: 16px 0;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-hover);
            border: 1px solid var(--color-border);
        }

        .dropdown::before {
            content: '';
            position: absolute;
            top: -8px;
            left: 50%;
            transform: translateX(-50%);
            border-left: 10px solid transparent;
            border-right: 10px solid transparent;
            border-bottom: 10px solid var(--color-white);
        }

        .nav-item:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateX(-50%) translateY(0);
        }

        .dropdown-link {
            display: block;
            padding: 12px 24px;
            color: var(--color-text-main);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s;
        }

        .dropdown-link:hover {
            background: linear-gradient(90deg, var(--color-green-light), transparent);
            color: var(--color-green-accent);
            padding-left: 32px;
        }

        /* モバイルメニューボタン */
        .mobile-menu-btn {
            display: none;
            width: 48px;
            height: 48px;
            background: rgba(255,255,255,0.1);
            border: none;
            border-radius: 12px;
            cursor: pointer;
            position: relative;
        }

        .mobile-menu-btn span {
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            width: 22px;
            height: 2px;
            background: var(--color-white);
            border-radius: 2px;
            transition: all 0.4s;
        }

        header.scrolled .mobile-menu-btn span {
            background: var(--color-green-accent);
        }

        .mobile-menu-btn span:nth-child(1) { top: 16px; }
        .mobile-menu-btn span:nth-child(2) { top: 23px; }
        .mobile-menu-btn span:nth-child(3) { top: 30px; }

        .mobile-menu-btn.active span:nth-child(1) {
            top: 23px;
            transform: translateX(-50%) rotate(45deg);
        }
        .mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
        .mobile-menu-btn.active span:nth-child(3) {
            top: 23px;
            transform: translateX(-50%) rotate(-45deg);
        }

        /* ========================================
           ヒーロー Swiper
        ======================================== */
        .hero-slider {
            position: relative;
            height: 50vh;
            min-height: 400px;
            width: 100%;
            overflow: hidden;
            margin-top: 0;
        }

        .swiper {
            width: 100%;
            height: 100%;
        }

        .swiper-slide {
            position: relative;
            overflow: hidden;
        }

        .slide-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            transform: scale(1.1);
            transition: transform 5s ease-out;
        }

        .swiper-slide-active .slide-bg {
            transform: scale(1);
        }

        .slide-1 .slide-bg {
            background: linear-gradient(135deg, rgba(93,184,125,0.85) 0%, rgba(77,182,212,0.85) 100%),
                        url('https://pbs.twimg.com/media/G_g6x18WIAAeg7A?format=jpg&name=4096x4096') center/cover;
        }

        .slide-2 .slide-bg {
            background: linear-gradient(135deg, rgba(77,182,212,0.85) 0%, rgba(123,200,156,0.85) 100%),
                        url('https://pbs.twimg.com/media/G_g6x18WIAAeg7A?format=jpg&name=4096x4096') center/cover;
        }

        .slide-3 .slide-bg {
            background: linear-gradient(135deg, rgba(123,200,156,0.85) 0%, rgba(93,184,125,0.85) 100%),
                        url('https://pbs.twimg.com/media/G_g6x18WIAAeg7A?format=jpg&name=4096x4096') center/cover;
        }

        .slide-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            z-index: 10;
            width: 90%;
            max-width: 800px;
        }

        .slide-title {
            font-family: var(--font-display);
            font-size: clamp(1.5rem, 5vw, 3rem);
            font-weight: 700;
            color: var(--color-white);
            text-shadow: 0 4px 40px rgba(0,0,0,0.3);
            margin-bottom: 16px;
            overflow: hidden;
        }

        .slide-title .char {
            display: inline-block;
            opacity: 0;
            transform: translateY(100%) rotateX(-90deg);
        }

        .slide-subtitle {
            font-size: 1rem;
            color: rgba(255,255,255,0.9);
            letter-spacing: 0.3em;
            opacity: 0;
            transform: translateY(20px);
        }

        /* Swiper ナビゲーション */
        .swiper-button-prev,
        .swiper-button-next {
            width: 60px !important;
            height: 60px !important;
            background: rgba(255,255,255,0.15) !important;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255,255,255,0.3) !important;
            border-radius: 50% !important;
            color: var(--color-white) !important;
            transition: all 0.4s !important;
        }

        .swiper-button-prev:hover,
        .swiper-button-next:hover {
            background: rgba(255,255,255,0.25) !important;
            transform: scale(1.1);
        }

        .swiper-button-prev::after,
        .swiper-button-next::after {
            font-size: 1.2rem !important;
            font-weight: bold !important;
        }

        .swiper-pagination {
            bottom: 30px !important;
        }

        .swiper-pagination-bullet {
            width: 14px !important;
            height: 14px !important;
            background: rgba(255,255,255,0.4) !important;
            opacity: 1 !important;
            transition: all 0.4s !important;
        }

        .swiper-pagination-bullet-active {
            background: var(--color-white) !important;
            transform: scale(1.3);
            box-shadow: 0 0 20px rgba(255,255,255,0.5);
        }

        /* ========================================
           NEWティッカー
        ======================================== */
        .news-ticker {
            background: linear-gradient(135deg, var(--color-green-light) 0%, var(--color-aqua-light) 100%);
            padding: 20px 0;
            overflow: hidden;
            position: relative;
            border-bottom: 3px solid var(--color-green-soft);
        }

        .news-ticker::before {
            content: '新着記事';
            position: absolute;
            left: 32px;
            top: 50%;
            transform: translateY(-50%);
            background: linear-gradient(135deg, var(--color-green-main), var(--color-aqua-main));
            color: white;
            padding: 8px 24px;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 700;
            z-index: 10;
            box-shadow: 0 4px 15px rgba(93, 184, 125, 0.3);
        }

        .ticker-wrapper {
            display: flex;
            animation: tickerScroll 30s linear infinite;
            padding-left: 160px;
        }

        .ticker-wrapper:hover {
            animation-play-state: paused;
        }

        @keyframes tickerScroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .ticker-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 0 40px;
            white-space: nowrap;
            color: var(--color-text-main);
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s;
        }

        .ticker-item:hover {
            color: var(--color-green-accent);
        }

        .ticker-item::before {
            content: '';
            width: 8px;
            height: 8px;
            background: linear-gradient(135deg, var(--color-green-main), var(--color-aqua-main));
            border-radius: 50%;
            flex-shrink: 0;
        }

        .ticker-date {
            background: var(--color-white);
            padding: 4px 12px;
            border-radius: 15px;
            font-size: 0.8rem;
            color: var(--color-text-muted);
            font-weight: 500;
        }

        /* ========================================
           メインコンテンツ
        ======================================== */
        .main-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 100px 32px;
            position: relative;
            z-index: 1;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title {
            font-family: var(--font-display);
            font-size: clamp(1.4rem, 4vw, 2.2rem);
            font-weight: 700;
            color: var(--color-green-accent);
            margin-bottom: 8px;
            letter-spacing: 0.08em;
            overflow: hidden;
        }

        .section-title .char {
            display: inline-block;
        }

        .section-subtitle {
            font-size: 0.9rem;
            color: var(--color-text-muted);
            letter-spacing: 0.15em;
        }

        .section-divider {
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--color-green-main), var(--color-aqua-main));
            border-radius: 2px;
            margin: 20px auto 0;
            transform-origin: center;
        }

        /* ========================================
           記事グリッド
        ======================================== */
        .articles-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .article-card {
            background: var(--color-white);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow-soft);
            border: 1px solid var(--color-border);
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .article-card:hover {
            transform: translateY(-12px);
            box-shadow: var(--shadow-hover);
        }

        .article-thumbnail {
            position: relative;
            aspect-ratio: 16 / 10;
            overflow: hidden;
        }

        .article-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .article-card:hover .article-thumbnail img {
            transform: scale(1.1);
        }

        .article-category {
            position: absolute;
            top: 16px;
            left: 16px;
            background: linear-gradient(135deg, var(--color-green-main), var(--color-aqua-main));
            color: var(--color-white);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
            z-index: 2;
        }

        .article-ribbon {
            position: absolute;
            top: 16px;
            right: -35px;
            background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
            color: white;
            padding: 6px 40px;
            font-size: 0.65rem;
            font-weight: 700;
            transform: rotate(45deg);
            z-index: 3;
        }

        .article-body {
            padding: 22px;
        }

        .article-title {
            font-size: 1rem;
            font-weight: 700;
            line-height: 1.6;
            margin-bottom: 14px;
            color: var(--color-text-main);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            transition: color 0.4s;
        }

        .article-card:hover .article-title {
            color: var(--color-green-accent);
        }

        .article-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            font-size: 0.78rem;
            color: var(--color-text-muted);
        }

        .article-meta span {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .article-meta .icon {
            width: 15px;
            height: 15px;
            stroke: var(--color-aqua-main);
        }

        .article-read-more {
            display: inline-block;
            margin-top: 14px;
            font-size: 0.8rem;
            font-weight: 600;
            color: var(--color-green-accent);
            text-decoration: none;
            letter-spacing: 0.05em;
            transition: all 0.3s;
        }

        .article-read-more::after {
            content: ' →';
            transition: transform 0.3s;
            display: inline-block;
        }

        .article-card:hover .article-read-more::after {
            transform: translateX(4px);
        }

        .popular-rank {
            position: absolute;
            top: 12px;
            right: 12px;
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, #ffd700, #ffb700);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-display);
            font-size: 1rem;
            font-weight: 700;
            z-index: 4;
            box-shadow: 0 4px 12px rgba(255, 183, 0, 0.4);
        }

        /* ========================================
           ページネーション
        ======================================== */
        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            margin-top: 60px;
        }

        .pagination-btn,
        .pagination-arrow {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            text-decoration: none;
        }

        .pagination-btn {
            background: var(--color-white);
            border: 2px solid var(--color-border);
            color: var(--color-text-main);
        }

        .pagination-btn:hover,
        .pagination-btn.active {
            background: linear-gradient(135deg, var(--color-green-main), var(--color-aqua-main));
            border-color: transparent;
            color: var(--color-white);
            transform: scale(1.1);
        }

        .pagination-arrow {
            background: var(--color-green-light);
            border: none;
            color: var(--color-green-accent);
        }

        .pagination-arrow:hover {
            background: var(--color-green-main);
            color: var(--color-white);
            transform: scale(1.1);
        }

        .pagination-ellipsis {
            color: var(--color-text-muted);
            font-size: 1.2rem;
            padding: 0 5px;
        }

        /* WordPress pagination (paginate_links output) */
        .pagination .page-numbers {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            text-decoration: none;
            background: var(--color-white);
            border: 2px solid var(--color-border);
            color: var(--color-text-main);
        }

        .pagination .page-numbers:hover,
        .pagination .page-numbers.current {
            background: linear-gradient(135deg, var(--color-green-main), var(--color-aqua-main));
            border-color: transparent;
            color: var(--color-white);
            transform: scale(1.1);
        }

        .pagination .page-numbers.prev,
        .pagination .page-numbers.next {
            background: var(--color-green-light);
            border: none;
            color: var(--color-green-accent);
        }

        .pagination .page-numbers.prev:hover,
        .pagination .page-numbers.next:hover {
            background: var(--color-green-main);
            color: var(--color-white);
            transform: scale(1.1);
        }

        .pagination .page-numbers.dots {
            background: transparent;
            border: none;
            color: var(--color-text-muted);
            font-size: 1.2rem;
            cursor: default;
            width: auto;
            height: auto;
        }

        .pagination .page-numbers.dots:hover {
            background: transparent;
            color: var(--color-text-muted);
            transform: none;
        }

        /* ========================================
           人気記事セクション
        ======================================== */
        .popular-section {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 32px 100px;
        }

        /* ========================================
           ギャラリーセクション
        ======================================== */
        .gallery-section {
            background: linear-gradient(180deg, var(--color-bg-gallery) 0%, var(--color-pink-soft) 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .gallery-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 10% 20%, rgba(168, 213, 186, 0.3) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(232, 160, 192, 0.3) 0%, transparent 40%);
            pointer-events: none;
        }

        .gallery-container {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 32px;
            position: relative;
            z-index: 1;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }

        .gallery-card {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            aspect-ratio: 1 / 1;
            cursor: pointer;
            box-shadow: var(--shadow-card);
            display: block;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .gallery-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: var(--shadow-hover);
        }

        .gallery-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .gallery-card:hover img {
            transform: scale(1.15);
        }

        .gallery-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.6) 100%);
            opacity: 0;
            transition: opacity 0.4s;
        }

        .gallery-card:hover::after {
            opacity: 1;
        }

        .gallery-info {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 20px;
            z-index: 2;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.4s;
        }

        .gallery-card:hover .gallery-info {
            transform: translateY(0);
            opacity: 1;
        }

        .gallery-title {
            color: var(--color-white);
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .gallery-tag {
            display: inline-block;
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            color: var(--color-white);
            padding: 4px 12px;
            border-radius: 15px;
            font-size: 0.75rem;
        }

        .gallery-more-btn {
            display: inline-block;
            padding: 14px 48px;
            background: var(--color-white);
            color: var(--color-green-accent);
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 600;
            border-radius: 50px;
            border: 2px solid var(--color-green-soft);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            letter-spacing: 0.05em;
        }

        .gallery-more-btn:hover {
            background: linear-gradient(135deg, var(--color-green-main), var(--color-aqua-main));
            color: var(--color-white);
            border-color: transparent;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(93, 184, 125, 0.3);
        }

        .gallery-deco {
            position: absolute;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            opacity: 0.08;
            pointer-events: none;
        }

        .gallery-deco-1 { top: 10%; left: 5%; background: var(--color-green-main); }
        .gallery-deco-2 { top: 60%; right: 8%; background: var(--color-aqua-main); }
        .gallery-deco-3 { bottom: 15%; left: 15%; background: var(--color-pink-main); }

        /* ========================================
           プロフィールセクション
        ======================================== */
        .profile-section {
            max-width: 1300px;
            margin: 0 auto;
            padding: 100px 32px;
        }

        .profile-card {
            background: var(--color-white);
            border-radius: 32px;
            padding: 50px;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--color-border);
            display: flex;
            align-items: center;
            gap: 50px;
            transition: all 0.5s;
        }

        .profile-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
        }

        .profile-avatar-large {
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--color-green-main), var(--color-aqua-main));
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-display);
            font-size: 4rem;
            font-weight: 700;
            color: var(--color-white);
            flex-shrink: 0;
            box-shadow: 0 15px 40px rgba(93, 184, 125, 0.3);
            transition: all 0.5s;
            overflow: hidden;
            padding: 4px;
        }

        .profile-avatar-large img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

        .profile-avatar-large:hover {
            transform: scale(1.05) rotate(5deg);
        }

        .profile-info { flex: 1; }

        .profile-name-large {
            font-family: var(--font-display);
            font-size: 2rem;
            font-weight: 700;
            color: var(--color-text-main);
            margin-bottom: 8px;
        }

        .profile-title {
            font-size: 0.9rem;
            color: var(--color-aqua-accent);
            font-weight: 600;
            margin-bottom: 16px;
            letter-spacing: 0.1em;
        }

        .profile-bio-large {
            font-size: 1rem;
            color: var(--color-text-soft);
            line-height: 1.9;
            margin-bottom: 24px;
        }

        .social-links {
            display: flex;
            gap: 14px;
        }

        .social-link {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: var(--color-green-light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-green-accent);
            font-size: 1.3rem;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .social-link:hover {
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 25px rgba(93, 184, 125, 0.3);
        }

        .social-link.twitter:hover { background: linear-gradient(135deg, #1da1f2, #0d8bd9); color: white; }
        .social-link.youtube:hover { background: linear-gradient(135deg, #ff0000, #cc0000); color: white; }
        .social-link.instagram:hover { background: linear-gradient(135deg, #f09433, #dc2743, #bc1888); color: white; }
        .social-link.twitch:hover { background: linear-gradient(135deg, #9146ff, #772ce8); color: white; }

        /* ========================================
           フッター
        ======================================== */
        footer {
            background: linear-gradient(135deg, var(--color-green-light) 0%, var(--color-aqua-light) 100%);
            padding: 50px 32px;
            text-align: center;
        }

        .footer-content {
            max-width: 1300px;
            margin: 0 auto;
        }

        .footer-logo {
            margin-bottom: 16px;
            height: 40px;
            width: auto;
        }

        .footer-logo img {
            height: 40px;
            width: auto;
        }

        .footer-nav {
            display: flex;
            justify-content: center;
            gap: 24px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .footer-nav a {
            color: var(--color-text-soft);
            text-decoration: none;
            font-size: 0.85rem;
            transition: opacity 0.3s;
        }

        .footer-nav a:hover {
            opacity: 0.7;
        }

        .footer-copyright {
            font-size: 0.8rem;
            color: var(--color-text-muted);
            line-height: 1.8;
        }

        /* 検索ボタン */
        .search-btn {
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: opacity 0.3s;
        }

        .search-btn:hover {
            opacity: 0.7;
        }

        .search-btn svg {
            width: 20px;
            height: 20px;
            fill: none;
            stroke: #fff;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: stroke 0.4s;
        }

        header.scrolled .search-btn svg {
            stroke: var(--color-text);
        }

        /* 検索モーダル */
        .search-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(8px);
            z-index: 10000;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            padding-top: 20vh;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
        }

        .search-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .search-box {
            background: #fff;
            border-radius: 16px;
            padding: 32px;
            width: 90%;
            max-width: 600px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            transform: translateY(-20px);
            transition: transform 0.3s;
        }

        .search-overlay.active .search-box {
            transform: translateY(0);
        }

        .search-box input {
            width: 100%;
            padding: 16px 20px;
            font-size: 1.1rem;
            border: 2px solid var(--color-aqua);
            border-radius: 12px;
            outline: none;
            font-family: inherit;
            box-sizing: border-box;
        }

        .search-box input:focus {
            border-color: var(--color-pink);
        }

        .search-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            color: #fff;
            font-size: 2rem;
            cursor: pointer;
        }

        /* ========================================
           スクロールトップボタン
        ======================================== */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--color-green-main), var(--color-aqua-main));
            color: var(--color-white);
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 8px 25px rgba(93, 184, 125, 0.4);
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.4s;
            z-index: 999;
        }

        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .scroll-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(93, 184, 125, 0.5);
        }

        /* ========================================
           レスポンシブ
        ======================================== */
        
        /* タブレット (1100px以下) */
        @media (max-width: 1100px) {
            /* ハンバーガーメニュー表示 */
            nav {
                display: none;
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 10px;
                z-index: 999;
                padding: 80px 20px;
                overflow-y: auto;
            }

            nav.active { 
                display: flex; 
            }

            .nav-item {
                width: 100%;
                max-width: 300px;
                text-align: center;
            }

            .nav-link {
                color: var(--color-text-main);
                text-shadow: none;
                font-size: 1.1rem;
                padding: 14px 24px;
                justify-content: center;
                width: 100%;
            }

            .nav-link:hover::before {
                opacity: 0;
                transform: scale(0);
            }

            .nav-link:hover {
                color: var(--color-green-accent);
            }

            .dropdown {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                border: none;
                background: var(--color-bg-soft);
                margin-top: 8px;
                border-radius: 16px;
                display: none;
                min-width: 100%;
            }

            .dropdown::before {
                display: none;
            }

            .nav-item.open .dropdown { 
                display: block; 
            }

            .dropdown-link {
                text-align: center;
                padding: 10px 20px;
            }

            .dropdown-link:hover {
                padding-left: 20px;
            }

            .mobile-menu-btn {
                display: block;
            }

            .search-btn svg {
                stroke: var(--color-text);
            }

            .header-inner {
                gap: 12px;
            }

            /* グリッド2カラムに */
            .articles-grid,
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 24px;
            }
        }

        /* タブレット小 (1024px以下) */
        @media (max-width: 1024px) {
            .profile-card {
                flex-direction: column;
                text-align: center;
                padding: 40px 30px;
                gap: 30px;
            }

            .social-links { 
                justify-content: center; 
            }

            .swiper-button-prev,
            .swiper-button-next {
                width: 50px !important;
                height: 50px !important;
            }

            .swiper-button-prev {
                left: 10px !important;
            }

            .swiper-button-next {
                right: 10px !important;
            }

            .main-container {
                padding: 80px 24px;
            }

            .popular-section {
                padding: 0 24px 80px;
            }

            .profile-section {
                padding: 80px 24px;
            }

            .gallery-container {
                padding: 0 24px;
            }

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

        /* スマホ横向き・タブレット小 (768px以下) */
        @media (max-width: 768px) {
            /* カーソル非表示 */
            .cursor-trail { 
                display: none; 
            }

            /* ヘッダー */
            .header-inner {
                padding: 0 20px;
            }

            .logo img {
                height: 28px;
            }

            header.scrolled .logo img {
                height: 24px;
            }

            /* ヒーロー */
            .hero-slider { 
                height: 40vh;
                min-height: 280px; 
            }

            .slide-title { 
                font-size: 1.8rem;
                margin-bottom: 12px;
            }

            .slide-subtitle { 
                font-size: 0.85rem;
                letter-spacing: 0.15em;
            }

            .swiper-button-prev,
            .swiper-button-next { 
                display: none !important; 
            }

            .swiper-pagination {
                bottom: 20px !important;
            }

            .swiper-pagination-bullet {
                width: 10px !important;
                height: 10px !important;
            }

            /* ティッカー */
            .news-ticker {
                padding: 16px 0;
            }

            .news-ticker::before {
                left: 12px;
                padding: 5px 12px;
                font-size: 0.7rem;
            }

            .ticker-wrapper { 
                padding-left: 100px; 
            }

            .ticker-item { 
                font-size: 0.8rem; 
                padding: 0 20px;
                gap: 8px;
            }

            .ticker-date {
                padding: 3px 8px;
                font-size: 0.7rem;
            }

            /* メインコンテンツ */
            .main-container {
                padding: 60px 16px;
            }

            .popular-section {
                padding: 0 16px 60px;
            }

            .profile-section {
                padding: 60px 16px;
            }

            .gallery-section { 
                padding: 60px 0; 
            }

            .gallery-container { 
                padding: 0 16px; 
            }

            /* セクションヘッダー */
            .section-header {
                margin-bottom: 40px;
            }

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

            .section-subtitle {
                font-size: 0.8rem;
            }

            .section-divider {
                width: 60px;
                height: 3px;
                margin-top: 16px;
            }

            /* 記事グリッド */
            .articles-grid,
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .article-card {
                border-radius: 16px;
            }

            .article-thumbnail {
                aspect-ratio: 16 / 9;
            }

            .article-body { 
                padding: 14px; 
            }

            .article-title { 
                font-size: 0.85rem;
                margin-bottom: 10px;
                -webkit-line-clamp: 2;
            }

            .article-category {
                top: 10px;
                left: 10px;
                padding: 4px 10px;
                font-size: 0.65rem;
            }

            .article-ribbon {
                top: 12px;
                right: -38px;
                padding: 4px 40px;
                font-size: 0.55rem;
            }

            .article-meta {
                font-size: 0.7rem;
                gap: 8px;
            }

            .article-meta .icon {
                width: 12px;
                height: 12px;
            }

            /* ギャラリー */
            .gallery-card {
                border-radius: 14px;
            }

            .gallery-info {
                padding: 14px;
            }

            .gallery-title {
                font-size: 0.85rem;
            }

            .gallery-tag {
                font-size: 0.65rem;
                padding: 3px 8px;
            }

            /* ページネーション */
            .pagination {
                margin-top: 40px;
                gap: 6px;
            }

            .pagination-btn,
            .pagination-arrow {
                width: 38px;
                height: 38px;
                font-size: 0.85rem;
            }

            .pagination-ellipsis {
                font-size: 1rem;
                padding: 0 2px;
            }

            /* プロフィール */
            .profile-card {
                padding: 30px 20px;
                border-radius: 24px;
            }

            .profile-avatar-large {
                width: 120px;
                height: 120px;
                font-size: 2.5rem;
            }

            .profile-name-large {
                font-size: 1.5rem;
            }

            .profile-title {
                font-size: 0.8rem;
                margin-bottom: 12px;
            }

            .profile-bio-large {
                font-size: 0.9rem;
                line-height: 1.8;
                margin-bottom: 20px;
            }

            .social-links {
                gap: 10px;
            }

            .social-link {
                width: 44px;
                height: 44px;
                font-size: 1.1rem;
            }

            /* フッター */
            footer {
                padding: 40px 16px;
            }

            .footer-logo,
            .footer-logo img {
                height: 32px;
            }

            .footer-copyright {
                font-size: 0.7rem;
            }

            /* スクロールトップ */
            .scroll-top {
                width: 48px;
                height: 48px;
                bottom: 20px;
                right: 20px;
                font-size: 1.2rem;
            }
        }

        /* スマホ (480px以下) */
        @media (max-width: 480px) {
            /* ヒーロー */
            .hero-slider {
                height: 35vh;
                min-height: 240px;
            }

            .slide-title { 
                font-size: 1.5rem; 
            }

            .slide-subtitle {
                font-size: 0.75rem;
                letter-spacing: 0.1em;
            }

            /* ナビ */
            .nav-link {
                font-size: 1rem;
                padding: 12px 20px;
            }

            /* グリッド - 2カラム維持 */
            .articles-grid,
            .gallery-grid { 
                gap: 10px; 
            }

            .article-body { 
                padding: 12px; 
            }

            .article-title { 
                font-size: 0.8rem;
                line-height: 1.5;
            }

            .article-category { 
                font-size: 0.6rem; 
                padding: 3px 8px;
                top: 8px;
                left: 8px;
            }

            .article-meta {
                display: none;
            }

            /* ページネーション */
            .pagination-btn,
            .pagination-arrow {
                width: 34px;
                height: 34px;
                font-size: 0.8rem;
            }

            /* 5以降を隠す */
            .pagination-btn:nth-child(n+7):not(:last-child) {
                display: none;
            }

            /* プロフィール */
            .profile-avatar-large {
                width: 100px;
                height: 100px;
                font-size: 2rem;
            }

            .profile-name-large {
                font-size: 1.3rem;
            }

            .profile-bio-large {
                font-size: 0.85rem;
            }

            .profile-bio-large br {
                display: none;
            }

            .social-link {
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }
        }

        /* 超小型スマホ (360px以下) */
        @media (max-width: 360px) {
            .header-inner {
                padding: 0 12px;
            }

            .logo img {
                height: 22px;
            }

            header.scrolled .logo img {
                height: 20px;
            }

            .slide-title {
                font-size: 1.3rem;
            }

            .main-container,
            .popular-section,
            .profile-section {
                padding-left: 12px;
                padding-right: 12px;
            }

            .gallery-container {
                padding: 0 12px;
            }

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

            .articles-grid,
            .gallery-grid {
                gap: 8px;
            }

            .article-body {
                padding: 10px;
            }

            .article-title {
                font-size: 0.75rem;
            }

            .pagination {
                gap: 4px;
            }

            .pagination-btn,
            .pagination-arrow {
                width: 30px;
                height: 30px;
                font-size: 0.75rem;
            }

            /* 4以降を隠す */
            .pagination-btn:nth-child(n+6):not(:last-child) {
                display: none;
            }
        }
    