@charset "UTF-8";

/* =========================================
   Variable Definitions (Color Palette)
   Adjusted based on the reference site tone
   ========================================= */
:root {
    --primary-color: #009FE8; /* Trustworthy light blue */
    --accent-color: #FF8C00;  /* Orange for conversion */
    --accent-hover: #FFAD44;
    --text-color: #333333;
    --text-light: #666666;
    --bg-light: #F4F9FC;      /* Very light blue-ish gray */
    --bg-white: #FFFFFF;
    
    --gold: #C5A059;
    --gold-gradient: linear-gradient(135deg, #F1E2BE 0%, #D4AF37 50%, #C5A059 100%);
    --silver: #A0A0A0;
    --silver-gradient: linear-gradient(135deg, #E0E0E0 0%, #B0B0B0 50%, #909090 100%);
    --bronze: #CD7F32;
    --bronze-gradient: linear-gradient(135deg, #EAC198 0%, #CD7F32 50%, #A0522D 100%);
}

/* =========================================
   Reset & Base Styles
   ========================================= */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-light);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 80px; /* Space for fixed footer */
    font-size: 16px; /* Explicit base size */
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

/* Placeholder image style (Can be removed in production) */
.placeholder {
    background-color: #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: cover;
}

/* =========================================
   Common Components
   ========================================= */
.lp-container {
    max-width: 800px; /* Max width to prevent stretching on PC */
    margin: 0 auto;
    background-color: var(--bg-white);
    box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.section-title {
    font-size: 26px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.4;
    color: var(--text-color);
}

.section-sub-title {
    display: block;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 5px;
}

.section-desc {
    text-align: center;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 30px;
}

/* CTA Button */
.cta-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 340px;
    margin: 20px auto 0;
    padding: 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: linear-gradient(to right, #FF8C00, #FFAA00);
    color: #fff;
    border-bottom: 4px solid #D97700;
}

.cta-button.primary:hover {
    transform: translateY(2px);
    border-bottom: 2px solid #D97700;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Shine Animation */
.cta-button.shine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { left: -50%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

.cta-button.secondary {
    background: #009FE8;
    color: #fff;
    border-bottom: 4px solid #007bb5;
    font-size: 16px;
    padding: 15px;
}

/* =========================================
   Header
   ========================================= */
.lp-header {
    background: rgba(255, 255, 255, 0.95);
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

.header-logo {
    font-size: 18px;
    font-weight: 900;
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
}

.header-cta {
    background-color: var(--accent-color);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px; /* Bumped from 12px */
    font-weight: 700;
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    padding: 40px 20px 20px;
    background: linear-gradient(180deg, #E6F4FB 0%, #FFFFFF 100%);
    text-align: center;
    position: relative;
}

.badges {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
}

.badge-year {
    background: #333;
    color: #fff;
    padding: 2px 10px;
    font-size: 13px; /* Bumped from 12px */
    font-weight: bold;
}

.badge-cat {
    background: #fff;
    border: 1px solid #333;
    color: #333;
    padding: 2px 10px;
    font-size: 13px; /* Bumped from 12px */
    font-weight: bold;
}

.hero-title {
    font-size: 28px;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 15px;
    color: #222;
}

.highlight-text {
    color: var(--primary-color);
    background: linear-gradient(transparent 70%, #BFEFFF 70%);
}

.hero-sub {
    font-size: 14px;
    color: #555;
    margin-bottom: 25px;
}

.hero-image-area {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}

.hero-image-area img {
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    width: 100%;
}

/* Bubble Animation */
.floating-bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 159, 232, 0.2);
    z-index: -1;
}
.b1 { width: 60px; height: 60px; top: -10px; left: -10px; animation: float 4s ease-in-out infinite; }
.b2 { width: 40px; height: 40px; bottom: -10px; right: -5px; animation: float 5s ease-in-out infinite reverse; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-bridge {
    background: #009FE8;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0,159,232,0.3);
}

/* =========================================
   Pain Points Section
   ========================================= */
.pain-points {
    /* Reduced top/bottom padding to align with other sections */
    padding: 36px 20px;
    background-color: #fff;
}
.pain-message p { text-align: center; color: #555; font-size: 15px; }
.pain-message .highlight-em {
    color: var(--accent-color);
    font-weight: 900;
    display: block; /* Block display for emphasis */
    font-size: 22px; /* Larger for PC */
    margin-top: 8px;
    line-height: 1.2;
}
@media (max-width: 600px) {
    .pain-message .highlight-em { font-size: 18px; }
}

/* Section Header (Centered + Illustration on sides) */
.section-header {
    position: relative;
    width: 100%;
    max-width: 760px;
    margin: 0 auto 10px;
    display: flex;
    flex-direction: column; /* Vertical for mobile */
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    text-align: center;
    gap: 12px;
}
.section-header .section-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}
.section-header .worry-ill {
    position: static; /* Changed to static flow */
    height: 56px; /* Smaller */
    width: auto;
    max-height: 80px;
    opacity: 0.95;
    pointer-events: none;
    z-index: 0;
    flex-shrink: 0;
}
.section-header .worry-ill.small { height: 48px; max-height: 64px; }

@media (min-width: 600px) {
    /* Tablet+: Horizontal alignment */
    .section-header {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 24px;
        padding: 0 2rem;
    }
    .section-header .section-text { text-align: center; max-width: 520px; }
    .section-header .worry-ill { height: 64px; }
    .section-header .worry-ill.small { height: 56px; }
}

@media (max-width: 600px) {
    /* SP: Adjusted for 1.5x size */
    .section-header { padding: 0 1rem; overflow: visible; }
    .section-header .worry-ill {
        display: block;
        position: absolute;
        top: 10px; /* Lowered for visibility */
        height: 72px; /* 1.5x: 48px -> 72px */
        max-height: 88px;
        width: auto;
        opacity: 0.95;
        transform: none;
        z-index: 0;
    }
    /* Move inward (closer to text) */
    .section-header .worry-ill.left { left: 36px; }
    .section-header .worry-ill.right { right: 36px; }
    .section-header .section-text { z-index: 1; }
}
/* ---------- Section Title Underline (Orange) ---------- */
.pain-points .section-header { overflow: visible; }
.pain-points .section-header .section-title {
    display: inline-block;
    /* Use text-decoration for simple underline */
    text-decoration: underline;
    text-decoration-color: var(--accent-color);
    text-decoration-thickness: 6px; /* Slightly thinner */
    text-underline-offset: 4px; /* Closer to text */
    text-decoration-skip-ink: none;
    padding-bottom: 0;
}
@media (max-width: 600px) {
    .pain-points .section-header .section-title {
        /* Align mobile with desktop */
        text-decoration-thickness: 6px;
        text-underline-offset: 3px;
    }
}.pain-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 30px;
}

/* 2 Columns for Tablet+ */
@media (min-width: 600px) {
    .pain-list {
        grid-template-columns: 1fr 1fr;
    }
    /* PC: Color alternation for visibility */
    .pain-list .pain-card:nth-child(odd) {
        background: #F4FBFF; /* Left: slightly blue */
    }
    .pain-list .pain-card:nth-child(even) {
        background: #FFF7E9; /* Right: slightly warm */
    }
}

.pain-card {
    background: #F8F8F8; /* Fallback for mobile */
    padding: 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s, background-color 0.2s;
}

.pain-card:hover {
    transform: translateY(-3px);
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.pain-icon {
    font-size: 32px;
    background: #fff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    overflow: hidden;
    /* ★追加: Flexコンテナ内で押しつぶされないように固定 */
    flex-shrink: 0; 
}
.pain-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* border-radiusは親(.pain-icon)のoverflow:hiddenで効くので削除してもOKですが念のため */
    border-radius: 50%; 
}

@media (max-width: 600px) {
    /* SPサイズ調整 */
    .pain-icon { width: 52px; height: 52px; }
}

.pain-text h3 {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--primary-color);
}

.pain-text p {
    font-size: 14px; /* Bumped from 13px */
    line-height: 1.4;
    color: #666;
}

.pain-message {
    text-align: center;
    margin-top: 40px;
    background: #FFF9E5;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #FFEDCC;
}

/* =========================================
   Whole House Solution
   ========================================= */
.whole-house-solution {
    /* Reduced padding to match density */
    padding: 36px 20px 24px;
    background: linear-gradient(180deg, #fff 0%, #F8FBFE 100%);
    position: relative;
    overflow: hidden;
}

/* Header stacked on all sizes */
.whole-house-solution .section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 0 1rem;
}
@media (min-width: 768px) {
    .whole-house-solution .section-title {
        white-space: nowrap; /* PC only */
        word-break: keep-all;
    }
}
.whole-house-solution .section-desc {
    font-size: 14px; /* Bumped from 13px */
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Orange underline for whole-house-solution */
.whole-house-solution .section-header .section-title {
    display: inline-block;
    text-decoration: underline;
    text-decoration-color: var(--accent-color);
    text-decoration-thickness: 6px;
    text-underline-offset: 4px;
    text-decoration-skip-ink: none;
    padding-bottom: 0;
}
@media (max-width: 600px) {
    .whole-house-solution .section-header .section-title {
        text-decoration-thickness: 6px;
        text-underline-offset: 3px;
    }
}

/* =========================================
   Checkpoints (Grid Layout)
   ========================================= */
.checkpoints {
    padding: 60px 20px;
    background-color: #E6F4FB;
}
.point-grid {
    display: grid;
    gap: 20px;
    margin-top: 30px;
    grid-template-columns: 1fr;
}
@media (min-width: 600px) {
    .point-grid {
        grid-template-columns: 1fr 1fr;
    }
}
.point-item {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    position: relative;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    border: 1px solid #fff;
    transition: all 0.3s;
}
.point-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}
.point-num {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 40px;
    font-weight: 900;
    color: rgba(0, 186, 255, 0.1);
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
}
.point-item h3 {
    font-size: 18px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 8px;
    margin-bottom: 12px;
    display: inline-block;
    color: var(--text-color);
}
.point-item p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}


/* Solution Comparison Visuals */
.solution-comparison {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin: 40px auto 60px;
    max-width: 900px; /* Slightly wider */
}

@media (min-width: 768px) {
    .solution-comparison {
        flex-direction: row;
        align-items: stretch;
        justify-content: center;
        gap: 0;
    }
}

/* Compare Card Common */
.compare-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    width: 100%;
    max-width: 380px;
    overflow: hidden;
    position: relative;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

.compare-card .card-label {
    text-align: center;
    padding: 8px;
    font-size: 13px;
    font-weight: bold;
    color: #666;
    background: #f0f0f0;
}

.compare-card .img-container {
    width: 100%;
    height: 200px;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.compare-card .img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.compare-card:hover .img-container img {
    transform: scale(1.05);
}

.compare-card .card-body {
    padding: 24px;
    flex-grow: 1;
}

.compare-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    text-align: center;
}

.compare-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
    text-align: center;
}

/* Partial Solution Style */
.compare-card.partial {
    opacity: 0.9;
    transform: scale(0.95);
    border-color: #ddd;
}
.compare-card.partial h3 { color: #888; }
.d-list {
    list-style: none;
    font-size: 14px; /* Bumped from 13px */
    color: #888;
    background: #f9f9f9;
    padding: 10px;
    border-radius: 8px;
}
.d-list li { margin-bottom: 5px; }

/* Total Solution Style (Emphasized) */
.compare-card.total {
    border: 2px solid var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 159, 232, 0.15);
    z-index: 2;
}

@media (min-width: 768px) {
    .compare-card.total {
        transform: scale(1.05); /* Larger on PC */
    }
}

.compare-card.total .card-label {
    background: var(--primary-color);
    color: #fff;
    letter-spacing: 1px;
}
.compare-card.total h3 {
    color: var(--primary-color);
    font-weight: 900;
}
.check-list {
    list-style: none;
    font-size: 14px;
    font-weight: bold;
    color: #333;
    background: #E6F4FB;
    padding: 15px;
    border-radius: 8px;
}
.check-list li {
    margin-bottom: 5px;
    color: var(--primary-color);
}

/* Placeholder Decoration */
.placeholder-img-shower {
    filter: grayscale(80%);
}

/* Ripple Effect */
.ripple-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
    animation: ripple 3s infinite;
    pointer-events: none;
}
@keyframes ripple {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

/* Evolution Arrow */
.evolution-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 15px;
    z-index: 1;
    color: var(--primary-color);
}
.evo-text {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 5px;
    writing-mode: horizontal-tb;
}
.arrow-shape {
    width: 2px;
    height: 40px;
    background: var(--primary-color);
    position: relative;
}
.arrow-shape::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -4px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 8px solid var(--primary-color);
}

@media (min-width: 768px) {
    .evolution-arrow {
        flex-direction: column;
        width: 60px;
    }
    .arrow-shape {
        width: 60px;
        height: 2px;
    }
    .arrow-shape::after {
        right: 0;
        left: auto;
        bottom: -4px;
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
        border-left: 8px solid var(--primary-color);
        border-right: none;
    }
}

/* Desktop specific: balance compare-cards and compact the arrow */
@media (min-width: 1024px) {
    .solution-comparison {
        max-width: 760px;
        gap: 20px;
        padding: 0 0;
        justify-content: center;
    }

    .compare-card.partial { flex: 0 0 320px; max-width: 320px; }
    .compare-card.total { flex: 0 0 360px; max-width: 360px; }

    .compare-card.partial, .compare-card.total { transform: none; }

    .solution-comparison .evolution-arrow {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        width: 40px;
        margin: 0 0;
    }
    .solution-comparison .evolution-arrow .evo-text { display: none; }
    .solution-comparison .evolution-arrow .arrow-shape { width: 40px; height: 2px; }
    .solution-comparison .evolution-arrow .arrow-shape::after {
        right: -6px;
        left: auto;
        bottom: -4px;
        border-left: 6px solid var(--primary-color);
        border-top: 5px solid transparent;
        border-bottom: 5px solid transparent;
        border-right: none;
    }
}

/* Merit 3 Columns */
.merit-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
}
@media (min-width: 600px) {
    .merit-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

.merit-box {
    text-align: center;
    padding: 0 10px;
}
.icon-circle {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: #fff;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    font-weight: 900;
    margin: 0 auto 10px;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 4px 10px rgba(0, 159, 232, 0.1);
}
.merit-box h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #333;
}
.merit-box p {
    font-size: 14px; /* Bumped from 13px */
    color: #666;
    line-height: 1.5;
}

/* Bridge Message */
.selection-bridge {
    text-align: center;
    margin: 36px auto 8px;
    position: relative;
    z-index: 2;
}
.bridge-inner {
    background: #fff;
    color: #1f2937;
    display: inline-block;
    padding: 18px 44px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,159,232,0.08), 0 4px 12px rgba(0,0,0,0.06);
    border: 2px solid rgba(255,193,7,0.12);
    position: relative;
    overflow: visible;
    transform-origin: center;
    animation: bridge-floating 4s ease-in-out infinite;
}
.bridge-inner::before {
    /* Gold Award Badge */
    content: '★';
    position: absolute;
    left: -28px;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    background: radial-gradient(circle at 30% 30%, #FFD966, #FFC107);
    color: #fff;
    font-size: 20px;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(255,193,7,0.25);
    animation: badge-pop 3s ease-in-out infinite;
}
.bridge-lead {
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}
.bridge-highlight {
    color: var(--accent-color);
    font-weight: 900;
    display: block; /* Emphasis block */
    font-size: 20px;
    margin-top: 10px;
    letter-spacing: 0.4px;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}
@media (min-width: 600px) {
    .bridge-lead { white-space: nowrap; }
    .bridge-highlight { font-size: 22px; }
}
@media (max-width: 600px) {
    .bridge-lead { white-space: normal; }
    .bridge-highlight { font-size: 18px; }
}

@keyframes bridge-floating {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
@keyframes badge-pop {
    0% { transform: translateY(-50%) scale(0.96); }
    50% { transform: translateY(-50%) scale(1.08); }
    100% { transform: translateY(-50%) scale(0.96); }
}

@media (max-width: 767px) {
    /* Mobile bridge adjustments */
    .selection-bridge .bridge-inner {
        padding: 14px 20px !important;
        border-radius: 12px !important;
        width: auto !important;
        max-width: 720px !important;
        background: #fff !important;
        color: #1f2937 !important;
        border: 2px solid rgba(255,193,7,0.12) !important;
        box-shadow: 0 8px 20px rgba(0,159,232,0.06) !important;
        animation: bridge-floating 4s ease-in-out infinite !important;
    }
    .selection-bridge .bridge-inner::before {
        display: block !important;
        left: -22px !important;
        width: 40px !important;
        height: 40px !important;
        line-height: 40px !important;
        font-size: 18px !important;
        box-shadow: 0 6px 16px rgba(255,193,7,0.22) !important;
        animation: badge-pop 3s ease-in-out infinite !important;
    }
    .selection-bridge .bridge-lead { font-size: 15px !important; white-space: normal !important; }
    .selection-bridge .bridge-highlight { font-size: 18px !important; display: block !important; margin-top: 8px !important; color: var(--accent-color) !important; }
    .sp-only { display: none !important; }
}
/* =========================================
   Simple Ranking (SP Optimized)
   ========================================= */
.simple-ranking-section {
    padding: 40px 20px;
    background: #fff;
    text-align: center;
}

/* Grid Container */
.simple-rank-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 700px;
    margin: 20px auto 0;
}

/* Card Body */
.simple-rank-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 12px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Rank 1 Emphasis */
.simple-rank-card.rank-1 {
    border: 2px solid #FFD700;
    background: #FFFDF5;
}

/* Card Internal Layout */
.simple-card-inner {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
    width: 100%;
}

/* Image Area */
.simple-img {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
}
.simple-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Info Area */
.simple-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Components */
.simple-crown {
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    background: #FFD700;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 5px;
    display: inline-block;
    align-self: flex-start;
}
.simple-crown.silver { background: #C0C0C0; }
.simple-crown.bronze { background: #CD7F32; }

.simple-name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.3;
}

.simple-tag {
    font-size: 12px; /* Bumped from 11px */
    color: #666;
    background: #eee;
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
    align-self: flex-start;
}

/* Link Area */
.simple-link {
    display: block;
    width: 100%;
    font-size: 12px; /* Bumped from 11px */
    color: var(--primary-color);
    font-weight: bold;
    text-align: center;
    border-top: 1px dashed #eee;
    padding-top: 6px;
    margin-top: 2px;
}
.simple-rank-card.rank-1 .simple-link {
    border-top-color: #FFECB3;
}


/* --- PC View (600px+) --- */
@media (min-width: 600px) {
    .simple-rank-grid {
        flex-direction: row;
        gap: 15px;
    }

    .simple-rank-card {
        flex: 1;
        padding: 20px 15px;
        gap: 10px;
    }
    .simple-rank-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        border-color: var(--primary-color);
    }

    .simple-card-inner {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .simple-img {
        width: 100px;
        height: 100px;
    }

    .simple-crown,
    .simple-tag {
        align-self: center;
    }

    .simple-link {
        border-top: none;
        padding-top: 0;
        margin-top: 5px;
        font-size: 12px;
    }
}
/* =========================================
   Comparison Table
   ========================================= */
.comparison-table-section {
    padding: 60px 20px;
    background: #F4F9FC;
}
.table-scroll-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    background: #fff;
    border-radius: 12px;
    position: relative;
}
.compare-table {
    width: 100%;
    min-width: 900px;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 13px; /* Kept 13px */
}
.compare-table th, .compare-table td {
    padding: 15px 10px;
    border-bottom: 1px solid #eee;
    border-right: 1px solid #eee;
    text-align: center;
    vertical-align: middle;
}
.compare-table .fixed-col {
    position: sticky;
    left: 0;
    z-index: 10;
    background: #008ACD;
    color: #fff;
    font-weight: bold;
    width: 110px;
    min-width: 110px;
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
}
.compare-table tbody th.fixed-col {
    background: #f4fbff;
    color: #333;
    border-right: 2px solid #ddd;
}
.compare-table .best-col {
    background-color: #FFFDF5;
    border-left: 2px solid #FFD700;
    border-right: 2px solid #FFD700;
    min-width: 180px;
}
.compare-table thead th.best-col {
    background-color: #00BAFF;
    border-bottom: none;
}
.compare-table thead th.best-col .crown-s {
    background: #FFD700; color: #333; display: inline-block; padding: 2px 8px; border-radius: 10px; font-size: 11px; margin-bottom: 5px; font-weight: 800;
}
.compare-table thead th {
    background-color: #00BAFF;
    color: #fff;
    padding: 20px 10px;
    border-bottom: none;
    font-size: 14px;
    line-height: 1.4;
}
/* Table styles (Text Colors) */
.bold { font-weight: 700; }
.blue { color: #00BAFF; }
.red { color: #E60012; }
.green { color: #2E7D32; font-weight: bold; }
.circle { font-size: 16px; font-weight: bold; }
.small-text { font-size: 12px; line-height: 1.3; } /* Bumped from 11px */

/* =========================================
   Ranking Details
   ========================================= */
.ranking-section {
    padding: 60px 20px 10px;
    background: #fff;
}
.ranking-header { text-align: center; margin-bottom: 50px; }
.ranking-crown-icon { font-size: 48px; margin-bottom: 10px; animation: floating 3s infinite; }
@keyframes floating { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.rank-card {
    background: #fff; border-radius: 20px; padding: 40px 20px; margin-bottom: 50px; position: relative; box-shadow: 0 10px 30px rgba(0,0,0,0.08); border: 1px solid #eee; text-align: center; max-width: 600px; margin-left: auto; margin-right: auto; scroll-margin-top: 100px;
}
.rank-badge {
    position: absolute; top: -30px; left: 50%; transform: translateX(-50%); width: 80px; height: 80px; border-radius: 50%; color: #fff; display: flex; flex-direction: column; justify-content: center; align-items: center; box-shadow: 0 4px 10px rgba(0,0,0,0.2); z-index: 2;
}
.rank-badge.gold { background: var(--gold-gradient); }
.rank-badge.silver { background: var(--silver-gradient); }
.rank-badge.bronze { background: var(--bronze-gradient); }
.rank-num { font-size: 32px; font-weight: 900; line-height: 1; font-family: 'Montserrat'; }

.rank-gold { border: 4px solid #D4AF37; background: linear-gradient(to bottom, #fff, #FFFDF5); padding-top: 60px; }
.rank-tag { display: inline-block; background: #FFF4CD; color: #8B5E00; font-weight: bold; padding: 6px 20px; border-radius: 30px; font-size: 14px; margin-bottom: 20px; margin-top: 10px; }
.rank-tag.simple { background: #f0f0f0; color: #666; }

.product-name { font-size: 26px; font-weight: 700; margin-bottom: 20px; color: #333; }
.product-img { max-height: 220px; width: auto; margin: 0 auto 25px; border-radius: 10px; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.product-desc-box { text-align: left; background: #f9f9f9; padding: 20px; border-radius: 10px; font-size: 14px; line-height: 1.7; margin-bottom: 25px; color: #555; }

.spec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; margin-bottom: 30px; text-align: left; max-width: 400px; margin-left: auto; margin-right: auto; }
.spec-row { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px dotted #ccc; padding-bottom: 5px; }
.spec-row dt { font-weight: bold; font-size: 14px; }
.spec-row dd.stars { color: #FFC107; font-size: 16px; letter-spacing: 2px; }

/* Detail Area (No.1) */
.rank-detail-area { margin: 30px 0; text-align: left; border-top: 1px dashed #ddd; padding-top: 20px; }
.detail-block { margin-bottom: 25px; }
.detail-block h4 { font-size: 16px; font-weight: bold; color: var(--text-color); margin-bottom: 10px; display: flex; align-items: center; }
.detail-block h4::before { content: ''; display: inline-block; width: 6px; height: 20px; background: var(--primary-color); margin-right: 10px; border-radius: 3px; }

.check-list-s { list-style: none; font-size: 14px; line-height: 1.6; }
.check-list-s li { position: relative; padding-left: 20px; margin-bottom: 8px; }
.check-list-s li::before { content: '✔'; position: absolute; left: 0; color: var(--accent-color); font-weight: bold; }
.check-list-s li.highlight { background: #FFF0F0; color: #E60012; font-weight: bold; padding: 5px 5px 5px 25px; border-radius: 4px; border: 1px solid #FFD0D0; }
.check-list-s li.highlight::before { left: 7px; top: 5px; }

.review-box { background: #F9F9F9; padding: 15px; border-radius: 10px; }
.review-item { margin-bottom: 15px; border-bottom: 1px solid #eee; padding-bottom: 15px; }
.review-item:last-child { margin-bottom: 0; border-bottom: none; padding-bottom: 0; }
.review-stars { color: #FFC107; font-size: 12px; display: block; margin-bottom: 5px; }
.review-item p { font-size: 13px; color: #444; line-height: 1.5; }
.review-item strong { color: #000; display: block; margin-bottom: 3px; }

/* Amazon CTA */
.amazon-btn { display: flex; flex-direction: column; background: linear-gradient(to bottom, #FFC400, #FF9900); box-shadow: 0 5px 0 #CC7A00; color: #fff; text-decoration: none; transition: transform 0.1s; width: 100%; max-width: 400px; margin: 10px auto; }
.amazon-btn:hover { box-shadow: 0 3px 0 #CC7A00; transform: translateY(2px); }
.amazon-sub { font-size: 12px; font-weight: bold; color: #333; background: rgba(255,255,255,0.4); padding: 3px 10px; border-radius: 20px; margin-bottom: 5px; display: inline-block; }
.btn-main { font-size: 18px; font-weight: bold; text-shadow: 0 1px 2px rgba(0,0,0,0.2); }

/* =========================================
   Expanded Details (Rank 2+)
   ========================================= */

/* Standard Card (Rank 4+) */
.rank-card.rank-standard {
    border: 1px solid #ddd;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    padding-top: 40px;
}
/* Product Catch Copy */
.product-catch {
    background: #E6F4FB;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
    color: #0056b3;
    font-weight: bold;
    line-height: 1.5;
    font-size: 15px;
}

/* Detail Area Wrapper */
.rank-detail-area {
    margin: 30px 0;
    text-align: left;
    border-top: 2px dashed #eee;
    padding-top: 30px;
}

/* Titles */
.detail-title {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    border-left: 5px solid var(--primary-color);
    padding-left: 10px;
}

/* Features List */
.feature-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}
.feature-item {
    background: #fcfcfc;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 8px;
}
.feature-item .f-head {
    display: block;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 15px;
}
.feature-item p {
    font-size: 14px; /* Bumped from 13px */
    color: #555;
    line-height: 1.5;
    margin: 0;
}

/* Spec Table */
.spec-table-block {
    margin-bottom: 30px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}
.spec-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px; /* Bumped from 13px */
}
.spec-table th, .spec-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    text-align: left;
}
.spec-table th {
    background: #f4f9fc;
    color: #555;
    width: 35%;
    font-weight: bold;
    white-space: nowrap;
}
.spec-table tr:last-child th, 
.spec-table tr:last-child td {
    border-bottom: none;
}

/* Pros & Cons Columns */
.pros-cons-container {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
}
@media (min-width: 600px) {
    .pros-cons-container {
        grid-template-columns: 1fr 1fr;
    }
}

/* Pros (Merit) */
.detail-block.pros h4 {
    color: #2E7D32;
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}
.detail-block.pros h4::before {
    content: '◎';
    color: #2E7D32;
    margin-right: 8px;
    font-size: 12px;
}

/* Cons (Demerit) */
.detail-block.cons h4 {
    color: #E60012;
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}
.detail-block.cons h4::before {
    content: '▲';
    color: #E60012;
    margin-right: 8px;
    font-size: 12px;
}
/* Cross List */
.cross-list-s {
    list-style: none;
    font-size: 14px; /* Bumped from 13px */
    line-height: 1.5;
    padding: 0;
}
.cross-list-s li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
    color: #666;
}
.cross-list-s li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: #999;
    font-weight: bold;
}

/* =========================================
   Underline Styles
   ========================================= */
/* Orange Underline (White Background) */
.section-title.underline-orange {
    display: inline-block;
    text-decoration: underline;
    text-decoration-color: var(--accent-color);
    text-decoration-thickness: 6px;
    text-underline-offset: 4px;
    text-decoration-skip-ink: none;
    padding-bottom: 5px;
}

/* White Underline (Orange Background) */
.section-title.underline-white {
    display: inline-block;
    text-decoration: underline;
    text-decoration-color: #fff;
    text-decoration-thickness: 6px;
    text-underline-offset: 4px;
    text-decoration-skip-ink: none;
    padding-bottom: 5px;
}

/* Text Colors */
.text-white { color: #fff !important; }


/* =========================================
   Guide Intro
   ========================================= */
.guide-intro {
    padding: 10px 20px 20px;
    background-color: #fff;
    position: relative;
    z-index: 1;
}

/* Guide Icons */
.guide-icon {
    height: 56px;
    width: auto;
    opacity: 0.9;
}
@media (max-width: 600px) {
    .guide-intro .section-header { overflow: visible; padding-bottom: 20px; }
    .guide-icon {
        display: block;
        position: absolute;
        top: 0;
        height: 60px;
        z-index: 0;
    }
    .guide-icon.left { left: 20px; transform: rotate(-10deg); }
    .guide-icon.right { right: 20px; transform: rotate(10deg); }
    .guide-intro .section-text { z-index: 1; position: relative; }
}


/* =========================================
   Detailed Checkpoints
   ========================================= */

/* Header Vertical Alignment Fix */
.detailed-checkpoints .section-header.vertical-align {
    display: block;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
    padding: 0 10px;
}
.detailed-checkpoints .section-header.vertical-align .section-title {
    margin-bottom: 15px;
}

/* Base Style */
.detailed-checkpoints {
    background: linear-gradient(135deg, #FF8C00 0%, #FFA726 100%);
    padding: 60px 20px 80px;
    color: #fff;
}
.detailed-checkpoints .section-desc {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Grid Layout */
.detailed-point-grid {
    display: grid;
    gap: 20px;
    margin-top: 40px;
    grid-template-columns: 1fr;
}
@media (min-width: 768px) {
    .detailed-point-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Card Style (White bg) */
.detailed-point-item {
    background: #fff;
    color: #333;
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    border: none;
}
.detailed-point-item:hover {
    transform: translateY(-5px);
}

/* Card Header */
.point-head {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #F0E6D2;
    position: relative;
}
.point-head .p-num {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 48px;
    color: #FFE0B2;
    position: absolute;
    top: -20px;
    right: 0;
    line-height: 1;
}
.point-head h3 {
    font-size: 19px;
    color: #E65100;
    line-height: 1.5;
    font-weight: 700;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Card Body */
.point-body p {
    font-size: 14px; /* Bumped from 13px */
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}
.point-body p:last-child {
    margin-bottom: 0;
}

/* Note with Icon */
.p-note {
    background: #FFF9C4;
    border-left: 5px solid #FBC02D;
    padding: 12px 15px;
    border-radius: 6px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: auto;
}

/* Note Icon */
.note-icon-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Note Text */
.p-note p {
    font-size: 13px; /* Kept 13px for density */
    font-weight: bold;
    color: #333;
    margin: 0;
    line-height: 1.5;
}
/* =========================================
   PC Only: Checkpoint Height Adjustment
   ========================================= */
@media (min-width: 768px) {
    .detailed-point-item {
        height: 100%;
    }

    .point-body {
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }

    .point-body > p {
        margin-bottom: 20px;
    }

    .p-note {
        margin-top: auto;
        min-height: 80px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
}


/* =========================================
   Final CTA Section
   ========================================= */
.final-cta-section {
    padding: 80px 20px;
    background: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}
/* Background Decoration */
.final-cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,159,232,0.05) 0%, rgba(255,255,255,0) 70%);
    z-index: 0;
    border-radius: 50%;
}

.final-cta-inner {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.final-sub {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
}
.final-title {
    font-size: 28px;
    color: #333;
    margin-bottom: 40px;
    line-height: 1.4;
}

.final-message {
    text-align: left;
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 50px;
}
.final-message p {
    margin-bottom: 20px;
}
.final-message strong {
    color: var(--accent-color);
    background: linear-gradient(transparent 60%, #FFE0B2 60%);
}
.final-yell {
    text-align: center;
    font-weight: bold;
    font-size: 18px;
    color: var(--primary-color);
    margin-top: 30px;
}

/* Action Area */
.final-action-area {
    background: #F4F9FC;
    padding: 40px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cta-catch {
    font-size: 14px;
    font-weight: bold;
    color: #555;
    margin-bottom: 15px;
    display: block;
}

/* Pulse Animation */
.pulse-anim {
    animation: pulse-shadow 2s infinite;
}
@keyframes pulse-shadow {
    0% { box-shadow: 0 0 0 0 rgba(255, 140, 0, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(255, 140, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 140, 0, 0); }
}

/* Back Link */
.text-link-back {
    display: inline-block;
    margin-top: 20px;
    color: #999;
    font-size: 13px;
    text-decoration: underline;
    transition: color 0.3s;
}
.text-link-back:hover {
    color: var(--primary-color);
}

/* =========================================
   Footer
   ========================================= */
footer {
    background: #333;
    color: #888;
    padding: 30px 20px 100px;
    text-align: center;
    font-size: 13px; /* Bumped from 12px */
}

.footer-links a {
    color: #ccc;
    margin: 0 5px;
}

/* =========================================
   Sticky Footer (SP)
   ========================================= */
.sticky-footer-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 10px;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
    z-index: 999;
}

.sticky-footer-btn a {
    display: block;
    background: var(--accent-color);
    color: #fff;
    text-align: center;
    padding: 15px;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 4px 0 #D97700;
}

.sticky-footer-btn a:active {
    transform: translateY(2px);
    box-shadow: 0 2px 0 #D97700;
}
/* =========================================
   Checkpoints Header Fix (Force Vertical)
   ========================================= */
.checkpoints .section-header {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 10px;
    max-width: 800px;
    margin: 0 auto 40px;
}

@media (min-width: 600px) {
    .checkpoints .section-header {
        flex-direction: column !important;
        padding: 0 20px;
    }
}
/* =========================================
   Simple Ranking Header Fix
   ========================================= */
.simple-ranking-section .section-header {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 10px;
}

@media (min-width: 600px) {
    .simple-ranking-section .section-header {
        flex-direction: column !important;
        padding: 0 20px;
    }
    
    .simple-ranking-section .section-title br {
        display: none;
    }
}
/* =========================================
   Award List (Merit/Demerit)
   ========================================= */

/* Container: 1 column fixed */
.pros-cons-container {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr;
    margin-bottom: 30px;
}

/* Titles */
.pros-title, .cons-title {
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.pros-title { color: #2E7D32; }
.cons-title { color: #D32F2F; }

/* List Base */
.award-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.award-list li {
    position: relative;
    padding: 12px 12px 12px 35px;
    margin-bottom: 8px;
    font-size: 14px; /* Bumped from 13px */
    line-height: 1.6;
    background: #fff;
    border-radius: 8px;
    color: #444;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}
.award-list li:hover {
    transform: translateX(3px);
    border-color: #ddd;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}

/* --- Check (Merit) --- */
.award-list.check li {
    background: #F9FDF9;
    border-color: #E8F5E9;
}
.award-list.check li::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 15px;
    width: 14px;
    height: 8px;
    border-left: 2px solid #2E7D32;
    border-bottom: 2px solid #2E7D32;
    transform: rotate(-45deg);
}

/* --- Cross (Demerit) --- */
.award-list.cross li {
    background: #FEF9F9;
    border-color: #FFEBEE;
}
.award-list.cross li::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 18px;
    width: 14px;
    height: 2px;
    background: #D32F2F;
    transform: rotate(45deg);
}
.award-list.cross li::after {
    content: '';
    position: absolute;
    left: 12px;
    top: 18px;
    width: 14px;
    height: 2px;
    background: #D32F2F;
    transform: rotate(-45deg);
}

/* Highlight Item */
.award-list li.highlight {
    background: #FFF3E0 !important;
    border: 2px solid #FFB74D !important;
    color: #E65100 !important;
    font-weight: bold;
}

/* =========================================
   Button Designs
   ========================================= */

/* No.1 CTA Area */
.cta-area-no1 {
    margin: 30px auto 10px;
    text-align: center;
    position: relative;
    width: 100%;
    max-width: 400px;
}

/* Balloon */
.amazon-balloon {
    display: inline-block;
    background: #fff;
    border: 2px solid #FF9900;
    color: #E65100;
    font-size: 13px;
    font-weight: bold;
    padding: 8px 20px;
    border-radius: 30px;
    position: relative;
    margin-bottom: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    animation: balloon-float 2s ease-in-out infinite;
}
.amazon-balloon::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-top: 8px solid #FF9900;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
}

/* No.1 Amazon Button (Capsule & 3D) */
.amazon-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #FFC400 0%, #FF9900 100%);
    color: #fff;
    text-decoration: none;
    width: 100%;
    padding: 20px 0;
    border-radius: 50px;
    box-shadow: 0 8px 0 #CC7A00, 0 15px 20px rgba(0,0,0,0.2);
    transition: all 0.1s;
    position: relative;
    z-index: 1;
}

/* Main Text */
.btn-main {
    font-size: 20px;
    font-weight: 900;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
    letter-spacing: 0.5px;
}
.arrow { margin-left: 8px; font-weight: bold; }
/* =========================================
   Mobile Optimization for Amazon Button
   ========================================= */

@media (max-width: 480px) {
    /* Prevent text wrapping and adjust font size for small screens */
    .btn-main {
        font-size: 17px;           /* Slightly smaller font for mobile */
        white-space: nowrap;       /* Force text to stay on one line */
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Adjust padding to secure internal space */
    .amazon-btn {
        padding: 18px 10px;        /* Slightly reduce padding */
    }

    /* Reduce balloon text size if it's too tight */
    .amazon-balloon {
        font-size: 12px;
        padding: 6px 15px;
        width: 95%;                /* Ensure it doesn't hit screen edges */
    }
}


/* Auto Press Animation (Fast) */
@keyframes auto-press-fast {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 8px 0 #CC7A00, 0 15px 20px rgba(0,0,0,0.2);
    }
    15% {
        transform: translateY(6px);
        box-shadow: 0 2px 0 #CC7A00, 0 5px 10px rgba(0,0,0,0.1);
    }
    30% {
        transform: translateY(0);
        box-shadow: 0 8px 0 #CC7A00, 0 15px 20px rgba(0,0,0,0.2);
    }
}

.push-btn.auto-press {
    animation: auto-press-fast 2s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}

.push-btn.auto-press:hover {
    animation-play-state: paused;
    transform: translateY(4px);
    box-shadow: 0 4px 0 #CC7A00, 0 10px 15px rgba(0,0,0,0.2);
    background: linear-gradient(180deg, #FFD54F 0%, #FFA000 100%);
}

.push-btn.auto-press:active {
    transform: translateY(8px);
    box-shadow: 0 0 0 #CC7A00, inset 0 2px 5px rgba(0,0,0,0.2);
}

/* Balloon Float Animation */
@keyframes balloon-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

/* Standard Button */
.push-btn.standard-btn {
    background: #fff;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 16px;
    padding: 15px 30px;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    max-width: 300px;
    margin: 20px auto 0;
}
.push-btn.standard-btn:hover {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 5px 15px rgba(0,159,232,0.3);
    transform: translateY(-2px);
}

/* Primary Button */
.push-btn.primary {
    display: inline-block;
    background: linear-gradient(to right, #FF8C00, #FFAA00);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255,140,0,0.3);
    border: none;
    cursor: pointer;
}

.push-btn.primary:hover {
    background: linear-gradient(to right, #FFAA00, #FFC400);
    box-shadow: 0 6px 20px rgba(255,140,0,0.4);
    transform: translateY(-2px);
}

.push-btn.primary.big {
    font-size: 20px;
    padding: 22px 50px;
}

/* Secondary Button */
.push-btn.secondary {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0,159,232,0.3);
    border: none;
    cursor: pointer;
}

.push-btn.secondary:hover {
    background: #0088CC;
    box-shadow: 0 6px 18px rgba(0,159,232,0.4);
    transform: translateY(-2px);
}
/* =========================================
   Comparison Table Adjustment
   ========================================= */

/* Header Force Vertical */
.comparison-table-section .section-header {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 10px;
}
@media (min-width: 600px) {
    .comparison-table-section .section-header {
        flex-direction: column !important;
        padding: 0 20px;
    }
}

/* Star Color */
.compare-table .stars {
    color: #FF9900;
}

/* Table Button Adjustments */
.tr-btn td {
    padding: 15px 5px;
    vertical-align: middle;
}

.table-btn {
    font-size: 13px;
    padding: 10px 0;
    width: 100%;
    margin: 0 auto;
    border-radius: 50px;
    display: block;
    max-width: 140px;
    line-height: 1;
}

/* No.1 Button in Table */
.compare-table .amazon-btn.table-btn {
    box-shadow: 0 4px 0 #CC7A00, 0 5px 10px rgba(0,0,0,0.1);
    margin: 0 auto; 
}

/* Table Button Animation */
@keyframes auto-press-table {
    0%, 100% {
        transform: translateY(0);
        box-shadow: 0 4px 0 #CC7A00, 0 5px 10px rgba(0,0,0,0.1);
    }
    15% {
        transform: translateY(2px);
        box-shadow: 0 2px 0 #CC7A00, 0 2px 5px rgba(0,0,0,0.1);
    }
    30% {
        transform: translateY(0);
        box-shadow: 0 4px 0 #CC7A00, 0 5px 10px rgba(0,0,0,0.1);
    }
}

.compare-table .amazon-btn.table-btn.auto-press {
    animation: auto-press-table 2s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}

/* Standard Button in Table */
.compare-table .standard-btn.table-btn {
    padding: 10px 0;
    margin: 0 auto;
    border: 1px solid var(--primary-color);
}
.compare-table .standard-btn.table-btn:hover {
    box-shadow: 0 3px 10px rgba(0,159,232,0.2);
    transform: translateY(-2px);
}
/* =========================================
   Product Image Adjustment (Larger on PC)
   ========================================= */
.product-img {
    max-height: 220px;
    width: auto;
    margin: 0 auto 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

@media (min-width: 768px) {
    .product-img {
        max-height: 340px; 
        width: auto;
        max-width: 100%;
    }
}

/* =========================================
   Review Accordion
   ========================================= */

/* Wrapper */
.review-accordion-wrapper {
    margin-top: 0;
    margin-bottom: 50px;
    width: 100%;
}

/* Toggle Button */
.review-toggle-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.1s;
    box-shadow: 0 4px 10px rgba(0, 159, 232, 0.2);
}

.review-toggle-btn:hover {
    background: #008ACD;
    transform: translateY(1px);
}
.review-toggle-btn.active {
    background: var(--primary-color);
    box-shadow: inset 0 3px 5px rgba(0,0,0,0.1);
}

.review-toggle-btn .toggle-arrow {
    color: #fff;
}


/* Hidden Content */
.review-hidden-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease, opacity 0.5s ease;
}
.review-hidden-content.is-open {
    max-height: 2000px;
    opacity: 1;
    margin-top: 20px;
    padding-bottom: 10px; 
}

/* Review List */
.review-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-bottom: 5px;
}

.review-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.03);
}

/* Review Header */
.review-head {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 12px;
    border-bottom: 1px dashed #eee;
    padding-bottom: 12px;
}

/* Icon Box */
.review-icon-box {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #eee;
    overflow: hidden;
}
.user-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Meta Data */
.review-meta {
    flex-grow: 1;
}
.review-title {
    font-size: 15px;
    font-weight: bold;
    color: #333;
    margin-bottom: 5px;
    line-height: 1.4;
}
.review-profile {
    font-size: 13px; /* Bumped from 12px */
    color: #888;
}

/* Review Body */
.review-body p {
    font-size: 14px; /* Bumped from 13px */
    line-height: 1.6;
    color: #555;
    margin: 0;
}

@media (max-width: 600px) {
    .review-head {
        align-items: center;
    }
    .review-icon-box {
        width: 40px;
        height: 40px;
    }
    .review-title {
        font-size: 14px;
    }
}
/* =========================================
   Company Page
   ========================================= */

.company-section {
    padding: 60px 20px 100px;
    min-height: 80vh; 
}

.company-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 40px 20px;
    max-width: 600px;
    margin: 40px auto 60px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.company-list {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #eee;
}

.company-row {
    display: flex;
    flex-direction: row;
    border-bottom: 1px solid #eee;
}

.company-row dt {
    background: #F4F9FC; 
    color: var(--primary-color);
    font-weight: bold;
    width: 35%;
    padding: 20px;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.company-row dd {
    width: 65%;
    padding: 20px;
    font-weight: 500;
    color: #333;
    font-size: 15px;
}

@media (max-width: 600px) {
    .company-card {
        padding: 20px 0; 
        border: none;    
        box-shadow: none;
    }
    .company-row dt {
        width: 40%;
        padding: 15px 10px;
        font-size: 13px;
    }
    .company-row dd {
        width: 60%;
        padding: 15px 10px;
        font-size: 14px;
    }
}

.return-area {
    text-align: center;
}
.return-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    max-width: 280px;
}
.return-btn .arrow {
    margin-left: 0;
    margin-right: 5px;
}
/* =========================================
  Survey Page
   ========================================= */

.survey-section {
    padding: 60px 20px 100px;
    min-height: 80vh;
}

.survey-section .section-header {
    flex-direction: column !important;
    gap: 10px;
}

.survey-note {
    font-size: 12px;
    color: #888;
    display: inline-block;
    margin-top: 3px;
    line-height: 1.4;
}
/* =========================================
   Animation: Evolution Arrow Blinking
   ========================================= */

/* Keyframes for the blinking effect */
@keyframes arrow-blink {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(0.95);
    }
}

/* Apply animation to the arrow container */
.evolution-arrow {
    animation: arrow-blink 2s infinite ease-in-out;
}


/* =========================================
   Animation: Total Card Shine (Sparkle)
   ========================================= */

/* Ensure the card is relative for absolute positioning of the shine */
.compare-card.total {
    position: relative;
    overflow: hidden; /* Confines the shine within the card borders */
    /* Existing styles... */
    border: 2px solid var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 159, 232, 0.15);
    z-index: 2;
}

/* Create the shine element using pseudo-element */
.compare-card.total::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%; /* Start off-screen to the left */
    width: 100%;
    height: 100%;
    /* Create a diagonal band of light */
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg); /* Tilt the band */
    pointer-events: none; /* Ensure it doesn't interfere with clicks */
    animation: card-shine-sweep 3.5s infinite; /* Run animation */
}

/* Keyframes for the shine sweeping across the card */
@keyframes card-shine-sweep {
    0% {
        left: -150%;
    }
    20% {
        left: 150%; /* Move quickly across */
    }
    100% {
        left: 150%; /* Wait for a while before restarting */
    }
}
/* =========================================
   Merit/Demerit Title Icons
   ========================================= */


.detail-title, 
.detail-block h4 {
    border-left: none !important; 
    padding-left: 0 !important;   
    display: flex;
    align-items: center;
}

.detail-block.pros h4 {
    color: #2E7D32;
}
.detail-block.pros h4::before {
    content: '◎';          
    color: #2E7D32;       
    font-size: 20px;       
    margin-right: 8px;     
    font-weight: 900;
    line-height: 1;
    display: inline-block;
    background: none;      
    width: auto;           
    height: auto;          
    border-radius: 0;      
}
.award-list.cross li::before,
.award-list.cross li::after {

    top: 20px; 
}

.detail-block.cons h4 {
    color: #E60012;
    display: flex;
    align-items: center; 
    line-height: -1;     
}
.detail-block.cons h4::before {
    content: '▲';
    color: #E60012;
    font-size: 14px;      
    margin-right: 8px;
    font-weight: 900;
    line-height: 1;
    display: inline-flex;  
    align-items: center;
    justify-content: center;
    transform: translateY(1px); 
}


/* =========================================
   PC:Tate / SP:Yoko)
   ========================================= */

.merit-features {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
    /* SP: 1列 */
    grid-template-columns: 1fr;
}

.merit-box {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    display: flex;
    /* SP */
    flex-direction: row;
    align-items: center;
    gap: 15px;
}


.merit-content {
    flex: 1; 
    text-align: left; 
}

/* Image */
.merit-img {
    width: 80px;       
    height: 80px;
    flex-shrink: 0;    
    border-radius: 8px;
    overflow: hidden;
    background: #eee;
}
.merit-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Merit Box  */
.merit-box .icon-circle {
    
    margin: 0 0 8px 0; 
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 12px;
    
    text-align: center; 
}


@media (min-width: 600px) {
    
    .merit-features {
        grid-template-columns: repeat(3, 1fr);
    }

    
    .merit-box {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .merit-content {
        text-align: center;
        
        margin-bottom: 8px; 
    }

    .merit-box .icon-circle {
        margin: 0 auto 10px; 
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 14px;
       
        text-align: center;
    }

    .merit-img {
        width: 100%;
        height: auto;
        max-height: 150px;
        border-radius: 8px;
    }
    
    .merit-box h4 { font-size: 16px; }
    .merit-box p { font-size: 13px; }
}
/* =========================================
   Final Fix
   ========================================= */

.rank-detail-area .detail-title, 
.rank-detail-area .detail-block h4,
h4.pros-title,
h4.cons-title {
    border-left: none !important;
    padding-left: 0 !important;
    display: flex;
    align-items: center;
}

.detail-block.cons h4,
h4.cons-title {
    color: #E60012;
    line-height: 1; 
}

.detail-block.cons h4::before,
h4.cons-title::before {
    content: '▲';
    color: #E60012;
    font-size: 14px;
    margin-right: 8px;
    font-weight: 900;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    
    transform: translateY(0px); 
}

.award-list.cross li::before,
.award-list.cross li::after {
    
    top: 22px; 
}

.rank-detail-area .detail-block h4,
.detail-block.pros h4,
.detail-block.cons h4 {
    border-left: none !important;
    padding-left: 0 !important;
    display: flex;
    align-items: center; 
}

.detail-block.pros h4::before,
.detail-block.cons h4::before {
    background: none !important;   
    width: auto !important;        
    height: auto !important;       
    border-radius: 0 !important;   
    margin-right: 10px;            
    display: inline-block;
    font-weight: 900;
    line-height: 1;
}

/* Pros */
.detail-block.pros h4::before {
    content: '◎';
    color: #2E7D32;
    font-size: 20px;
    transform: translateY(0); 
}

/* Cons */
.detail-block.cons h4::before {
    content: '▲';
    color: #E60012;
    font-size: 15px; 
    transform: translateY(-1px); 
}
/* =========================================
   Final Area Image
   ========================================= */


.final-visual-area {
    margin-top: 40px;    
    margin-bottom: 10px; 
    text-align: center;  
    width: 100%;
}

.final-img {
    max-width: 100%;     
    height: auto;        
    border-radius: 12px; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); 
    display: inline-block; 
    

    max-height: 300px;   
    object-fit: cover;   
    width: 100%;         
}

@media (min-width: 768px) {
    .final-img {
        width: auto;     
        max-width: 80%;  
    }
}

/* =========================================
   Column Teaser Section (Main Page)
   ========================================= */
.column-teaser-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, #F4F9FC 0%, #E8F4F8 100%);
}

/* Force vertical layout for column section header */
.column-teaser-section .section-header {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 10px;
}

@media (min-width: 600px) {
    .column-teaser-section .section-header {
        flex-direction: column !important;
    }
}

.column-teaser-card {
    max-width: 700px;
    margin: 30px auto 0;
    background: var(--bg-white);
    border-radius: 16px;
    padding: 30px 25px;
    box-shadow: 0 4px 20px rgba(0,159,232,0.1);
    border: 2px solid rgba(0,159,232,0.15);
}

.column-teaser-content {
    text-align: center;
}

.column-teaser-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--accent-color);
    margin-bottom: 25px;
}

.column-teaser-img {
    margin: 25px auto;
    border-radius: 12px;
    overflow: hidden;
    max-width: 500px;
}

.column-teaser-img img {
    width: 100%;
    height: auto;
    display: block;
}

@media (min-width: 768px) {
    .column-teaser-title {
        font-size: 24px;
    }
}

/* =========================================
   Column Article Page
   ========================================= */
.column-hero {
    padding: 40px 20px 20px;
    background: linear-gradient(135deg, #F4F9FC 0%, #E8F4F8 100%);
    position: relative;
}

/* =========================================
   PR Badge (Hero Section)
   ========================================= */
.pr-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 12px;
    border-radius: 4px;
    z-index: 10;
    letter-spacing: 0.5px;
}

@media (min-width: 600px) {
    .pr-badge {
        top: 20px;
        right: 20px;
        font-size: 13px;
        padding: 5px 14px;
    }
}

/* Force vertical layout for column hero section header */
.column-hero .section-header {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 10px;
}

@media (min-width: 600px) {
    .column-hero .section-header {
        flex-direction: column !important;
    }
}

.column-article {
    max-width: 750px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

.article-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--text-color);
    margin-bottom: 30px;
    text-align: center;
    border-left: 5px solid var(--primary-color);
    padding-left: 15px;
    text-align: left;
}

.article-hero-img {
    margin: 30px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    max-width: 600px;
}

.article-hero-img img {
    width: 100%;
    height: auto;
    display: block;
}

.article-lead {
    background: #FFF9E6;
    border-left: 4px solid #FF8C00;
    padding: 20px;
    margin: 30px 0;
    border-radius: 8px;
}

.article-lead p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 12px;
}

.article-lead p:last-child {
    margin-bottom: 0;
}

.article-section {
    margin: 50px 0;
    padding: 30px 0;
    border-top: 1px solid #E0E0E0;
}

.article-section:first-of-type {
    border-top: none;
}

.article-section-img {
    margin: 20px auto 30px;
    border-radius: 12px;
    overflow: hidden;
    max-width: 500px;
}

.article-section-img img {
    width: 100%;
    height: auto;
    display: block;
}

.article-heading {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--text-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary-color);
}

.article-subheading {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--text-color);
    margin: 30px 0 15px;
    padding-left: 15px;
    border-left: 4px solid var(--accent-color);
}

.article-text {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-color);
    margin-bottom: 20px;
}

.article-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

.article-conclusion {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFF4D9 100%);
    padding: 40px 25px;
    border-radius: 16px;
    margin: 50px 0;
    border: 2px solid #FFD700;
}

.article-text-highlight {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.8;
    color: var(--accent-color);
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.article-cta-area {
    margin: 50px 0 0;
    text-align: center;
}

.article-cta-area .amazon-balloon {
    background: linear-gradient(135deg, #FFF9E6 0%, #FFE4B5 100%);
    color: #FF8C00;
    font-weight: 700;
    font-size: 13px;
    padding: 8px 20px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(255,140,0,0.2);
    animation: balloon-float 2s ease-in-out infinite;
}

.article-cta-area .amazon-btn {
    max-width: 400px;
    margin: 0 auto;
}

/* Final CTA Button Text Size */
.final-action-area .amazon-btn .final-btn-text {
    font-size: 17px;
}

@media (max-width: 600px) {
    .final-action-area .amazon-btn .final-btn-text {
        font-size: 16px;
    }
}

@media (min-width: 768px) {
    .article-title {
        font-size: 28px;
    }
    
    .article-heading {
        font-size: 24px;
    }
    
    .article-subheading {
        font-size: 20px;
    }
}