/* ポイントセクションの新しいスタイル */
.point-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background-color: #FFF8F0;
    border-radius: 12px;
    margin-bottom: 20px;
}

.point-item:last-child {
    margin-bottom: 0;
}

/* 順番にフェードインさせるための遅延 */
.point-item:nth-child(1) {
    transition-delay: 0s;
}

.point-item:nth-child(2) {
    transition-delay: 0.15s;
}

.point-item:nth-child(3) {
    transition-delay: 0.3s;
}

.point-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: #F78500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.point-icon img {
    width: 28px;
    height: 28px;
}

.point-content {
    flex: 1;
}

.point-label {
    font-size: 14px;
    font-weight: 600;
    color: #F78500;
    margin-bottom: 8px;
    letter-spacing: 0.1em;
}

.point-title {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
    line-height: 1.4;
}

.point-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.point-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
    color: #555;
    line-height: 1.7;
    font-size: 15px;
}

.point-list li:last-child {
    margin-bottom: 0;
}

.point-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
    font-size: 18px;
}

@media (max-width: 768px) {
    .point-item {
        padding: 20px;
        gap: 16px;
    }
    
    .point-icon {
        width: 48px;
        height: 48px;
    }
    
    .point-icon img {
        width: 24px;
        height: 24px;
    }
    
    .point-label {
        font-size: 13px;
    }
    
    .point-title {
        font-size: 18px;
    }
    
    .point-list li {
        font-size: 14px;
    }
}
