.accordion-wrapper {
margin: 0;
width: 100%;
}


summary {
  /* display: list-item;以外を指定してデフォルトの三角形アイコンを消します */
  display: block;
  /* Safariで表示されるデフォルトの三角形アイコンを非表示にします */
  &::-webkit-details-marker {
    display: none;
  }
}

.summary_inner {
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
    margin: 1.5em 0 0;
  padding: 0.5em 1em;
  font-weight: 600;
  font-size: 146.6666666667%;
  line-height: 1.3636363636;
  color: rgb(51, 51, 51);
  background: rgb(231, 249, 255);
}

.icon {
  display: block;
  position: relative;
  width: 24px;
  margin-left: 6px;
  flex-shrink: 0;
  transform-origin: center 43%;
  transition: transform 0.4s;

  /* アイコンのバーのスタイル */
  &::before,
  &::after {
    content: "";
    position: absolute;
    display: block;
    width: 15px;
    height: 3px;
    background-color: #2ec6ff;
  }
  &::before {
    left: 0;
    transform: rotate(45deg);
  }
  &::after {
    right: 0;
    transform: rotate(-45deg);
  }
}

/*details[open] .icon {*/
/*  transform: rotate(180deg);*/
/*}*/

/* is-openedクラスが付与されたときのスタイル */
details.is-opened .icon {
  transform: rotate(180deg);
}

/* --------アコーディオンの中身のスタイル-------- */
.content {
  overflow: hidden;
  /*background-color: #f0f2ff;*/

  /* details直下のタグにpaddingを設定すると挙動がおかしくなるので、ここには指定しない */
}

.content_inner {
  /*padding: 24px 48px;*/
  /*display: flex;*/
  flex-direction: column;
  /*gap: 16px;*/
  margin: 0;
  width: 100%;
}
.content_inner p,
.content_inner ol,
.content_inner ul,
.content_inner h3,
.content_inner table
{
  width: 100%;
}