@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
}

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
}

/* ===========================================
   トップページ最適化版 カスタムCSS
   =========================================== */

/* ヒーローセクション */
.hero-optimized {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    margin: -20px -20px 40px -20px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.pain-points {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px 20px;
    border-radius: 15px;
    margin: 40px auto;
    max-width: 600px;
}

.pain-points h2 {
    color: #ffeb3b;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.pain-list p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.solution-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffeb3b;
    margin-top: 30px;
}

/* 講座セクション */
.courses-section {
    padding: 60px 20px;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #333;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.course-container {
    max-width: 1200px;
    margin: 0 auto;
}

.course-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.course-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.special-offer {
    background: #ff6b6b;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
}

.course-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.4;
}

.course-card p {
    color: #666;
    margin-bottom: 25px;
    font-size: 1rem;
}

.benefits {
    text-align: left;
    margin-bottom: 30px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.benefits p {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
    color: white !important;
}

/* 実績セクション */
.authority-section {
    background: #f8f9fa;
    padding: 60px 20px;
}

.authority-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.authority-item {
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    text-align: center;
    flex: 1;
    min-width: 250px;
}

.authority-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 10px;
}

/* 最終CTA */
.final-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.urgency-box {
    background: rgba(255, 255, 255, 0.15);
    padding: 30px 20px;
    border-radius: 15px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.urgency-box h3 {
    color: #ffeb3b;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.final-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.highlight {
    color: #ffeb3b;
}

.final-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .course-card {
        padding: 30px 20px;
    }
    
    .authority-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .authority-item {
        max-width: 300px;
    }
    
    .final-title {
        font-size: 1.8rem;
    }
}

/* ===========================================
   柔らかなオレンジ系プロンプトエンジニアリング講座LP
   =========================================== */

/* ヒーローセクション */
.hero-prompt-soft {
    background: linear-gradient(135deg, #fed7aa 0%, #fdba74 50%, #fb923c 100%);
    color: #7c2d12;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 30px 30px;
}

.hero-prompt-soft::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"><circle cx="10" cy="10" r="1" fill="rgba(124, 45, 18, 0.1)"/><circle cx="90" cy="30" r="2" fill="rgba(124, 45, 18, 0.1)"/><circle cx="30" cy="90" r="1.5" fill="rgba(124, 45, 18, 0.1)"/></svg>');
    animation: float 15s infinite linear;
}

.hero-prompt-soft .hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #7c2d12 !important;
    text-shadow: 0 2px 4px rgba(255,255,255,0.3);
}

.hero-prompt-soft .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
    color: #9a3412;
}

.pain-points-soft {
    background: rgba(255, 255, 255, 0.2);
    padding: 30px 20px;
    border-radius: 25px;
    margin: 40px auto;
    max-width: 600px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.pain-points-soft h2 {
    color: #7c2d12 !important;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.pain-points-soft .pain-list p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #9a3412;
}

.pain-points-soft .solution-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: #7c2d12;
    margin-top: 30px;
}

/* 特徴セクション */
.features-section-soft {
    padding: 80px 20px;
    background: #fef7ed;
}

.features-section-soft .section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #9a3412 !important;
}

.features-section-soft .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #c2410c;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid-soft {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.feature-card-soft {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(251, 146, 60, 0.15);
    transition: all 0.3s ease;
    border: 2px solid #fed7aa;
}

.feature-card-soft:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(251, 146, 60, 0.25);
    border-color: #fdba74;
}

.feature-card-soft .feature-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.feature-card-soft h3 {
    font-size: 1.5rem;
    color: #9a3412;
    margin-bottom: 15px;
}

.feature-card-soft p {
    color: #c2410c;
    line-height: 1.6;
}

/* カリキュラムセクション */
.curriculum-section-soft {
    padding: 80px 20px;
    background: #ffffff;
}

.curriculum-section-soft .section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #9a3412 !important;
}

.curriculum-container-soft {
    max-width: 900px;
    margin: 50px auto 0;
}

.curriculum-item-soft {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    padding: 30px;
    background: #fef7ed;
    border-radius: 25px;
    border-left: 8px solid #fb923c;
    box-shadow: 0 5px 15px rgba(251, 146, 60, 0.1);
}

.curriculum-number-soft {
    font-size: 2rem;
    font-weight: 700;
    color: #fb923c;
    margin-right: 30px;
    min-width: 60px;
    background: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(251, 146, 60, 0.2);
}

.curriculum-item-soft .curriculum-content h3 {
    font-size: 1.4rem;
    color: #9a3412;
    margin-bottom: 10px;
}

.curriculum-item-soft .curriculum-content p {
    color: #c2410c;
    line-height: 1.6;
}

/* メリットセクション */
.benefits-section-soft {
    padding: 80px 20px;
    background: #fef7ed;
}

.benefits-container-soft {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.target-audience-soft, .course-benefits-soft {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 25px;
    box-shadow: 0 10px 25px rgba(251, 146, 60, 0.15);
    border: 2px solid #fed7aa;
}

.target-audience-soft h2, .course-benefits-soft h2 {
    font-size: 1.8rem !important;
    color: #9a3412 !important;
    margin-bottom: 25px !important;
    text-align: center !important;
    border-bottom: 3px solid #fb923c !important;
    padding-bottom: 15px !important;
    border-radius: 0 !important;
}

.target-audience-soft .target-list p,
.course-benefits-soft .benefit-list p {
    margin-bottom: 12px;
    font-size: 1rem;
    color: #c2410c;
    padding-left: 10px;
}

/* 受講者の声 */
.testimonials-section-soft {
    padding: 80px 20px;
    background: #ffffff;
}

.testimonials-section-soft .section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #9a3412 !important;
}

.testimonials-grid-soft {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.testimonial-card-soft {
    background: #fef7ed;
    padding: 30px 25px;
    border-radius: 25px;
    border-left: 6px solid #fb923c;
    position: relative;
    box-shadow: 0 5px 15px rgba(251, 146, 60, 0.1);
}

.testimonial-card-soft .testimonial-text {
    font-style: italic;
    color: #c2410c;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-card-soft .testimonial-author {
    color: #9a3412;
    font-weight: 600;
    text-align: right;
}

/* 権威性セクション */
.authority-section-soft {
    padding: 80px 20px;
    background: #fed7aa;
}

.authority-section-soft .section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #7c2d12 !important;
}

.authority-grid-soft {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 50px auto 0;
}

.authority-item-soft {
    text-align: center;
    padding: 30px 20px;
    background: #ffffff;
    border-radius: 25px;
    box-shadow: 0 8px 20px rgba(251, 146, 60, 0.2);
}

.authority-item-soft .authority-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.authority-item-soft h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #fb923c !important;
}

.authority-item-soft p {
    color: #c2410c;
}

/* 価格セクション */
.pricing-section-soft {
    padding: 80px 20px;
    background: #fef7ed;
    text-align: center;
}

.pricing-section-soft .section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #9a3412 !important;
}

.pricing-card-soft {
    background: #ffffff;
    max-width: 500px;
    margin: 50px auto;
    padding: 50px 30px;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(251, 146, 60, 0.2);
    border: 3px solid #fb923c;
    position: relative;
}

.pricing-card-soft .original-price {
    color: #9ca3af;
    text-decoration: line-through;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.special-price-soft {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 20px;
}

.price-number-soft {
    font-size: 4rem;
    font-weight: 700;
    color: #fb923c;
}

.special-price-soft .price-currency {
    font-size: 2rem;
    color: #fb923c;
    margin-left: 5px;
}

.special-price-soft .price-note {
    font-size: 1rem;
    color: #c2410c;
    margin-left: 5px;
}

.discount-rate-soft {
    background: linear-gradient(135deg, #fb923c, #f97316);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    margin-bottom: 30px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(251, 146, 60, 0.3);
}

.price-notice-soft {
    background: #fef3c7;
    padding: 25px;
    border-radius: 20px;
    border: 2px solid #fbbf24;
    margin-top: 30px;
}

.price-notice-soft h3 {
    color: #92400e;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.price-notice-soft p {
    color: #92400e;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* 最終CTA */
.final-cta-soft {
    background: linear-gradient(135deg, #fed7aa 0%, #fdba74 50%, #fb923c 100%);
    color: #7c2d12;
    padding: 80px 20px;
    text-align: center;
    border-radius: 30px 30px 0 0;
}

.urgency-box-soft {
    background: rgba(255, 255, 255, 0.3);
    padding: 30px;
    border-radius: 25px;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.urgency-box-soft h3 {
    color: #7c2d12;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.urgency-box-soft p {
    color: #9a3412;
}

.final-title-soft {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
    color: #7c2d12;
}

.highlight-soft {
    color: #ea580c;
}

.final-subtitle-soft {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.9;
    color: #9a3412;
}

.cta-button-soft {
    display: inline-block;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #7c2d12 !important;
    padding: 22px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(251, 191, 36, 0.4);
    margin-bottom: 15px;
    border: 2px solid #f59e0b;
}

.cta-button-soft:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 50px rgba(251, 191, 36, 0.5);
    color: #7c2d12 !important;
}

.final-cta-button .cta-note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
    color: #9a3412;
}

/* スマホ対応 */
@media (max-width: 768px) {
    .hero-prompt-soft .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-prompt-soft .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .curriculum-item-soft {
        flex-direction: column;
        text-align: center;
    }
    
    .curriculum-number-soft {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .benefits-container-soft {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .final-title-soft {
        font-size: 2.2rem;
    }
    
    .price-number-soft {
        font-size: 3rem;
    }
    
    .cta-button-soft {
        padding: 18px 30px;
        font-size: 1.1rem;
    }
}

/* Cocoonとの競合回避用強制設定 */
.hero-prompt-soft h1,
.hero-prompt-soft h2,
.features-section-soft .section-title,
.curriculum-section-soft .section-title,
.testimonials-section-soft .section-title,
.authority-section-soft .section-title,
.pricing-section-soft .section-title {
    background: none !important;
    text-shadow: none;
}

.benefits-section-soft .target-audience-soft h2,
.benefits-section-soft .course-benefits-soft h2 {
    background: none !important;
}

/* ==========================================
   LP2 自動ブログ記事作成講座 CSS
   ========================================== */

/* ベーススタイル */
.lp2-hero-section,
.lp2-problem-section,
.lp2-solution-section,
.lp2-course-content,
.lp2-reasons-section,
.lp2-target-section,
.lp2-bonus-section,
.lp2-instructor-section,
.lp2-cta-section {
    font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    line-height: 1.7;
    color: #333;
    margin-bottom: 40px;
}

/* ヒーローセクション */
.lp2-hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 60px 20px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    margin-bottom: 40px;
}

.lp2-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.2);
}

.lp2-hero-content {
    position: relative;
    z-index: 1;
}

.lp2-hero-title {
    font-size: 2.2rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.3;
}

.lp2-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.lp2-hero-highlight {
    background: rgba(255,255,255,0.2);
    padding: 20px;
    border-radius: 10px;
    margin: 30px auto;
    max-width: 600px;
}

.lp2-hero-highlight h2 {
    margin: 0;
    font-size: 1.5rem;
}

/* 問題提起セクション */
.lp2-problem-section {
    background: #f8f9fa;
    padding: 40px 20px;
    border-radius: 15px;
}

.lp2-problem-title {
    text-align: center;
    font-size: 2rem;
    color: #e74c3c;
    margin-bottom: 30px;
    font-weight: bold;
}

.lp2-problem-list {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
}

.lp2-problem-item {
    background: white;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 10px;
    border-left: 5px solid #e74c3c;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.lp2-problem-item::before {
    content: "😰";
    font-size: 1.5rem;
    margin-right: 10px;
}

.lp2-problem-question {
    text-align: center;
    margin-top: 30px;
    font-size: 1.2rem;
    font-weight: bold;
}

/* 解決策セクション */
.lp2-solution-section {
    padding: 40px 0;
}

.lp2-solution-title {
    text-align: center;
    font-size: 2rem;
    color: #27ae60;
    margin-bottom: 30px;
    font-weight: bold;
}

.lp2-highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp2-solution-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* ==========================================
   ▼▼▼▼▼▼▼▼▼▼▼▼▼ ここから修正 ▼▼▼▼▼▼▼▼▼▼▼▼▼
   ========================================== */

/* 講座内容セクション */
.lp2-course-content {
    background: #eaf6ff; /* 明るく優しい青系の背景色に変更 */
    color: #333; /* 基本の文字色を濃いグレーに変更 */
    padding: 40px 20px;
    border-radius: 15px;
}

.lp2-course-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: bold;
    color: #005a9c; /* タイトル色をアクセントの青に */
}

.lp2-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.lp2-feature-item {
    background: #ffffff; /* 各項目の背景を白に変更 */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05); /* 軽い影を追加 */
}

.lp2-feature-item h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #005a9c; /* 見出しの文字色を濃い青に変更 */
}

.lp2-feature-item p {
    font-size: 0.95rem;
    color: #555; /* 説明文の文字色を少し柔らかく */
    margin: 0;
}

.lp2-course-highlight {
    text-align: center;
    background: #ffffff; /* 背景を白に変更 */
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #007bff; /* 強調の枠線を追加 */
}

.lp2-course-highlight h3 {
    color: #005a9c; /* 見出しの文字色を濃い青に変更 */
    margin-bottom: 10px;
}

.lp2-course-highlight p {
    font-size: 1.1rem;
    margin: 0;
    color: #333;
}

/* ==========================================
   ▲▲▲▲▲▲▲▲▲▲▲▲▲ ここまで修正 ▲▲▲▲▲▲▲▲▲▲▲▲▲
   ========================================== */

/* 選ばれる理由・対象者セクション */
.lp2-reasons-section,
.lp2-target-section {
    background: #e8f5e8;
    padding: 40px 20px;
    border-radius: 15px;
}

.lp2-reasons-title,
.lp2-target-title {
    text-align: center;
    font-size: 1.8rem;
    color: #27ae60;
    margin-bottom: 30px;
    font-weight: bold;
}

.lp2-reasons-list,
.lp2-target-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.lp2-reasons-item,
.lp2-target-item {
    background: white;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
    display: flex;
    align-items: flex-start;
}

.lp2-reasons-item::before,
.lp2-target-item::before {
    content: "✔";
    color: #27ae60;
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* 特典セクション */
.lp2-bonus-section {
    background: #fff3cd;
    padding: 40px 20px;
    border-radius: 15px;
    border: 2px dashed #ffc107;
}

.lp2-bonus-title {
    text-align: center;
    font-size: 1.8rem;
    color: #856404;
    margin-bottom: 20px;
    font-weight: bold;
}

.lp2-bonus-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.lp2-bonus-highlight {
    font-size: 1.3rem;
    color: #dc3545;
    font-weight: bold;
    margin-bottom: 15px;
}

/* 講師紹介 */
.lp2-instructor-section {
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 15px;
}

.lp2-instructor-title {
    text-align: center;
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 20px;
    font-weight: bold;
}

.lp2-credentials {
    background: white;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.lp2-credential-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.lp2-credential-item::before {
    content: "✅";
    margin-right: 10px;
}

.lp2-instructor-message {
    text-align: center;
    font-size: 1.1rem;
    margin: 20px 0 0 0;
}

/* CTA セクション */
.lp2-cta-section {
    background: linear-gradient(45deg, #ff6b6b, #ffa500);
    color: white;
    padding: 40px 20px;
    border-radius: 15px;
    text-align: center;
}

.lp2-discount-badge {
    background: #dc3545;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    display: inline-block;
    margin-bottom: 20px;
    font-weight: bold;
}

.lp2-cta-title {
    font-size: 2rem;
    margin-bottom: 20px;
}

.lp2-coupon-code {
    background: rgba(255,255,255,0.2);
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    backdrop-filter: blur(10px);
}

.lp2-coupon-label {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.lp2-coupon-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffd700;
    margin: 10px 0;
}

.lp2-coupon-expire {
    font-size: 1rem;
    opacity: 0.9;
}

.lp2-cta-button {
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 20px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.lp2-cta-button:hover {
    background: #218838;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    color: white;
    text-decoration: none;
}

.lp2-cta-footer {
    margin-top: 30px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* 区切り線 */
.lp2-section-divider {
    height: 40px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .lp2-hero-title {
        font-size: 1.8rem;
    }
    .lp2-hero-subtitle {
        font-size: 1.1rem;
    }
    .lp2-problem-title,
    .lp2-solution-title,
    .lp2-course-title {
        font-size: 1.6rem;
    }
    .lp2-features-grid {
        grid-template-columns: 1fr;
    }
    .lp2-hero-section,
    .lp2-problem-section,
    .lp2-course-content,
    .lp2-reasons-section,
    .lp2-target-section,
    .lp2-bonus-section,
    .lp2-instructor-section,
    .lp2-cta-section {
        padding: 30px 15px;
    }
    .lp2-cta-button {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    .lp2-cta-title {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .lp2-hero-title {
        font-size: 1.5rem;
    }
    .lp2-hero-subtitle {
        font-size: 1rem;
    }
    .lp2-problem-title,
    .lp2-solution-title,
    .lp2-course-title {
        font-size: 1.4rem;
    }
    .lp2-reasons-title,
    .lp2-target-title,
    .lp2-bonus-title,
    .lp2-instructor-title {
        font-size: 1.5rem;
    }
    .lp2-coupon-number {
        font-size: 1.2rem;
        word-break: break-all;
    }
}