/* ▼ View All Articles ボタン中央配置用 ▼ */
.article__all-link {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 60px;
}

.all-articles-button {
  display: inline-block;
  background-color: #4B4BFF;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.all-articles-button:hover {
  background-color: #3737cc;
}

.single_title {
  font-size: clamp(2.4rem, 3vw, 3rem); /* モバイルは1.8rem、PCでは最大2.4remまで */
  font-weight: bold;
}

