
        
        .sdgs-section {
            padding: 80px 0;
        }
        
        .sdgs-intro {
            text-align: center;
            margin-bottom: 60px;
            line-height: 1.8;
        }
        
        .sdgs-goals {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            margin-bottom: 60px;
        }
        
        .sdgs-goal-icon {
            width: 100px;
            height: 100px;
            margin: 10px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .sdgs-goal-icon:hover {
            transform: scale(1.05);
        }
        
        .sdgs-goal-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .sdgs-initiatives {
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .sdgs-initiative {
            margin-bottom: 60px;
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .sdgs-initiative:last-child {
            margin-bottom: 0;
        }
        
        .sdgs-initiative-header {
            background-color: #0056b3;
            color: white;
            padding: 15px 25px;
            display: flex;
            align-items: center;
        }
        
        .sdgs-initiative-number {
            font-size: 24px;
            font-weight: bold;
            margin-right: 15px;
        }
        
        .sdgs-initiative-title {
            font-size: 20px;
            font-weight: bold;
        }
        
        .sdgs-initiative-content {
            padding: 25px;
            display: flex;
            flex-wrap: wrap;
        }
        
        .sdgs-initiative-text {
            flex: 2;
            min-width: 300px;
            padding-right: 25px;
        }
        
        .sdgs-initiative-image {
            flex: 1;
            min-width: 250px;
            text-align: center;
        }
        
        .sdgs-initiative-image img {
            max-width: 100%;
            height: auto;
            border-radius: 5px;
        }
        
        .sdgs-initiative-description {
            line-height: 1.8;
            margin-bottom: 20px;
        }
        
        .sdgs-initiative-goals {
            display: flex;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }
        
        .sdgs-initiative-goal {
            width: 50px;
            height: 50px;
            margin-right: 10px;
            margin-bottom: 10px;
            border-radius: 5px;
            overflow: hidden;
        }
        
        .sdgs-initiative-goal img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .sdgs-initiative-points {
            background-color: #f8f9fa;
            padding: 15px;
            border-radius: 5px;
        }
        
        .sdgs-initiative-points h4 {
            font-size: 16px;
            margin-bottom: 10px;
            color: #0056b3;
        }
        
        .sdgs-initiative-points ul {
            margin: 0;
            padding-left: 20px;
        }
        
        .sdgs-initiative-points li {
            margin-bottom: 5px;
        }
        
        .sdgs-message {
            text-align: center;
            margin-top: 60px;
            padding: 30px;
            background-color: #f8f9fa;
            border-radius: 10px;
        }
        
        .sdgs-message h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: #0056b3;
        }
        
        .sdgs-message p {
            line-height: 1.8;
            margin-bottom: 0;
        }
        
        /* レスポンシブ対応 */
        @media (max-width: 768px) {
            .sdgs-initiative-content {
                flex-direction: column;
            }
            
            .sdgs-initiative-text {
                padding-right: 0;
                margin-bottom: 20px;
            }
            
            .sdgs-goal-icon {
                width: 80px;
                height: 80px;
            }
        }