/*PC用*/ 

.HomeCases{
  width:100%;
  padding:70px 0;
}

.HomeCases__inner{
  width:90%;
  margin:0 auto;
}

.HomeCases__grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:14px;
}

/* ===== Card ===== */
.HomeCases__card{
  border:1px solid #7fcbea;
  border-radius:16px;
  background:#fff;
  overflow:hidden; /* thumbを角丸に合わせる */
  transition:transform .15s ease, box-shadow .15s ease;
}

.HomeCases__card:hover{
  transform:translateY(-2px);
  box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.HomeCases__cardLink{
  display:block;
  text-decoration:none;
  color:inherit;
}

/* ===== Thumb（16:9固定） ===== */
.HomeCases__thumb{
  width:100%;
  aspect-ratio:16 / 9;
  background:rgba(0,0,0,.04);
  overflow:hidden;
}

.HomeCases__thumbImg{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}

/* ===== Body ===== */
.HomeCases__body{
  padding:14px 16px 12px 16px;
}

.HomeCases__meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}

.HomeCases__badge{
  display:inline-flex;
  align-items:center;
  height:26px;
  padding:0 10px;
  border-radius:999px;
  font-size:12px;
  background:#7fcbea;
  color:#fff;
  white-space:nowrap;
}

.HomeCases__area{
  font-size:12px;
  opacity:.75;
  white-space:nowrap;
}

.HomeCases__name{
  font-size:16px;
  line-height:1.45;
  margin:0;
  color:#111;
}

/* ===== Links ===== */
.HomeCases__links{
  padding:0 16px 14px 16px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.HomeCases__ext{
  font-size:13px;
  text-decoration:none;
  border-bottom:1px solid rgba(0,0,0,.2);
  padding-bottom:2px;
  color:#111;
  opacity:.9;
}

.HomeCases__ext:hover{ opacity:1; }

/* ===== Foot ===== */
.HomeCases__foot{
  margin-top:14px;
  text-align:right;
}

.HomeCases__more{
  font-size:14px;
  text-decoration:none;
  border-bottom:1px solid rgba(0,0,0,.25);
  padding-bottom:2px;
  color:#111;
}