.lfr-layout-structure-item-container {padding: 0;} .lfr-layout-structure-item-row {overflow: hidden;} .portlet-borderless .portlet-content {padding: 0;}summary {
  /* display: list-item;以外を指定してデフォルトの三角形アイコンを消します */
  display: block;
}

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

.summary_inner{
  cursor: pointer;
  position: relative;
  display: flex;
  padding: 11px 37px 7px 18px;
  color: #007c96;
  background: #f5fafa;
  border: 4px solid #d0e5e7;
  vertical-align: middle;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.orlfr-article h2.weektit {
    margin:0;
    border-bottom: 0;
    padding: 0;
    border-left-width: 0;
}

.orlfr-article h2.weektit .summary_inner  {
    display: block;
    margin: 0;
    margin-block-start: 0.5em;
    margin-block-end: 0.8em;
    font-size: 1.3em;
}


/* アイコンのバーのスタイル */
.accordion .summary_inner::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 3px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 15px;
    height: 3px;
    border-radius: 10px;
    display: block;
    background-color: #187376;
}

.accordion .summary_inner::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 3px;
    height: 15px;
    border-radius: 10px;
    background-color: #187376;
    display: block;
    transition: 0.3s cubic-bezier(0.76, 0, 0.24, 1);
    will-change: transform;
}

.accordion[open] summary .summary_inner::after {
    transform: translate(-50%, -50%) rotate(90deg);
}



/* --------アコーディオンの中身のスタイル-------- */
.content {
  overflow: hidden;

  /* details直下のタグにpaddingを設定すると挙動がおかしくなるので、ここには指定しない */
}

.content_inner {
  padding: 24px 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}


.content_inner {
    display: block;
    margin-block-start: 0;
    margin-block-end: 0;
}


h3.stit {
    position: relative;
    margin: 10px 0 15px;
    padding: 5px 5px 12px;
    /* color: #2b8487; */
    color: #187376;
    font-size: 135.71429%;
    line-height: 127%;
    font-weight: bold;
    border-bottom: 2px solid #19b2a8;
}

ul.link-internal li {
    display: inline-block;
    letter-spacing: normal;
    margin-top: 9px;
    margin-left: 18px;
    padding-left: 0;
}