/* ================================
   熱カシメ機カテゴリトップ専用CSS
   /css/kasime_top.css
   ================================ */

.kasime-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.kasime-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
  border-left: 6px solid #005bac;
  padding-left: 12px;
}

.kasime-lead {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.kasime-patent span {
  display: inline-block;
  background: #d60000;
  color: #fff;
  padding: 6px 14px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 4px;
  margin-bottom: 20px;
}

.kasime-subtitle {
  font-size: 22px;
  margin: 30px 0 15px;
  border-bottom: 2px solid #ddd;
  padding-bottom: 6px;
}

.kasime-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.kasime-card {
  background: #f8f8f8;
  border-left: 6px solid #005bac;
  padding: 18px;
  border-radius: 4px;
  line-height: 1.7;
}

.kasime-link a {
  color: #005bac;
  font-weight: bold;
  text-decoration: none;
}

.kasime-link a:hover {
  text-decoration: underline;
}

.kasime-text {
  line-height: 1.8;
  margin-bottom: 20px;
}

.kasime-images {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.kasime-images img {
  max-width: 45%;
  height: auto;
}

.kasime-sample {
  text-align: center;
  margin: 30px 0;
}

.kasime-sample img {
  max-width: 60%;
  height: auto;
}

.kasime-list {
  padding-left: 20px;
  line-height: 1.8;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .kasime-cards {
    grid-template-columns: 1fr;
  }

  .kasime-images {
    flex-direction: column;
  }

  .kasime-images img {
    max-width: 100%;
  }

  .kasime-sample img {
    max-width: 100%;
  }
}