.last_line {
	border-bottom: 1px dashed #4dceb5;
}

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: 15px 10px 15px 0;
border-top: 1px dashed #4dceb5;
cursor: pointer;
}

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

.summary_inner .q_number {
font-size: 1.2em;
line-height: 1.3em;
font-family: 'Lato', sans-serif;
text-align: left;
font-weight: 600;
margin: 0;
color: #4dceb5;
min-width: 60px;
}

.summary_inner .q_txt {
font-size: 0.95em;
line-height: 1.8em;
text-align: left;
margin: 0;
color: #666;
}

.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 .icon {
  transform: rotate(180deg);
}

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

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

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

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

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

.content_inner {
  display: flex;
justify-content: flex-start;
  padding: 0 10px 30px 0;
}

.content_inner .a_number {
font-size: 1.2em;
line-height: 1.3em;
font-family: 'Lato', sans-serif;
text-align: left;
font-weight: 600;
min-width: 60px;
margin: 0;
color: #FF7979;
}

.content_inner .a_txt {
font-size: 0.95em;
line-height: 1.8em;
text-align: left;
margin: 0;
}

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

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



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

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

.icon {
    margin-left: 10px;
}

.summary_inner .q_number {
    min-width: 55px;
}

.content_inner .a_number {
    min-width: 55px;
}
}



