<style>
  /* --- 新着記事セクションのコンテナ --- */
  .new-articles-float-section {
    max-width: 1200px;
    margin: 2em auto;
    padding: 0 15px;
  }

  /* セクションタイトル */
  .new-articles-float-section .section-title {
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 1em;
    border-bottom: 3px solid #095DAD;
    padding-bottom: 0.5em;
  }
  
  /* --- floatレイアウトのためのclearfix --- */
  .new-articles-float-grid::after {
    content: "";
    display: table;
    clear: both;
  }

  /* --- floatで3列にするためのカードのスタイル（PC用） --- */
  .new-articles-float-grid .post-card {
    float: left;
    width: 32%;
    margin-left: 2%;
    margin-bottom: 2%;
    box-sizing: border-box;
  }
  /* 最初の列の左マージンを削除 */
  .new-articles-float-grid .post-card:nth-child(3n + 1) {
    margin-left: 0;
    clear: left;
  }

  /* --- 共通のカードスタイル --- */
  .post-card {
    border: 1px solid #e0e0e0; border-radius: 8px; overflow: hidden;
    text-decoration: none; color: #333; display: flex;
    flex-direction: column; height: 100%;
  }
  .post-card-image-wrapper {
    width: 100%; padding-top: 56.25%; position: relative; background-color: #f0f0f0;
  }
  .post-card-image {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover;
  }
  .post-card-content {
    padding: 15px; flex-grow: 1; display: flex; flex-direction: column;
  }
  .post-card-content h3 {
    font-size: 1.1em; margin: 0 0 10px 0; font-weight: bold; line-height: 1.4;
    display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 3;
    overflow: hidden;
  }
  .post-card-meta {
    font-size: 0.8em; color: #606770; margin-top: auto;
  }

  /* --- 「もっと読む」ボタン --- */
  .read-more-button-wrapper {
    clear: both;
    text-align: center;
    padding-top: 0.5em;
  }
  .read-more-button {
    display: inline-block; background-color: #095DAD; color: #fff !important;
    padding: 10px 34px; font-size: 1em; font-weight: bold;
    text-decoration: none; border-radius: 50px;
  }

  /* --- レスポンシブ対応 --- */
  @media (max-width: 992px) {
    /* タブレットでは2列表示 */
    .new-articles-float-grid .post-card {
      width: 48.5%;
      margin-left: 3%;
    }
    .new-articles-float-grid .post-card:nth-child(3n + 1) { margin-left: 3%; clear: none; }
    .new-articles-float-grid .post-card:nth-child(2n + 1) { margin-left: 0; clear: left; }
  }

  @media (max-width: 600px) {
    /* ▼▼▼ スマホ表示を1列から2列に変更 ▼▼▼ */
    .new-articles-float-grid .post-card {
      width: 48%; /* 2列にするため幅を約半分に */
      margin-left: 4%;
    }
    .new-articles-float-grid .post-card:nth-child(3n + 1) {
      margin-left: 4%; /* 3列用の設定をリセット */
      clear: none;
    }
    .new-articles-float-grid .post-card:nth-child(2n + 1) {
      margin-left: 0; /* 奇数番目（行の先頭）の左マージンを0に */
      clear: left;
    }
    /* ▲▲▲ 変更ここまで ▲▲▲ */
    
    /* カード内の文字サイズも調整 */
    .post-card-content h3 { font-size: 0.9em; line-height: 1.3; }
    .post-card-meta { font-size: 0.75em; }
    .section-title { font-size: 1.5em; }
  }
</style>