/* ヒートトライアル 実績一覧ページ */

.ht-hero {
  background: linear-gradient(135deg, #1a3a5c 0%, #0d6efd 100%);
  padding: 60px 0 40px;
  color: #fff;
}

.ht-hero__title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-bottom: 0.25em;
}

.ht-hero__sub {
  font-size: 1rem;
  opacity: 0.85;
  margin-bottom: 0;
}

.ht-section {
  padding: 60px 0 80px;
  background: #f8f9fa;
}

.ht-section__lead {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}

/* カードグリッド */
.ht-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: none;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
  background: #fff;
}

.ht-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.16);
  transform: translateY(-3px);
  text-decoration: none;
  color: inherit;
}

.ht-card__img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: #dde3ea;
}

.ht-card__img-placeholder {
  width: 100%;
  aspect-ratio: 3 / 2;
  background: #dde3ea;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 0.8rem;
}

.ht-card__body {
  padding: 16px 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ht-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.5;
  color: #1a3a5c;
  margin-bottom: 8px;
}

.ht-card__desc {
  font-size: 0.83rem;
  color: #666;
  line-height: 1.65;
  flex: 1;
}

.ht-card__more {
  margin-top: 12px;
  font-size: 0.82rem;
  color: #0d6efd;
  font-weight: 600;
}

.ht-card__more::after {
  content: " →";
}

/* カウント表示 */
.ht-count {
  font-size: 0.88rem;
  color: #888;
  margin-bottom: 24px;
}

@media (max-width: 767px) {
  .ht-hero {
    padding: 40px 0 28px;
  }
  .ht-hero__title {
    font-size: 1.4rem;
  }
  .ht-section {
    padding: 36px 0 56px;
  }
}

#footBreadCrumb {
 margin-top: 0px;
}