.image-box {
  max-height: 90vh !important;
  width: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
}
.thumbnail {
  flex-shrink: 0;
  width: 160px;
  height: auto;
  padding: 1px;
  border: 1px solid #1A12D3;
  cursor: pointer;
  transition: opacity 0.3s;
}
.gallery-item {
  flex-shrink: 0; /**/
  display: inline-block; /* 横並びにする場合 */
  margin: 2px; /* アイテム間の余白 */
  /* text-align: center; 画像とテキストを中央揃え */
  vertical-align: top;
}
.gallery-item img {
  display: block; /* 画像の下の余白をなくす */
  max-width: 100%;
  height: auto;
}
.thumbnail-caption {
    margin-top: 1px; /* 画像とテキストの間の余白 */
	margin-left: 5px;
    text-transform: none;
    color: #003;
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
}
