/* =========================
   Silver925 Category Hero
========================= */

.category-hero.silver925 {
  background: linear-gradient(135deg, #f8fafc 0%, #eef2f5 100%);
  border: 1px solid #dfe6eb;
  border-radius: 14px;
  padding: 36px 42px;
  margin-bottom: 14px;
  font-family: 'Noto Sans JP', sans-serif;
}

.category-hero.silver925 h2 {
  font-size: 38px;
  color: #263646;
  margin-bottom: 18px;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.4;
}

.category-hero.silver925 .lead {
  font-size: 16px;
  color: #607285;
  line-height: 1.8;
  margin-bottom: 28px;
}

.category-points {
  display: flex;
  gap: 18px;
  margin: 28px 0;
}

.category-point {
  flex: 1;
  background: #ffffff;
  border-radius: 12px;
  padding: 24px 18px;
  text-align: center;
  border: 1px solid #e5ebf0;
  transition: 0.3s;
}

.category-point:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

.category-point .icon {
  font-size: 28px;
  color: #71879b;
  margin-bottom: 10px;
  font-weight: bold;
}

.category-point .title {
  font-size: 17px;
  font-weight: 700;
  color: #263646;
  margin-bottom: 8px;
}

.category-point p {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
  margin: 0;
}

.category-hero .text {
  font-size: 15px;
  line-height: 1.9;
  color: #333;
  margin-bottom: 14px;
}

.category-hero .note {
  font-size: 12px;
  color: #888;
  margin-top: 18px;
}

/* =========================
   SP
========================= */

@media screen and (max-width: 768px) {

  .category-hero.silver925 {
    padding: 22px 16px;
    border-radius: 10px;
    margin-bottom: 8px;
  }

  .category-hero.silver925 h2 {
    font-size: 25px;
    line-height: 1.5;
    margin-bottom: 14px;
  }

  .category-hero.silver925 .lead {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 18px;
  }

  .category-points {
    display: block;
    margin: 18px 0;
  }

  .category-point {
    width: 100%;
    margin-bottom: 12px;
    padding: 18px 14px;
  }

  .category-point .icon {
    font-size: 22px;
    margin-bottom: 6px;
  }

  .category-point .title {
    font-size: 16px;
  }

  .category-point p {
    font-size: 13px;
    line-height: 1.6;
  }

  .category-hero .text {
    font-size: 14px;
    line-height: 1.8;
  }

  .category-hero .note {
    font-size: 11px;
    line-height: 1.6;
  }

}