/* ============================================
   広告の定期診断 LP — Style Sheet
   Design: Clean & Minimal / White + Indigo
   ============================================ */

/* ---------- Reset & Base ---------- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700;800&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: #1e293b;
    background-color: #ffffff;
    line-height: 1.8;
    font-weight: 400;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul,
ol {
    list-style: none;
}

/* ---------- Utility ---------- */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #6366f1;
    background: #eef2ff;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 16px;
    color: #0f172a;
}

.section-subtitle {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 40px;
}

.text-center {
    text-align: center;
}

.text-accent {
    color: #4f46e5;
}

.text-highlight {
    background: linear-gradient(transparent 60%, #c7d2fe 60%);
    padding: 0 2px;
}

.marker {
    background: linear-gradient(transparent 60%, #fde047 60%);
    font-weight: 700;
    padding: 0 2px;
}

/* ---------- CTA Button ---------- */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #06c755;
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 60px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(6, 199, 85, 0.3);
    text-align: center;
    line-height: 1.4;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(6, 199, 85, 0.4);
    background: #05b34c;
}

.cta-button svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.cta-sub-text {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 12px;
}

/* ---------- Fixed CTA (Mobile) ---------- */
.fixed-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.fixed-cta .cta-button {
    width: 100%;
    padding: 16px 20px;
    font-size: 0.95rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    padding: 100px 0 80px;
    background: linear-gradient(160deg, #f8fafc 0%, #eef2ff 50%, #e0e7ff 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
}

.hero-text-col {
    flex: 0 0 auto;
    text-align: left;
}

.hero-top-badge {
    display: inline-block;
    background: #1e293b;
    color: #fff;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.6;
    color: #0f172a;
    margin-bottom: 20px;
    white-space: nowrap;
}

.hero-description {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 32px;
    font-weight: 500;
}

.hero-features {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 0;
}

.hero-feature-badge {
    background: #fff;
    padding: 8px 12px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #1e293b;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    white-space: nowrap;
}

.hero-image {
    flex: 0 0 auto;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    max-width: 420px;
}

.hero-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 24px;
    padding: 16px 28px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.hero-price .label {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

.hero-price .amount {
    font-size: 2rem;
    font-weight: 800;
    color: #4f46e5;
}

.hero-price .unit {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

/* ============================================
   PAIN POINTS (お悩み)
   ============================================ */
.pain-section {
    padding: 80px 0;
    background: #fff;
}

.pain-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.pain-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 24px;
    background: #fef2f2;
    border-radius: 14px;
    border-left: 4px solid #ef4444;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1e293b;
    line-height: 1.6;
}

.pain-item .icon {
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.pain-bottom-text {
    margin-top: 32px;
    text-align: center;
    font-size: 1rem;
    color: #ef4444;
    font-weight: 600;
    line-height: 1.8;
}

/* ============================================
   SOLUTION (サービス概要)
   ============================================ */
.solution-section {
    padding: 80px 0;
    background: #f8fafc;
}

.solution-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 8px;
}

.solution-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.solution-card .card-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #eef2ff;
    color: #4f46e5;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 10px;
    margin-bottom: 16px;
}

.solution-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #0f172a;
}

.solution-card p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.7;
}

/* ============================================
   WHY WEEKLY (なぜ毎週なのか)
   ============================================ */
.why-section {
    padding: 80px 0;
    background: #fff;
}

.why-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 8px;
}

.why-card {
    padding: 28px 24px;
    border-radius: 16px;
    text-align: center;
}

.why-card.bad {
    background: #fef2f2;
    border: 1px solid #fecaca;
}

.why-card.good {
    background: #eef2ff;
    border: 1px solid #c7d2fe;
}

.why-card .card-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.why-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.why-card.bad h3 {
    color: #dc2626;
}

.why-card.good h3 {
    color: #4f46e5;
}

.why-card p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.7;
}

/* ============================================
   REPORT CONTENTS (レポートの中身)
   ============================================ */
.report-section {
    padding: 80px 0;
    background: #f8fafc;
}

.report-cards {
    display: flex;
    flex-direction: row;
    gap: 24px;
}

.report-card {
    flex: 1;
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.report-card .card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.report-card .card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.report-card:nth-child(1) .card-icon {
    background: #dbeafe;
}

.report-card:nth-child(2) .card-icon {
    background: #fef3c7;
}

.report-card:nth-child(3) .card-icon {
    background: #d1fae5;
}

.report-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
}

.report-card .card-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 16px;
}

.report-card .card-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.report-card .card-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: #475569;
    line-height: 1.6;
}

.report-card .card-list li::before {
    content: '✓';
    color: #4f46e5;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ============================================
   PRICING REASON (価格の理由)
   ============================================ */
.pricing-section {
    padding: 80px 0;
    background: #fff;
}

.pricing-reasons {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pricing-reason {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 24px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    text-align: left;
}

.pricing-reason .reason-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #eef2ff;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.pricing-reason h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.pricing-reason p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.7;
}

/* ============================================
   RESULTS (実績)
   ============================================ */
.results-section {
    padding: 80px 0;
    background: linear-gradient(160deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
}

.results-section .section-label {
    background: rgba(99, 102, 241, 0.2);
    color: #a5b4fc;
}

.results-section .section-title {
    color: #fff;
}

.results-section .section-subtitle {
    color: #94a3b8;
}

.results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.result-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 28px 24px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.result-card .result-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    color: #a5b4fc;
    background: rgba(99, 102, 241, 0.2);
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 14px;
}

.result-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 20px;
    line-height: 1.4;
}

.result-metrics {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.result-metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.result-metric:last-child {
    border-bottom: none;
}

.result-metric .metric-label {
    font-size: 0.8rem;
    color: #94a3b8;
}

.result-metric .metric-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #a5b4fc;
}

.result-metric .metric-value.highlight {
    color: #34d399;
    font-size: 1.3rem;
}

/* -- Simple Result Cards -- */
.simple-results-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.simple-result-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 28px 24px;
    text-align: left;
    transition: all 0.3s ease;
}

.simple-result-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.simple-result-client {
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 500;
    margin-bottom: 10px;
}

.simple-result-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 8px;
    line-height: 1.3;
}

.simple-result-value .accent-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: #818cf8;
}

.simple-result-note {
    font-size: 0.78rem;
    color: #64748b;
    line-height: 1.5;
}

.more-results {
    margin-top: 32px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-align: center;
}

.more-results h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #e2e8f0;
    margin-bottom: 8px;
}

.more-results p {
    font-size: 0.85rem;
    color: #94a3b8;
}

.results-note {
    text-align: center;
    margin-top: 28px;
    font-size: 0.8rem;
    color: #64748b;
}

/* -- Industries Tags -- */
.results-industries {
    margin-top: 40px;
    padding: 32px 28px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
}

.industries-title {
    font-size: 1rem;
    font-weight: 600;
    color: #cbd5e1;
    margin-bottom: 20px;
}

.industries-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
}

.industry-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #e2e8f0;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.25);
    padding: 8px 16px;
    border-radius: 100px;
    transition: all 0.2s ease;
}

.industry-tag:hover {
    background: rgba(99, 102, 241, 0.25);
    transform: translateY(-1px);
}

.industries-note {
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 4px;
}

/* ============================================
   TARGET (こんな方に最適)
   ============================================ */
.target-section {
    padding: 80px 0;
    background: #f8fafc;
}

.target-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 640px;
    margin: 0 auto;
}

.target-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 24px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e2e8f0;
    font-size: 0.95rem;
    color: #1e293b;
    line-height: 1.6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.target-item .check {
    color: #4f46e5;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
    font-weight: 700;
}

/* ============================================
   STEPS (ご利用の流れ)
   ============================================ */
.steps-section {
    padding: 80px 0;
    background: #fff;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    max-width: 560px;
    margin: 0 auto;
}

.steps-list::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 48px;
    bottom: 48px;
    width: 2px;
    background: #e0e7ff;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 32px 0;
    position: relative;
}

.step-content {
    flex: 1;
    text-align: left;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #4f46e5;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-content h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
    margin-top: 4px;
}

.step-content p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.7;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta-section {
    padding: 80px 0;
    background: linear-gradient(160deg, #eef2ff 0%, #e0e7ff 50%, #c7d2fe 100%);
}

.final-cta-section .section-title {
    margin-bottom: 12px;
}

.final-cta-section .cta-description {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 32px;
}

/* ============================================
   MID CTA (中間CTA)
   ============================================ */
.mid-cta {
    padding: 56px 0;
    background: #eef2ff;
    border-top: 1px solid #e0e7ff;
    border-bottom: 1px solid #e0e7ff;
}

.mid-cta-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 20px;
    text-align: center;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 40px 0;
    background: #0f172a;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    font-size: 0.8rem;
    color: #94a3b8;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #e2e8f0;
}

.footer-copy {
    font-size: 0.75rem;
    color: #475569;
}

/* ============================================
   SECTION IMAGES (イラスト配置)
   ============================================ */
.hero-image {
    margin-top: 32px;
}

.hero-image img {
    margin: 0 auto;
    max-width: 360px;
}

.section-image {
    margin-bottom: 32px;
}

.section-image img {
    margin: 0 auto;
    max-width: 280px;
}

/* ============================================
   PROFILE (自己紹介)
   ============================================ */
.profile-section {
    padding: 80px 0;
    background: #f8fafc;
}

.profile-card {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin-top: 24px;
}

.profile-image {
    flex-shrink: 0;
}

.profile-image img {
    width: 200px;
    height: 200px;
    border-radius: 16px;
    object-fit: cover;
    background: #eef2ff;
}

.profile-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 4px;
}

.profile-role {
    font-size: 0.9rem;
    color: #6366f1;
    font-weight: 600;
    margin-bottom: 20px;
}

.profile-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.profile-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-stat .stat-number {
    font-size: 1.2rem;
    font-weight: 800;
    color: #4f46e5;
}

.profile-stat .stat-label {
    font-size: 0.7rem;
    color: #94a3b8;
    font-weight: 500;
}

.profile-desc {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 20px;
}

.profile-highlights {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.profile-highlights li {
    font-size: 0.85rem;
    color: #1e293b;
    font-weight: 500;
    line-height: 1.5;
}

/* ============================================
   PRICING TABLE (価格表)
   ============================================ */
.pricing-table-section {
    padding: 80px 0;
    background: #f8fafc;
}

.pricing-table-card {
    max-width: 680px;
    margin: 40px auto 0;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    /* より立体的なシャドウ */
    border: none;
    position: relative;
    transform: translateY(-4px);
    transition: transform 0.3s ease;
}

.pricing-table-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #4f46e5, #ec4899);
    /* 上部のアクセントライン */
}

.pricing-table-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    padding: 48px 32px 40px;
    /* グラデーション背景に十分なパディング */
}

.pricing-badge {
    background: rgba(255, 255, 255, 0.1);
    color: #60a5fa;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    display: inline-block;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.pricing-plan-name {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.price-box {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.price-box .currency {
    font-size: 1.5rem;
    font-weight: 700;
}

.price-box .price-number {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(to right, #ffffff, #cbd5e1);
    /* 文字をグラデーションに */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-box .tax-info {
    font-size: 0.9rem;
    font-weight: 500;
    color: #94a3b8;
    margin-left: 8px;
}

.pricing-table-body {
    padding: 32px;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 16px;
    border-bottom: 1px dashed #cbd5e1;
    /* ダッシュにして軽くする */
    text-align: left;
    transition: background 0.3s ease;
}

.pricing-row:hover {
    background: #f8fafc;
    border-radius: 8px;
}

.pricing-row:last-child {
    border-bottom: none;
    padding-bottom: 24px;
}

.pricing-label {
    font-size: 0.95rem;
    font-weight: 800;
    color: #1e293b;
    width: 35%;
    display: flex;
    align-items: center;
    gap: 8px;
}

.row-icon {
    font-size: 1.2rem;
    /* アイコンを少し大きく */
}

.pricing-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: #475569;
    width: 65%;
}

/* ============================================
   NEW PROFILE
   ============================================ */
.profile-section-dark {
    padding: 80px 0;
    background: #0f172a;
}

.container-profile {
    max-width: 800px;
}

.new-profile-card {
    display: flex;
    align-items: center;
    gap: 48px;
    background: #ffffff;
    border-radius: 24px;
    padding: 48px;
}

.new-profile-image {
    flex-shrink: 0;
}

.new-profile-image img {
    width: 240px;
    height: 320px;
    object-fit: cover;
    border-radius: 16px;
}

.new-profile-info {
    text-align: left;
}

.new-profile-name {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.name-kana {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.new-profile-role {
    font-size: 1rem;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 24px;
}

.new-profile-desc {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 32px;
}

.new-profile-badges {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.new-badge {
    background: #fef9c3;
    color: #854d0e;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 24px;
    border-radius: 100px;
    border: 1px solid #fde047;
    display: inline-block;
    width: fit-content;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .hero {
        padding: 80px 0 60px;
    }

    .hero-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 32px;
    }

    .hero-text-col {
        text-align: center;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-title {
        font-size: 2rem;
        white-space: normal;
    }

    .solution-cards {
        grid-template-columns: 1fr;
    }

    .report-cards {
        flex-direction: column;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .why-comparison {
        grid-template-columns: 1fr;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .simple-results-grid {
        grid-template-columns: 1fr;
    }

    .hero-price .amount {
        font-size: 1.6rem;
    }

    .fixed-cta {
        display: block;
    }

    body {
        padding-bottom: 80px;
    }

    .pain-item,
    .target-item {
        padding: 16px 18px;
        font-size: 0.9rem;
    }

    .solution-card,
    .report-card {
        padding: 24px 20px;
    }

    .pricing-reason {
        flex-direction: column;
        gap: 12px;
        padding: 24px 20px;
    }

    .step-item {
        padding: 18px 0;
    }

    /* Profile responsive */
    .new-profile-card {
        flex-direction: column;
        padding: 32px;
        gap: 32px;
    }

    .new-profile-image img {
        width: 200px;
        height: 260px;
    }

    .new-profile-info {
        text-align: center;
    }

    .new-profile-badges {
        align-items: center;
    }

    .pricing-row {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .pricing-label {
        width: 100%;
    }

    .pricing-value {
        width: 100%;
    }

    .hero-image img {
        max-width: 260px;
    }

    .section-image img {
        max-width: 220px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.2rem;
    }

    .container {
        padding: 0 16px;
    }

    .cta-button {
        font-size: 0.95rem;
        padding: 16px 28px;
    }

    .result-card {
        padding: 20px 18px;
    }

    .profile-card {
        padding: 24px 16px;
    }

    .profile-stats {
        gap: 16px;
    }
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}