/* 相続LP専用CSS - シンプル・読みやすいデザイン */
.sozoku-lp {
    font-family: var(--font-family-serif);
    line-height: 1.8;
    color: var(--primary-color);
    background: var(--white);
    font-weight: 400;
    letter-spacing: 0.02em;
    font-size: 1.05rem;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.lp-content {
    padding: 3rem 0;
}

/* ヘッダー部分 */
.lp-header {
    text-align: center;
    margin-bottom: 4rem;
}

.main-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--primary-color);
    font-family: var(--font-family-serif);
    margin-bottom: 1rem;
    line-height: 1.4;
    letter-spacing: 0.02em;
}

.sub-title {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.05em;
    position: relative;
}

.sub-title::before {
    content: '＜';
    color: var(--accent-color);
    margin-right: 0.3em;
}

.sub-title::after {
    content: '＞';
    color: var(--accent-color);
    margin-left: 0.3em;
}

/* セクション */
.problem-section,
.solution-section {
    margin-bottom: 4rem;
}

/* 問題提起ハイライト */
.problem-highlight {
    text-align: center;
    margin: 2rem auto 3rem;
    padding: 2rem 2.5rem;
    background: var(--white);
    border: 2px solid var(--primary-color);
    position: relative;
    max-width: 800px;
}

.problem-highlight::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 1px solid var(--primary-color);
    pointer-events: none;
}

.problem-highlight p {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.8;
    margin: 0;
    text-align: center;
    letter-spacing: 0.02em;
    font-family: var(--font-family-serif);
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    font-family: var(--font-family-serif);
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
    letter-spacing: 0.02em;
}

/* コンテンツテキスト */
.problem-content p,
.solution-content p {
    font-size: 1.1rem;
    color: var(--primary-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
    text-justify: inter-ideograph;
}

.problem-content p:last-child,
.solution-content p:last-child {
    margin-bottom: 0;
}

/* 分割方法のリスト */
.division-methods {
    margin: 2rem 0;
}

.division-methods p {
    font-size: 1.1rem;
    color: var(--primary-color);
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1rem;
}

.division-methods p:last-child {
    margin-bottom: 0;
}

/* インライン問い合わせCTA */
.contact-cta-inline {
    text-align: center;
    margin: 4rem 0 3rem 0;
}

.contact-link {
    display: inline-block;
    width: 380px;
    padding: 1rem 2rem;
    color: var(--primary-color);
    background: white;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 0;
    transition: all 0.3s ease;
    text-align: center;
    letter-spacing: 0.02em;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-link:hover {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.arrow-icon {
    margin-left: 0.5rem;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-link:hover .arrow-icon {
    transform: translateX(5px);
}

/* 連絡先セクション */
.contact-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
    text-align: center;
}

.office-info {
    margin-top: 1rem;
}

.office-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    font-family: var(--font-family-serif);
    margin-bottom: 1rem;
    letter-spacing: 0.03em;
}

.office-details p {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.office-details p:last-child {
    margin-bottom: 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .lp-content {
        padding: 2rem 0;
    }
    
    .main-title {
        font-size: 1.8rem;
    }
    
    .sub-title {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
    
    .lp-header {
        margin-bottom: 3rem;
    }
    
    .problem-section,
    .solution-section {
        margin-bottom: 3rem;
    }
    
    .division-methods {
        padding: 1rem;
    }
    
    .contact-link {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .problem-highlight {
        padding: 1.5rem 1.5rem;
        margin: 1.5rem auto 2.5rem;
    }
    
    .problem-highlight p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .main-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.2rem;
    }
    
    .problem-content p,
    .solution-content p {
        font-size: 0.95rem;
    }
    
    .problem-highlight {
        padding: 1.5rem 1rem;
        margin: 1rem auto 2rem;
    }
    
    .problem-highlight p {
        font-size: 1rem;
    }
}