.greeting-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
    padding: 20px;
}

.profile-image {
    flex: 1 1 300px;
    text-align: center;
}

.profile-image img {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 50%;
    border: 5px solid #e0e0e0;
    background-color: #fff;
    pointer-events: none;
}

.profile-text {
    flex: 2 1 500px;
}

.profile-text .name {
    font-size: 28px;
    font-weight: bold;
    margin: 0;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.profile-text .title {
    font-size: 20px;
    color: #555;
    margin-top: 10px;
    margin-bottom: 5px;
}

.profile-text .department {
    font-size: 16px;
    color: #777;
    margin-top: 5px;
    padding-bottom: 15px;
}

.greeting-message {
    margin-top: 20px;
    line-height: 2.0;
    text-align: justify;
    font-size: 16px;
}

.greeting-message p {
    margin-bottom: 1.5em;
}

@media (max-width: 768px) {
    .greeting-section {
        flex-direction: column;
        text-align: center;
    }

    .profile-text .name {
        font-size: 24px;
    }

    .profile-text .title {
        font-size: 18px;
    }

    .greeting-message {
        text-align: left;
    }
}

/* ▼▼ ここから追加 ▼▼ */
.outline-table-wrapper {
    max-width: 800px;
    margin: 30px auto 50px auto;
    padding: 0 20px;
}

.outline-table-wrapper table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ddd;
    font-size: 16px;
}

.outline-table-wrapper th, 
.outline-table-wrapper td {
    border: 1px solid #ddd;
    padding: 15px;
    text-align: left;
    vertical-align: middle;
}

.outline-table-wrapper th {
    background-color: #f9f9f9;
    font-weight: bold;
    width: 30%;
}

.outline-table-wrapper td a {
    color: #005CAF; /* 千葉工業大学のテーマカラー */
    text-decoration: none;
}

.outline-table-wrapper td a:hover {
    text-decoration: underline;
}
/* ▲▲ ここまで追加 ▲▲ */