/* Guilty Cam — AI Companion Insider | Pop Bright Edition v2 */
/* Reference: Claude Design × GPT Image 2 / 30万円 quality */
/* Last updated: 2026-05-15 */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,700;9..144,900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

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

:root {
    /* Bright pop palette */
    --bg-base: #fffefb;
    --bg-cream: #fff5ec;
    --bg-card: #ffffff;
    --bg-soft: #ffeee0;
    --bg-mint: #ecfdf5;
    --bg-sky: #eff6ff;

    /* Pop accents — vivid */
    --pink: #ff3d7f;
    --pink-deep: #e91e63;
    --pink-soft: #ffe0ec;
    --coral: #ff7849;
    --coral-soft: #ffe2d4;
    --gold: #fbbf24;
    --gold-soft: #fef3c7;
    --lavender: #a78bfa;
    --lavender-deep: #7c3aed;
    --lavender-soft: #ede9fe;
    --mint: #10b981;
    --mint-soft: #d1fae5;
    --sky: #38bdf8;
    --sky-soft: #e0f2fe;

    /* Text — never black */
    --text-dark: #1e1e3f;
    --text-mid: #4a4a6a;
    --text-light: #8989a3;
    --text-muted: #c4c4d4;

    /* Misc */
    --border: #f8e4d0;
    --border-light: #fdf1e3;
    --shadow-pink: 0 10px 40px -10px rgba(255, 61, 127, 0.25);
    --shadow-lavender: 0 10px 40px -10px rgba(124, 58, 237, 0.20);
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Yu Gothic UI", sans-serif;
    background: var(--bg-base);
    color: var(--text-dark);
    line-height: 1.75;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    background-image:
        radial-gradient(circle at 5% 5%, var(--pink-soft) 0%, transparent 25%),
        radial-gradient(circle at 95% 15%, var(--lavender-soft) 0%, transparent 25%),
        radial-gradient(circle at 90% 95%, var(--coral-soft) 0%, transparent 30%),
        radial-gradient(circle at 10% 90%, var(--mint-soft) 0%, transparent 25%);
    background-attachment: fixed;
}

/* ===== Decorative floating shapes ===== */
body::before, body::after {
    content: '';
    position: fixed;
    pointer-events: none;
    z-index: -1;
}

body::before {
    top: 15%;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--gold-soft), transparent);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

body::after {
    bottom: 20%;
    left: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, var(--pink-soft), transparent);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

/* ===== 18+ Banner ===== */
.age-banner {
    background: linear-gradient(135deg, var(--pink), var(--coral) 60%, var(--gold));
    color: white;
    text-align: center;
    padding: 11px 16px;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 16px rgba(255, 61, 127, 0.3);
    position: relative;
    overflow: hidden;
}

.age-banner::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer { 100% { left: 100%; } }

/* ===== Affiliate Strip ===== */
.aff-strip {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-light);
    color: var(--text-mid);
    text-align: center;
    padding: 11px 16px;
    font-size: 13px;
    font-weight: 500;
}

.aff-strip a {
    color: var(--lavender-deep);
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px dotted var(--lavender);
    padding-bottom: 1px;
}

.aff-strip a:hover { color: var(--pink); border-color: var(--pink); }

/* ===== Header ===== */
header {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 2px solid var(--border-light);
    padding: 22px 28px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.logo {
    font-family: 'Fraunces', serif;
    font-size: 34px;
    font-weight: 900;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: -1.2px;
    line-height: 1;
    position: relative;
    display: inline-block;
}

.logo::before {
    content: "💋";
    position: absolute;
    top: -6px;
    left: -32px;
    font-size: 24px;
    animation: pulse 2s ease-in-out infinite;
}

.logo::after {
    content: "✨";
    position: absolute;
    top: -10px;
    right: -22px;
    font-size: 20px;
    animation: sparkle 3s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(20deg) scale(1.3); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.logo-sub {
    color: var(--pink);
    font-size: 11px;
    font-weight: 800;
    display: block;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-top: 5px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    color: var(--text-mid);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.2s;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pink), var(--coral));
    border-radius: 2px;
    transition: width 0.3s;
}

nav a:hover { color: var(--pink); }
nav a:hover::after { width: 100%; }

/* ===== Language switch ===== */
.lang-switch {
    display: inline-flex;
    gap: 6px;
    background: var(--bg-cream);
    padding: 6px;
    border-radius: 30px;
    border: 2px solid var(--border);
    margin-left: 12px;
}
.lang-switch a {
    color: var(--text-mid);
    text-decoration: none;
    border: none;
    padding: 6px 14px;
    border-radius: 22px;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.2s;
}
.lang-switch a:hover { background: white; color: var(--pink); }
.lang-switch a.active {
    background: linear-gradient(135deg, var(--pink), var(--coral));
    color: white;
    box-shadow: 0 3px 10px -2px rgba(255, 61, 127, 0.4);
}

/* ===== Main ===== */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 24px 100px;
}

/* ===== Hero with image ===== */
.hero {
    position: relative;
    padding: 70px 50px;
    background: linear-gradient(135deg, #ffffff 0%, var(--bg-cream) 100%);
    border-radius: 40px;
    margin-bottom: 80px;
    border: 3px solid var(--border-light);
    box-shadow:
        0 20px 80px -20px rgba(255, 61, 127, 0.18),
        0 8px 30px -8px rgba(124, 58, 237, 0.10);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

@media (max-width: 880px) {
    .hero { grid-template-columns: 1fr; padding: 50px 30px; gap: 30px; }
    .hero-image { order: -1; }
}

.hero-text {
    position: relative;
    z-index: 2;
}

.hero-image {
    position: relative;
    z-index: 1;
}

.hero-image img {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center top;
    border-radius: 32px;
    box-shadow:
        0 20px 60px -10px rgba(255, 61, 127, 0.3),
        0 0 0 5px white,
        0 0 0 7px var(--pink);
    transform: rotate(2deg);
    transition: transform 0.4s;
    display: block;
}

.hero-image:hover img {
    transform: rotate(-1deg) scale(1.02);
}

/* Hero decorative stars */
.hero-image::before {
    content: '⭐';
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 32px;
    z-index: 3;
    animation: spin 6s linear infinite;
}

.hero-image::after {
    content: '💫';
    position: absolute;
    bottom: 10px;
    right: 0;
    font-size: 36px;
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

.hero h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(34px, 5.5vw, 56px);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 22px;
    color: var(--text-dark);
    letter-spacing: -1.5px;
}

.hero h1 .accent {
    background: linear-gradient(135deg, var(--pink), var(--coral) 70%, var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-style: italic;
    display: inline-block;
}

.hero p.lead {
    font-size: 18px;
    color: var(--text-mid);
    margin: 0 0 32px;
    font-weight: 500;
    line-height: 1.7;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.hero-meta {
    display: inline-flex;
    gap: 24px;
    color: var(--text-mid);
    font-size: 14px;
    flex-wrap: wrap;
    background: white;
    padding: 14px 22px;
    border-radius: 50px;
    border: 2px solid var(--border);
    box-shadow: 0 4px 16px -4px rgba(0,0,0,0.05);
}

.hero-meta strong {
    color: var(--pink-deep);
    font-weight: 800;
    font-size: 15px;
}

/* ===== Section ===== */
section { margin-bottom: 80px; }

h2 {
    font-family: 'Fraunces', serif;
    font-size: clamp(30px, 4.5vw, 44px);
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.1;
    display: flex;
    align-items: center;
    gap: 16px;
}

h2 .emoji {
    font-size: 0.85em;
    display: inline-block;
    animation: wiggle 2s ease-in-out infinite;
}

@keyframes wiggle {
    0%, 100% { transform: rotate(-3deg); }
    50% { transform: rotate(3deg); }
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-mid);
    margin-bottom: 36px;
    font-weight: 500;
}

h3 {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    color: var(--text-dark);
    margin: 28px 0 14px;
    font-weight: 800;
    letter-spacing: -0.4px;
}

h4 {
    font-size: 15px;
    color: var(--pink-deep);
    margin: 22px 0 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

p { margin-bottom: 18px; color: var(--text-mid); font-size: 16px; }

ul, ol { margin: 0 0 22px 26px; color: var(--text-mid); }

ul li, ol li { margin-bottom: 8px; font-size: 16px; }

ul li::marker { color: var(--pink); }

strong { color: var(--text-dark); font-weight: 700; }

a {
    color: var(--lavender-deep);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--lavender-soft);
    transition: all 0.2s;
}

a:hover {
    color: var(--pink);
    border-color: var(--pink);
}

/* ===== Service Cards with image ===== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.card {
    background: var(--bg-card);
    border: 2px solid var(--border-light);
    border-radius: 28px;
    padding: 0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.card-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center top;
    display: block;
    position: relative;
    overflow: hidden;
}
.card-image-pink { background: linear-gradient(135deg, #ffe0ec, #ffb8d1, #ff8aaa); }
.card-image-lavender { background: linear-gradient(135deg, #ede9fe, #c4b5fd, #a78bfa); }
.card-image-coral { background: linear-gradient(135deg, #ffe2d4, #ffb89a, #ff8c5a); }
.card-image-gold { background: linear-gradient(135deg, #fef3c7, #fcd34d, #fbbf24); }
.card-emoji {
    font-size: 72px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
    animation: floatBig 4s ease-in-out infinite;
}
@keyframes floatBig {
    0%,100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-12px) rotate(5deg); }
}
.card-image::before, .card-image::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
}
.card-image::before {
    width: 80px; height: 80px;
    top: -20px; left: -20px;
    background: rgba(255,255,255,0.5);
}
.card-image::after {
    width: 60px; height: 60px;
    bottom: -15px; right: -15px;
    background: rgba(255,255,255,0.4);
}

/* ===== Hero visual (no image) ===== */
.hero-visual {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1 / 1;
    border-radius: 32px;
    position: relative;
    background: linear-gradient(135deg, #ffe0ec 0%, #ede9fe 50%, #fef3c7 100%);
    box-shadow: 0 20px 60px -10px rgba(255, 61, 127, 0.25), 0 0 0 4px white, 0 0 0 6px var(--pink);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(2deg);
    transition: transform 0.4s;
}
.hero-visual:hover { transform: rotate(-1deg) scale(1.02); }
.visual-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.7;
}
.blob-1 { width: 200px; height: 200px; top: 10%; left: 15%; background: var(--pink); animation: floatBig 7s ease-in-out infinite; }
.blob-2 { width: 180px; height: 180px; bottom: 15%; right: 10%; background: var(--gold); animation: floatBig 9s ease-in-out infinite reverse; }
.blob-3 { width: 150px; height: 150px; top: 40%; right: 30%; background: var(--lavender); animation: floatBig 11s ease-in-out infinite; }
.visual-emoji {
    position: absolute;
    font-size: 38px;
    z-index: 2;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.1));
}
.emoji-1 { top: 12%; left: 18%; animation: floatBig 5s ease-in-out infinite; }
.emoji-2 { top: 18%; right: 15%; animation: sparkle 3s ease-in-out infinite; }
.emoji-3 { bottom: 18%; left: 14%; animation: floatBig 6s ease-in-out infinite reverse; }
.emoji-4 { bottom: 12%; right: 20%; animation: pulse 2.5s ease-in-out infinite; }
.visual-center {
    position: relative;
    z-index: 3;
    font-family: 'Fraunces', serif;
    font-weight: 900;
    font-size: 38px;
    color: var(--text-dark);
    text-align: center;
    line-height: 1.1;
    letter-spacing: -1px;
    background: rgba(255,255,255,0.85);
    padding: 24px 32px;
    border-radius: 24px;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 32px -8px rgba(0,0,0,0.1);
}

.card-body { padding: 24px 28px 28px; }

.card:nth-child(1) { border-top: 6px solid var(--pink); }
.card:nth-child(2) { border-top: 6px solid var(--lavender); }
.card:nth-child(3) { border-top: 6px solid var(--coral); }
.card:nth-child(4) { border-top: 6px solid var(--gold); }

.card:hover {
    transform: translateY(-10px) rotate(-0.5deg);
    box-shadow:
        0 25px 70px -15px rgba(255, 61, 127, 0.25),
        0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

.card-rank {
    display: inline-block;
    background: linear-gradient(135deg, var(--pink), var(--coral));
    color: white;
    padding: 6px 16px;
    border-radius: 24px;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 14px;
    letter-spacing: 0.8px;
    box-shadow: 0 4px 14px -2px rgba(255, 61, 127, 0.4);
}

.card:nth-child(2) .card-rank { background: linear-gradient(135deg, var(--lavender-deep), var(--lavender)); box-shadow: 0 4px 14px -2px rgba(124, 58, 237, 0.4); }
.card:nth-child(3) .card-rank { background: linear-gradient(135deg, var(--coral), var(--gold)); box-shadow: 0 4px 14px -2px rgba(255, 120, 73, 0.4); }
.card:nth-child(4) .card-rank { background: linear-gradient(135deg, var(--gold), var(--coral)); box-shadow: 0 4px 14px -2px rgba(251, 191, 36, 0.4); }

.card h3 {
    font-family: 'Fraunces', serif;
    font-size: 26px;
    margin: 0 0 8px;
    color: var(--text-dark);
    font-weight: 900;
}

.card .price {
    color: var(--pink-deep);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 15px;
}

.card .features {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    color: var(--text-mid);
    font-size: 14.5px;
}

.card .features li {
    padding: 10px 0;
    border-bottom: 1px dashed var(--border);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.card .features li:last-child { border-bottom: none; }

.card .features li::before {
    content: "✨";
    flex-shrink: 0;
}

.card-status {
    background: var(--bg-cream);
    color: var(--text-mid);
    padding: 12px 18px;
    border-radius: 14px;
    text-align: center;
    font-size: 13.5px;
    font-weight: 600;
    border: 1.5px solid var(--border);
}

/* ===== Trust block ===== */
.trust-block {
    background: linear-gradient(135deg, white 0%, var(--bg-cream) 100%);
    border: 3px solid var(--border-light);
    padding: 48px 40px;
    border-radius: 36px;
    margin: 50px 0;
    box-shadow: 0 15px 50px -10px rgba(255, 120, 73, 0.18);
    position: relative;
    overflow: hidden;
}

.trust-block::before {
    content: "❤️";
    position: absolute;
    top: 20px;
    right: 40px;
    font-size: 80px;
    opacity: 0.08;
    transform: rotate(15deg);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 28px;
}

.trust-item {
    background: white;
    padding: 24px 26px;
    border-radius: 22px;
    border: 2px solid var(--border-light);
    transition: all 0.25s;
    position: relative;
}

.trust-item:hover {
    transform: translateY(-5px) rotate(-1deg);
    border-color: var(--pink);
    box-shadow: 0 12px 32px -8px rgba(255, 61, 127, 0.25);
}

.trust-item-icon {
    font-size: 28px;
    margin-bottom: 8px;
    display: block;
}

.trust-item-num {
    font-family: 'Fraunces', serif;
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--pink), var(--coral) 60%, var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trust-item-label {
    color: var(--text-mid);
    font-size: 14px;
    margin-top: 10px;
    font-weight: 500;
}

/* ===== Tables ===== */
table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 24px 0;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    font-size: 14.5px;
    box-shadow: 0 6px 24px -8px rgba(0, 0, 0, 0.06);
    border: 2px solid var(--border-light);
}

th, td {
    padding: 14px 18px;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

th {
    background: linear-gradient(135deg, var(--lavender-soft), var(--pink-soft));
    color: var(--text-dark);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

td { color: var(--text-mid); }

tr:last-child td { border-bottom: none; }

tr:hover td { background: var(--bg-cream); }

/* ===== Boxes ===== */
.box {
    background: white;
    border: 2px solid var(--border-light);
    border-radius: 22px;
    padding: 30px 34px;
    margin: 26px 0;
    box-shadow: 0 4px 20px -6px rgba(0,0,0,0.05);
}

.box-warn {
    background: linear-gradient(135deg, #fff5f5, white);
    border-color: #fbd5d5;
    border-left: 6px solid var(--pink);
}

.box-info {
    background: linear-gradient(135deg, var(--lavender-soft), white);
    border-color: #d8d4f0;
    border-left: 6px solid var(--lavender-deep);
}

.box-success {
    background: linear-gradient(135deg, var(--mint-soft), white);
    border-color: #a7e3c4;
    border-left: 6px solid var(--mint);
}

/* ===== CTA Button ===== */
.cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--pink), var(--pink-deep));
    color: white;
    padding: 16px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 15.5px;
    letter-spacing: 0.4px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 28px -6px rgba(255, 61, 127, 0.5);
    border: none;
}

.cta::after {
    content: ' →';
    transition: transform 0.2s;
    display: inline-block;
}

.cta:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 14px 36px -6px rgba(255, 61, 127, 0.6);
    color: white;
    border-color: transparent;
}

.cta:hover::after { transform: translateX(4px); }

.cta-secondary {
    background: white;
    color: var(--lavender-deep);
    border: 2.5px solid var(--lavender);
    box-shadow: 0 6px 20px -4px rgba(124, 58, 237, 0.25);
}

.cta-secondary:hover {
    background: var(--lavender-deep);
    color: white;
    border-color: var(--lavender-deep);
    box-shadow: 0 12px 30px -4px rgba(124, 58, 237, 0.5);
}

/* ===== Footer ===== */
footer {
    background: linear-gradient(135deg, white 0%, var(--bg-cream) 100%);
    border-top: 3px solid var(--border-light);
    padding: 60px 28px 40px;
    color: var(--text-mid);
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: "🌸";
    position: absolute;
    top: 20px;
    left: 50px;
    font-size: 60px;
    opacity: 0.1;
    transform: rotate(-10deg);
}

footer::after {
    content: "💝";
    position: absolute;
    bottom: 30px;
    right: 50px;
    font-size: 50px;
    opacity: 0.1;
    transform: rotate(15deg);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width: 720px) {
    .footer-inner { grid-template-columns: 1fr 1fr; }
}

.footer-col h4 {
    color: var(--text-dark);
    font-size: 13.5px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--pink);
    display: inline-block;
}

.footer-col a {
    display: block;
    color: var(--text-mid);
    text-decoration: none;
    border-bottom: none;
    padding: 6px 0;
    font-size: 14.5px;
    font-weight: 600;
    transition: color 0.2s, transform 0.2s;
}

.footer-col a:hover {
    color: var(--pink);
    transform: translateX(4px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 2px dashed var(--border);
    padding-top: 28px;
    font-size: 13.5px;
    color: var(--text-light);
    text-align: center;
    line-height: 1.8;
    position: relative;
}

.footer-bottom strong {
    background: linear-gradient(135deg, var(--pink), var(--coral));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ===== Article ===== */
.article {
    max-width: 820px;
    margin: 0 auto;
    background: white;
    padding: 60px 56px;
    border-radius: 36px;
    border: 2px solid var(--border-light);
    box-shadow: 0 15px 50px -10px rgba(0, 0, 0, 0.06);
}

@media (max-width: 720px) {
    .article { padding: 40px 28px; }
}

.article h1 {
    font-family: 'Fraunces', serif;
    font-size: clamp(32px, 5.5vw, 48px);
    margin-bottom: 14px;
    color: var(--text-dark);
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.1;
}

.article-meta {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 36px;
    padding-bottom: 20px;
    border-bottom: 2px dashed var(--border);
    font-weight: 500;
}

.article p, .article ul, .article ol { font-size: 16.5px; line-height: 1.9; }

.article h2 {
    margin-top: 52px;
    font-size: 30px;
}

.article h3 {
    margin-top: 36px;
    color: var(--pink-deep);
    font-size: 22px;
}

.article hr {
    border: none;
    border-top: 2px dashed var(--border);
    margin: 44px 0;
}

/* ===== Misc ===== */
::selection {
    background: var(--pink);
    color: white;
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-cream); }
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--pink), var(--coral));
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, var(--pink-deep), var(--pink)); }

/* ===== Card CTA + Review Pages (2026-05-17 追加) ===== */
.card-cta { display: inline-block; margin-top: 14px; padding: 10px 16px; background: linear-gradient(135deg, var(--pink) 0%, var(--coral) 100%); color: white; text-decoration: none; border-radius: 8px; font-weight: 600; font-size: 14px; transition: transform 0.15s, box-shadow 0.15s; }
.card-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 14px rgba(0,0,0,0.12); }
.review-article { max-width: 820px; margin: 0 auto; padding: 40px 24px 80px; }
.review-article h1 { font-size: 34px; line-height: 1.3; margin-bottom: 8px; }
.review-article h2 { margin-top: 48px; font-size: 28px; }
.review-article h3 { margin-top: 32px; color: var(--pink-deep); font-size: 20px; }
.review-meta { font-size: 13px; color: #666; border-left: 4px solid var(--pink); padding: 12px 16px; background: var(--bg-cream); border-radius: 0 8px 8px 0; margin: 16px 0 24px; }
.review-table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 15px; }
.review-table th, .review-table td { padding: 10px 14px; border-bottom: 1px solid var(--border); text-align: left; }
.review-table th { background: var(--bg-cream); font-weight: 700; }
.cta-block { margin: 40px 0; padding: 24px; background: linear-gradient(135deg, rgba(255,182,193,0.15), rgba(255,160,122,0.15)); border-radius: 12px; border: 1px solid var(--border); }
.cta-block h3 { margin: 0 0 8px; color: var(--pink-deep); }
.box-info { margin: 16px 0; padding: 16px 20px; background: #fff8f4; border-left: 4px solid var(--coral); border-radius: 0 8px 8px 0; }

/* =========================================================
   ✨ LUXURY POLISH LAYER v6 (2026-05-17)
   The New York Times Wirecutter × Apple Newsroom 寄せ
   - Rose-gold / champagne accent
   - Editorial serif hierarchy
   - Generous whitespace
   - Refined shadows + subtle glassmorphism
   - Kawaii brand 維持 (上書きせず加算)
   ========================================================= */

:root {
    /* Grok-audited luxury palette (Wirecutter × Apple Newsroom) */
    --gold-rose: #b76e79;
    --pink-muted: #c9a7a7;
    --gold-champagne: #c9a063;
    --ink: #2c2c2c;
    --ink-soft: #4a4a4a;
    --ivory: #f8f6f3;
    --ivory-warm: #ede9e3;
    --paper: #fdfcf9;
    --line-soft: #d4cfc6;
    --shadow-lux: 0 8px 30px rgba(0,0,0,.05), 0 1px 2px rgba(44,44,44,.04);
    --shadow-lux-hover: 0 16px 50px -10px rgba(0,0,0,.10), 0 2px 6px rgba(44,44,44,.06);
}

/* Premium badge — append-only class */
.lux-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--gold-champagne), var(--gold-rose));
    color: white;
    border-radius: 999px;
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 14px -4px rgba(183,110,121,.4);
}

/* Editorial article — for review pages opting into luxury */
.lux-article {
    max-width: 760px;
    margin: 0 auto;
    background: var(--paper);
    padding: 80px 72px;
    border-radius: 4px;
    border: 1px solid rgba(26,26,46,.06);
    box-shadow: var(--shadow-lux);
}

@media (max-width: 720px) {
    .lux-article { padding: 48px 28px; }
}

.lux-article h1 {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: clamp(36px, 5vw, 52px);
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: var(--ink);
    margin-bottom: 24px;
}

.lux-article .kicker {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-rose);
    margin-bottom: 16px;
    display: block;
}

.lux-article .byline {
    font-family: 'Fraunces', serif;
    font-style: italic;
    color: var(--ink-soft);
    font-size: 15px;
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(26,26,46,.08);
}

.lux-article p {
    font-family: 'Fraunces', serif;
    font-size: 18px;
    line-height: 1.75;
    color: var(--ink-soft);
}

.lux-article p:first-of-type::first-letter {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 64px;
    float: left;
    line-height: 0.9;
    margin: 6px 12px 0 0;
    color: var(--gold-rose);
}

/* Premium card — minimal */
.lux-card {
    background: var(--paper);
    border: 1px solid rgba(26,26,46,.08);
    border-radius: 4px;
    padding: 40px 36px;
    box-shadow: var(--shadow-lux);
    transition: box-shadow .3s ease, transform .3s ease;
}

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

.lux-card h3 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 12px;
}

/* Refined CTA — alongside existing .cta */
.cta-lux {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 36px;
    background: var(--ink);
    color: var(--ivory);
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
    border-radius: 9999px;
    border: 1px solid var(--ink);
    box-shadow: 0 8px 24px -8px rgba(44,44,44,.3);
    transition: all .4s cubic-bezier(.4,0,.2,1);
}

.cta-lux:hover {
    background: var(--pink-muted);
    border-color: var(--pink-muted);
    color: var(--ink);
    box-shadow: 0 12px 32px -8px rgba(201,167,167,.4);
    transform: translateY(-2px);
}

.cta-lux-outline {
    background: transparent;
    color: var(--ink);
    border-color: rgba(26,26,46,.2);
    box-shadow: none;
}

.cta-lux-outline:hover {
    background: var(--ink);
    color: var(--paper);
    border-color: var(--ink);
}

/* Pull-quote — editorial */
.pull-quote {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-style: italic;
    font-size: 28px;
    line-height: 1.4;
    color: var(--ink);
    padding: 32px 0;
    margin: 48px 0;
    border-top: 1px solid var(--gold-rose);
    border-bottom: 1px solid var(--gold-rose);
    text-align: center;
    letter-spacing: -0.5px;
}

.pull-quote::before {
    content: '"';
    display: block;
    font-size: 64px;
    line-height: 0.5;
    color: var(--gold-rose);
    margin-bottom: 16px;
}

/* Stat block — premium */
.stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1px;
    background: rgba(26,26,46,.08);
    border: 1px solid rgba(26,26,46,.08);
    margin: 48px 0;
}

.stat-item {
    background: var(--paper);
    padding: 32px 28px;
    text-align: center;
}

.stat-num {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 44px;
    line-height: 1;
    color: var(--gold-rose);
    letter-spacing: -1px;
    margin-bottom: 8px;
}

.stat-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Luxury hero — minimal editorial */
.lux-hero {
    padding: 120px 40px 80px;
    text-align: center;
    background: var(--ivory);
    border-bottom: 1px solid rgba(26,26,46,.08);
}

.lux-hero .kicker {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold-rose);
    margin-bottom: 24px;
}

.lux-hero h1 {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-size: clamp(48px, 7vw, 84px);
    line-height: 1.05;
    letter-spacing: -2px;
    color: var(--ink);
    max-width: 900px;
    margin: 0 auto 32px;
}

.lux-hero h1 em {
    font-style: italic;
    color: var(--gold-rose);
}

.lux-hero .deck {
    font-family: 'Fraunces', serif;
    font-weight: 400;
    font-style: italic;
    font-size: 22px;
    line-height: 1.5;
    color: var(--ink-soft);
    max-width: 640px;
    margin: 0 auto 48px;
}

/* Editorial table */
.lux-table {
    width: 100%;
    border: none;
    border-collapse: collapse;
    background: var(--paper);
    box-shadow: var(--shadow-lux);
    margin: 48px 0;
    border-radius: 0;
}

.lux-table th, .lux-table td {
    padding: 20px 24px;
    text-align: left;
    border-bottom: 1px solid rgba(26,26,46,.06);
    font-size: 15px;
}

.lux-table th {
    background: var(--ivory);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--ink);
    border-bottom: 2px solid var(--gold-rose);
}

.lux-table td { font-family: 'Fraunces', serif; color: var(--ink-soft); }

.lux-table tr:last-child td { border-bottom: none; }
.lux-table tr:hover td { background: rgba(183,110,121,.03); }

/* Reduced motion for luxury context */
@media (prefers-reduced-motion: reduce) {
    .lux-card, .cta-lux, .lux-table tr { transition: none; }
}
