
/* ===== Gallery ===== */

/* ギャラリー全体 */
.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.2rem;
}

/* 画像 */
.gallery-item {
    height: 250px;
    flex-grow: 1;
    object-fit: cover;
}

#container {
    display: flex;
}

img {
    /*border: 1px solid ;*/
    flex-grow: 1;
    object-fit: cover;
    height: 250px;
    max-width: 400px;
    margin: 0.1rem;
}

/* アクティブなタブ文字をゴールド */
.nav-tabs .nav-link.active {
  color: #c9a44d;       /* ゴールド */
  background-color: #fff;
  border-bottom: 2px solid #c9a44d;
}

.modal-backdrop.show {
  opacity: 0.4;
}

.modal-body {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

/* カルーセル全体を基準にする */
#galleryCarousel {
  position: relative;
}

/* 共通設定 */
#galleryCarousel .carousel-control-prev,
#galleryCarousel .carousel-control-next {
  position: fixed;
  top: 50%;
/*  transform: translateY(-50%);*/
  width: 60px;
  height: 60px;
  z-index: 1056;
  filter: invert(1);
  opacity: 0.85;
/*  background-color: rgba(0, 0, 0, 0.3);*/
}

/* 左右位置 */
#galleryCarousel .carousel-control-prev {
  left: 10px;
}

#galleryCarousel .carousel-control-next {
  right: 10px;
}
#galleryCarousel .carousel-item img {
  max-width: 100vw;
  max-height: 100vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

/*
#galleryCarousel .carousel-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 85vh;
}
*/
