.c-image-group--2{
  display: flex !important;
  gap: 20px;
}

.c-image-item{
  width: 45%;
  text-align: center;
}

.c-image-item img{
  width: 100%;
  height: auto;
}

.c-image-caption{
  margin-top: 6px;
  font-size: 13px;
  color: #555;
}
/* PC：横並びに固定 */
.c-image-group--2{
  display: flex;
  gap: 20px;
}

.c-image-group--2 .c-image-item{
  width: 45%;
}

/* 画像は必ず横幅に収める */
.c-image-group--2 img{
  width: 100%;
  height: auto;
}

/* キャプション */
.c-image-caption{
  margin-top: 6px;
  font-size: 13px;
  color: #555;
  text-align: center;
}

@media (max-width: 640px){

  .c-image-group--2{
    flex-direction: column;
  }

  .c-image-group--2 .c-image-item{
    width: 100%;
  }

}