@media (max-width: 768px) {

  /* =========================
     全体（崩れ防止）
  ========================= */
  body {
    overflow-x: hidden;
  }

  /* =========================
     外枠
  ========================= */
  .news-list,
  .latest-news-box {
    display: block;
  }

  /* =========================
     1記事（完全安定）
  ========================= */
  .news-item,
  .news-list li {
    display: block;
    padding: 12px 14px;
    border-bottom: 1px solid #eee;
    background: #fff;
  }

  /* =========================
     上段（画像＋テキスト）
  ========================= */
  .news-main-link {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    text-decoration: none;
    color: inherit;
  }

  /* 画像 */
  .news-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
  }

  /* テキストエリア */
  .news-text-wrap {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
  }

  .news-date {
    font-size: 11px;
    color: #888;
  }

  .news-new {
    font-size: 11px;
    color: #ffffff;
    font-weight: bold;
  }

  .news-title {
    font-size: 14px;
    line-height: 1.4;
    word-break: break-word;
  }

  /* =========================
     下段（client）
     スマホでは非表示
  ========================= */
  .news-client-wrap {
    display: none;
  }

  .news-client {
    display: none;
  }

}

.news-main-link {
  display: flex !important;
  gap: 10px;
  align-items: flex-start;
}