.news-detail{
    margin-bottom: 10%;
}
.news-detail__title {
    font-size: clamp(18px, 2vw, 26px);
    line-height: 1.5;
    font-weight: bold;
    margin-bottom: 1.5em;
    background: #f3f3f3;
    padding: 0.8em;
    border-left: 5px solid var(--colorLightBase);
}

.news-detail__meta{
    margin-bottom: 5%;
    display: flex;
    align-items: center;
}

.seminer-outline-title{
    font-size: clamp(16px, 2vw, 20px);
    font-weight: bold;
    margin-bottom: 0.5em;
}


.news-info{
    width: 100%;
}
.avatar-info{
    display: flex;    
    align-items: center;
    padding:2% 1%;
}
.avatar-info__dt{
    width: 100px;
    padding-right: 3%;    
}
.avatar__img{
    border-radius: 50%;
    width: 70px;
    height: 70px;
    object-fit: cover;
}
@media screen and (max-width: 768px) {
    .avatar__img {
        width: 50px;
        height: 50px;
    }
}
/* .news-item .avatar__img{
    width: 80px;
    height: 80px;
} */

.news-info__th {
    font-size: clamp(12px, 2vw, 16px);
    font-weight: bold;
    background-color: var(--colorLightGray);
    padding: 0.7em 1em;
    border-bottom:1px solid #fff;
    vertical-align: middle;
    width: 10em;
}
@media screen and (max-width: 768px) {
    .news-detail__meta .news-info__th{
        width: 5em;
        white-space: nowrap;
    }
}

.project_detail .news-info__th {
    width: 4em;
    white-space: nowrap;
}

.news-info__td {
    font-size: 16px;
    padding: 0.7em 1em;
    border:1px solid  var(--colorLightGray);
    vertical-align: middle;
}
.news-info__td a{
    color:var(--colorLightBase);
    text-decoration: underline;
    transition: text-decoration 0.3s;
}
.news-info__td a:hover {
    text-decoration: none;
}