.analysis-lp-container {
    font-size:18px;
}

/* ヘッダー */
.analysis-header {
    height:auto;
    background: #2f2f2f;
    position: relative;
    overflow: hidden;
    margin: 20px 0px;
    border-radius: 8px;
}

.analysis-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.5)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    animation: sparkle 20s linear infinite;
}

.analysis-header .container {
    background-color: #2a5298;
    
}
@keyframes sparkle {
    0% {
        transform: translateX(0) translateY(0);
    }

    100% {
        transform: translateX(-100px) translateY(-100px);
    }
}


.header-content {
    position: relative;
    z-index: 1;
    text-align: center;
    
}

.logo {
    font-size: 3em;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(255, 200, 132, 0.5);
    color:#e4e4e4;
    
}

.tagline {
    font-size: 1.2em;
    opacity: 0.9;
    margin-bottom: 30px;
    color:#ffffff
    
}

.page-views {
    color: #ffffff;
    font-size: 1.2em;
}


/* メインセクション */
.main-section {
    background: rgb(193, 134, 25);
    padding: 8px 8px;
    position: relative;
    border-radius: 8px;
    margin-bottom: 32px;
}

.hero {
    text-align: center;
    margin-bottom: 80px;
}

.hero h1 {
    font-size: 24px;
    
    font-weight: bold;
    margin-bottom: 30px;
    position: relative;
}

.hero h1::after {
    content: '🔍';
    position: absolute;
    right: -60px;
    top: 0;
    font-size: 5em;
    animation: detective 3s ease-in-out infinite;
}

.hero p {
    font-size: 1.5em;
    
    max-width: 720px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

@keyframes detective {

    0%,
    100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(10deg);
    }
}



/* 課題セクション */
.problem-section {
    background: #f8f9fa;
    padding: 8px 8px;
    background: rgb(193, 134, 25);
    padding: 8px 8px;
    position: relative;
    border-radius: 8px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.problem-card {
    max-width: 100%;
    background: rgb(255, 255, 255);
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    
    position: relative;
    transition: transform 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-10px);
}

.problem-card .emoji {
    font-size: 4em;
    margin-bottom: 20px;
    display: block;
}

.problem-card h3 {
    font-size: 1.5em;
    
    margin-bottom: 15px;
}

.problem-section p {
    color:#88921a;
}
/* ソリューションセクション */
.solution-section {
    margin: 32px auto;
    padding: 8px 8px;
    background: linear-gradient(135deg, #d6d6d6 0%, #f6f6f6 100%);
    
    border-radius: 8px;
}

.solution-content {
    
    max-width: 720px;;
    text-align: center;
    margin-bottom: 60px;
}

.solution-content h2 {
    font-size: 21px;
    margin-bottom: 30px;
}

.solution-text {
    text-align: left;
    max-width: 720px;
    margin: 0 48px;
    line-height: 1.6;
    
}

.service-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 50px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 40px auto;
    max-width: 720px;
}

.price-tag {
    background: #333;
    color: white;
    padding: 8px 8px;
    border-radius: 50px;
    display: inline-block;
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(51, 51, 51, 0.4);
}

/* 実績セクション */
.results-section {
    background: rgb(193, 134, 25);
    padding: 8px 8px;
    border-radius: 8px;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.result-item {
    color:#f8f9fa;
    text-align: center;
    padding: 30px;
    border-radius: 15px;
    background: linear-gradient(135deg, #ffae35 0%, #202020 100%);
    
}

.result-number {
    font-size: 24px;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

/* プロセスセクション */
.process-section {
    margin: 8px auto;
    background: #f2f2f2;
    padding: 8px 8px;
    border-radius: 8px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    background: #ffd735;
    
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    
    font-weight: bold;
    margin: 0 auto 20px;
}

/* CTAセクション */
.cta-section {
    background: linear-gradient(135deg, #ff9735 0%, #9f9f9f 100%);
    padding: 8px 8px;
    text-align: center;
    border-radius: 8px;
}

.cta-button {
    background: #007bff;
    color:#f2f2f2;
    padding: 25px 60px;
    font-size: 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(51, 51, 51, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(51, 51, 51, 0.4);
}

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

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

.section-title {
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 30px;
    
}

.goal {
    margin-top: 16px;
    color:#d6d6d6;
    font-size: 1em;
}
.highlight_op {
    background: linear-gradient(120deg, #fc891d 0%, #daae00 100%);
    
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: bold;
    color: #ffffff;
}

.highlight {
    background: linear-gradient(120deg, #007bff 0%, #0056b3 100%);
    
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: bold;
    color: #ffffff;
}

#total-page-views {
    font-weight: bold;
    font-size: 4em;
    color: #d7891b;
}

#client_count {
    font-weight: bold;
    font-size: 4em;
    color: #2f2f2f;
}

#clicl_through_rate {
    font-weight: bold;
    font-size: 2em;
    color: #2f2f2f;
}





.truth-reveal-box {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    margin: 30px auto;
    max-width: 600px;
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.truth-reveal-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shine 3s infinite;
}

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

.truth-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.truth-title {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #ffd700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.truth-text {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.truth-text strong {
    color: #ffd700;
    font-weight: bold;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.truth-hint {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px;
    border-radius: 8px;
    font-size: 0.95em;
    font-style: italic;
    border-left: 3px solid #ffd700;
}

.data-books-section {
    background: #f8f9fa;
    padding: 8px 8px;
    border-radius: 8px;
    margin-top: 32px;
}