.hr1 {
	width: 80%;
	border-top: dashed 1px #ccc;
	padding-top: 5px;
}

summary {
  /* display: list-item;以外を指定してデフォルトの三角形アイコンを消します */
  display: block;
}

summary::-webkit-details-marker {
  /* Safariで表示されるデフォルトの三角形アイコンを消します */
  display: none;
}

.summary_inner{
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  font-weight: bold;
  color: #808080;
  min-height: 50px;

}

.icon {
  display: block;
  position: relative;
  width: 24px;
  margin-left: 6px;
  flex-shrink: 0;
  transform-origin: center 43%;
  transition: transform 0.4s;
}

/* is-openedクラスが付与されたときのスタイル */
details.is-opened .icon {
  transform: rotate(180deg);
}

/* アイコンのバーのスタイル */
.icon::before,
.icon::after {
  content: "";
  position: absolute;
  display: block;
  width: 15px;
  height: 3px;
  background-color: #FF77A0;
}

.icon::before {
  left: 0;
  transform: rotate(45deg);
}

.icon::after {
  right: 0;
  transform: rotate(-45deg);
}

/* --------アコーディオンの中身のスタイル-------- */
.content {
  background-color: ;
  border-radius: 30px;
  margin-left: -50px;
  margin-top: 0px;
  /* details直下のタグにpaddingを設定すると挙動がおかしくなるので、ここには指定しない */
}

.content_inner {
  margin-left: 0px;
  padding: 10px 10px;
         margin-right:5px;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.content_inner:before {
    position: absolute;
    top: 0;
    content: '';
    width: 80%;
    left: 50%;
    transform: translate(-50%);
    border-top: dashed 1px #ccc;

}
/* --------レイアウト用のスタイル-------- */
.wrapper {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.wrapper details {
  margin-bottom: 16px;
}

.wrapper details:last-child {
  margin-bottom: 0;
}

@media (max-width: 760px) {
  .wrapper {
    width: 100%;
  }
}