/* ============================================================
 * libnew-top.css
 * lib-inc.co.jp リニューアル top 専用
 * SWELL 子テーマ functions.php で wp_enqueue_style（前提: libnew-base.css 読込済）
 * ============================================================ */


/* ============================================================
 * [01] Hero  (hero.html)
 * ============================================================ */
/* ===== Hero (libnew prefix to avoid clash with old CSS) ===== */
    .post_content .libnew-hero {
      position: relative;
      min-height: 720px;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: #1a1a1a;
    }
    .post_content .libnew-hero-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 1;
    }
    .post_content .libnew-hero-scrim {
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0.25) 100%);
      z-index: 2;
    }
    .post_content .libnew-hero-wrap {
      position: relative;
      z-index: 3;
      max-width: 1140px;
      margin: 0 auto;
      padding: 96px 24px;
      width: 100%;
    }
    .post_content .libnew-hero-copy {
      max-width: 780px;
      word-break: keep-all;        /* 日本語：意味の塊で切る */
      overflow-wrap: anywhere;     /* それでも溢れる時は最後の手段で折り返す */
      line-break: strict;          /* 句読点が行頭に来ないように */
    }

    /* PC のみ表示 / スマホのみ表示 */

    .post_content .libnew-hero-pill {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 16px 8px 8px;
      border-radius: 999px;
      background: rgba(255,255,255,0.12);
      color: #fff;
      font-size: 13px;
      font-weight: 500;
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      margin-bottom: 28px;
      border: 1px solid rgba(255,255,255,0.18);
    }
    .post_content .libnew-hero-pill-tag {
      background: #F97316;
      color: #fff;
      padding: 3px 10px;
      border-radius: 999px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.05em;
    }

    .post_content .libnew-hero-h1 {
      color: #fff;
      font-size: 56px;
      font-weight: 700;
      line-height: 1.3;
      letter-spacing: -0.01em;
      margin-bottom: 24px;
    }
    .post_content .libnew-hero-h1-accent {
      color: #F97316;
    }

    .post_content .libnew-hero-sub {
      color: rgba(255,255,255,0.92);
      font-size: 18px;
      font-weight: 400;
      line-height: 1.8;
      margin-bottom: 40px;
    }

    .post_content .libnew-hero-cta {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }
    .post_content .libnew-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 18px 32px;
      border-radius: 12px;
      font-size: 16px;
      font-weight: 700;
      text-decoration: none;
      transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
      cursor: pointer;
    }
    .post_content .libnew-btn-primary {
      background: #F97316;
      color: #fff;
      box-shadow: 0 8px 24px rgba(249, 115, 22, 0.35);
    }
    .post_content .libnew-btn-primary:hover {
      background: #ea6510;
      transform: translateY(-2px);
      box-shadow: 0 12px 28px rgba(249, 115, 22, 0.45);
    }
    .post_content .libnew-btn-line {
      background: #06C755;
      color: #fff;
      box-shadow: 0 8px 24px rgba(6, 199, 85, 0.30);
    }
    .post_content .libnew-btn-line:hover {
      background: #05a648;
      transform: translateY(-2px);
      box-shadow: 0 12px 28px rgba(6, 199, 85, 0.40);
    }

    .post_content .libnew-hero-trust {
      display: flex;
      gap: 28px;
      margin-top: 36px;
      flex-wrap: wrap;
    }
    .post_content .libnew-hero-trust-item {
      display: flex;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,0.88);
      font-size: 14px;
      font-weight: 400;
    }
    .post_content .libnew-hero-trust-check {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: #F97316;
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      font-weight: 900;
    }

    /* ===== Tablet / Mobile ===== */
    @media (max-width: 1024px) {
      .post_content .libnew-hero-h1 { font-size: 44px; }
    }
    @media (max-width: 768px) {
      .post_content .libnew-hero { min-height: 580px; }
      .post_content .libnew-hero-wrap { padding: 72px 20px; }
      .post_content .libnew-hero-pill { font-size: 11px; margin-bottom: 20px; padding: 7px 14px 7px 7px; }
      .post_content .libnew-hero-pill-tag { font-size: 10px; padding: 2px 8px; }
      .post_content .libnew-hero-h1 { font-size: 30px; line-height: 1.4; margin-bottom: 20px; }
      .post_content .libnew-hero-sub { font-size: 15px; line-height: 1.9; margin-bottom: 28px; }
      .post_content .libnew-hero-cta { flex-direction: column; gap: 12px; }
      .post_content .libnew-btn { width: 100%; padding: 16px; font-size: 15px; }
      .post_content .libnew-hero-trust { gap: 12px; margin-top: 24px; flex-direction: column; }
      .post_content .libnew-hero-trust-item { font-size: 13px; }
      .post_content .libnew-hero-scrim {
        background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.65) 100%);
      }

      /* PC/スマホ表示切替 */
    }

/* ============================================================
 * [02] AI社員とは  (ai-shain.html)
 * ============================================================ */
/* ===== AI社員とは セクション ===== */
  .post_content .libnew-aishain {
    background: #fff;
    padding: 96px 0;
    position: relative;
  }
  .post_content .libnew-aishain-wrap {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* H2 */
  .post_content .libnew-aishain-eyebrow {
    display: inline-block;
    color: #F97316;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    margin-bottom: 12px;
    text-transform: uppercase;
  }
  .post_content .libnew-aishain-h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 24px;
    color: #1a1a1a;
  }
  .post_content .libnew-aishain-h2 strong { color: #F97316; }
  .post_content .libnew-aishain-lead {
    font-size: 17px;
    line-height: 2;
    color: #444;
    margin-bottom: 56px;
    max-width: 820px;
  }
  .post_content .libnew-aishain-lead strong {
    color: #F97316;
    font-weight: 700;
  }

  /* 定義ブロック */
  .post_content .libnew-def {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563EB 100%);
    color: #fff;
    border-radius: 20px;
    padding: 40px 48px;
    margin-bottom: 80px;
    position: relative;
    overflow: hidden;
  }
  .post_content .libnew-def::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.18);
  }
  .post_content .libnew-def-label {
    display: inline-block;
    background: #F97316;
    color: #fff;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
  }
  .post_content .libnew-def-text {
    font-size: 22px;
    font-weight: 500;
    line-height: 1.9;
    position: relative;
    z-index: 2;
  }

  /* H3共通 */
  .post_content .libnew-aishain-h3 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 32px;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .post_content .libnew-aishain-h3::before {
    content: '';
    width: 6px;
    height: 28px;
    background: #F97316;
    border-radius: 3px;
  }

  /* できる/できない 2列 */
  .post_content .libnew-canlist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 80px;
  }
  .post_content .libnew-can, .post_content .libnew-cannot {
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid #e5e7eb;
  }
  .post_content .libnew-can {
    background: #f0f9f4;
    border-color: #d1e7dd;
  }
  .post_content .libnew-cannot {
    background: #fef2f2;
    border-color: #fecaca;
  }
  .post_content .libnew-can h4, .post_content .libnew-cannot h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .post_content .libnew-can h4 { color: #047857; }
  .post_content .libnew-cannot h4 { color: #b91c1c; }
  .post_content .libnew-can ul, .post_content .libnew-cannot ul {
    list-style: none;
  }
  .post_content .libnew-can li, .post_content .libnew-cannot li {
    font-size: 15px;
    line-height: 1.8;
    padding: 8px 0 8px 28px;
    position: relative;
    color: #333;
  }
  .post_content .libnew-can li::before {
    content: '✓';
    position: absolute;
    left: 4px;
    color: #047857;
    font-weight: 900;
  }
  .post_content .libnew-cannot li::before {
    content: '✗';
    position: absolute;
    left: 4px;
    color: #b91c1c;
    font-weight: 900;
  }

  /* 業種別カード (横スクロール) */
  .post_content .libnew-aishain-strip {
    margin-bottom: 80px;
  }
  .post_content .libnew-aishain-strip-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 8px 4px 24px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .post_content .libnew-aishain-strip-scroll::-webkit-scrollbar { height: 8px; }
  .post_content .libnew-aishain-strip-scroll::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 4px; }
  .post_content .libnew-aishain-strip-scroll::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }

  .post_content .libnew-aishain-strip-card {
    flex: 0 0 320px;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    scroll-snap-align: start;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .post_content .libnew-aishain-strip-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
  }
  .post_content .libnew-aishain-strip-img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: #f3f4f6;
    display: block;
  }
  .post_content .libnew-aishain-strip-body {
    padding: 20px 22px 24px;
  }
  .post_content .libnew-aishain-strip-industry {
    font-size: 12px;
    font-weight: 700;
    color: #2563EB;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
  }
  .post_content .libnew-aishain-strip-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
  }
  .post_content .libnew-aishain-strip-desc {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
  }

  /* プラン対応表 */
  .post_content .libnew-plan-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }
  .post_content .libnew-plan-table thead {
    background: #2563EB;
    color: #fff;
  }
  .post_content .libnew-plan-table th {
    padding: 18px 24px;
    text-align: left;
    font-size: 15px;
    font-weight: 700;
  }
  .post_content .libnew-plan-table td {
    padding: 18px 24px;
    border-top: 1px solid #e5e7eb;
    font-size: 15px;
    color: #333;
  }
  .post_content .libnew-plan-table tbody tr:nth-child(even) {
    background: #fafbfc;
  }
  .post_content .libnew-plan-table .libnew-plan-count {
    color: #F97316;
    font-weight: 700;
  }

  /* スマホ */
  @media (max-width: 768px) {
    .post_content .libnew-aishain { padding: 64px 0; }
    .post_content .libnew-aishain-wrap { padding: 0 20px; }
    .post_content .libnew-aishain-eyebrow { font-size: 11px; }
    .post_content .libnew-aishain-h2 { font-size: 26px; line-height: 1.5; margin-bottom: 16px; }
    .post_content .libnew-aishain-lead { font-size: 15px; line-height: 2; margin-bottom: 40px; }
    .post_content .libnew-aishain-h3 { font-size: 21px; margin-bottom: 20px; }
    .post_content .libnew-aishain-h3::before { height: 22px; }

    .post_content .libnew-def { padding: 28px 24px; margin-bottom: 56px; border-radius: 14px; }
    .post_content .libnew-def-text { font-size: 16px; line-height: 1.9; }
    .post_content .libnew-def-label { font-size: 12px; margin-bottom: 14px; }

    .post_content .libnew-canlist { grid-template-columns: 1fr; gap: 16px; margin-bottom: 56px; }
    .post_content .libnew-can, .post_content .libnew-cannot { padding: 24px 20px; }

    .post_content .libnew-aishain-strip { margin-bottom: 56px; }
    .post_content .libnew-aishain-strip-scroll {
      gap: 14px;
      padding: 4px 4px 20px;
      margin-right: -20px;
      padding-right: 20px;
    }
    .post_content .libnew-aishain-strip-card { flex: 0 0 260px; }
    .post_content .libnew-aishain-strip-body { padding: 16px 18px 20px; }
    .post_content .libnew-aishain-strip-name { font-size: 17px; }

    .post_content .libnew-plan-table { display: block; box-shadow: none; }
    .post_content .libnew-plan-table thead { display: none; }
    .post_content .libnew-plan-table tbody { display: block; }
    .post_content .libnew-plan-table tr {
      display: block;
      background: #fff;
      border: 1px solid #e5e7eb;
      border-radius: 12px;
      margin-bottom: 12px;
      padding: 16px 20px;
    }
    .post_content .libnew-plan-table td {
      display: block;
      padding: 4px 0;
      border: none;
      font-size: 14px;
    }
    .post_content .libnew-plan-table td:first-child {
      font-weight: 700;
      font-size: 15px;
      color: #1a1a1a;
      margin-bottom: 4px;
    }
    .post_content .libnew-plan-table tbody tr:nth-child(even) { background: #fff; }
  }

/* ============================================================
 * [03] Business Pain  (business-pain.html)
 * ============================================================ */
.post_content .libnew-pain {
    padding: 96px 0;
    background: #f9fafb;
  }
  .post_content .libnew-pain-wrap {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .post_content .libnew-pain-eyebrow {
    display: inline-block;
    color: #F97316;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    margin-bottom: 12px;
    text-transform: uppercase;
  }
  .post_content .libnew-pain-h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 24px;
    color: #1a1a1a;
  }
  .post_content .libnew-pain-lead {
    font-size: 17px;
    line-height: 2;
    color: #444;
    margin-bottom: 56px;
    max-width: 820px;
  }
  .post_content .libnew-pain-lead strong {
    color: #F97316;
    font-weight: 700;
  }

  /* カードグリッド (PC: 4列) */
  .post_content .libnew-pain-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
  .post_content .libnew-pain-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px 28px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
  }
  .post_content .libnew-pain-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
  }

  .post_content .libnew-pain-num {
    position: absolute;
    top: -16px;
    left: 20px;
    background: #fff;
    color: #1a1a1a;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    letter-spacing: 0.05em;
    font-family: 'Inter', sans-serif;
  }

  .post_content .libnew-pain-cat {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 18px;
  }
  .post_content .libnew-pain-cat-cost { background: #fef3e6; color: #ea6510; }
  .post_content .libnew-pain-cat-system { background: #e8f0fe; color: #1e40af; }
  .post_content .libnew-pain-cat-efficiency { background: #e6f7ed; color: #047857; }
  .post_content .libnew-pain-cat-common { background: #f3f4f6; color: #4b5563; }

  .post_content .libnew-pain-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #f3f6fb;
    color: #2563EB;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
  }
  .post_content .libnew-pain-icon svg {
    width: 26px;
    height: 26px;
    stroke-width: 2;
  }

  .post_content .libnew-pain-h3 {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 14px;
    min-height: 54px;
  }
  .post_content .libnew-pain-text {
    font-size: 13.5px;
    line-height: 1.85;
    color: #555;
  }

  /* 締めコピー */
  .post_content .libnew-pain-bottom {
    margin-top: 64px;
    text-align: center;
    padding: 32px 24px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
  }
  .post_content .libnew-pain-bottom-text {
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
    line-height: 1.8;
  }
  .post_content .libnew-pain-bottom-text strong {
    color: #F97316;
    font-weight: 700;
  }

  /* タブレット */
  @media (max-width: 1024px) {
    .post_content .libnew-pain-grid { grid-template-columns: repeat(2, 1fr); }
    .post_content .libnew-pain-h3 { min-height: auto; }
  }

  /* スマホ：横スクロール採用 */
  @media (max-width: 768px) {
    .post_content .libnew-pain { padding: 64px 0; }
    .post_content .libnew-pain-wrap { padding: 0 20px; }
    .post_content .libnew-pain-eyebrow { font-size: 11px; }
    .post_content .libnew-pain-h2 { font-size: 26px; line-height: 1.5; margin-bottom: 16px; }
    .post_content .libnew-pain-lead { font-size: 15px; line-height: 2; margin-bottom: 36px; }

    .post_content .libnew-pain-grid {
      display: flex;
      grid-template-columns: none;
      gap: 14px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      padding: 12px 4px 24px;
      margin-right: -20px;
      padding-right: 20px;
    }
    .post_content .libnew-pain-grid::-webkit-scrollbar { height: 6px; }
    .post_content .libnew-pain-grid::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 3px; }

    .post_content .libnew-pain-card {
      flex: 0 0 280px;
      scroll-snap-align: start;
      padding: 28px 22px 24px;
    }
    .post_content .libnew-pain-icon { width: 44px; height: 44px; }
    .post_content .libnew-pain-icon svg { width: 24px; height: 24px; }
    .post_content .libnew-pain-h3 { font-size: 17px; min-height: auto; }
    .post_content .libnew-pain-text { font-size: 13.5px; }

    .post_content .libnew-pain-bottom { margin-top: 40px; padding: 24px 20px; }
    .post_content .libnew-pain-bottom-text { font-size: 15px; line-height: 1.9; }
  }

/* ============================================================
 * [04] Why Now  (why-now.html)
 * ============================================================ */
.post_content .libnew-why {
    padding: 96px 0;
    background: #fff;
  }
  .post_content .libnew-why-wrap {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .post_content .libnew-why-eyebrow {
    display: inline-block;
    color: #F97316;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    margin-bottom: 12px;
    text-transform: uppercase;
  }
  .post_content .libnew-why-h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 24px;
    color: #1a1a1a;
  }
  .post_content .libnew-why-h2 strong { color: #F97316; }
  .post_content .libnew-why-lead {
    font-size: 17px;
    line-height: 2;
    color: #444;
    margin-bottom: 64px;
    max-width: 820px;
  }

  /* 数字カードグリッド */
  .post_content .libnew-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .post_content .libnew-why-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 36px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
  }
  .post_content .libnew-why-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  }

  .post_content .libnew-why-num-label {
    display: inline-block;
    color: #2563EB;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
  }
  .post_content .libnew-why-bignum {
    font-family: 'Inter', sans-serif;
    font-size: 64px;
    font-weight: 800;
    color: #F97316;
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
  }
  .post_content .libnew-why-bignum-unit {
    font-size: 28px;
    font-weight: 700;
    color: #F97316;
    margin-left: 4px;
  }
  .post_content .libnew-why-bignum-sub {
    font-size: 14px;
    color: #888;
    margin-bottom: 24px;
  }
  .post_content .libnew-why-h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
    color: #1a1a1a;
    margin-bottom: 16px;
  }
  .post_content .libnew-why-text {
    font-size: 14.5px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 16px;
  }
  .post_content .libnew-why-source {
    font-size: 11px;
    color: #999;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
  }

  /* 締めコピー */
  .post_content .libnew-why-bottom {
    margin-top: 80px;
    text-align: center;
    padding: 48px 32px;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563EB 100%);
    color: #fff;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
  }
  .post_content .libnew-why-bottom::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.15);
  }
  .post_content .libnew-why-bottom-text {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.8;
    position: relative;
    z-index: 2;
  }
  .post_content .libnew-why-bottom-text strong {
    color: #F97316;
    font-weight: 700;
  }

  /* スマホ：縦並び（章スマホレイアウト方針通り） */
  @media (max-width: 768px) {
    .post_content .libnew-why { padding: 64px 0; }
    .post_content .libnew-why-wrap { padding: 0 20px; }
    .post_content .libnew-why-eyebrow { font-size: 11px; }
    .post_content .libnew-why-h2 { font-size: 26px; line-height: 1.5; margin-bottom: 16px; }
    .post_content .libnew-why-lead { font-size: 15px; line-height: 2; margin-bottom: 40px; }

    .post_content .libnew-why-grid { grid-template-columns: 1fr; gap: 16px; }
    .post_content .libnew-why-card { padding: 32px 24px; border-radius: 16px; }
    .post_content .libnew-why-bignum { font-size: 52px; }
    .post_content .libnew-why-bignum-unit { font-size: 22px; }
    .post_content .libnew-why-h3 { font-size: 19px; }
    .post_content .libnew-why-text { font-size: 14px; }

    .post_content .libnew-why-bottom {
      margin-top: 56px;
      padding: 36px 24px;
      border-radius: 16px;
    }
    .post_content .libnew-why-bottom-text { font-size: 17px; line-height: 1.9; }
  }

/* ============================================================
 * [05] 業務AI化の進め方  (process.html)
 * ============================================================ */
.post_content .libnew-proc {
    padding: 96px 0;
    background: #f9fafb;
  }
  .post_content .libnew-proc-wrap {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .post_content .libnew-proc-eyebrow {
    display: inline-block;
    color: #F97316;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    margin-bottom: 12px;
    text-transform: uppercase;
  }
  .post_content .libnew-proc-h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 24px;
    color: #1a1a1a;
  }
  .post_content .libnew-proc-h2 strong { color: #F97316; }
  .post_content .libnew-proc-lead {
    font-size: 17px;
    line-height: 2;
    color: #444;
    margin-bottom: 72px;
    max-width: 820px;
  }
  .post_content .libnew-proc-lead strong { color: #F97316; font-weight: 700; }

  /* タイムライン */
  .post_content .libnew-proc-timeline {
    position: relative;
    padding-left: 0;
  }

  .post_content .libnew-proc-step {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 32px;
    align-items: stretch;
    position: relative;
    padding-bottom: 48px;
  }
  .post_content .libnew-proc-step:last-of-type { padding-bottom: 0; }

  /* 縦線 */
  .post_content .libnew-proc-step::before {
    content: '';
    position: absolute;
    left: 89px;
    top: 96px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #cbd5e1 0%, #e5e7eb 100%);
  }
  .post_content .libnew-proc-step:last-of-type::before { display: none; }

  /* 月ラベル */
  .post_content .libnew-proc-month {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
  }
  .post_content .libnew-proc-month-num {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563EB 0%, #1e40af 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
    margin-bottom: 12px;
  }
  .post_content .libnew-proc-month-num span {
    font-family: 'Inter', sans-serif;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
  }
  .post_content .libnew-proc-month-num small {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    opacity: 0.85;
    margin-top: 4px;
  }
  .post_content .libnew-proc-month-label {
    font-size: 13px;
    font-weight: 700;
    color: #2563EB;
    letter-spacing: 0.05em;
  }

  /* カード本体 */
  .post_content .libnew-proc-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 36px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  }
  .post_content .libnew-proc-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #f3f6fb;
    color: #2563EB;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
  }
  .post_content .libnew-proc-card-icon svg { width: 24px; height: 24px; stroke-width: 2; }
  .post_content .libnew-proc-h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
    color: #1a1a1a;
    margin-bottom: 14px;
  }
  .post_content .libnew-proc-text {
    font-size: 15px;
    line-height: 1.9;
    color: #555;
  }

  /* 3ヶ月後の景色 */
  .post_content .libnew-proc-result {
    margin-top: 64px;
    padding: 40px 36px;
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    border-radius: 20px;
    border: 1px solid #fed7aa;
  }
  .post_content .libnew-proc-result-label {
    display: inline-block;
    background: #F97316;
    color: #fff;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
  }
  .post_content .libnew-proc-result-h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
  }
  .post_content .libnew-proc-result ul { list-style: none; }
  .post_content .libnew-proc-result li {
    font-size: 15.5px;
    line-height: 1.9;
    color: #333;
    padding: 8px 0 8px 32px;
    position: relative;
    font-weight: 500;
  }
  .post_content .libnew-proc-result li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 22px;
    height: 22px;
    background: #F97316;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(249, 115, 22, 0.3);
  }
  .post_content .libnew-proc-result li::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 19px;
    width: 8px;
    height: 4px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
  }

  /* 6ヶ月プラン */
  .post_content .libnew-proc-sixmonth {
    margin-top: 28px;
    padding: 24px 28px;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .post_content .libnew-proc-sixmonth-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #e8f0fe;
    color: #2563EB;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .post_content .libnew-proc-sixmonth-icon svg { width: 22px; height: 22px; stroke-width: 2; }
  .post_content .libnew-proc-sixmonth-text {
    font-size: 14.5px;
    line-height: 1.85;
    color: #444;
  }
  .post_content .libnew-proc-sixmonth-text strong { color: #2563EB; font-weight: 700; }

  /* スマホ */
  @media (max-width: 768px) {
    .post_content .libnew-proc { padding: 64px 0; }
    .post_content .libnew-proc-wrap { padding: 0 20px; }
    .post_content .libnew-proc-eyebrow { font-size: 11px; }
    .post_content .libnew-proc-h2 { font-size: 26px; line-height: 1.5; margin-bottom: 16px; }
    .post_content .libnew-proc-lead { font-size: 15px; line-height: 2; margin-bottom: 48px; }

    .post_content .libnew-proc-step {
      grid-template-columns: 1fr;
      gap: 20px;
      padding-bottom: 40px;
    }
    /* スマホでは縦線を非表示（カードと被るため） */
    .post_content .libnew-proc-step::before { display: none; }
    .post_content .libnew-proc-month {
      flex-direction: row;
      align-items: center;
      justify-content: flex-start;
      gap: 16px;
    }
    .post_content .libnew-proc-month-num {
      width: 76px;
      height: 76px;
    }
    .post_content .libnew-proc-month-num span { font-size: 26px; }
    .post_content .libnew-proc-month-num small { font-size: 10px; }
    .post_content .libnew-proc-month-label { font-size: 14px; }

    .post_content .libnew-proc-card { padding: 24px 22px; }
    .post_content .libnew-proc-h3 { font-size: 19px; }
    .post_content .libnew-proc-text { font-size: 14px; }

    .post_content .libnew-proc-result {
      margin-top: 40px;
      padding: 28px 22px;
    }
    .post_content .libnew-proc-result-h3 { font-size: 20px; }
    .post_content .libnew-proc-result li { font-size: 14.5px; padding-left: 28px; }
    .post_content .libnew-proc-result li::before { width: 20px; height: 20px; }
    .post_content .libnew-proc-result li::after { left: 6px; top: 18px; }

    .post_content .libnew-proc-sixmonth { padding: 20px 22px; flex-direction: column; align-items: flex-start; }
    .post_content .libnew-proc-sixmonth-text { font-size: 14px; }
  }

/* ============================================================
 * [06] Why Lib  (why-lib.html)
 * ============================================================ */
.post_content .libnew-wlib {
    padding: 96px 0;
    background: #fff;
  }
  .post_content .libnew-wlib-wrap {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .post_content .libnew-wlib-eyebrow {
    display: inline-block;
    color: #F97316;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    margin-bottom: 12px;
    text-transform: uppercase;
  }
  .post_content .libnew-wlib-h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 24px;
    color: #1a1a1a;
  }
  .post_content .libnew-wlib-h2 strong { color: #F97316; }
  .post_content .libnew-wlib-lead {
    font-size: 17px;
    line-height: 2;
    color: #444;
    margin-bottom: 64px;
    max-width: 820px;
  }

  /* 3カード横並び */
  .post_content .libnew-wlib-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .post_content .libnew-wlib-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 32px 36px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
  }
  .post_content .libnew-wlib-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  }
  .post_content .libnew-wlib-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #F97316 0%, #fb923c 100%);
  }

  .post_content .libnew-wlib-num {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 20px;
  }
  .post_content .libnew-wlib-num-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #888;
    font-family: 'Inter', sans-serif;
  }
  .post_content .libnew-wlib-num-big {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: #F97316;
    line-height: 1;
    letter-spacing: -0.02em;
  }

  .post_content .libnew-wlib-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #f3f6fb;
    color: #2563EB;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
  }
  .post_content .libnew-wlib-icon svg {
    width: 30px;
    height: 30px;
    stroke-width: 2;
  }

  .post_content .libnew-wlib-h3 {
    font-size: 21px;
    font-weight: 700;
    line-height: 1.55;
    color: #1a1a1a;
    margin-bottom: 16px;
  }
  .post_content .libnew-wlib-text {
    font-size: 14.5px;
    line-height: 1.9;
    color: #555;
  }

  /* スマホ：横スクロール */
  @media (max-width: 768px) {
    .post_content .libnew-wlib { padding: 64px 0; }
    .post_content .libnew-wlib-wrap { padding: 0 20px; }
    .post_content .libnew-wlib-eyebrow { font-size: 11px; }
    .post_content .libnew-wlib-h2 { font-size: 26px; line-height: 1.5; margin-bottom: 16px; }
    .post_content .libnew-wlib-lead { font-size: 15px; line-height: 2; margin-bottom: 40px; }

    .post_content .libnew-wlib-grid {
      display: flex;
      grid-template-columns: none;
      gap: 16px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      padding: 12px 4px 24px;
      margin-right: -20px;
      padding-right: 20px;
    }
    .post_content .libnew-wlib-grid::-webkit-scrollbar { height: 6px; }
    .post_content .libnew-wlib-grid::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 3px; }

    .post_content .libnew-wlib-card {
      flex: 0 0 300px;
      scroll-snap-align: start;
      padding: 32px 26px 28px;
      border-radius: 16px;
    }
    .post_content .libnew-wlib-num-big { font-size: 40px; }
    .post_content .libnew-wlib-icon { width: 50px; height: 50px; }
    .post_content .libnew-wlib-icon svg { width: 26px; height: 26px; }
    .post_content .libnew-wlib-h3 { font-size: 19px; }
    .post_content .libnew-wlib-text { font-size: 14px; }
  }

/* ============================================================
 * [07] 業種別AI活用例  (industries.html)
 * ============================================================ */
.post_content .libnew-ind {
    padding: 96px 0;
    background: #f9fafb;
  }
  .post_content .libnew-ind-wrap {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .post_content .libnew-ind-eyebrow {
    display: inline-block;
    color: #F97316;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    margin-bottom: 12px;
    text-transform: uppercase;
  }
  .post_content .libnew-ind-h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 24px;
    color: #1a1a1a;
  }
  .post_content .libnew-ind-h2 strong { color: #F97316; }
  .post_content .libnew-ind-lead {
    font-size: 17px;
    line-height: 2;
    color: #444;
    margin-bottom: 56px;
    max-width: 820px;
  }
  .post_content .libnew-ind-lead strong { color: #F97316; font-weight: 700; }

  /* 5カードグリッド (PC: 3列 + 2列センター) */
  .post_content .libnew-ind-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .post_content .libnew-ind-grid .libnew-ind-card:nth-child(4) { grid-column: 1 / 2; grid-column-start: 1; }

  .post_content .libnew-ind-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px 28px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
  }
  .post_content .libnew-ind-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
  }

  .post_content .libnew-ind-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
  }
  .post_content .libnew-ind-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #e8f0fe;
    color: #2563EB;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .post_content .libnew-ind-icon svg { width: 26px; height: 26px; stroke-width: 2; }
  .post_content .libnew-ind-name {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
  }

  .post_content .libnew-ind-sub {
    font-size: 12px;
    font-weight: 600;
    color: #2563EB;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
  }
  .post_content .libnew-ind-list {
    list-style: none;
    margin-bottom: 0;
  }
  .post_content .libnew-ind-list li {
    font-size: 14px;
    line-height: 1.85;
    padding: 8px 0 8px 28px;
    position: relative;
    color: #333;
  }
  .post_content .libnew-ind-list li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 14px;
    width: 16px;
    height: 16px;
    background: #F97316;
    border-radius: 50%;
  }
  .post_content .libnew-ind-list li::after {
    content: '';
    position: absolute;
    left: 9px;
    top: 18px;
    width: 6px;
    height: 3px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
  }

  /* 締めブロック */
  .post_content .libnew-ind-bottom {
    margin-top: 56px;
    padding: 36px 32px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    text-align: center;
  }
  .post_content .libnew-ind-bottom-text {
    font-size: 17px;
    line-height: 1.9;
    color: #333;
  }
  .post_content .libnew-ind-bottom-text strong {
    color: #F97316;
    font-weight: 700;
  }

  /* タブレット */
  @media (max-width: 1024px) {
    .post_content .libnew-ind-grid { grid-template-columns: repeat(2, 1fr); }
    .post_content .libnew-ind-grid .libnew-ind-card:nth-child(4) { grid-column: auto; }
  }

  /* スマホ：横スクロール */
  @media (max-width: 768px) {
    .post_content .libnew-ind { padding: 64px 0; }
    .post_content .libnew-ind-wrap { padding: 0 20px; }
    .post_content .libnew-ind-eyebrow { font-size: 11px; }
    .post_content .libnew-ind-h2 { font-size: 26px; line-height: 1.5; margin-bottom: 16px; }
    .post_content .libnew-ind-lead { font-size: 15px; line-height: 2; margin-bottom: 36px; }

    .post_content .libnew-ind-grid {
      display: flex;
      grid-template-columns: none;
      gap: 14px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      padding: 8px 4px 24px;
      margin-right: -20px;
      padding-right: 20px;
    }
    .post_content .libnew-ind-grid .libnew-ind-card:nth-child(4) { grid-column: auto; }
    .post_content .libnew-ind-grid::-webkit-scrollbar { height: 6px; }
    .post_content .libnew-ind-grid::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 3px; }

    .post_content .libnew-ind-card {
      flex: 0 0 280px;
      scroll-snap-align: start;
      padding: 26px 22px 24px;
    }
    .post_content .libnew-ind-name { font-size: 17px; }
    .post_content .libnew-ind-list li { font-size: 13.5px; }

    .post_content .libnew-ind-bottom { margin-top: 40px; padding: 28px 22px; }
    .post_content .libnew-ind-bottom-text { font-size: 15px; }
  }

/* ============================================================
 * [08] Seminar  (seminar.html)
 * ============================================================ */
.post_content .libnew-sem {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563EB 60%, #1e40af 100%);
    color: #fff;
    padding: 96px 0;
    position: relative;
    overflow: hidden;
  }
  .post_content .libnew-sem::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(249, 115, 22, 0.12);
  }
  .post_content .libnew-sem::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
  }
  .post_content .libnew-sem-wrap {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
  }

  .post_content .libnew-sem-eyebrow {
    display: inline-block;
    color: #F97316;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    margin-bottom: 12px;
    text-transform: uppercase;
  }
  .post_content .libnew-sem-h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 32px;
  }

  /* タイトル＋キャッチブロック */
  .post_content .libnew-sem-title-block {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 36px 40px;
    margin-bottom: 48px;
  }
  .post_content .libnew-sem-title-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 8px;
    letter-spacing: 0.05em;
  }
  .post_content .libnew-sem-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.5;
  }
  .post_content .libnew-sem-catch {
    font-size: 32px;
    font-weight: 800;
    color: #F97316;
    line-height: 1.5;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
  }
  .post_content .libnew-sem-catch span { color: #fff; }
  .post_content .libnew-sem-desc {
    font-size: 16px;
    line-height: 2;
    color: rgba(255, 255, 255, 0.92);
  }
  .post_content .libnew-sem-desc strong {
    color: #F97316;
    font-weight: 700;
  }

  /* チラシ画像 */
  .post_content .libnew-sem-flyers {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 56px;
  }
  .post_content .libnew-sem-flyer {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0,0,0,0.25);
    aspect-ratio: 1 / 1.414;  /* A4比 */
  }
  .post_content .libnew-sem-flyer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* 共通H3 */
  .post_content .libnew-sem-h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .post_content .libnew-sem-h3::before {
    content: '';
    width: 6px;
    height: 26px;
    background: #F97316;
    border-radius: 3px;
  }

  /* 当日の内容 */
  .post_content .libnew-sem-program {
    margin-bottom: 56px;
  }
  .post_content .libnew-sem-parts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .post_content .libnew-sem-part {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: 28px 24px;
  }
  .post_content .libnew-sem-part-num {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #F97316;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
  }
  .post_content .libnew-sem-part-text {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.5;
  }

  /* 特典 */
  .post_content .libnew-sem-bonus {
    margin-bottom: 56px;
  }
  .post_content .libnew-sem-bonus-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .post_content .libnew-sem-bonus-item {
    background: linear-gradient(135deg, #F97316 0%, #fb923c 100%);
    border-radius: 14px;
    padding: 22px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
  }
  .post_content .libnew-sem-bonus-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .post_content .libnew-sem-bonus-icon svg {
    width: 22px;
    height: 22px;
    stroke-width: 2;
  }
  .post_content .libnew-sem-bonus-text {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.6;
  }

  /* 開催情報テーブル */
  .post_content .libnew-sem-info {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 36px 40px;
    margin-bottom: 48px;
  }
  .post_content .libnew-sem-info-table {
    width: 100%;
  }
  .post_content .libnew-sem-info-row {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .post_content .libnew-sem-info-row:last-child { border-bottom: none; }
  .post_content .libnew-sem-info-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.04em;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .post_content .libnew-sem-info-label svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
    color: #F97316;
  }
  .post_content .libnew-sem-info-value {
    font-size: 15px;
    line-height: 1.8;
    color: #fff;
    font-weight: 500;
  }
  .post_content .libnew-sem-info-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  /* 大型CTA */
  .post_content .libnew-sem-cta {
    text-align: center;
  }
  .post_content .libnew-sem-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 22px 48px;
    border-radius: 14px;
    background: #F97316;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.45);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  }
  .post_content .libnew-sem-cta-btn:hover {
    background: #ea6510;
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(249, 115, 22, 0.55);
  }
  .post_content .libnew-sem-cta-note {
    margin-top: 16px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
  }

  /* スマホ */
  @media (max-width: 768px) {
    .post_content .libnew-sem { padding: 64px 0; }
    .post_content .libnew-sem-wrap { padding: 0 20px; }
    .post_content .libnew-sem-eyebrow { font-size: 11px; }
    .post_content .libnew-sem-h2 { font-size: 26px; line-height: 1.5; margin-bottom: 24px; }

    .post_content .libnew-sem-title-block { padding: 24px 22px; margin-bottom: 32px; border-radius: 16px; }
    .post_content .libnew-sem-title { font-size: 19px; line-height: 1.6; margin-bottom: 16px; }
    .post_content .libnew-sem-catch { font-size: 24px; line-height: 1.5; margin-bottom: 16px; }
    .post_content .libnew-sem-desc { font-size: 14.5px; line-height: 1.95; }

    .post_content .libnew-sem-flyers { grid-template-columns: 1fr; gap: 14px; margin-bottom: 40px; }
    .post_content .libnew-sem-flyer { aspect-ratio: auto; max-height: 480px; }

    .post_content .libnew-sem-h3 { font-size: 20px; margin-bottom: 18px; }
    .post_content .libnew-sem-h3::before { height: 22px; }

    .post_content .libnew-sem-parts { grid-template-columns: 1fr; gap: 12px; }
    .post_content .libnew-sem-part { padding: 20px 22px; }
    .post_content .libnew-sem-part-text { font-size: 16px; }

    .post_content .libnew-sem-program { margin-bottom: 40px; }

    .post_content .libnew-sem-bonus { margin-bottom: 40px; }
    .post_content .libnew-sem-bonus-list { grid-template-columns: 1fr; gap: 12px; }
    .post_content .libnew-sem-bonus-item { padding: 18px 22px; }
    .post_content .libnew-sem-bonus-text { font-size: 14px; }

    .post_content .libnew-sem-info { padding: 24px 22px; margin-bottom: 32px; border-radius: 16px; }
    .post_content .libnew-sem-info-row { grid-template-columns: 1fr; gap: 4px; padding: 12px 0; }
    .post_content .libnew-sem-info-value { font-size: 14px; }

    .post_content .libnew-sem-cta-btn { padding: 18px 28px; font-size: 16px; width: 100%; }
    .post_content .libnew-sem-cta-note { font-size: 12px; }
  }

/* ============================================================
 * [09] Service  (service.html)
 * ============================================================ */
.post_content .libnew-svc {
    padding: 96px 0;
    background: #fff;
  }
  .post_content .libnew-svc-wrap {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .post_content .libnew-svc-eyebrow {
    display: inline-block;
    color: #F97316;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    margin-bottom: 12px;
    text-transform: uppercase;
  }
  .post_content .libnew-svc-h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 24px;
    color: #1a1a1a;
  }
  .post_content .libnew-svc-h2 strong { color: #F97316; }
  .post_content .libnew-svc-lead {
    font-size: 17px;
    line-height: 2;
    color: #444;
    margin-bottom: 56px;
    max-width: 820px;
  }
  .post_content .libnew-svc-lead strong { color: #F97316; font-weight: 700; }

  /* メインプラン2つ */
  .post_content .libnew-svc-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
  }
  .post_content .libnew-svc-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px 36px 32px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
  }
  .post_content .libnew-svc-card.is-recommend {
    border: 2px solid #F97316;
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.15);
  }
  .post_content .libnew-svc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  }
  .post_content .libnew-svc-card.is-recommend:hover {
    box-shadow: 0 16px 36px rgba(249, 115, 22, 0.25);
  }

  .post_content .libnew-svc-recommend-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #F97316;
    color: #fff;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
  }

  .post_content .libnew-svc-card-emoji {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #2563EB;
    margin-bottom: 12px;
  }
  .post_content .libnew-svc-card-h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.5;
    color: #1a1a1a;
    margin-bottom: 8px;
  }
  .post_content .libnew-svc-card-period {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
  }

  /* AI社員配置数バッジ */
  .post_content .libnew-svc-employees {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    border-radius: 14px;
    border: 1px solid #fed7aa;
    margin-bottom: 24px;
  }
  .post_content .libnew-svc-employees-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #F97316;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .post_content .libnew-svc-employees-icon svg { width: 26px; height: 26px; stroke-width: 2; }
  .post_content .libnew-svc-employees-text {
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
  }
  .post_content .libnew-svc-employees-text strong {
    font-size: 24px;
    font-weight: 800;
    color: #F97316;
    line-height: 1;
    display: block;
    margin-bottom: 2px;
  }
  .post_content .libnew-svc-employees-text small {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    color: #666;
    font-weight: 500;
  }

  .post_content .libnew-svc-desc {
    font-size: 14.5px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 22px;
  }

  .post_content .libnew-svc-features {
    list-style: none;
    margin-bottom: 24px;
  }
  .post_content .libnew-svc-features li {
    font-size: 14.5px;
    line-height: 1.85;
    padding: 8px 0 8px 28px;
    position: relative;
    color: #333;
  }
  .post_content .libnew-svc-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 18px;
    height: 18px;
    background: #047857;
    border-radius: 50%;
  }
  .post_content .libnew-svc-features li::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 18px;
    width: 7px;
    height: 4px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
  }

  .post_content .libnew-svc-price {
    padding: 18px 22px;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
  }
  .post_content .libnew-svc-price-main {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 14px;
  }
  .post_content .libnew-svc-price-label {
    font-size: 13px;
    color: #666;
    font-weight: 500;
  }
  .post_content .libnew-svc-price-value {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    white-space: nowrap;
  }
  .post_content .libnew-svc-price-value small {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #666;
    margin-left: 4px;
  }
  .post_content .libnew-svc-price-sub {
    border-top: 1px dashed #d1d5db;
    padding-top: 12px;
  }
  .post_content .libnew-svc-price-sub-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: #555;
    line-height: 1.7;
    padding: 3px 0;
  }
  .post_content .libnew-svc-price-sub-item svg {
    width: 14px;
    height: 14px;
    stroke-width: 2;
    color: #F97316;
    flex-shrink: 0;
  }
  .post_content .libnew-svc-price-sub-item strong {
    color: #1a1a1a;
    font-weight: 700;
  }
  .post_content .libnew-svc-price-sub-item .libnew-svc-price-discount {
    color: #F97316;
    font-weight: 700;
  }

  /* サブプラン2つ */
  .post_content .libnew-svc-sub {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .post_content .libnew-svc-sub-card {
    background: #fafbfc;
    border-radius: 14px;
    padding: 28px 28px;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .post_content .libnew-svc-sub-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #e8f0fe;
    color: #2563EB;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .post_content .libnew-svc-sub-icon svg { width: 28px; height: 28px; stroke-width: 2; }
  .post_content .libnew-svc-sub-body { flex: 1; min-width: 0; }
  .post_content .libnew-svc-sub-name {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6px;
  }
  .post_content .libnew-svc-sub-desc {
    font-size: 13px;
    line-height: 1.7;
    color: #555;
  }
  .post_content .libnew-svc-sub-price {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #F97316;
    margin-top: 6px;
  }
  .post_content .libnew-svc-sub-price small { font-family: 'Noto Sans JP', sans-serif; font-size: 12px; color: #666; font-weight: 500; margin-left: 4px; }

  /* 比較表 */
  .post_content .libnew-svc-compare {
    margin-top: 80px;
    padding: 48px 40px;
    background: #f9fafb;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
  }
  .post_content .libnew-svc-compare-eyebrow {
    display: inline-block;
    color: #F97316;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    margin-bottom: 10px;
    text-transform: uppercase;
  }
  .post_content .libnew-svc-compare-h3 {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.5;
    color: #1a1a1a;
    margin-bottom: 12px;
  }
  .post_content .libnew-svc-compare-h3 strong { color: #F97316; }
  .post_content .libnew-svc-compare-lead {
    font-size: 14.5px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 32px;
  }

  .post_content .libnew-svc-compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  }
  .post_content .libnew-svc-compare-table thead {
    background: #1a1a1a;
    color: #fff;
  }
  .post_content .libnew-svc-compare-table thead th {
    padding: 18px 20px;
    text-align: left;
    font-size: 14px;
    font-weight: 700;
  }
  .post_content .libnew-svc-compare-table thead th.is-lib {
    background: #F97316;
    color: #fff;
  }

  /* 横スクロール wrapper（必要に応じてスクロール） */
  .post_content .libnew-svc-compare-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .post_content .libnew-svc-compare-table tbody td {
    padding: 16px 20px;
    border-top: 1px solid #f0f0f0;
    font-size: 14px;
    line-height: 1.7;
    color: #333;
    vertical-align: top;
  }
  .post_content .libnew-svc-compare-table tbody td.is-label {
    font-weight: 700;
    color: #1a1a1a;
    background: #fafbfc;
    width: 150px;
  }
  .post_content .libnew-svc-compare-table tbody td {
    font-size: 13px;
  }
  .post_content .libnew-svc-compare-table tbody td.is-label {
    font-size: 13.5px;
  }
  .post_content .libnew-svc-compare-table tbody td.is-lib {
    background: #fff7ed;
    color: #1a1a1a;
    font-weight: 500;
  }
  .post_content .libnew-svc-compare-table tbody td.is-lib strong {
    color: #F97316;
    font-weight: 700;
  }
  .post_content .libnew-svc-compare-note {
    margin-top: 16px;
    font-size: 12px;
    color: #888;
    line-height: 1.7;
  }

  /* スマホ */
  @media (max-width: 768px) {
    .post_content .libnew-svc { padding: 64px 0; }
    .post_content .libnew-svc-wrap { padding: 0 20px; }
    .post_content .libnew-svc-eyebrow { font-size: 11px; }
    .post_content .libnew-svc-h2 { font-size: 26px; line-height: 1.5; margin-bottom: 16px; }
    .post_content .libnew-svc-lead { font-size: 15px; line-height: 2; margin-bottom: 36px; }

    .post_content .libnew-svc-main { grid-template-columns: 1fr; gap: 16px; margin-bottom: 24px; }
    .post_content .libnew-svc-card { padding: 28px 24px 24px; border-radius: 16px; }
    .post_content .libnew-svc-card-h3 { font-size: 19px; }
    .post_content .libnew-svc-employees { padding: 16px 18px; gap: 14px; }
    .post_content .libnew-svc-employees-icon { width: 42px; height: 42px; }
    .post_content .libnew-svc-employees-text strong { font-size: 21px; }
    .post_content .libnew-svc-features li { font-size: 14px; }
    .post_content .libnew-svc-price-value { font-size: 24px; }

    .post_content .libnew-svc-sub { grid-template-columns: 1fr; gap: 12px; }
    .post_content .libnew-svc-sub-card { padding: 22px 22px; gap: 16px; }
    .post_content .libnew-svc-sub-icon { width: 48px; height: 48px; }

    /* 比較表スマホ：テーブル形式を維持・横スクロール対応 */
    .post_content .libnew-svc-compare { margin-top: 56px; padding: 28px 18px; border-radius: 16px; }
    .post_content .libnew-svc-compare-h3 { font-size: 21px; }
    .post_content .libnew-svc-compare-lead { font-size: 13.5px; margin-bottom: 20px; }
    .post_content .libnew-svc-compare-scroll { margin: 0 -6px; }
    .post_content .libnew-svc-compare-table { min-width: 540px; }
    .post_content .libnew-svc-compare-table thead th {
      padding: 12px 10px;
      font-size: 11.5px;
      line-height: 1.4;
    }
    .post_content .libnew-svc-compare-table tbody td {
      padding: 12px 10px;
      font-size: 11.5px;
      line-height: 1.55;
    }
    .post_content .libnew-svc-compare-table tbody td.is-label {
      width: 90px;
      font-size: 12px;
    }
    .post_content .libnew-svc-compare-note { font-size: 11px; padding: 0 6px; }
  }

/* ============================================================
 * [10] Price  (price.html)
 * ============================================================ */
.post_content .libnew-pr {
    padding: 96px 0;
    background: #f9fafb;
  }
  .post_content .libnew-pr-wrap {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .post_content .libnew-pr-eyebrow {
    display: inline-block;
    color: #F97316;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    margin-bottom: 12px;
    text-transform: uppercase;
  }
  .post_content .libnew-pr-h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 24px;
    color: #1a1a1a;
  }
  .post_content .libnew-pr-lead {
    font-size: 17px;
    line-height: 2;
    color: #444;
    margin-bottom: 56px;
    max-width: 820px;
  }
  .post_content .libnew-pr-lead strong { color: #F97316; font-weight: 700; }

  /* 共通 H3 */
  .post_content .libnew-pr-h3 {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.5;
    color: #1a1a1a;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .post_content .libnew-pr-h3::before {
    content: '';
    width: 6px;
    height: 26px;
    background: #F97316;
    border-radius: 3px;
  }

  /* 料金一覧テーブル */
  .post_content .libnew-pr-fee {
    margin-bottom: 80px;
  }
  .post_content .libnew-pr-fee-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .post_content .libnew-pr-fee-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  }
  .post_content .libnew-pr-fee-table thead {
    background: #1a1a1a;
    color: #fff;
  }
  .post_content .libnew-pr-fee-table thead th {
    padding: 18px 22px;
    text-align: left;
    font-size: 14px;
    font-weight: 700;
  }
  .post_content .libnew-pr-fee-table thead th.is-emph {
    background: #F97316;
  }
  .post_content .libnew-pr-fee-table tbody td {
    padding: 18px 22px;
    border-top: 1px solid #f0f0f0;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    vertical-align: middle;
  }
  .post_content .libnew-pr-fee-plan {
    font-weight: 700;
    color: #1a1a1a;
  }
  .post_content .libnew-pr-fee-employees {
    font-size: 12.5px;
    color: #2563EB;
    font-weight: 600;
    margin-top: 2px;
  }
  .post_content .libnew-pr-fee-monthly {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #1a1a1a;
  }
  .post_content .libnew-pr-fee-lump {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #F97316;
  }
  .post_content .libnew-pr-fee-discount {
    font-size: 11.5px;
    color: #F97316;
    font-weight: 700;
    background: #fff7ed;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 4px;
    font-family: 'Noto Sans JP', sans-serif;
  }
  .post_content .libnew-pr-fee-note {
    font-size: 13px;
    color: #777;
    margin-top: 16px;
    line-height: 1.7;
  }

  /* 採用比較 */
  .post_content .libnew-pr-recruit {
    margin-bottom: 80px;
    padding: 48px 40px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
  }
  .post_content .libnew-pr-recruit-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 24px;
  }
  .post_content .libnew-pr-recruit-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 22px;
    background: #fafbfc;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
  }
  .post_content .libnew-pr-recruit-label {
    font-size: 14px;
    color: #333;
    font-weight: 500;
  }
  .post_content .libnew-pr-recruit-cost {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    white-space: nowrap;
  }
  .post_content .libnew-pr-recruit-cost small {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 11.5px;
    color: #888;
    font-weight: 500;
    margin-left: 3px;
  }
  .post_content .libnew-pr-recruit-msg {
    padding: 24px 28px;
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    border-radius: 14px;
    border: 1px solid #fed7aa;
    font-size: 15.5px;
    line-height: 1.95;
    color: #1a1a1a;
  }
  .post_content .libnew-pr-recruit-msg strong { color: #F97316; font-weight: 700; }

  /* ROI（業種別削減効果） */
  .post_content .libnew-pr-roi {
    margin-bottom: 56px;
  }
  .post_content .libnew-pr-roi-sub {
    font-size: 13.5px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
  }
  .post_content .libnew-pr-roi-sub strong { color: #1a1a1a; font-weight: 700; }
  .post_content .libnew-pr-roi-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
  }
  .post_content .libnew-pr-roi-card {
    background: #fff;
    border-radius: 14px;
    padding: 24px 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    text-align: center;
  }
  .post_content .libnew-pr-roi-card-industry {
    font-size: 13px;
    font-weight: 700;
    color: #2563EB;
    margin-bottom: 14px;
  }
  .post_content .libnew-pr-roi-card-task {
    font-size: 12px;
    color: #666;
    line-height: 1.55;
    margin-bottom: 16px;
    min-height: 36px;
  }
  .post_content .libnew-pr-roi-card-saved {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #F97316;
    line-height: 1;
    margin-bottom: 2px;
  }
  .post_content .libnew-pr-roi-card-saved small {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    color: #F97316;
    font-weight: 700;
    margin-left: 2px;
  }
  .post_content .libnew-pr-roi-card-saved-label {
    font-size: 11px;
    color: #888;
    font-weight: 500;
  }
  .post_content .libnew-pr-roi-card-saved-label.is-hint {
    font-size: 10.5px;
  }
  .post_content .libnew-pr-roi-card-time {
    font-size: 11.5px;
    color: #666;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid #f0f0f0;
  }
  .post_content .libnew-pr-roi-msg {
    margin-top: 24px;
    padding: 20px 24px;
    background: #f0f9f4;
    border-radius: 12px;
    border: 1px solid #d1e7dd;
    font-size: 14.5px;
    color: #047857;
    line-height: 1.85;
    font-weight: 500;
  }
  .post_content .libnew-pr-roi-msg strong { color: #047857; font-weight: 700; }
  .post_content .libnew-pr-roi-note {
    font-size: 12px;
    color: #888;
    margin-top: 14px;
    line-height: 1.7;
  }

  /* スマホ */
  @media (max-width: 768px) {
    .post_content .libnew-pr { padding: 64px 0; }
    .post_content .libnew-pr-wrap { padding: 0 20px; }
    .post_content .libnew-pr-eyebrow { font-size: 11px; }
    .post_content .libnew-pr-h2 { font-size: 26px; line-height: 1.5; margin-bottom: 16px; }
    .post_content .libnew-pr-lead { font-size: 15px; line-height: 2; margin-bottom: 40px; }
    .post_content .libnew-pr-h3 { font-size: 21px; margin-bottom: 20px; }
    .post_content .libnew-pr-h3::before { height: 22px; }

    /* 料金表：テーブル維持・横スクロール */
    .post_content .libnew-pr-fee { margin-bottom: 56px; }
    .post_content .libnew-pr-fee-scroll { margin: 0 -6px; }
    .post_content .libnew-pr-fee-table { min-width: 580px; }
    .post_content .libnew-pr-fee-table thead th { padding: 12px 14px; font-size: 12px; }
    .post_content .libnew-pr-fee-table tbody td { padding: 14px 14px; font-size: 13px; }
    .post_content .libnew-pr-fee-employees { font-size: 11.5px; }

    /* 採用比較 */
    .post_content .libnew-pr-recruit { margin-bottom: 56px; padding: 32px 22px; border-radius: 16px; }
    .post_content .libnew-pr-recruit-list { grid-template-columns: 1fr; gap: 10px; }
    .post_content .libnew-pr-recruit-item { padding: 14px 18px; }
    .post_content .libnew-pr-recruit-label { font-size: 13.5px; }
    .post_content .libnew-pr-recruit-cost { font-size: 15px; }
    .post_content .libnew-pr-recruit-msg { padding: 18px 20px; font-size: 14px; }

    /* ROI: 5列 → 2列 */
    .post_content .libnew-pr-roi { margin-bottom: 40px; }
    .post_content .libnew-pr-roi-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .post_content .libnew-pr-roi-card { padding: 20px 14px; }
    .post_content .libnew-pr-roi-card-industry { font-size: 12px; margin-bottom: 10px; }
    .post_content .libnew-pr-roi-card-task { font-size: 11.5px; min-height: auto; margin-bottom: 12px; }
    .post_content .libnew-pr-roi-card-saved { font-size: 24px; }
    .post_content .libnew-pr-roi-msg { padding: 16px 18px; font-size: 13.5px; }
  }

/* ============================================================
 * [11] 弊社のビジョン  (message.html)
 * ============================================================ */
.post_content .libnew-vis {
    padding: 96px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
  }
  .post_content .libnew-vis::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
    z-index: 0;
  }
  .post_content .libnew-vis-wrap {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
  }

  .post_content .libnew-vis-eyebrow {
    display: inline-block;
    color: #F97316;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    margin-bottom: 12px;
    text-transform: uppercase;
  }
  .post_content .libnew-vis-h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 56px;
    color: #1a1a1a;
  }

  /* === ビジョンメイン（白基調・上品な装飾） === */
  .post_content .libnew-vis-main {
    margin: 0 auto 88px;
    max-width: 960px;
    padding: 72px 80px 68px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-left: 6px solid #F97316;
    border-radius: 4px 16px 16px 4px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.04);
  }
  .post_content .libnew-vis-main::before {
    content: '\201C';
    position: absolute;
    top: -52px;
    right: 36px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 240px;
    color: #F97316;
    opacity: 0.08;
    line-height: 1;
    font-weight: 700;
    pointer-events: none;
  }
  .post_content .libnew-vis-main::after {
    content: '';
    position: absolute;
    bottom: 24px;
    right: 32px;
    width: 48px;
    height: 1px;
    background: #F97316;
  }
  .post_content .libnew-vis-main-eyebrow {
    display: inline-block;
    color: #F97316;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.22em;
    margin-bottom: 28px;
    text-transform: uppercase;
    padding-bottom: 8px;
    border-bottom: 1px solid #F97316;
  }
  .post_content .libnew-vis-main-catch {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.55;
    color: #1a1a1a;
    margin-bottom: 0;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
  }
  .post_content .libnew-vis-main-catch strong { color: #2563EB; font-weight: 700; }
  .post_content .libnew-vis-main-catch .accent { color: #F97316; }

  /* === ストーリー（1カラム・中央寄せ） === */
  .post_content .libnew-vis-story {
    max-width: 820px;
    margin: 0 auto;
  }
  .post_content .libnew-vis-story-text p {
    font-size: 15.5px;
    line-height: 2.05;
    color: #333;
    margin-bottom: 22px;
  }
  .post_content .libnew-vis-story-text p:last-child { margin-bottom: 0; }
  .post_content .libnew-vis-story-text strong { color: #1a1a1a; font-weight: 700; }

  /* 締め */
  .post_content .libnew-vis-closing {
    margin-top: 40px;
    padding: 28px 0 0;
    border-top: 1px solid #e5e7eb;
  }
  .post_content .libnew-vis-closing p {
    font-size: 15.5px;
    line-height: 2;
    color: #1a1a1a;
    margin-bottom: 14px;
  }
  .post_content .libnew-vis-closing p:last-child { margin-bottom: 0; font-weight: 700; }
  .post_content .libnew-vis-closing strong { color: #F97316; font-weight: 700; }

  /* === 署名ブロック（最下部・横並び） === */
  .post_content .libnew-vis-signature {
    max-width: 820px;
    margin: 56px auto 0;
    padding-top: 40px;
    border-top: 1px solid #e5e7eb;
    display: flex;
    gap: 32px;
    align-items: center;
  }
  .post_content .libnew-vis-signature-photo {
    flex-shrink: 0;
    width: 140px;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
  }
  .post_content .libnew-vis-signature-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
  }
  .post_content .libnew-vis-signature-info {
    flex: 1;
  }
  .post_content .libnew-vis-signature-name {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.4;
    margin-bottom: 4px;
  }
  .post_content .libnew-vis-signature-role {
    font-size: 13px;
    color: #666;
    font-weight: 500;
    margin-bottom: 14px;
  }
  .post_content .libnew-vis-signature-bio {
    font-size: 13px;
    color: #555;
    line-height: 1.85;
    padding-top: 14px;
    border-top: 1px solid #e5e7eb;
  }

  /* スマホ */
  @media (max-width: 768px) {
    .post_content .libnew-vis { padding: 64px 0; }
    .post_content .libnew-vis::before { width: 100%; height: 40%; top: auto; bottom: 0; }
    .post_content .libnew-vis-wrap { padding: 0 20px; }
    .post_content .libnew-vis-eyebrow { font-size: 11px; }
    .post_content .libnew-vis-h2 { font-size: 26px; line-height: 1.5; margin-bottom: 32px; }

    .post_content .libnew-vis-main {
      margin-bottom: 56px;
      padding: 40px 24px 36px;
      border-left-width: 5px;
      border-radius: 4px 12px 12px 4px;
    }
    .post_content .libnew-vis-main::before {
      font-size: 140px;
      top: -28px;
      right: 16px;
    }
    .post_content .libnew-vis-main::after {
      bottom: 16px;
      right: 20px;
      width: 36px;
    }
    .post_content .libnew-vis-main-eyebrow {
      font-size: 11px;
      margin-bottom: 20px;
      letter-spacing: 0.18em;
    }
    .post_content .libnew-vis-main-catch {
      font-size: 21px;
      line-height: 1.6;
    }

    .post_content .libnew-vis-story-text p {
      font-size: 14.5px;
      line-height: 2;
      margin-bottom: 18px;
    }
    .post_content .libnew-vis-closing { margin-top: 32px; padding-top: 22px; }
    .post_content .libnew-vis-closing p { font-size: 14.5px; }

    /* 署名ブロック：縦並び・中央寄せ */
    .post_content .libnew-vis-signature {
      margin-top: 44px;
      padding-top: 32px;
      flex-direction: column;
      text-align: center;
      gap: 20px;
    }
    .post_content .libnew-vis-signature-photo {
      width: 120px;
      height: 156px;
    }
    .post_content .libnew-vis-signature-info { width: 100%; max-width: 320px; }
    .post_content .libnew-vis-signature-name { font-size: 18px; }
    .post_content .libnew-vis-signature-role { font-size: 12.5px; margin-bottom: 12px; }
    .post_content .libnew-vis-signature-bio { font-size: 12.5px; padding-top: 12px; }
  }

/* ============================================================
 * [12] 最新ブログ記事  (blog.html)
 * ============================================================ */
.post_content .libnew-blog {
    padding: 96px 0;
    background: #f9fafb;
  }
  .post_content .libnew-blog-wrap {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .post_content .libnew-blog-eyebrow {
    display: inline-block;
    color: #F97316;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    margin-bottom: 12px;
    text-transform: uppercase;
  }
  .post_content .libnew-blog-h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 16px;
    color: #1a1a1a;
  }
  .post_content .libnew-blog-lead {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 48px;
  }

  /* グリッド（3カラム） */
  .post_content .libnew-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
  }

  /* カード */
  .post_content .libnew-blog-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .post_content .libnew-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .post_content .libnew-blog-card-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    position: relative;
    overflow: hidden;
  }
  .post_content .libnew-blog-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .post_content .libnew-blog-card-thumb-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563EB;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.05em;
  }
  .post_content .libnew-blog-card-body {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .post_content .libnew-blog-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 12px;
  }
  .post_content .libnew-blog-card-cat {
    display: inline-block;
    padding: 3px 10px;
    background: #fff7ed;
    color: #F97316;
    border-radius: 4px;
    font-weight: 700;
    font-size: 11.5px;
    letter-spacing: 0.04em;
  }
  .post_content .libnew-blog-card-date {
    color: #888;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
  }
  .post_content .libnew-blog-card-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.65;
    color: #1a1a1a;
    margin-bottom: 16px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .post_content .libnew-blog-card-more {
    font-size: 13px;
    color: #F97316;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .post_content .libnew-blog-card-more::after {
    content: '→';
    font-size: 14px;
    transition: transform 0.2s ease;
  }
  .post_content .libnew-blog-card:hover .libnew-blog-card-more::after {
    transform: translateX(3px);
  }

  /* もっと見るボタン */
  .post_content .libnew-blog-btn-wrap {
    text-align: center;
  }
  .post_content .libnew-blog-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 40px;
    background: #fff;
    color: #1a1a1a;
    border: 1.5px solid #1a1a1a;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 700;
    transition: background 0.2s ease, color 0.2s ease;
  }
  .post_content .libnew-blog-btn:hover {
    background: #1a1a1a;
    color: #fff;
  }
  .post_content .libnew-blog-btn::after {
    content: '→';
    font-size: 16px;
  }

  /* スマホ */
  @media (max-width: 768px) {
    .post_content .libnew-blog { padding: 64px 0; }
    .post_content .libnew-blog-wrap { padding: 0 0 0 20px; }
    .post_content .libnew-blog-eyebrow { font-size: 11px; }
    .post_content .libnew-blog-h2 { font-size: 26px; line-height: 1.5; margin-bottom: 12px; }
    .post_content .libnew-blog-lead { font-size: 14.5px; margin-bottom: 32px; padding-right: 20px; }

    /* 横スクロール */
    .post_content .libnew-blog-grid {
      display: flex;
      grid-template-columns: none;
      gap: 14px;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
      padding-right: 20px;
      margin-bottom: 32px;
      scroll-snap-type: x mandatory;
    }
    .post_content .libnew-blog-card {
      flex: 0 0 78%;
      min-width: 78%;
      scroll-snap-align: start;
    }
    .post_content .libnew-blog-card-body { padding: 18px 18px 20px; }
    .post_content .libnew-blog-card-title { font-size: 15px; }

    .post_content .libnew-blog-btn-wrap { padding-right: 20px; }
    .post_content .libnew-blog-btn { padding: 14px 32px; font-size: 14px; }
  }

/* ============================================================
 * [13] FAQ  (faq.html)
 * ============================================================ */
.post_content .libnew-faq {
    padding: 96px 0;
    background: #fff;
  }
  .post_content .libnew-faq-wrap {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .post_content .libnew-faq-eyebrow {
    display: inline-block;
    color: #F97316;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    margin-bottom: 12px;
    text-transform: uppercase;
  }
  .post_content .libnew-faq-h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 56px;
    color: #1a1a1a;
  }

  /* カテゴリ見出し */
  .post_content .libnew-faq-cat {
    font-size: 14px;
    font-weight: 700;
    color: #F97316;
    letter-spacing: 0.12em;
    margin-bottom: 18px;
    margin-top: 40px;
    padding-bottom: 10px;
    border-bottom: 1px solid #fed7aa;
    text-transform: uppercase;
  }
  .post_content .libnew-faq-cat:first-of-type { margin-top: 0; }

  /* 項目 */
  .post_content .libnew-faq-item {
    border-bottom: 1px solid #e5e7eb;
  }
  .post_content .libnew-faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 56px 22px 44px;
    position: relative;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.65;
  }
  .post_content .libnew-faq-item summary::-webkit-details-marker { display: none; }
  .post_content .libnew-faq-item summary::before {
    content: 'Q';
    position: absolute;
    left: 8px;
    top: 22px;
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: #F97316;
    line-height: 1.65;
  }
  .post_content .libnew-faq-item summary::after {
    content: '＋';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #888;
    font-weight: 400;
    transition: transform 0.2s ease;
  }
  .libnew-faq-item[open] summary::after {
    content: '−';
  }
  .post_content .libnew-faq-item summary:hover {
    background: #fafafa;
  }
  .post_content .libnew-faq-item-answer {
    padding: 0 56px 26px 44px;
    position: relative;
    font-size: 14.5px;
    line-height: 2;
    color: #444;
  }
  .post_content .libnew-faq-item-answer::before {
    content: 'A';
    position: absolute;
    left: 8px;
    top: 0;
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: #2563EB;
    line-height: 1.65;
  }

  /* スマホ */
  @media (max-width: 768px) {
    .post_content .libnew-faq { padding: 64px 0; }
    .post_content .libnew-faq-wrap { padding: 0 20px; }
    .post_content .libnew-faq-eyebrow { font-size: 11px; }
    .post_content .libnew-faq-h2 { font-size: 26px; line-height: 1.5; margin-bottom: 32px; }

    .post_content .libnew-faq-cat { font-size: 12.5px; margin-top: 32px; margin-bottom: 14px; }

    .post_content .libnew-faq-item summary {
      padding: 18px 44px 18px 36px;
      font-size: 14.5px;
      line-height: 1.65;
    }
    .post_content .libnew-faq-item summary::before {
      left: 4px;
      top: 18px;
      font-size: 15px;
    }
    .post_content .libnew-faq-item summary::after {
      right: 10px;
      font-size: 18px;
    }
    .post_content .libnew-faq-item-answer {
      padding: 0 16px 22px 36px;
      font-size: 13.5px;
      line-height: 1.95;
    }
    .post_content .libnew-faq-item-answer::before {
      left: 4px;
      font-size: 15px;
    }
  }

/* ============================================================
 * [14] Office  (office.html)
 * ============================================================ */
.post_content .libnew-office {
    padding: 96px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563EB 100%);
    color: #fff;
  }
  .post_content .libnew-office-wrap {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
  }

  .post_content .libnew-office-eyebrow {
    display: inline-block;
    color: #F97316;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.18em;
    margin-bottom: 12px;
    text-transform: uppercase;
  }
  .post_content .libnew-office-h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 48px;
    color: #fff;
  }

  /* 2カラム */
  .post_content .libnew-office-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 40px;
  }

  /* 左：会社情報テーブル */
  .post_content .libnew-office-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
  }
  .post_content .libnew-office-table tr {
    border-bottom: 1px solid rgba(255,255,255,0.18);
  }
  .post_content .libnew-office-table th,
  .post_content .libnew-office-table td {
    padding: 18px 12px;
    text-align: left;
    font-size: 14.5px;
    line-height: 1.7;
    vertical-align: top;
    border-bottom: 1px solid rgba(255,255,255,0.18);
  }
  .post_content .libnew-office-table th {
    width: 30%;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.04em;
  }
  .post_content .libnew-office-table td {
    width: 70%;
    color: #fff;
    font-weight: 500;
  }
  .post_content .libnew-office-table tr:first-child th,
  .post_content .libnew-office-table tr:first-child td {
    padding-top: 8px;
  }
  .post_content .libnew-office-table tr:last-child th,
  .post_content .libnew-office-table tr:last-child td {
    border-bottom: none;
  }
  .post_content .libnew-office-table a {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(249,115,22,0.6);
  }
  .post_content .libnew-office-table a:hover { text-decoration-color: #F97316; }

  /* 右：マップ */
  .post_content .libnew-office-map {
    width: 100%;
    height: 400px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(0,0,0,0.20);
    background: rgba(255,255,255,0.05);
  }
  .post_content .libnew-office-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
  }

  /* 補足文 */
  .post_content .libnew-office-note {
    margin-top: 8px;
    padding: 22px 26px;
    background: rgba(255,255,255,0.08);
    border-radius: 12px;
    border-left: 3px solid #F97316;
    font-size: 13.5px;
    line-height: 1.95;
    color: rgba(255,255,255,0.92);
    margin-bottom: 40px;
  }
  .post_content .libnew-office-note strong { color: #fff; font-weight: 700; }

  /* CTAボタン */
  .post_content .libnew-office-cta-wrap {
    text-align: center;
  }
  .post_content .libnew-office-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 44px;
    background: #06C755;
    color: #fff;
    border-radius: 999px;
    text-decoration: none;
    font-size: 15.5px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(6,199,85,0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .post_content .libnew-office-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(6,199,85,0.45);
  }
  .post_content .libnew-office-cta-icon {
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 4px;
    color: #06C755;
    font-weight: 800;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
  }

  /* スマホ */
  @media (max-width: 768px) {
    .post_content .libnew-office { padding: 64px 0; }
    .post_content .libnew-office-wrap { padding: 0 20px; }
    .post_content .libnew-office-eyebrow { font-size: 11px; }
    .post_content .libnew-office-h2 { font-size: 26px; line-height: 1.5; margin-bottom: 32px; }

    .post_content .libnew-office-grid {
      grid-template-columns: 1fr;
      gap: 28px;
      margin-bottom: 28px;
    }

    .post_content .libnew-office-table th,
    .post_content .libnew-office-table td {
      padding: 14px 8px;
      font-size: 13.5px;
    }
    .post_content .libnew-office-table th {
      font-size: 12px;
      width: 32%;
    }

    .post_content .libnew-office-map { height: 280px; }
    .post_content .libnew-office-note {
      padding: 18px 20px;
      font-size: 12.5px;
      margin-bottom: 32px;
    }
    .post_content .libnew-office-cta { padding: 16px 32px; font-size: 14.5px; }
  }
