.content-container {
  /* 固定の高さを設定し、はみ出たコンテンツを非表示にする */
  max-height: 150px;
  overflow: hidden;
  position: relative;
  transition: max-height 0.5s ease-in-out;
  margin-bottom: 60px;
}

.content-container.expanded {
  /* 展開時の高さ（コンテンツ全体を表示） */
  max-height: 99999px !important;
}

.read-more-gradient {
  /* グラデーションをかける要素のスタイル */
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, transparent, white);
  pointer-events: none;
}

.read-more-button {
  /*ボタンのスタイルを一つにまとめる */
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  margin: 15px auto 10px auto;
  z-index: 10;
  background-color: #007bff;
  color: white;
  border: none;
  padding: 5px 5px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.read-more-button:hover {
  background-color: #0056b3;
}