        * { margin: 0; padding: 0; box-sizing: border-box; }
        body {
            font-family: 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            background: #f7f8fa; color: #2d3748; min-height: 100vh; display: flex; flex-direction: column;
            -webkit-font-smoothing: antialiased;
        }

        /* ========== HEADER ========== */
        .global-header {
            background: #1e293b;
            padding: 0 20px;
            position: sticky; top: 0; z-index: 100;
        }
        .global-header-inner {
            max-width: 1100px; margin: 0 auto;
            display: flex; align-items: center; justify-content: space-between;
            height: 56px;
        }
        .logo a {
            font-size: 1.35rem; font-weight: 900; text-decoration: none;
            color: #fff; letter-spacing: -0.5px;
        }
        .logo .tagline {
            font-size: 0.6rem; font-weight: 500; color: #94a3b8;
            display: block; margin-top: -1px; letter-spacing: 0.3px;
        }
        .global-nav { display: flex; gap: 4px; align-items: center; }
        .global-nav a {
            font-size: 0.85rem; color: #94a3b8; text-decoration: none;
            padding: 6px 14px; border-radius: 6px; transition: all 0.2s; font-weight: 500;
        }
        .global-nav a:hover {
            color: #fff; background: rgba(255,255,255,0.08); text-decoration: none;
        }
        .global-nav a.active {
            color: #fff; background: rgba(194,37,92,0.25); font-weight: 600;
        }
        .nav-cta {
            font-size: 0.8rem; font-weight: 600; color: #fff !important;
            background: #c2255c !important;
            padding: 7px 18px !important; border-radius: 20px !important;
            box-shadow: 0 2px 6px rgba(194,37,92,0.3);
            transition: all 0.2s !important;
        }
        .nav-cta:hover {
            background: #a61e4d !important;
            box-shadow: 0 4px 12px rgba(194,37,92,0.4) !important;
            transform: translateY(-1px); text-decoration: none !important;
        }

        /* ========== MAIN ========== */
        .main-content { flex: 1; }

        /* ========== FOOTER ========== */
        .global-footer {
            background: #1e293b;
            padding: 44px 20px 28px; margin-top: 48px;
        }
        .global-footer-inner {
            max-width: 1100px; margin: 0 auto;
            display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px;
        }
        .footer-brand .footer-logo {
            font-size: 1.2rem; font-weight: 900; color: #fff; margin-bottom: 8px;
        }
        .footer-brand p {
            font-size: 0.8rem; color: #94a3b8; line-height: 1.6;
        }
        .footer-col h4 {
            font-size: 0.7rem; font-weight: 700; color: #64748b;
            text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 14px;
        }
        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 10px; }
        .footer-col ul a {
            font-size: 0.85rem; color: #94a3b8; text-decoration: none; transition: color 0.2s;
        }
        .footer-col ul a:hover { color: #fff; text-decoration: none; }
        .footer-bottom {
            max-width: 1100px; margin: 28px auto 0; padding-top: 20px;
            border-top: 1px solid #334155;
            display: flex; justify-content: space-between; align-items: center;
        }
        .footer-bottom .copyright { font-size: 0.75rem; color: #64748b; }
        .footer-bottom .footer-legal a {
            font-size: 0.75rem; color: #64748b; text-decoration: none; margin-left: 16px;
        }
        .footer-bottom .footer-legal a:hover { color: #94a3b8; text-decoration: none; }

        /* ========== 共通ユーティリティ ========== */
        a { color: #c2255c; text-decoration: none; }
        a:hover { text-decoration: underline; }

        .container { max-width: 1100px; margin: 0 auto; padding: 24px 20px; }

        .breadcrumb { font-size: 0.85rem; color: #94a3b8; margin-bottom: 20px; }
        .breadcrumb a { color: #94a3b8; }
        .breadcrumb a:hover { color: #c2255c; }

        .section {
            background: #fff; border-radius: 10px; padding: 24px; margin-bottom: 20px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.06);
        }
        .section h2 {
            font-size: 1.2rem; margin-bottom: 16px; color: #1e293b;
            border-bottom: 2px solid #f1f5f9; padding-bottom: 8px;
        }

        .badge {
            display: inline-block; font-size: 0.72rem; padding: 3px 10px;
            border-radius: 20px; margin-right: 4px; margin-bottom: 4px; font-weight: 600;
        }
        .badge--type { background: #fdf2f8; color: #c2255c; }
        .badge--featured { background: #fefce8; color: #a16207; }
        .badge--tag { background: #f1f5f9; color: #64748b; }
        .badge--service { background: #ecfdf5; color: #059669; }
        .badge--genre { background: #fdf2f8; color: #c2255c; }
        .badge--special { background: #fefce8; color: #a16207; }
        .badge--bucket { background: #fef2f2; color: #dc2626; font-weight: 700; }

        .btn-primary {
            display: inline-block; padding: 11px 24px; border-radius: 8px;
            font-size: 0.9rem; font-weight: 700;
            background: #c2255c; color: #fff;
            box-shadow: 0 2px 6px rgba(194,37,92,0.2); transition: all 0.2s;
        }
        .btn-primary:hover {
            background: #a61e4d;
            box-shadow: 0 4px 12px rgba(194,37,92,0.3); transform: translateY(-1px); text-decoration: none;
        }
        .btn-outline {
            display: inline-block; padding: 10px 22px; border-radius: 8px;
            font-size: 0.9rem; font-weight: 600;
            border: 1px solid #cbd5e1; color: #475569;
            transition: all 0.2s;
        }
        .btn-outline:hover {
            border-color: #c2255c; color: #c2255c; background: #fdf2f8; text-decoration: none;
        }

        /* ========== ページ下部CTA ========== */
        .final-cta {
            background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
            border-radius: 12px; padding: 32px 28px; margin-top: 28px; position: relative; overflow: hidden;
        }
        .final-cta .final-cta-logo {
            position: absolute; top: 16px; right: 20px; height: 48px; object-fit: contain; opacity: 0.15;
        }
        .final-cta h3 { color: #fff; font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
        .final-cta p { color: #94a3b8; font-size: 0.85rem; margin-bottom: 20px; line-height: 1.6; }
        .final-cta-buttons { display: flex; flex-wrap: wrap; gap: 10px; }
        .final-cta-btn {
            display: inline-flex; align-items: center; justify-content: center;
            padding: 11px 24px; border-radius: 8px;
            font-size: 0.88rem; font-weight: 700; text-decoration: none; transition: all 0.2s;
        }
        .final-cta-btn:hover { text-decoration: none; transform: translateY(-1px); }
        .final-cta-btn--primary {
            background: #c2255c; color: #fff;
            box-shadow: 0 2px 8px rgba(194,37,92,0.3);
        }
        .final-cta-btn--primary:hover { background: #a61e4d; box-shadow: 0 4px 14px rgba(194,37,92,0.4); }
        .final-cta-btn--secondary {
            border: 1px solid rgba(255,255,255,0.2); color: #cbd5e1;
        }
        .final-cta-btn--secondary:hover { background: rgba(255,255,255,0.08); color: #fff; }
        .final-cta-btn--text {
            color: #64748b; font-weight: 500; padding: 8px 12px;
        }
        .final-cta-btn--text:hover { color: #94a3b8; }

        /* ========== 年齢確認バナー ========== */
        .age-notice {
            background: #0f172a; color: #64748b;
            font-size: 0.72rem; text-align: center;
            padding: 5px 16px; letter-spacing: 0.2px;
        }

        /* ========== レスポンシブ ========== */
        @media (max-width: 768px) {
            .global-header-inner { height: auto; padding: 10px 0; flex-wrap: wrap; gap: 8px; }
            .global-nav { width: 100%; justify-content: center; }
            .nav-cta { display: none; }
            .logo .tagline { display: none; }

            .global-footer-inner { grid-template-columns: 1fr; gap: 24px; }
            .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

            .container { padding: 16px 12px; }

            .section { padding: 16px; }
            .section h2 { font-size: 1.05rem; }

            .btn-primary, .btn-outline { padding: 9px 16px; font-size: 0.85rem; }

            .breadcrumb { font-size: 0.78rem; }
        }

/* ========== Ranking Block (shared partial) ========== */
        /* ========== Ranking Block ========== */
        .ranking-block { margin-bottom: 32px; }
        .ranking-block-head h2 {
            font-size: 1.15rem; font-weight: 800; color: #1e293b; margin-bottom: 4px;
            display: flex; align-items: center; gap: 8px;
        }
        .ranking-block-sub { font-size: 0.82rem; color: #64748b; margin-bottom: 14px; }
        .ranking-block-list { display: flex; flex-direction: column; gap: 8px; }
        .ranking-block-item {
            display: flex; align-items: center; gap: 12px;
            background: #fff; border-radius: 10px; padding: 14px 18px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.05); border: 1px solid #f1f5f9;
            text-decoration: none; color: inherit; transition: all 0.2s;
        }
        .ranking-block-item:hover {
            box-shadow: 0 4px 14px rgba(0,0,0,0.08); transform: translateY(-1px);
            text-decoration: none; border-color: #fce7f3;
        }
        .rb-rank {
            width: 28px; height: 28px; border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-size: 0.82rem; font-weight: 900; flex-shrink: 0;
            background: #f1f5f9; color: #475569;
        }
        .ranking-block-item--1 .rb-rank { background: linear-gradient(135deg, #fbbf24, #f59e0b); color: #fff; }
        .ranking-block-item--2 .rb-rank { background: linear-gradient(135deg, #cbd5e1, #94a3b8); color: #fff; }
        .ranking-block-item--3 .rb-rank { background: linear-gradient(135deg, #d97706, #b45309); color: #fff; }
        .rb-logo {
            width: 40px; height: 28px; object-fit: contain; flex-shrink: 0;
            background: #f8fafc; border-radius: 6px; padding: 2px;
        }
        .rb-body { flex: 1; min-width: 0; }
        .rb-name { display: block; font-size: 0.9rem; font-weight: 700; color: #1e293b; }
        .rb-summary { display: block; font-size: 0.78rem; color: #64748b; line-height: 1.4; margin-top: 2px; }
        .rb-arrow { font-size: 0.9rem; color: #cbd5e1; flex-shrink: 0; }
        .ranking-block-item:hover .rb-arrow { color: #c2255c; }
        .ranking-block-more {
            display: block; text-align: center; margin-top: 12px;
            font-size: 0.85rem; font-weight: 600; color: #c2255c; text-decoration: none;
        }
        .ranking-block-more:hover { text-decoration: underline; }
