/* Extracted verbatim from the Ac+ child theme (hello-elementor-child/functions.php, [trial_course_sliders] の wp_add_inline_style), 2026-09-14.
   無料会員・無料体験コースのレッスンごとの横スクロール行。declarations are byte-for-byte unmodified. */
  .ac-lessons-sliders{margin:24px 0 6px}
  .ac-lesson-block{margin-bottom:22px}
  .ac-lesson-header{display:flex;justify-content:flex-start;align-items:center;gap:12px;margin:16px 6px 10px}

  /* 見出し：リンク＋ゴールドライン */
  .ac-lesson-title{margin:0;line-height:1.35;font-weight:700;font-size:24px}
  .ac-lesson-title a{
    color:inherit; text-decoration:none; display:inline-block; position:relative;
    padding-bottom:10px;  /* ラインとの距離 */
  }
  .ac-lesson-title a::after{
    content:""; position:absolute; left:0; right:0; bottom:0;
    height:4px; background:#9C8048; border-radius:2px; /* ゴールドライン */
  }

  /* 横スクロールの本体（scroll-snapは使わない方針） */
  .ac-row-scroll{
    display:flex; gap:16px; overflow-x:auto; overflow-y:hidden;
    padding:25px 0 20px 30px;  /* 要望どおりの余白 */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  .ac-row-scroll.is-grabbing{ cursor:grabbing; }
  .ac-row-scroll::-webkit-scrollbar{ height:8px }
  .ac-row-scroll::-webkit-scrollbar-thumb{ background:#ccc; border-radius:4px }

  .ac-topic-card{
    flex:0 0 220px;
    border-radius:16px; background:#fff; overflow:hidden;
    box-shadow:0 6px 16px rgba(0,0,0,.18);
    transition:transform .2s ease, box-shadow .2s ease;
  }
  .ac-topic-card:hover{ transform:translateY(-6px); box-shadow:0 14px 32px rgba(0,0,0,.3) }
  .ac-topic-card img{ width:100%; height:auto; display:block; object-fit:cover; border-bottom:1px solid #eee }
  .ac-topic-title{ padding:8px 10px; font-size:14px; font-weight:600; line-height:1.4; color:#222; min-height:3em }

  /* スマホ：タイトル18px、ラインも微調整 */
  @media (max-width: 768px){
    .ac-lesson-title{ font-size:18px; }
    .ac-lesson-title a{ padding-bottom:8px; }
    .ac-lesson-title a::after{ height:3px; }
  }
