.sub_contents .block {
  border-top: 1px solid var(--colorBlack);
  padding-top: var(--space1);
}
.sub_contents .block .btns:not(.share):not(.sns) .btn .a {
  justify-content: flex-start;
}
.sub_contents .block .btns.share .btn .a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #FFF;
  box-sizing: border-box;
}
.sub_contents .block .btns.share .btn .a .icon {
  width: 100%;
  height: 100%;
}
.sub_contents .block .btns.share .btn.btn_share_x .a {
  background: #000000;
}
.sub_contents .block .btns.share .btn.btn_share_x .a .icon {
  background-image: url("../images/icon/share_x.png");
}
.sub_contents .block .btns.share .btn.btn_share_facebook .a {
  background: #1877F2;
}
.sub_contents .block .btns.share .btn.btn_share_facebook .a .icon {
  background-image: url("../images/icon/share_facebook.png");
}
.sub_contents .block .btns.share .btn.btn_share_line .a {
  background: #06c755;
}
.sub_contents .block .btns.share .btn.btn_share_line .a .icon {
  background-image: url("../images/icon/share_line.png");
}
.sub_contents .block .btns.share .btn.btn_copy_link .a {
  border: 1px solid var(--colorBlack);
}
.sub_contents .block .btns.share .btn.btn_copy_link .a .icon {
  background-image: url("../images/icon/copy_link.png");
}

article {
  display: block;
}
article > .head .date_wrap {
  margin-bottom: var(--space1);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  grid-column-gap: var(--space2);
}
article > .head .date_wrap .date {
  --fontSize:var(--fontSize_ss);
  color: var(--colorGray);
}
article > .head .categories {
  --h:24px;
  --fontSize:var(--fontSize_ss);
}
article > .head .categories .category .a {
  min-width: 0;
  text-decoration: none;
}
article > .body .text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  grid-gap: var(--space4);
}
article h1 {
  font-size: 2rem;
}
article h2 {
  font-size: 2rem;
}
article table tbody tr {
  border-bottom: 0;
}
article table tbody tr:nth-child(even) {
  background: #F8F8F8;
}