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

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

.summary_inner {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
margin: 0;
padding: 25px 10px 25px 0;
border-top: thin solid #666;
cursor: pointer;
}

.summary_inner .txt_wrap {
display: flex;
justify-content: flex-start;
}

.summary_inner .date {
font-size: 1.3em;
line-height: 1.8em;
font-family: 'Lato', sans-serif;
text-align: left;
margin: 0;
width: 150px;
}

.summary_inner .news_txt {
font-size: 1.3em;
line-height: 1.8em;
text-align: left;
font-weight: 300;
margin: 0;
}

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

/*details[open] .icon {*/
/*  transform: rotate(180deg);*/
/*}*/

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

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

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

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

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

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

.content_inner {
  padding: 0 10px 30px 0;
}

p.inner_txt {
font-size: 0.95em;
line-height: 2em;
text-align: left;
font-weight: 300;
margin: 0 0 25px;
}

.content_inner .sub_title {
	font-size: 0.95em;
	line-height: 1.2;
	letter-spacing: 2px;
	margin: 20px 0 10px;
	padding: 5px 20px 7px;
	display: inline-block;
	color: #6FA3C0;
	border: thin solid #6FA3C0;
}

.content_inner img {
	margin: 20px 0 40px;
}



@media screen and (max-width: 640px) {
.summary_inner {
    padding: 15px 10px 15px 0;
}

.summary_inner .txt_wrap {
    display: flex;
    flex-direction: column;
}

.detail_icon {
    margin-left: 10px;
}

.summary_inner .date {
    font-size: 1em;
    width: auto;
}

.summary_inner .news_txt {
    font-size: 1em;
    line-height: 1.8em;
}
}



