/* ========================================
   ストレングスファインダー プロファイリングLP
   WordPress内配置用 - スコープ付きCSS
   ======================================== */

/* すべてのスタイルを .sf-profiling-lp でスコープ化 */
.sf-profiling-lp {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.8;
    color: #333;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* リセット（スコープ内のみ） */
.sf-profiling-lp * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.sf-profiling-lp a {
    color: inherit;
    text-decoration: none;
}

.sf-profiling-lp ul,
.sf-profiling-lp ol {
    list-style: none;
}

.sf-profiling-lp img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

.sf-profiling-lp button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ========================================
   ヘッダー（固定ナビゲーション）
   ======================================== */
.sf-profiling-lp .sf-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 20px 0;
}

.sf-profiling-lp .sf-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 15px 0;
}

.sf-profiling-lp .sf-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.sf-profiling-lp .sf-header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    transition: color 0.3s ease;
}

.sf-profiling-lp .sf-header.scrolled .sf-header-logo {
    color: #667eea;
}

.sf-profiling-lp .sf-header-logo i {
    font-size: 28px;
}

.sf-profiling-lp .sf-logo-text {
    line-height: 1.3;
    font-size: 16px;
    font-weight: 700;
}

.sf-profiling-lp .sf-logo-text small {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.sf-profiling-lp .sf-header-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.sf-profiling-lp .sf-nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.sf-profiling-lp .sf-nav-link {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    position: relative;
    padding: 5px 0;
    transition: all 0.3s ease;
}

.sf-profiling-lp .sf-header.scrolled .sf-nav-link {
    color: #333;
}

.sf-profiling-lp .sf-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transition: width 0.3s ease;
}

.sf-profiling-lp .sf-nav-link:hover::after {
    width: 100%;
}

.sf-profiling-lp .sf-header-cta {
    white-space: nowrap;
}

.sf-profiling-lp .sf-mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    cursor: pointer;
}

.sf-profiling-lp .sf-mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.sf-profiling-lp .sf-header.scrolled .sf-mobile-menu-toggle span {
    background: #333;
}

.sf-profiling-lp .sf-mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.sf-profiling-lp .sf-mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.sf-profiling-lp .sf-mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ========================================
   共通レイアウト
   ======================================== */
.sf-profiling-lp .sf-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.sf-profiling-lp .sf-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.sf-profiling-lp .sf-section-title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.4;
}

.sf-profiling-lp .sf-section-lead {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

/* モバイル用改行 */
.sf-profiling-lp .sf-mobile-br {
    display: none;
}

/* ========================================
   ヒーローセクション
   ======================================== */
.sf-profiling-lp .sf-hero {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 180px 0 100px;
    overflow: hidden;
    margin-top: 0;
}

/* ヒーロー背景画像 */
.sf-hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.sf-hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.sf-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.85) 0%, rgba(118, 75, 162, 0.85) 100%);
}

.sf-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.sf-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.sf-hero-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.sf-hero-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    opacity: 0.9;
}

.sf-hero-main {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.3;
    text-shadow: 2px 4px 8px rgba(0,0,0,0.2);
}

.sf-hero-service {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.sf-hero-lead {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
}

.sf-hero-lead strong {
    font-weight: 700;
    border-bottom: 2px solid rgba(255,255,255,0.5);
    padding-bottom: 2px;
}

.sf-hero-cta {
    margin-top: 50px;
}

.sf-hero-badge {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.sf-badge-content {
    background: #fff;
    color: #667eea;
    padding: 20px 40px;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.2rem;
    font-weight: 700;
}

.sf-badge-content i {
    font-size: 1.5rem;
}

.sf-badge-text strong {
    color: #764ba2;
    font-size: 1.5rem;
}

/* ========================================
   ボタンスタイル
   ======================================== */
.sf-profiling-lp .sf-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
    justify-content: center;
}

.sf-btn-primary {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #fff;
    box-shadow: 0 10px 30px rgba(245, 87, 108, 0.3);
}

.sf-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(245, 87, 108, 0.4);
}

.sf-btn-large {
    padding: 20px 50px;
    font-size: 1.2rem;
}

.sf-btn-xlarge {
    padding: 24px 60px;
    font-size: 1.3rem;
}

.sf-btn-block {
    width: 100%;
}

/* ========================================
   Problem セクション
   ======================================== */
.sf-profiling-lp .sf-problem {
    padding: 120px 0 80px;
    background: #f9fafb;
}

.sf-problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.sf-problem-card {
    background: #fff;
    padding: 0;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.sf-problem-image {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.sf-problem-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.sf-problem-card:hover .sf-problem-img {
    transform: scale(1.1);
}

.sf-problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.sf-problem-icon {
    font-size: 3rem;
    color: #667eea;
    margin: 30px 0 20px 0;
}

.sf-problem-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 20px 15px 20px;
}

.sf-problem-text {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin: 0 20px 30px 20px;
}

.sf-problem-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.sf-problem-icon i {
    font-size: 2.5rem;
    color: #fff;
}

.sf-problem-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.sf-problem-text {
    color: #666;
    line-height: 1.8;
}

/* ========================================
   Affinity セクション
   ======================================== */
.sf-profiling-lp .sf-affinity {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

.sf-affinity-content {
    max-width: 900px;
    margin: 0 auto;
}

.sf-affinity-title {
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1.6;
    margin-bottom: 40px;
}

.sf-affinity-text {
    font-size: 1.2rem;
    line-height: 2;
    margin-bottom: 25px;
    opacity: 0.95;
}

/* 変化のビジュアル */
.sf-transformation-visual {
    margin: 50px 0;
}

.sf-before-after-single {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.sf-transformation-img {
    width: 100%;
    height: auto;
    display: block;
}

.sf-comparison-labels {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px 0 20px 0;
}

.sf-label-left,
.sf-label-right {
    text-align: center;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0 20px;
}

.sf-label-left {
    border-right: 2px solid rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    /* ヘッダー モバイル対応 */
    .sf-profiling-lp .sf-header {
        padding: 15px 0;
    }
    
    .sf-profiling-lp .sf-header-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .sf-profiling-lp .sf-header-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .sf-profiling-lp .sf-nav-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .sf-profiling-lp .sf-nav-menu li {
        width: 100%;
        border-bottom: 1px solid #e0e7ff;
    }
    
    .sf-profiling-lp .sf-nav-link {
        display: block;
        padding: 15px 20px;
        color: #333 !important;
    }
    
    .sf-profiling-lp .sf-header-cta {
        margin-top: 20px;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .sf-profiling-lp .sf-mobile-menu-toggle {
        display: flex;
    }
    
    .sf-profiling-lp .sf-profiling-lp .sf-hero {
        padding: 140px 0 80px;
    }
    
    .sf-profiling-lp .sf-comparison-labels {
        font-size: 0.9rem;
        padding: 20px 0 15px 0;
    }
    
    .sf-profiling-lp .sf-label-left,
    .sf-profiling-lp .sf-label-right {
        font-size: 0.9rem;
        padding: 0 10px;
    }
}

.sf-affinity-emphasis {
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 40px;
    padding: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    border: 2px solid rgba(255,255,255,0.2);
}

/* ========================================
   Solution セクション
   ======================================== */
.sf-profiling-lp .sf-solution {
    padding: 100px 0;
    background: #fff;
}

/* レポート実物ショーケース */
/* レポートヒーロー */
.sf-report-hero-section {
    position: relative;
    max-width: 600px;
    margin: 60px auto;
}

.sf-report-hero-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.3);
    transition: all 0.5s ease;
}

.sf-report-hero-img:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 30px 80px rgba(102, 126, 234, 0.4);
}

.sf-report-hero-badge {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px 40px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.4);
    white-space: nowrap;
}

.sf-report-hero-badge i {
    font-size: 2.5rem;
}

.sf-badge-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.sf-badge-price {
    font-size: 1.8rem;
    font-weight: 900;
}

/* 実際のレポートサンプル */
.sf-feature-samples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.sf-action-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.sf-sample-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.sf-sample-img:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.25);
}

@media (max-width: 768px) {
    .sf-report-hero-badge {
        bottom: -40px;
        padding: 15px 30px;
        flex-direction: column;
        gap: 10px;
    }
    
    .sf-report-hero-badge i {
        font-size: 2rem;
    }
    
    .sf-badge-price {
        font-size: 1.5rem;
    }
    
    .sf-feature-samples {
        grid-template-columns: 1fr;
    }
}
    text-align: left;
}

.sf-report-detail-caption i {
    color: #667eea;
    font-size: 1.8rem;
    margin-bottom: 10px;
    display: block;
}

.sf-report-detail-caption h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.sf-report-detail-caption p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

/* レポートボリューム視覚化 */
.sf-report-volume {
    background: linear-gradient(135deg, #f6f8fb 0%, #fff 100%);
    border: 2px solid #e0e7ff;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 60px;
}

.sf-volume-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1.5rem;
    font-weight: 900;
    color: #667eea;
    margin-bottom: 30px;
}

.sf-volume-badge i {
    font-size: 2rem;
}

.sf-volume-breakdown {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sf-volume-item {
    position: relative;
}

.sf-volume-bar {
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2);
}

.sf-volume-bar:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.sf-volume-bar.sf-bar-accent {
    background: linear-gradient(90deg, #f093fb 0%, #f5576c 100%);
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.2);
}

.sf-volume-bar.sf-bar-accent:hover {
    box-shadow: 0 6px 20px rgba(245, 87, 108, 0.3);
}

.sf-volume-bar.sf-bar-secondary {
    background: linear-gradient(90deg, #4facfe 0%, #00f2fe 100%);
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.2);
}

.sf-volume-bar.sf-bar-secondary:hover {
    box-shadow: 0 6px 20px rgba(79, 172, 254, 0.3);
}

.sf-volume-label {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
}

/* 機能カード */
.sf-solution-features {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sf-feature-card {
    background: #fff;
    border: 2px solid #e0e7ff;
    border-radius: 20px;
    padding: 50px;
    position: relative;
    transition: all 0.3s ease;
}

.sf-feature-card:hover {
    border-color: #667eea;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.15);
    transform: translateY(-5px);
}

.sf-feature-number {
    position: absolute;
    top: -20px;
    left: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

.sf-feature-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #f6f8fb 0%, #e0e7ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.sf-feature-icon i {
    font-size: 3rem;
    color: #667eea;
}

.sf-feature-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.sf-feature-description {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 30px;
}

.sf-feature-highlight {
    background: #f6f8fb;
    border-left: 4px solid #667eea;
    padding: 25px 30px;
    border-radius: 10px;
    margin-top: 25px;
    position: relative;
}

.sf-feature-highlight i.fa-quote-left {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 1.5rem;
    color: #667eea;
    opacity: 0.3;
}

.sf-feature-highlight p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin-bottom: 10px;
    padding-left: 30px;
}

.sf-highlight-author {
    display: block;
    font-size: 0.9rem;
    color: #667eea;
    font-weight: 700;
    text-align: right;
}

/* ========================================
   お客様の声セクション
   ======================================== */
.sf-profiling-lp .sf-testimonials {
    padding: 100px 0;
    background: #f9fafb;
}

/* タブナビゲーション */
.sf-testimonial-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.sf-tab-btn {
    background: #fff;
    border: 2px solid #e0e7ff;
    border-radius: 50px;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #666;
    transition: all 0.3s ease;
    cursor: pointer;
}

.sf-tab-btn i {
    font-size: 1.2rem;
}

.sf-tab-btn:hover {
    border-color: #667eea;
    color: #667eea;
    transform: translateY(-2px);
}

.sf-tab-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    color: #fff;
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.3);
}

/* タブコンテンツ */
.sf-testimonial-content {
    display: none;
}

.sf-testimonial-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* パートナーシップ画像 */
.sf-partnership-image-wrapper {
    margin-bottom: 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    position: relative;
}

.sf-partnership-image {
    width: 100%;
    height: auto;
    display: block;
}

.sf-partnership-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.9) 100%);
    color: #fff;
    padding: 30px;
    text-align: center;
}

.sf-partnership-caption i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
    color: #f5576c;
}

.sf-partnership-caption p {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.6;
    margin: 0;
}

.sf-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.sf-testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.sf-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.sf-testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.sf-testimonial-meta {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sf-testimonial-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.sf-testimonial-info {
    font-size: 0.9rem;
    color: #999;
}

.sf-testimonial-stars {
    display: flex;
    gap: 3px;
    color: #fbbf24;
}

.sf-testimonial-stars i {
    font-size: 1rem;
}

.sf-testimonial-body p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.sf-testimonial-body p:last-child {
    margin-bottom: 0;
}

.sf-testimonial-body strong {
    color: #667eea;
    font-weight: 700;
}

/* ========================================
   Plans セクション
   ======================================== */
.sf-profiling-lp .sf-plans {
    padding: 100px 0;
    background: #fff;
}

.sf-plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.sf-plan-card {
    background: #fff;
    border: 3px solid #e0e7ff;
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.sf-plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.sf-plan-featured {
    border-color: #667eea;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.2);
}

.sf-plan-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(245, 87, 108, 0.3);
    z-index: 10;
}

.sf-plan-partnership-visual {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.sf-partnership-plan-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sf-plan-header {
    background: linear-gradient(135deg, #f6f8fb 0%, #e0e7ff 100%);
    padding: 40px 35px;
    text-align: center;
}

.sf-plan-featured .sf-plan-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.sf-plan-name {
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.sf-plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.sf-price-amount {
    font-size: 3.5rem;
    font-weight: 900;
}

.sf-price-unit {
    font-size: 1.5rem;
    font-weight: 700;
}

.sf-price-tax {
    font-size: 0.9rem;
    opacity: 0.8;
}

.sf-plan-body {
    padding: 40px 35px;
}

.sf-plan-description {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
    text-align: center;
}

.sf-plan-features {
    margin-bottom: 30px;
}

.sf-plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1rem;
    line-height: 1.8;
}

.sf-plan-features i {
    color: #667eea;
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.sf-plan-target {
    background: #f9fafb;
    border-radius: 15px;
    padding: 25px;
    margin-top: 30px;
}

.sf-plan-target h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.sf-plan-target ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #555;
    font-size: 0.95rem;
}

.sf-plan-target ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 900;
}

.sf-plan-footer {
    padding: 0 35px 40px;
}

/* オプション */
.sf-option-section {
    max-width: 900px;
    margin: 0 auto;
}

.sf-option-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.sf-option-title i {
    color: #667eea;
}

.sf-option-card {
    background: #fff;
    border: 2px solid #e0e7ff;
    border-radius: 20px;
    padding: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.sf-option-content {
    flex: 1;
}

.sf-option-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.sf-option-description {
    color: #666;
    line-height: 1.8;
}

.sf-option-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    white-space: nowrap;
}

/* ========================================
   Narrowing セクション
   ======================================== */
.sf-profiling-lp .sf-narrowing {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    text-align: center;
}

.sf-narrowing-content {
    max-width: 900px;
    margin: 0 auto;
}

.sf-narrowing-icon {
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.sf-narrowing-icon i {
    font-size: 3rem;
    color: #f5576c;
}

.sf-narrowing-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 30px;
}

.sf-narrowing-text {
    font-size: 1.2rem;
    line-height: 2;
    margin-bottom: 50px;
    opacity: 0.9;
}

.sf-narrowing-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.sf-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sf-stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: #f5576c;
    line-height: 1;
    margin-bottom: 10px;
}

.sf-stat-label {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.sf-stat-desc {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ========================================
   Flow セクション
   ======================================== */
.sf-profiling-lp .sf-flow {
    padding: 100px 0;
    background: #f9fafb;
}

.sf-flow-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

.sf-flow-step {
    background: #fff;
    border: 3px solid #e0e7ff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    transition: all 0.3s ease;
}

.sf-flow-step:hover {
    border-color: #667eea;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.sf-flow-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    font-weight: 900;
    font-size: 0.9rem;
    padding: 8px 20px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 25px;
}

.sf-flow-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f6f8fb 0%, #e0e7ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.sf-flow-icon i {
    font-size: 2.5rem;
    color: #667eea;
}

.sf-flow-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.sf-flow-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.8;
}

.sf-flow-arrow {
    font-size: 2rem;
    color: #667eea;
    flex-shrink: 0;
}

/* ========================================
   CTA セクション
   ======================================== */
.sf-profiling-lp .sf-cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    text-align: center;
}

.sf-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.sf-cta-title {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 30px;
}

.sf-cta-lead {
    font-size: 1.3rem;
    line-height: 2;
    margin-bottom: 50px;
    opacity: 0.95;
}

.sf-cta-buttons {
    margin-bottom: 30px;
}

.sf-cta-note {
    font-size: 0.95rem;
    opacity: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* ========================================
   FAQ セクション
   ======================================== */
.sf-profiling-lp .sf-faq {
    padding: 100px 0;
    background: #fff;
}

.sf-faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.sf-faq-item {
    background: #fff;
    border: 2px solid #e0e7ff;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.sf-faq-item:hover {
    border-color: #667eea;
}

.sf-faq-question {
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
    color: #1a1a1a;
    user-select: none;
}

.sf-faq-question i.fa-question-circle {
    color: #667eea;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.sf-faq-question > span {
    flex: 1;
}

.sf-faq-toggle {
    color: #999;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.sf-faq-item.active .sf-faq-toggle {
    transform: rotate(180deg);
}

.sf-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.sf-faq-item.active .sf-faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 60px;
}

.sf-faq-answer p {
    color: #666;
    line-height: 1.9;
    font-size: 1rem;
}

/* ========================================
   Apply Form セクション
   ======================================== */
.sf-apply {
    padding: 100px 0;
    background: #f9fafb;
}

.sf-apply-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.sf-apply-form {
    background: #fff;
    border: 2px solid #e0e7ff;
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.sf-form-group {
    margin-bottom: 30px;
}

.sf-form-label {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.sf-form-required {
    background: #f5576c;
    color: #fff;
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: 4px;
    margin-left: 10px;
    font-weight: 700;
}

.sf-form-optional {
    background: #999;
    color: #fff;
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: 4px;
    margin-left: 10px;
    font-weight: 700;
}

.sf-form-input,
.sf-form-select,
.sf-form-textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e7ff;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fff;
}

.sf-form-input:focus,
.sf-form-select:focus,
.sf-form-textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.sf-form-textarea {
    resize: vertical;
    min-height: 120px;
}

.sf-form-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sf-form-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 15px;
    background: #f9fafb;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.sf-form-checkbox:hover {
    background: #f0f2f5;
}

.sf-form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #667eea;
}

.sf-form-checkbox span {
    font-size: 1rem;
    color: #333;
}

.sf-form-submit {
    margin-top: 40px;
}

.sf-form-note {
    text-align: center;
    font-size: 0.9rem;
    color: #999;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.sf-form-note i {
    color: #667eea;
}

/* ========================================
   Footer
   ======================================== */
.sf-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 60px 0 30px;
    text-align: center;
}

.sf-footer-content {
    margin-bottom: 30px;
}

.sf-footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.sf-footer-text {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 20px;
}

.sf-footer-copy {
    font-size: 0.85rem;
    opacity: 0.6;
}

.sf-footer-links {
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.sf-footer-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 50px;
    background: rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.sf-footer-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-3px);
}

/* ========================================
   レスポンシブデザイン
   ======================================== */

/* タブレット */
@media (max-width: 1024px) {
    .sf-section-title {
        font-size: 2rem;
    }

    .sf-hero-main {
        font-size: 2.8rem;
    }

    .sf-image-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .sf-partnership-img {
        height: 350px;
    }

    .sf-plans-grid {
        grid-template-columns: 1fr;
    }

    .sf-flow-steps {
        flex-direction: column;
    }

    .sf-flow-arrow {
        transform: rotate(90deg);
    }
}

/* モバイル */
@media (max-width: 768px) {
    .sf-container {
        padding: 0 15px;
    }

    .sf-mobile-br {
        display: inline;
    }

    .sf-section-header {
        margin-bottom: 40px;
    }

    .sf-section-title {
        font-size: 1.8rem;
    }

    .sf-section-lead {
        font-size: 1rem;
    }

    /* ヒーロー */
    .sf-profiling-lp .sf-hero {
        padding: 80px 0 60px;
    }

    .sf-hero-main {
        font-size: 2rem;
    }
    
    /* Problem Grid - モバイルは1列 */
    .sf-problem-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    /* Affinity - Before/After */
    .sf-before-after-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sf-hero-subtitle {
        font-size: 1rem;
    }

    .sf-hero-service {
        font-size: 1.2rem;
    }

    .sf-hero-lead {
        font-size: 1.1rem;
    }

    .sf-badge-content {
        padding: 15px 25px;
        font-size: 1rem;
    }

    .sf-badge-text strong {
        font-size: 1.2rem;
    }

    /* ボタン */
    .sf-profiling-lp .sf-btn {
        padding: 14px 30px;
        font-size: 1rem;
    }

    .sf-btn-large {
        padding: 16px 35px;
        font-size: 1.1rem;
    }

    .sf-btn-xlarge {
        padding: 18px 40px;
        font-size: 1.15rem;
    }

    /* Problem */
    .sf-profiling-lp .sf-problem {
        padding: 80px 0 60px;
    }

    .sf-problem-grid {
        grid-template-columns: 1fr;
    }

    /* Affinity */
    .sf-profiling-lp .sf-affinity {
        padding: 60px 0;
    }

    .sf-affinity-title {
        font-size: 1.6rem;
    }

    .sf-affinity-text {
        font-size: 1rem;
    }

    .sf-affinity-emphasis {
        font-size: 1.1rem;
        padding: 20px;
    }

    /* Solution */
    .sf-profiling-lp .sf-solution {
        padding: 60px 0;
    }

    .sf-report-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sf-report-detail-img {
        height: 180px;
    }

    .sf-report-detail-caption {
        padding: 20px;
    }

    .sf-report-detail-caption h4 {
        font-size: 1.1rem;
    }

    .sf-transformation-visual {
        margin: 30px 0;
    }

    .sf-report-volume {
        padding: 25px 20px;
    }

    .sf-volume-badge {
        font-size: 1.2rem;
        flex-direction: column;
        gap: 10px;
    }

    .sf-volume-bar {
        height: 50px;
        padding: 0 15px;
    }

    .sf-volume-label {
        font-size: 0.95rem;
    }

    .sf-feature-card {
        padding: 35px 25px;
    }

    .sf-feature-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .sf-feature-icon {
        width: 80px;
        height: 80px;
    }

    .sf-feature-icon i {
        font-size: 2.5rem;
    }

    .sf-feature-title {
        font-size: 1.5rem;
    }

    .sf-feature-description {
        font-size: 1rem;
    }

    /* Testimonials */
    .sf-profiling-lp .sf-testimonials {
        padding: 60px 0;
    }

    .sf-testimonial-tabs {
        gap: 10px;
    }

    .sf-tab-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .sf-tab-btn span {
        display: none;
    }

    .sf-tab-btn i {
        font-size: 1.5rem;
    }

    .sf-testimonial-grid {
        grid-template-columns: 1fr;
    }

    .sf-partnership-image-wrapper {
        margin-bottom: 30px;
    }

    .sf-partnership-caption {
        padding: 20px;
    }

    .sf-partnership-caption i {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .sf-partnership-caption p {
        font-size: 1rem;
    }

    /* Plans */
    .sf-profiling-lp .sf-plans {
        padding: 60px 0;
    }

    .sf-plans-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .sf-plan-header {
        padding: 30px 25px;
    }

    .sf-plan-name {
        font-size: 1.4rem;
    }

    .sf-price-amount {
        font-size: 2.8rem;
    }

    .sf-plan-body {
        padding: 30px 25px;
    }

    .sf-plan-footer {
        padding: 0 25px 30px;
    }

    .sf-option-card {
        flex-direction: column;
        align-items: flex-start;
    }

    /* Narrowing */
    .sf-profiling-lp .sf-narrowing {
        padding: 60px 0;
    }

    .sf-narrowing-title {
        font-size: 1.8rem;
    }

    .sf-narrowing-text {
        font-size: 1rem;
    }

    .sf-narrowing-stats {
        gap: 40px;
    }

    .sf-stat-number {
        font-size: 3rem;
    }

    /* Flow */
    .sf-profiling-lp .sf-flow {
        padding: 60px 0;
    }

    /* CTA */
    .sf-profiling-lp .sf-cta {
        padding: 80px 0;
    }

    .sf-cta-title {
        font-size: 2rem;
    }

    .sf-cta-lead {
        font-size: 1.1rem;
    }

    /* FAQ */
    .sf-profiling-lp .sf-faq {
        padding: 60px 0;
    }

    .sf-faq-question {
        padding: 20px;
        font-size: 1rem;
    }

    .sf-faq-item.active .sf-faq-answer {
        padding: 0 20px 20px 45px;
    }

    /* Apply */
    .sf-apply {
        padding: 60px 0;
    }

    .sf-apply-form {
        padding: 30px 20px;
    }

    .sf-form-label {
        font-size: 1rem;
    }

    /* Footer */
    .sf-footer {
        padding: 40px 0 20px;
    }
}

/* 小型モバイル */
@media (max-width: 480px) {
    .sf-hero-main {
        font-size: 1.6rem;
    }

    .sf-badge-content {
        flex-direction: column;
        gap: 5px;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .sf-badge-text strong {
        font-size: 1.1rem;
    }

    .sf-volume-breakdown {
        gap: 10px;
    }

    .sf-volume-bar {
        height: 45px;
        font-size: 0.85rem;
    }

    .sf-testimonial-grid {
        grid-template-columns: 1fr;
    }

    .sf-narrowing-stats {
        flex-direction: column;
        gap: 30px;
    }

    .sf-tab-btn {
        padding: 10px 15px;
    }
}