/* kankyo_admcom.css */
.links ul {
    list-style: none;
    padding: 0;
    margin: 1.5em 0;
}

.links li {
    margin-bottom: 1em;
}

.nav-button {
    display: inline-block;
    padding: 0.8em 1.5em;
    background-color: #f5f5f5;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
    max-width: 400px;
}

.nav-button:hover {
    background-color: #e0e0e0;
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.nav-button i {
    margin-right: 0.5em;
    color: #666;
}

.program-section {
    margin-bottom: 40px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.program-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
    padding: 20px;
}

.program-image {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16);
}

.program-details {
    flex: 1;
    min-width: 300px;
}

.keyword {
    font-weight: bold;
    color: #006837;
    margin-bottom: 15px;
    font-size: 0.9em;
    line-height: 1.6;
}

.qa-section {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.qa-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
}

.qa-image {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.qa-answer {
    flex: 1;
    min-width: 300px;
}

.contact-section {
    background: #f8f9f7;
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
    border: 1px solid #e5e5e5;
}

@media (max-width: 768px) {
    .program-content, .qa-content {
        flex-direction: column;
    }
    
    .program-image, .qa-image {
        width: 100%;
        height: auto;
    }

    .program-section,
    .qa-section,
    .contact-section {
        padding: 15px;
    }
}