/* ニュースセクションのスタイル - HPNET風デザイン */
.news_section {
    background: var(--main-gradient);
    padding: var(--back-padding);
    position: relative;
}

/* ニュースヘッダー部分 */
.news_header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

/* セクションタイトル */
.news_section .section-title,
.news-section .section-title-en {
    color: var(--text-white-color) !important;
    text-shadow: var(--shadow);
}

.news_section .section-title,
.business-items-container .section-title,
.our-thoughts.philosophy-section .news_header .section-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-color);
    margin: 0;
    line-height: 1.2;
    background-image: none;
}

.section-title-en {
    display: block;
    font-size: 30px;
    font-weight: 400;
    text-align: center;
    margin-bottom: 5px;
}

.news_section .view-more,
.business-items-container .news_header .view-more {
    margin-right: 0;
}

/* ニュースコンテンツ */
.news_content {
    background: var(--text-white-color);
}

/* ニュースリスト */
.news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-item {
    border-bottom: 1px solid #e8e8e8;
    transition: background-color 0.2s ease;
}

.news-item:hover {
    background-color: #eeeeee;
}

.news-item:last-child {
    border-bottom: none;
}

.news-item svg {
    border: 1px solid var(--text-color) !important;
}

.news-item:hover svg {
    border: 1px solid var(--main-color) !important;
}

/* ニュースリンク */
.news-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

.news-link:hover {
    color: var(--main-color);
}

/* 日付スタイル */
.news-date {
    display: inline-block;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    margin-right: 20px;
    min-width: 80px;
}

/* カテゴリースタイル */
.news-category {
    display: inline-block;
    background: var(--main-gradient);
    color: var(--text-white-color);
    padding: 4px 12px;
    font-size: 12px;
    border-radius: 3px;
    margin-right: 20px;
    font-weight: 500;
}

/* ニュースタイトル */
.news-title {
    display: inline;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-color);
}

/* メッセージ表示 */
.no-news {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 16px;
}

/* レスポンシブ対応 - スマホ用スタイル */
@media (max-width: 768px) {

    .section-title,
    .section-title-en {
        font-size: 18px !important;
    }

    .news_section .view-more, .business-items-container .news_header .view-more {
        margin: 0;
        gap: 5px;
        padding: 6px 10px;
        font-size: 14px;
    }

    .news_section {
        padding: 30px 0;
    }

    .news_header {
        gap: 0;
        padding: 0 15px;
        max-width: 350px;
        margin: 0 auto 5px auto;
    }

    .news_content {
        padding: 0 15px;
        margin: 0 auto;
        max-width: 350px;
    }

    .news-link {
        padding: 15px 0;
    }

    .news-date {
        display: block;
        margin-bottom: 8px;
        margin-right: 0;
        min-width: auto;
    }

    .news-category {
        display: block;
        margin-bottom: 8px;
        margin-right: 0;
        width: fit-content;
    }

    .news-title {
        display: block;
        font-size: 13px;
        line-height: 1.4;
    }

    .view-more-link {
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* タブレット用スタイル調整 */
@media (max-width: 1024px) and (min-width: 769px) {
    .news_section {
        padding: 60px 0;
    }

    .news_header {
        padding: 0 30px;
    }

    .news_content {
        margin: 0 30px;
    }

    .news_section .section-title {
        font-size: 36px;
    }
}