/* LP専用スタイル */
.auto-lp-page .auto-lp-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
}

/* メインタイトル装飾 */
.lp-main-title {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 40px 20px;
    margin: 0 -20px 40px;
    font-size: 2.5em;
    line-height: 1.3;
}

.title-accent {
    position: relative;
    display: inline-block;
}

/* セクションタイトル装飾 */
.lp-section-title {
    background: #f8f9fa;
    border-left: 5px solid #667eea;
    padding: 15px 20px;
    font-size: 1.8em;
    color: #333;
    margin: 30px 0 20px;
}

/* CTAボタン装飾 */
.lp-cta-wrapper {
    text-align: center;
    margin: 40px 0;
}

.lp-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    border-radius: 50px;
    padding: 3px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
}

.lp-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.lp-cta-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    border-radius: 47px;
}

.cta-arrow {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.lp-cta-button:hover .cta-arrow {
    transform: translateX(5px);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .lp-main-title {
        font-size: 2em;
        padding: 30px 15px;
    }
    
    .lp-section-title {
        font-size: 1.5em;
        padding: 12px 15px;
    }
}