/* unusual */
.flag {
  width: 120px;
}
.flag + h3 {
  margin-top: 4px;
}
#article .gallery + .caption {
  margin-inline: initial;
}
/* @media not all and (min-width: 960px) {
  .card > .flex,
  .card .post-container {
    display: contents !important;
  }
  .card .flag,
  .card h3 {
    order: -1;
  }
} */


/* -------コメント */
.comment-wrap {
  flex-shrink: 0;
  margin-top: auto;
  width: 40%;
  text-align: center;
}
.comment-title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0;
  &::before,&::after {
    content: "";
    width: 2px;
    height: 28px;
    background-color: #222;
  }
  &::before {
    margin-right: 0.6em;
    transform: rotate(-30deg);
  }
  &::after {
    margin-left: 0.6em;
    transform: rotate(30deg);
  }
}
@media only screen and (max-width: 768px) {
  .comment-wrap {
    width: 70%;
    margin-inline: auto;
  }
}