@charset "UTF-8";
/* --------------------------------------------

PALTEK WEB制作担当者以外は編集不可

-------------------------------------------- */

.problems-section {
            max-width: 1200px;
            margin: 0 auto;
            background: #667eea !important;
            border-radius: 15px;
            padding: 25px 30px;
            position: relative;
            overflow: hidden;
        }
        
.section-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
        }
        
.bulb-icon {
            background: #fff;
            border-radius: 50%;
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
            position: relative;
        }
        
.bulb-icon::before {
            content: '💡';
            font-size: 20px;
        }
        
.section-title {
            color: #fff;
            font-size: 22px;
            font-weight: bold;
            text-shadow: 0 2px 4px rgba(0,0,0,0.3);
            position: relative;
        }
        
.section-title::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: #ffd700;
            border-radius: 2px;
        }
        
.problems-list {
            position: relative;
            z-index: 2;
        }
        
.problem-item {
            background: rgba(255, 255, 255, 0.95);
            margin: 12px 0;
            padding: 18px 25px;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            position: relative;
            backdrop-filter: blur(10px);
        }
        
.problem-item::before {
            content: '!';
            position: absolute;
            left: -8px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 16px;
            font-weight: bold;
            color: #fff;
            background: #ff6b6b;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 6px rgba(255, 107, 107, 0.3);
            line-height: 1;
    }
        
.problem-text {
            font-size: 15px;
            line-height: 1.6;
            color: #333;
            margin-left: 8px;
            font-weight: 500;
        }
        
.highlight {
            background: linear-gradient(120deg, #ffd700 0%, #ffed4e 100%);
            padding: 2px 8px;
            border-radius: 6px;
            font-weight: bold;
            color: #333;
        }
        
@media (max-width: 768px) {
.problems-section {
                padding: 20px 15px;
            }
            
.section-title {
                font-size: 20px;
            }
            
.bulb-icon {
                width: 40px;
                height: 40px;
                margin-right: 12px;
            }
            
.bulb-icon::before {
                font-size: 18px;
            }
            
.problem-item {
                padding: 15px 20px;
            }
            
.problem-text {
                font-size: 14px;
                margin-left: 12px;
            }
}

