/* アコーディオンのスタイル */
.accordion-trigger {
  cursor: pointer;
  position: relative;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
  margin-bottom: 20px;
}

.accordion-content.is-open {
  max-height: 2000px; /* コンテンツの最大高さより大きい値 */
  transition: max-height 0.8s ease-in;
}