.blog-section {
  padding: 0rem 0.3rem;
  background-color: #f9fbfd;
  text-align: center;
}

/* ▼ タイトル全体 ▼ */
.blog-section .section-title {
  position: relative;
  display: inline-block;
  font-weight: bold;
  margin-top: 4rem;
  margin-bottom: -1rem;
  line-height: 1.2;
}

.blog-section .section-title-en {
  font-size: 5rem;
  color: #dde3e8;
  letter-spacing: 0.1em;
}

.blog-section .section-title-ja {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.8rem;
  color: #222;
  white-space: nowrap;
}

/* ▼ ブログカード ▼ */
.blog-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 360px; /* 高さ統一 */
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background-color: #fff;
  transition: box-shadow 0.3s;
  text-align: left;
}

.blog-card:hover {
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.blog-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 6px;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ▼ コンテンツ部分（タイトル・本文） */
.blog-content {
  padding: 1rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-title {
  font-size: 1rem;
  font-weight: bold;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  line-height: 1.2;
  min-height: 3.6em; /* 3行分 */
  overflow: hidden;
}

.blog-excerpt {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.4;
  min-height: 3.6em;
  overflow: hidden;
  flex-grow: 1;
}

/* ▼ ボタン部分 */
.blog-button-wrap {
  padding: 0 1rem 1rem;
  text-align: center;
}

.blog-detail-button {
  display: inline-block;
  padding: 0.4rem 1rem;
  font-size: 0.9rem;
  background-color: var(--color-primary);
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s;
}

.blog-detail-button:hover {
  background-color: var(--color-primary-hover);
}
