.news_section_pc {
    width: calc(100% - 40px);
    max-width: 1200px;
    margin: 70px auto 40px;
}

/* タブ */
.news_tabs_pc {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 28px 0;
}

.news_tab_pc {
    appearance: none;
    min-width: 120px;
    border: 1px solid #d8d2c8;
    background: #fff;
    color: #333;
    padding: 10px 24px;
    font-family: inherit;
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
    cursor: pointer;
    transition:
        background-color 0.2s,
        border-color 0.2s,
        color 0.2s,
        opacity 0.2s;
}

.news_tab_pc:hover {
    border-color: #9a7a43;
    color: #9a7a43;
}

.news_tab_pc.is_active {
    background: #9a7a43;
    border-color: #9a7a43;
    color: #fff;
}

/* カード一覧 */
.news_grid_pc {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

/* カード */
.news_card_pc {
    display: block;
    min-width: 0;
    border: 1px solid #e5e0d8;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    color: #222;
    text-decoration: none;
    transition:
        transform 0.2s,
        box-shadow 0.2s,
        opacity 0.2s;
}

.news_card_pc:hover {
    opacity: 0.9;
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(70, 55, 35, 0.12);
}

.news_card_pc[hidden] {
    display: none !important;
}

.news_image_pc {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #f4f2ee;
}

.news_image_pc img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s;
}

.news_card_pc:hover .news_image_pc img {
    transform: scale(1.025);
}

.news_body_pc {
    padding: 16px;
}

.news_meta_pc {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 11px;
    font-size: 12px;
    color: #777;
}

.news_label_pc {
    display: inline-block;
    padding: 4px 9px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: bold;
    line-height: 1.4;
}

.news_label_case_pc {
    background: #e2ecff;
    color: #3b6fb6;
}

.news_label_news_pc {
    background: #ffe2e2;
    color: #c74343;
}

/* 作業風景ラベル */
.news_label_work_pc {
    background: #f3e8d3;
    color: #8a642c;
}

.news_label_holiday_pc {
    background: #e0f1df;
    color: #4c8a4c;
}

.news_title_pc {
    margin-bottom: 9px;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.6;
}

.news_text_pc {
    min-height: 42px;
    color: #555;
    font-size: 13px;
    line-height: 1.65;
}

.news_link_pc {
    margin-top: 13px;
    color: #755a2e;
    font-size: 13px;
    font-weight: bold;
}

/* もっと見る */
.news_more_btn_wrap_pc {
    margin-top: 34px;
    text-align: center;
}

.news_more_btn_pc {
    min-width: 190px;
    border: 1px solid #9a7a43;
    background: #9a7a43;
    color: #fff;
    padding: 12px 42px;
    font-family: inherit;
    font-size: 15px;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition:
        background-color 0.2s,
        color 0.2s,
        opacity 0.2s;
}

.news_more_btn_pc:hover {
    background: #fff;
    color: #9a7a43;
}

.news_more_btn_pc[hidden] {
    display: none !important;
}

/* 769px以上のPC・タブレット横向け */
@media screen and (min-width: 769px) and (max-width: 1000px) {
    .news_grid_pc {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}