/* ============================================================
   追加機能: saisinnbao版から移植
   1) トップページの業務内容カードをリンク化＋写真表示
   2) 導入事例ページに実名の導入事例カードを追加
   ============================================================ */

/* --- 業務内容カード（トップページ） --- */
a.svc{ display:block; text-decoration:none; color:inherit; }
.svc-photo{ height:170px; overflow:hidden; }
.svc-photo img{
  width:100%; height:100%; object-fit:cover; display:block;
  transition:transform .6s var(--ease);
}
a.svc:hover .svc-photo img{ transform:scale(1.06); }

/* --- 導入事例（実名クライアント）カード --- */
.case-grid-simple{ margin-top:34px; }
.case-simple{
  background:var(--navy-900);
  border:1px solid var(--line);
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 14px 30px -22px rgba(0,0,0,.35);
  transition:transform .4s ease;
}
.case-simple:hover{ transform:translateY(-4px); }
.case-simple .case-img{ height:200px; border-radius:0; }
.case-simple .case-img.case-img-photo::after{ display:none; }
.case-simple .case-body{ padding:20px 22px 24px; }
.case-simple .case-body h4{
  font-family:var(--ff-serif);
  font-size:16px;
  letter-spacing:.04em;
  color:var(--text);
  font-weight:600;
}
.case-simple .case-body .case-scope{
  margin-top:10px;
  padding-top:12px;
  border-top:1px solid var(--line);
  font-size:13.5px;
  line-height:1.8;
  color:var(--muted);
  letter-spacing:.02em;
}
