/* ===== 掲載イメージセクション (v3) ===== */
/* 注意: prefers-reduced-motion によるアニメーション停止は
   クライアント要望(常時自動ループ)により実装しないこと */
.showcase {
  padding: 64px 0 72px;
  overflow: hidden;
}
.showcase__viewport { overflow: hidden; }
.showcase__track {
  display: flex;
  width: max-content;
  animation: showcase-scroll 30s linear infinite;
  /* 表示枚数が増えたら duration を「枚数×6s」目安で調整 */
}
.showcase__group {
  display: flex;
  gap: 40px;
  padding-right: 40px; /* group間の継ぎ目 = gap と同値 */
}
.showcase__item { flex: 0 0 auto; padding: 8px 0 28px; }
@keyframes showcase-scroll {
  to { transform: translateX(-50%); }
}

/* --- タブレット枠(立体感あり・横長16:9) --- */
.tablet {
  position: relative;
  background: linear-gradient(150deg, #ffffff 0%, #f6f7fa 55%, #e9ecf2 100%);
  border: 1px solid rgba(27,42,91,.10);
  border-radius: 22px;
  padding: 24px 14px 14px; /* 上部にカメラ分の余白 */
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.95),
    inset 0 -2px 5px rgba(27,42,91,.06),
    0 1px 2px rgba(27,42,91,.10),
    0 10px 22px rgba(27,42,91,.13),
    0 24px 48px rgba(27,42,91,.10);
}
.tablet::before { /* 上部中央カメラ */
  content:"";
  position:absolute; top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 22px; height: 5px;
  border-radius: 3px;
  background: linear-gradient(180deg, #2a3040, #454c5e);
  box-shadow: inset 0 1px 1px rgba(255,255,255,.25);
}
.tablet__screen {
  position: relative;
  width: 300px;
  aspect-ratio: 16 / 9; /* 素材と同比率=見切れなし */
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(27,42,91,.16); /* 白背景画像の輪郭確保用の薄縁 */
  background: #000; /* 比率が異なる画像が入った場合は黒縁でレターボックス表示 */
}
.tablet__screen img {
  width:100%; height:100%;
  object-fit: contain; /* 切り取らず全体表示。16:9素材なら縁なしで満たされる */
  display:block;
}
/* --- 業種ラベル(コンテンツ内左下タグ) --- */
.tablet__tag {
  position: absolute;
  left: 12px; bottom: 12px;
  padding: 7px 16px;
  background: #ffffff;
  border-radius: 999px;
  font-size: 14px; font-weight: 700;
  letter-spacing: .06em;
  color: #1b2a5b;
  box-shadow: 0 2px 8px rgba(27,42,91,.18);
  line-height: 1;
}

@media (max-width: 640px) {
  .showcase { padding: 44px 0 52px; }
  .showcase__group { gap: 20px; padding-right: 20px; }
  .tablet { border-radius: 16px; padding: 18px 10px 10px; }
  .tablet__screen { width: 230px; border-radius: 6px; }
  .tablet__tag { font-size: 12px; padding: 6px 12px; left: 10px; bottom: 10px; }
}
