/*
 * Services Pages CSS
 * services配下の固定ページ用の共通スタイル
 */

/* ========================================
   サービスページ共通スタイル
======================================== */
.service-page {
    background-color: #fff;
}

/* ========================================
   サービスヒーローセクション
======================================== */
.service-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #fff;
    padding: var(--spacing-4xl) 0;
    position: relative;
    overflow: hidden;
}

.service-hero::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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.service-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    position: relative;
    z-index: 2;
}

.service-hero-title {
    font-size: clamp(3.2rem, 5vw, 4.8rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: #fff;
    line-height: 1.2;
}

.service-hero-subtitle {
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.service-hero-description {
    font-size: 1.6rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-xl);
    color: rgba(255, 255, 255, 0.85);
}

.service-hero-actions {
    margin-top: var(--spacing-xl);
}

.service-hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-hero-icon {
    font-size: 12rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* ========================================
   サービスセクション共通
======================================== */
.service-section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.service-section-header h2 {
    font-size: clamp(2.8rem, 4vw, 3.6rem);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
    position: relative;
    display: inline-block;
    padding-bottom: var(--spacing-md);
}

.service-section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
    border-radius: 2px;
}

.service-section-header p {
    font-size: 1.6rem;
    color: var(--color-text-light);
    max-width: 100%;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========================================
   お悩みセクション - リニューアル版
======================================== */
.service-problems {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.service-problems::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: radial-gradient(ellipse at center top, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.service-problems .container {
    position: relative;
    z-index: 2;
}

/* 問題提起グリッドレイアウト */
.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 32px;
    margin-bottom: 80px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* 問題カード */
.problem-card {
    background: #ffffff;
    padding: 40px 32px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 32px rgba(15, 23, 42, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    min-height: 280px;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #6366f1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.problem-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.15);
    border-color: #cbd5e1;
}

.problem-card:hover::before {
    transform: scaleX(1);
}

/* 問題アイコン */
.problem-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.problem-card:hover .problem-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #1d4ed8 0%, #4f46e5 100%);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.problem-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 2.5;
}

/* 問題タイトル */
.problem-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.3;
    margin: 0;
    text-align: center;
}

/* 問題説明 */
.problem-description {
    font-size: 1.5rem;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
    text-align: center;
}

/* CTAセクション - シンプルデザイン版 */
.service-problems-cta {
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.problems-cta-content {
    position: relative;
    z-index: 2;
}

.problems-cta-title {
    font-size: clamp(2rem, 4vw, 2.6rem);
    color: #1e293b;
    font-weight: 800;
    line-height: 1.6;
}

.problems-cta-description {
    font-size: 1.6rem;
    color: #475569;
    line-height: 1.7;
    margin: 0 auto 32px auto;
    font-weight: 500;
}

.problems-cta-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
    border-radius: 50%;
    margin: 0 auto;
    color: #ffffff;
    animation: bounce 2s infinite;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ========================================
   ご支援内容セクション
======================================== */
.support-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    margin-bottom: 5rem;
}

.support-item {
    background: #fff;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border-light);
    transition: all 0.3s ease;
    position: relative;
}

.support-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.support-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-lg);
    display: block;
}

.support-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: var(--color-text);
}

.support-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.support-list li {
    position: relative;
    padding-left: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    color: var(--color-text-light);
    line-height: 1.6;
}

.support-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-success);
    font-weight: bold;
}

/* ========================================
   対応モールセクション
======================================== */
.service-malls {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.malls-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-3xl);
}

.mall-item {
    background: #fff;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-text);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border-light);
    transition: all 0.3s ease;
}

.mall-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    background: var(--color-primary);
    color: #fff;
}

.service-malls-description {
    text-align: center;
    background: #fff;
    padding: var(--spacing-3xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.service-malls-description h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: var(--color-text);
}

.service-malls-description p {
    font-size: 1.6rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ========================================
   強みセクション
======================================== */
.strengths-list {
    display: grid;
    gap: var(--spacing-lg);
    max-width: 800px;
    margin: 0 auto;
}

.strength-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-lg);
    background: #fff;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border-light);
    transition: all 0.3s ease;
}

.strength-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.strength-icon {
    font-size: 2.4rem;
    color: var(--color-success);
    flex-shrink: 0;
}

.strength-item p {
    font-size: 1.6rem;
    color: var(--color-text);
    line-height: 1.6;
    margin: 0;
}

/* ========================================
   料金セクション
======================================== */
.service-pricing {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-3xl);
}

.pricing-plan {
    background: #fff;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border-light);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-plan:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.pricing-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
}

.pricing-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
}

.pricing-description {
    font-size: 1.4rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.pricing-amount {
    font-size: 1.6rem;
    font-weight: 600;
    background: rgba(30, 64, 175, 0.1);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    display: inline-block;
}

.service-contract {
    text-align: center;
    background: #fff;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.service-contract h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
}

.service-contract p {
    font-size: 1.6rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ========================================
   導入フローセクション
======================================== */
.flow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
}

.flow-step {
    background: #fff;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border-light);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.flow-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.flow-number {
    display: inline-block;
    background: var(--color-secondary);
    color: #fff;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-lg);
}

.flow-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
}

.flow-description {
    font-size: 1.4rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ========================================
   FAQセクション
======================================== */
.service-faq {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.faq-item {
    background: #fff;
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border-light);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-xl);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--color-base-gray);
}

.faq-question h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0;
    flex: 1;
    line-height: 1.5;
}

.faq-toggle {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-left: var(--spacing-md);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

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

.faq-answer p {
    padding: 0 var(--spacing-xl) var(--spacing-xl);
    margin: 0;
    color: var(--color-text-light);
    line-height: 1.6;
    font-size: 1.5rem;
}

/* ========================================
   CTAセクション
======================================== */
.service-cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #fff;
    text-align: center;
}

.service-cta-content h2 {
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    color: #fff;
}

.service-cta-content p {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-xl);
    line-height: 1.7;
}

.service-cta-actions {
    margin-top: var(--spacing-xl);
}

/* ========================================
   レスポンシブ対応 - 新しいデザイン対応
======================================== */
@media (max-width: 1024px) {
    .service-hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
        text-align: center;]
        padding-left: 5px;
        padding-right: 5px;
    }
    
    .service-hero-icon {
        width: 150px;
        height: 150px;
        font-size: 8rem;
    }
    
    .service-problems {
        padding: 60px 0 80px 0;
    }
    
    .problems-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 24px;
        margin-bottom: 60px;
    }
    
    .problem-card {
        padding: 32px 24px;
        min-height: 260px;
        gap: 20px;
    }
    
    .problem-title {
        font-size: 1.8rem;
        margin-bottom: 24px;
    }
    
    .problem-icon {
        width: 40px;
        height: 40px;
    }
    
    .service-problems-cta {
        padding: 48px 32px;
        margin: 0 16px;
    }
    
    .support-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .flow-steps {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: var(--spacing-3xl) 0;
    }
    
    .service-hero-icon {
        width: 120px;
        height: 120px;
        font-size: 6rem;
    }
    
    .service-problems {
        padding: 40px 0 60px 0;
    }
    
    .service-section-header {
        margin-bottom: 40px;
        padding: 0 16px;
    }
    
    .service-section-header h2 {
        font-size: clamp(2.4rem, 5vw, 3rem);
    }
    
    .service-section-header p {
        font-size: 1.6rem;
    }
    
    .problems-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 50px;
        padding: 0 16px;
    }
    
    .problem-card {
        padding: 32px 24px;
        min-height: 240px;
        gap: 16px;
    }
    
    .problem-title {
        font-size: 1.6rem;
        flex-direction: column;
        text-align: center;
        gap: 8px;
        margin-bottom: 20px;
    }
    
    .problem-icon {
        width: 36px;
        height: 36px;
        align-self: center;
    }
    
    .problem-description {
        text-align: left;
    }
    
    .service-problems-cta {
        padding: 48px 16px;
        margin: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        border: none;
    }
    
    .problems-cta-title {
        font-size: clamp(2rem, 4vw, 2.6rem);
        color: #1e293b;
    }
    
    .problems-cta-description {
        font-size: 1.6rem;
        color: #475569;
    }
    
    .support-grid,
    .pricing-grid,
    .flow-steps {
        grid-template-columns: 1fr;
    }
    
    .malls-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .support-item,
    .pricing-plan,
    .flow-step {
        padding: var(--spacing-lg);
    }
    
    .service-malls-description,
    .service-contract {
        padding: var(--spacing-lg);
    }
    
    .faq-question {
        padding: var(--spacing-lg);
    }
    
    .faq-question h3 {
        font-size: 1.4rem;
    }
    
    .faq-answer p {
        padding: 0 var(--spacing-lg) var(--spacing-lg);
        font-size: 1.4rem;
    }
    
    .service-hero-description,
    .service-problems .service-section-header p,
    .service-problems-cta p,
    .service-malls .service-section-header p,
    .service-malls-description p {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .service-hero {
        padding: var(--spacing-2xl) 0;
    }
    
    .service-hero-icon {
        width: 100px;
        height: 100px;
        font-size: 5rem;
    }
    
    .service-problems {
        padding: 32px 0 48px 0;
    }
    
    .service-section-header {
        margin-bottom: 32px;
        padding: 0 12px;
    }
    
    .service-section-header h2 {
        font-size: clamp(2rem, 6vw, 2.6rem);
        margin-bottom: 16px;
    }
    
    .service-section-header h2::after {
        width: 60px;
        height: 3px;
        bottom: -12px;
    }
    
    .service-section-header p {
        font-size: 1.5rem;
        margin-top: 24px;
    }
    
    .problems-grid {
        gap: 16px;
        margin-bottom: 40px;
        padding: 0 12px;
    }
    
    .problem-card {
        padding: 28px 20px;
        min-height: 220px;
        gap: 16px;
    }
    
    .problem-title {
        font-size: 1.8rem;
        margin-bottom: 16px;
    }
    
    .problem-icon {
        width: 56px;
        height: 56px;
    }
    
    .problem-description {
        font-size: 1.4rem;
    }
    
    .service-problems-cta {
        padding: 32px 20px;
        margin: 0 12px;
        border-radius: 12px;
    }
    
    .service-problems-cta::before {
        height: 4px;
    }
    
    .service-problems-cta h3 {
        font-size: clamp(1.8rem, 5vw, 2.2rem);
        margin-bottom: 16px;
    }
    
    .service-problems-cta p {
        font-size: 1.5rem;
        line-height: 1.6;
    }
    
    .service-problems-cta strong {
        padding: 2px 4px;
        font-size: 1.5rem;
        border-radius: 4px;
    }
    
    .malls-grid {
        grid-template-columns: 1fr;
    }
    
    .problem-card,
    .support-item,
    .pricing-plan,
    .flow-step {
        padding: var(--spacing-md);
    }
    
    .service-malls-description,
    .service-contract {
        padding: var(--spacing-md);
    }
    
    .faq-question {
        padding: var(--spacing-md);
    }
    
    .faq-answer p {
        padding: 0 var(--spacing-md) var(--spacing-md);
    }
    
    .service-hero-description,
    .service-problems .service-section-header p,
    .service-problems-cta p,
    .service-malls .service-section-header p,
    .service-malls-description p {
        text-align: left;
    }
    
    .service-hero-title,
    .service-hero-subtitle {
        text-align: left !important;
    }
}

/* ========================================
   アニメーション
======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-page .fade-in {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* ========================================
   印刷用スタイル
======================================== */
@media print {
    .service-hero {
        background: none !important;
        color: #000 !important;
    }
    
    .service-hero-icon {
        display: none;
    }
    
    .faq-answer {
        max-height: none !important;
    }
    
    .service-cta {
        background: none !important;
        color: #000 !important;
    }
}

/* ========================================
   商品企画/開発ページ専用スタイル
======================================== */

/* サービスフローステップ */
.service-flow-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-3xl);
}

.step-item {
    background: #fff;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border-light);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    padding: 0.8rem 1.6rem;
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-lg);
    letter-spacing: 0.1em;
}

.step-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
    line-height: 1.3;
}

.step-description {
    font-size: 1.4rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0;
}

/* サービス特長 */
.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.feature-item {
    background: #fff;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border-light);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-lg);
    display: block;
}

.feature-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--color-text);
}

.feature-description {
    font-size: 1.4rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0;
}

/* サポート注釈 */
.service-support-note {
    text-align: center;
    margin-top: 80px;
    margin-bottom: 40px;
    padding: 0;
    position: relative;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-support-note::before {
    content: '';
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 4px;
    background: linear-gradient(90deg, #4299e1, #3182ce);
    border-radius: 2px;
}

.service-support-note p {
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    color: #1f2937;
    font-weight: 700;
    margin: 0;
    line-height: 1.6;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

.service-support-note p::before,
.service-support-note p::after {
    content: '"';
    color: #3b82f6;
    font-size: 120%;
    font-weight: 800;
    position: relative;
    line-height: 0;
}

.service-support-note p::before {
    margin-right: 4px;
    top: 8px;
}

.service-support-note p::after {
    margin-left: 4px;
    top: 8px;
}

/* 料金プラン注釈とCTA */
.pricing-notes {
    margin: var(--spacing-xl) 0;
    color: var(--color-text-light);
}

.pricing-notes p {
    font-size: 1.4rem;
    margin: var(--spacing-sm) 0;
    line-height: 1.5;
}

.pricing-cta {
    text-align: center;
    margin-top: var(--spacing-3xl);
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    justify-content: center;
    align-items: center;
}

.pricing-cta .btn {
    min-width: 280px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .service-flow-steps {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .step-item {
        padding: var(--spacing-lg);
    }
    
    .step-title {
        font-size: 1.6rem;
    }
    
    .service-features {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .feature-item {
        padding: var(--spacing-lg);
    }
    
    .pricing-cta {
        flex-direction: column;
    }
    
    .pricing-cta .btn {
        min-width: auto;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .step-number {
        font-size: 1.2rem;
        padding: 0.6rem 1.2rem;
    }
    
    .step-title {
        font-size: 1.5rem;
    }
    
    .step-description {
        font-size: 1.3rem;
    }
    
    .feature-icon {
        font-size: 3rem;
    }
    
    .feature-title {
        font-size: 1.6rem;
    }
    
    .feature-description {
        font-size: 1.3rem;
    }
}

/* アイコンの個別カラーリング */
.problem-card:nth-child(1) .problem-icon {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
}

.problem-card:nth-child(1):hover .problem-icon {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

.problem-card:nth-child(2) .problem-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.problem-card:nth-child(2):hover .problem-icon {
    background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
}

.problem-card:nth-child(3) .problem-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.problem-card:nth-child(3):hover .problem-icon {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
}

.problem-card:nth-child(4) .problem-icon {
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
}

.problem-card:nth-child(4):hover .problem-icon {
    background: linear-gradient(135deg, #0891b2 0%, #0e7490 100%);
}

.problem-card:nth-child(5) .problem-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.problem-card:nth-child(5):hover .problem-icon {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

/* 商品企画ページ専用 - CTAセクション シンプルデザイン */
.page-services-product-planning .service-problems-cta {
    max-width: 100%;
    text-align: center;
    border: none;
    box-shadow: none;
    position: relative;
}

.page-services-product-planning .problems-cta-content {
    position: relative;
    z-index: 2;
}


.page-services-product-planning .problems-cta-description {
    font-size: clamp(1.8rem, 2.5vw, 2.2rem);
    color: #4a5568;
    line-height: 1.6;
    font-weight: 500;
    max-width: 600px;
    margin: auto;
    text-align: center;
}

.page-services-product-planning .problems-cta-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    border-radius: 50%;
    margin: 0 auto;
    color: #ffffff;
    animation: bounce 2s infinite;
    box-shadow: 0 12px 32px rgba(66, 153, 225, 0.25);
    transition: all 0.3s ease;
}

.page-services-product-planning .problems-cta-arrow:hover {
    transform: scale(1.1);
    box-shadow: 0 16px 40px rgba(66, 153, 225, 0.35);
}

/* レスポンシブ対応 - 商品企画ページ専用 */
@media (max-width: 768px) {
    .page-services-product-planning .service-problems-cta {
        padding: 60px 16px;
    }
    
    .page-services-product-planning .problems-cta-title {
        margin-bottom: 24px;
        line-height: 1.4;
    }
    
    .page-services-product-planning .problems-cta-description {
        margin-bottom: 36px;
        line-height: 1.7;
    }
    
    .page-services-product-planning .problems-cta-arrow {
        width: 64px;
        height: 64px;
    }
}

@media (max-width: 480px) {
    .page-services-product-planning .service-problems-cta {
        padding: 48px 12px;
    }
    
    .page-services-product-planning .problems-cta-title {
        margin-bottom: 20px;
        letter-spacing: -0.01em;
    }
    
    .page-services-product-planning .problems-cta-description {
        margin-bottom: 32px;
    }
    
    .page-services-product-planning .problems-cta-arrow {
        width: 56px;
        height: 56px;
    }
}

/* 商品企画ページ専用 - サポートセクション ブラッシュアップ版 */
.page-services-product-planning .service-support {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.page-services-product-planning .service-support::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #e2e8f0 50%, transparent 100%);
}

/* セクションヘッダーの改善 */
.page-services-product-planning .service-support .service-section-header {
    margin-bottom: 80px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-services-product-planning .service-support .service-section-header h2 {
    font-size: clamp(3rem, 5vw, 4rem);
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 32px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.page-services-product-planning .service-support .service-section-header h2::after {
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, #4299e1, #3182ce, #2b77e6);
}

.page-services-product-planning .service-support .service-section-header p {
    font-size: clamp(1.6rem, 2.2vw, 1.9rem);
    color: #4a5568;
    line-height: 1.8;
    font-weight: 400;
}

.page-services-product-planning .service-support .service-section-header strong {
    color: #2b77e6;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(43, 119, 230, 0.1) 0%, rgba(66, 153, 225, 0.1) 100%);
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid rgba(43, 119, 230, 0.2);
}

/* フローステップの改善 - 縦並び左右2カラム版 */
.page-services-product-planning .service-flow-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 100px;
    position: relative;
    background: #f8f9fa;
    padding: 60px 40px;
    border-radius: 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-services-product-planning .step-item {
    display: flex;
    align-items: center;
    background: transparent;
    border-radius: 0;
    border: none;
    box-shadow: none;
    text-align: left;
    position: relative;
    transition: none;
    overflow: visible;
    gap: 40px;
}

.page-services-product-planning .step-item::before {
    display: none;
}

.page-services-product-planning .step-item:hover {
    transform: none;
    box-shadow: none;
    border-color: transparent;
}

.page-services-product-planning .step-visual {
    flex-shrink: 0;
    width: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-services-product-planning .step-icon {
    width: 100px;
    height: 100px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    border: 3px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.page-services-product-planning .step-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-services-product-planning .step-content {
    flex: 1;
    padding-left: 20px;
}

.page-services-product-planning .step-number {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
    text-transform: lowercase;
}

.page-services-product-planning .step-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1f2937;
    line-height: 1.3;
}

.page-services-product-planning .step-description {
    font-size: 1.5rem;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

.page-services-product-planning .step-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
    color: #9ca3af;
}

.page-services-product-planning .step-arrow svg {
    opacity: 0.6;
}

/* レスポンシブ対応 - 縦並び左右2カラム版 */
@media (max-width: 1024px) {
    .page-services-product-planning .service-flow-steps {
        padding: 50px 30px;
        margin-bottom: 80px;
    }
    
    .page-services-product-planning .step-item {
        gap: 30px;
        padding: 30px 0;
    }
    
    .page-services-product-planning .step-visual {
        width: 100px;
    }
    
    .page-services-product-planning .step-icon {
        width: 80px;
        height: 80px;
    }
    
    .page-services-product-planning .service-features {
        gap: 36px;
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    .page-services-product-planning .service-flow-steps {
        padding: 40px 20px;
        margin-bottom: 60px;
        margin-left: 16px;
        margin-right: 16px;
    }
    
    .page-services-product-planning .step-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px 0;
    }
    
    .page-services-product-planning .step-visual {
        width: auto;
    }
    
    .page-services-product-planning .step-icon {
        width: 80px;
        height: 80px;
    }
    
    .page-services-product-planning .step-content {
        padding-left: 0;
    }
    
    .page-services-product-planning .step-title {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }
    
    .page-services-product-planning .step-description {
        font-size: 1.4rem;
    }
    
    .page-services-product-planning .step-arrow {
        margin: 15px 0;
    }
    
    .page-services-product-planning .service-features {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 48px;
        padding: 0 16px;
    }
    
    .page-services-product-planning .feature-item {
        padding: 36px 24px;
        border-radius: 16px;
    }
    
    .page-services-product-planning .feature-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 24px;
        font-size: 2.8rem;
        border-radius: 16px;
    }
    
    .page-services-product-planning .feature-title {
        font-size: 1.8rem;
        margin-bottom: 16px;
    }
    
    .page-services-product-planning .feature-description {
        font-size: 1.5rem;
        line-height: 1.7;
    }
    
    .page-services-product-planning .service-support-note {
        padding: 32px 24px;
        margin: 48px 16px 0 16px;
        border-radius: 12px;
    }
    
    .page-services-product-planning .service-support-note p {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .page-services-product-planning .service-flow-steps {
        padding: 30px 15px;
        margin-bottom: 48px;
        margin-left: 12px;
        margin-right: 12px;
        border-radius: 12px;
    }
    
    .page-services-product-planning .step-item {
        padding: 25px 0;
        gap: 15px;
    }
    
    .page-services-product-planning .step-icon {
        width: 70px;
        height: 70px;
    }
    
    .page-services-product-planning .step-icon img {
        width: 60px;
        height: 60px;
    }
    
    .page-services-product-planning .step-number {
        font-size: 1.2rem;
        margin-bottom: 6px;
    }
    
    .page-services-product-planning .step-title {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    
    .page-services-product-planning .step-description {
        font-size: 1.3rem;
        line-height: 1.7;
    }
    
    .page-services-product-planning .step-arrow {
        margin: 10px 0;
    }
    
    .page-services-product-planning .service-features {
        gap: 28px;
        margin-bottom: 36px;
        padding: 0 12px;
    }
    
    .page-services-product-planning .feature-item {
        padding: 28px 20px;
        border-radius: 12px;
    }
    
    .page-services-product-planning .feature-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 20px;
        font-size: 2.4rem;
        border-radius: 12px;
    }
    
    .page-services-product-planning .feature-title {
        font-size: 1.6rem;
        margin-bottom: 12px;
    }
    
    .page-services-product-planning .feature-description {
        font-size: 1.4rem;
    }
    
    .page-services-product-planning .service-support-note {
        padding: 24px 16px;
        margin: 36px 12px 0 12px;
        border-radius: 10px;
    }
    
    .page-services-product-planning .service-support-note p {
        font-size: 1.5rem;
    }
}

/* 特長セクションの改善 - 3列カードデザイン版 */
.page-services-product-planning .service-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 80px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.page-services-product-planning .feature-item {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
    overflow: visible;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.page-services-product-planning .feature-item::before {
    display: none;
}

.page-services-product-planning .feature-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border-color: #d1d5db;
}

.page-services-product-planning .feature-step {
    position: absolute;
    top: -58px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #1f2937;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
    z-index: 2;
}

.page-services-product-planning .feature-step-text {
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 2px;
}

.page-services-product-planning .feature-step-number {
    font-size: 3.4rem;
    line-height: 1;
    font-weight: 800;
}

.page-services-product-planning .feature-content {
    padding: 40px 24px 32px 24px;
    text-align: center;
}

.page-services-product-planning .feature-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1f2937;
    line-height: 1.4;
}

.page-services-product-planning .feature-visual {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-services-product-planning .feature-icon {
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
    display: block;
    font-size: 5rem;
    color: inherit;
    box-shadow: none;
    margin: 0;
}

.page-services-product-planning .feature-item:hover .feature-icon {
    transform: none;
    box-shadow: none;
}

.page-services-product-planning .feature-description {
    font-size: 1.4rem;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* レスポンシブ対応 - 3列カードデザイン版 */
@media (max-width: 1024px) {
    .page-services-product-planning .service-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        margin-bottom: 60px;
        padding: 0 20px;
    }
    
    .page-services-product-planning .feature-content {
        padding: 36px 20px 28px 20px;
    }
    
    .page-services-product-planning .feature-title {
        font-size: 1.5rem;
        margin-bottom: 16px;
    }
    
    .page-services-product-planning .feature-icon {
        font-size: 2.5rem;
    }
    
    .page-services-product-planning .feature-description {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .page-services-product-planning .service-features {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 48px;
        padding: 0 16px;
        max-width: 400px;
    }
    
    .page-services-product-planning .feature-item {
        border-radius: 12px;
    }
    
    .page-services-product-planning .feature-step {
        width: 70px;
        height: 70px;
        top: -25px;
    }
    
    .page-services-product-planning .feature-step-text {
        font-size: 1.1rem;
    }
    
    .page-services-product-planning .feature-step-number {
        font-size: 1.6rem;
    }
    
    .page-services-product-planning .feature-content {
        padding: 48px 32px 36px 32px;
    }
    
    .page-services-product-planning .feature-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .page-services-product-planning .feature-icon {
        font-size: 3.5rem;
    }
    
    .page-services-product-planning .feature-visual {
        margin: 24px 0;
    }
    
    .page-services-product-planning .feature-description {
        font-size: 1.5rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .page-services-product-planning .service-features {
        gap: 28px;
        margin-bottom: 36px;
        padding: 0 12px;
    }
    
    .page-services-product-planning .feature-step {
        width: 60px;
        height: 60px;
        top: -20px;
    }
    
    .page-services-product-planning .feature-step-text {
        font-size: 1rem;
    }
    
    .page-services-product-planning .feature-step-number {
        font-size: 1.4rem;
    }
    
    .page-services-product-planning .feature-content {
        padding: 40px 24px 32px 24px;
    }
    
    .page-services-product-planning .feature-title {
        font-size: 1.6rem;
        margin-bottom: 16px;
    }
    
    .page-services-product-planning .feature-icon {
        font-size: 3rem;
    }
    
    .page-services-product-planning .feature-visual {
        margin: 20px 0;
    }
    
    .page-services-product-planning .feature-description {
        font-size: 1.4rem;
    }
}

/* 注釈セクションの改善 */
.page-services-product-planning .service-support-note {
    text-align: center;
    margin-top: 60px;
    padding: 40px 48px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    position: relative;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.page-services-product-planning .service-support-note::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #4299e1, #3182ce);
    border-radius: 0 0 4px 4px;
}

.page-services-product-planning .service-support-note p {
    font-size: 1.8rem;
    color: #2d3748;
    font-weight: 600;
    margin: 0;
    line-height: 1.6;
}

/* 料金プラン - シンプル整列デザイン */
.page-services-product-planning .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 60px auto;
    max-width: 1200px;
    padding: 0 20px;
}

.page-services-product-planning .pricing-plan {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.page-services-product-planning .pricing-plan:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.page-services-product-planning .pricing-plan.recommended {
    border: 2px solid #3b82f6;
    background: #ffffff;
}

.page-services-product-planning .pricing-recommend {
    position: absolute;
    top: 0;
    right: 0;
    background: #3b82f6;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 0 16px 0 16px;
}

.page-services-product-planning .pricing-header {
    padding: 32px 24px;
    text-align: center;
    background: #f8fafc;
}

.page-services-product-planning .pricing-label {
    display: block;
    color: #6b7280;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.page-services-product-planning .pricing-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 24px;
    line-height: 1.3;
}

.page-services-product-planning .pricing-amount {
    background: #ffffff;
    padding: 16px 24px;
    border-radius: 8px;
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
}

.page-services-product-planning .pricing-currency {
    font-size: 2rem;
    font-weight: 600;
    color: #1f2937;
}

.page-services-product-planning .pricing-value {
    font-size: 3.2rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1;
}

.page-services-product-planning .pricing-unit {
    font-size: 1.4rem;
    color: #6b7280;
    margin-left: 2px;
}

.page-services-product-planning .pricing-content {
    padding: 32px 24px;
}

.page-services-product-planning .pricing-section {
    margin-bottom: 0px;
}

.page-services-product-planning .pricing-section:last-child {
    margin-bottom: 0;
}

.page-services-product-planning .pricing-section-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #6b7280;
    margin: 0 0 16px;
}

.page-services-product-planning .pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-services-product-planning .pricing-features li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: #1f2937;
    font-size: 1.5rem;
    line-height: 1.5;
}

.page-services-product-planning .pricing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%233b82f6'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 13l4 4L19 7'%3E%3C/path%3E%3C/svg%3E") center/contain no-repeat;
}

.page-services-product-planning .pricing-target {
    font-size: 1.5rem;
    color: #1f2937;
    line-height: 1.6;
    margin: 0;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .page-services-product-planning .pricing-grid {
        gap: 20px;
        padding: 0 16px;
    }
    
    .page-services-product-planning .pricing-header {
        padding: 28px 20px;
    }
    
    .page-services-product-planning .pricing-content {
        padding: 28px 20px;
    }
}

@media (max-width: 768px) {
    .page-services-product-planning .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 40px auto;
    }
    
    .page-services-product-planning .pricing-plan.recommended {
        order: -1;
    }
}

@media (max-width: 480px) {
    .page-services-product-planning .pricing-grid {
        gap: 16px;
        padding: 0 12px;
        margin: 32px auto;
    }
    
    .page-services-product-planning .pricing-header {
        padding: 24px 16px;
    }
    
    .page-services-product-planning .pricing-content {
        padding: 24px 16px;
    }
    
    .page-services-product-planning .pricing-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
    
    .page-services-product-planning .pricing-value {
        font-size: 2.8rem;
    }
    
    .page-services-product-planning .pricing-features li {
        font-size: 1.4rem;
    }
    
    .page-services-product-planning .pricing-target {
        font-size: 1.4rem;
    }
}

/* 料金表 - テーブルデザイン */
.page-services-product-planning .pricing-table-wrapper {
    margin: 60px auto;
    max-width: 1200px;
    padding: 0 20px;
    overflow-x: auto;
}

.page-services-product-planning .pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-services-product-planning .pricing-table th,
.page-services-product-planning .pricing-table td {
    padding: 24px;
    text-align: left;
    border: 1px solid #e5e7eb;
    vertical-align: top;
}

.page-services-product-planning .pricing-feature-header {
    width: 180px;
    background: #f8fafc;
}

.page-services-product-planning .pricing-plan-header {
    width: calc((100% - 180px) / 3);
    text-align: center;
    background: #f8fafc;
    position: relative;
    padding: 32px 24px;
}

.page-services-product-planning .pricing-plan-header.recommended {
    background: #ebf5ff;
    border: 2px solid #3b82f6;
}

.page-services-product-planning .pricing-recommend {
    position: absolute;
    top: 0;
    right: 0;
    background: #3b82f6;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 0 14px 0 8px;
}

.page-services-product-planning .pricing-section-header {
    font-size: 1.4rem;
    font-weight: 600;
    color: #6b7280;
    background: #f8fafc;
}

.page-services-product-planning .pricing-label {
    display: block;
    color: #6b7280;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.page-services-product-planning .pricing-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 20px;
    line-height: 1.3;
}

.page-services-product-planning .pricing-amount {
    background: #ffffff;
    padding: 12px 20px;
    border-radius: 8px;
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
}

.page-services-product-planning .pricing-currency {
    font-size: 2rem;
    font-weight: 600;
    color: #1f2937;
}

.page-services-product-planning .pricing-value {
    font-size: 3.2rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1;
}

.page-services-product-planning .pricing-unit {
    font-size: 1.4rem;
    color: #6b7280;
    margin-left: 2px;
}

.page-services-product-planning .pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-services-product-planning .pricing-features li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: #1f2937;
    font-size: 1.5rem;
    line-height: 1.5;
}

.page-services-product-planning .pricing-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%233b82f6'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M5 13l4 4L19 7'%3E%3C/path%3E%3C/svg%3E") center/contain no-repeat;
}

.page-services-product-planning .pricing-target {
    font-size: 1.5rem;
    color: #1f2937;
    line-height: 1.6;
    margin: 0;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .page-services-product-planning .pricing-table-wrapper {
        margin: 40px auto;
        padding: 0 16px;
    }
    
    .page-services-product-planning .pricing-table th,
    .page-services-product-planning .pricing-table td {
        padding: 20px;
    }
    
    .page-services-product-planning .pricing-plan-header {
        padding: 28px 20px;
    }
    
    .page-services-product-planning .pricing-title {
        font-size: 1.8rem;
    }
    
    .page-services-product-planning .pricing-value {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .page-services-product-planning .pricing-table-wrapper {
        margin: 32px -16px;
        padding: 0;
        border-radius: 0;
    }
    
    .page-services-product-planning .pricing-table {
        border-radius: 0;
    }
    
    .page-services-product-planning .pricing-feature-header {
        width: 140px;
    }
    
    .page-services-product-planning .pricing-plan-header {
        padding: 24px 16px;
    }
    
    .page-services-product-planning .pricing-features li,
    .page-services-product-planning .pricing-target {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .page-services-product-planning .pricing-table-wrapper {
        margin: 24px -12px;
    }
    
    .page-services-product-planning .pricing-table th,
    .page-services-product-planning .pricing-table td {
        padding: 16px 12px;
    }
    
    .page-services-product-planning .pricing-title {
        font-size: 1.6rem;
        margin-bottom: 16px;
    }
    
    .page-services-product-planning .pricing-value {
        font-size: 2.4rem;
    }
    
    .page-services-product-planning .pricing-features li {
        padding-left: 20px;
    }
    
    .page-services-product-planning .pricing-features li::before {
        width: 14px;
        height: 14px;
    }
} 