.btn-large {
    width: auto;
    height: auto;
    font-size: clamp(16px, 2.5vw, 26px);
    color: var(--colorLightBase);
    background-color: white;
    border: 1px solid var(--colorLightBase);
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-weight: bold;
    padding: 0.5em 1.5em;
    transition: all 0.3s ease;
  }
  
  .btn-large:hover {
    color: white;
    background-color: var(--colorLightBase);
  }

.news-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 30px;
    margin-bottom: 2%;
}

.news-item__term {
    display: flex;
    text-align: left;
    align-items: center;
    justify-content: flex-start;
    width: 30%;
}

.news-list-container {
    .news-item__term {
        width: 21%;
    }
    .news-item__description {
        width: 70%;
    }
}

.page-template-page-seminar .news-item__description {
    width: 90%;
}



@media (max-width: 1200px) {
    .news-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        border-bottom:1px solid var(--colorLightGray);
        padding-bottom: 3%;
        margin-bottom: 3%;
    }

    .news-item-block .news-item__term,
    .news-item-block .news-item__description {
        width: 100%;
    }
}

.news-item__date {
    width: 10em;
    font-size: clamp(14px, 2.5vw, 16px);
    font-weight: bold;
    margin-right: 20px;
}
@media (max-width: 768px) {
    .news-item__date {
        width: 8em;
    }
}
.page-template-page-seminar .news-item__date {
    width: 8em;
}
/* .news-item__date--kaisai {
    font-size:12px;
} */

.news-item__link {
    font-size: clamp(14px, 2.5vw, 18px);
    
}
.news-item__link:hover {
    text-decoration: underline;
}

.news-item__category {
    min-width: 140px;
    display: inline-block;
    border-radius: 30px;
    font-size: 12px;
    text-align: center;
    background: var(--colorLightGray);
    transition: 0.3s ease;
    cursor: default;
}

@media (max-width: 768px) {
    .news-item__category {
        min-width: 80px;
    }
}
@media (hover: hover) {
    .news-item__category:hover {
        opacity: 0.6;
    }
}

.news-item__category--single{
    min-width: 100px;
    border-radius: 10px;
    margin-left: 10px;
    cursor: pointer;
}

.news-item__category--notice{
    background: var(--colorLightGray);
}
.news-item__category--event{
    color:#fff;
    background: var(--colorSubAccent);
}

/* project お知らせ */

/* プロジェクトのみ */
.news-item-block--project .news-item{
    gap: 0px;
}
.news-item-block--project .news-item__date{
    color: var(--colorLightBase);    
}
.news-item-block--project .news-item__link{
    text-decoration: underline;    
}
.news-item-block--project .news-item__link:hover{
    text-decoration: none;    
}


.project-news-archive{
    margin-bottom: 5%;   
}
.project-news-archive__title{
    font-size: clamp(16px, 2.5vw, 26px);
    font-weight: bold;
    margin-bottom: 0.8em;
}
.project-news-archive__date{
    margin-bottom: 3%;
}
.project-news-archive__img{
    margin-bottom: 3%;
}
.project-news-archive__text{
    font-size: clamp(14px, 2.5vw, 18px);
    line-height: 2em;
}

