/* 背景を半透明にする */
.goverlay {
  background: rgba(0, 0, 0, 0.8) !important;
  backdrop-filter: none !important; /* ぼかし消したい場合 */
}


/* description全体の白背景を消す */
.gslide-description,
.gdesc-inner,
.gslide-desc {
  color: #d0d0d0 !important;
  opacity: 1 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}


.gcaption-desc {
    font-family: 'Quicksand', 'Noto Sans JP', sans-serif;
    font-weight: 300;
    text-align: center; /* 中央寄せにすると今風になります */
}


/* タイトルも合わせて調整（任意） */
.gslide-title {
  color: #d0d0d0 !important;
  font-weight: normal;
  letter-spacing: 2px;
}



/* description全体の余白を調整 */
.gslide-description {
  padding: 4px 0 !important;
}

/* 内側の余白をコンパクトに */
.gdesc-inner {
  padding: 4px 8px !important;
}

/* タイトル下の余白を縮める */
.gslide-title {
  margin-bottom: 2px !important;
}

/* 説明文の余白も少し締める */
.gslide-desc {
  margin-top: 0 !important;
}



/* カーソルオン時　色が少し明るく＋ほんのりフェード */
.glightbox-container .gslide-desc a {
  color: #8fa6b2;
  border-bottom: 1px solid transparent;
  transition: all 0.25s ease;
}

.glightbox-container .gslide-desc a:hover {
  color: #b8cbd6;
  border-bottom: 1px solid #6f8794;
}


/* GLightbox説明文のリンクだけ下線装飾を消す */
.glightbox-container .gslide-desc a {
  color: #8fa6b2;
  text-decoration: none;          /* ← 通常アンダーライン消す */
  border-bottom: 1px solid transparent;
  transition: all 0.25s ease;
}


/* GLightbox説明文のリンクだけ下線装飾を消す */
.glightbox-container .gslide-desc a::after {
  display: none;
}



