/* ==========================================
   新しい悩みセクション - 参考画像に合わせた1画面レイアウト
   ========================================== */
.concerns-section-new {
    background: #ffffff;
    padding: 30px 15px 40px;
}

.concerns-title-main {
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    color: #333333;
    margin-bottom: 5px;
    line-height: 1.4;
    position: relative;
    padding-bottom: 15px;
}

.concerns-title-main::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid #333333;
}

.concerns-subtitle-main {
    font-size: 22px;
    font-weight: 900;
    text-align: center;
    color: #333333;
    margin-bottom: 25px;
    line-height: 1.3;
}

/* グリッドレイアウト - 2x2 */
.concerns-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* 悩みカード */
.concern-card {
    border-radius: 12px;
    padding: 12px 8px;
    text-align: center;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.concern-red {
    background: linear-gradient(135deg, #b71c1c 0%, #d32f2f 100%);
    color: #ffffff;
}

.concern-white {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    color: #d32f2f;
}

.concern-icon {
    width: 90px;
    height: 90px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.concern-illustration {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.concern-text {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
}

.concern-text-red {
    color: #d32f2f;
}

/* 解決ボックス */
.solution-box-new {
    background: linear-gradient(135deg, #b71c1c 0%, #d32f2f 100%);
    color: #ffffff;
    padding: 20px 15px;
    border-radius: 0 0 50px 50px;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.solution-box-new::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid #b71c1c;
}

.solution-text {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 5px 0;
    line-height: 1.4;
}

.solution-brand {
    font-size: 18px;
    font-weight: 900;
    margin: 0 0 5px 0;
    line-height: 1.3;
}

.solution-tagline {
    font-size: 20px;
    font-weight: 900;
    margin: 0;
    line-height: 1.3;
}

/* レスポンシブ対応 */
@media (min-width: 768px) {
    .concerns-section-new {
        padding: 50px 20px 60px;
    }
    
    .concerns-title-main {
        font-size: 22px;
    }
    
    .concerns-subtitle-main {
        font-size: 28px;
        margin-bottom: 35px;
    }
    
    .concerns-grid {
        gap: 20px;
        max-width: 700px;
    }
    
    .concern-card {
        padding: 20px 15px;
        min-height: 220px;
    }
    
    .concern-icon {
        width: 90px;
        height: 90px;
        margin-bottom: 15px;
    }
    
    .concern-text {
        font-size: 15px;
    }
    
    .solution-box-new {
        max-width: 700px;
        padding: 25px 20px;
    }
    
    .solution-text {
        font-size: 18px;
    }
    
    .solution-brand {
        font-size: 22px;
    }
    
    .solution-tagline {
        font-size: 24px;
    }
}
