/* unusual */
.flex-container > .col-2:nth-child(3) {
  flex-direction: row-reverse;
  margin-top: 60px;
}
.gallery-narrow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1em;
  margin-top: 24px;
  margin-bottom: 24px;
}
@media only screen and (max-width: 1024px) {
  .col-2 {
    flex-direction: column-reverse;
  }
  .col-2:nth-of-type(even) {
    flex-direction: column-reverse;
  }
  .flex-container > .col-2:nth-child(3){
      flex-direction: column;
      flex-direction: column-reverse;
    }
}
/* -------コメント */
.comment-wrap {
  flex-shrink: 0;
  margin-top: auto;
  width: 40%;
  text-align: center;
}
.comment-wrap p {
  font-size: 14px;
  line-height: 1.44;
}
@media only screen and (max-width: 768px) {
  .comment-wrap {
    width: 70%;
    margin-inline: auto;
  }
}