:root {
  --designW: 1280;
  --scrollbarW: 0;
}

.displayGallery {
  display: grid;
}
@media not all and (max-width: 767px), print {
  .displayGallery {
    grid-template-columns: repeat(3, 1fr);
    gap: calc(18 / (var(--designW) + var(--scrollbarW)) * 100vw);
    margin-top: calc(80 / (var(--designW) + var(--scrollbarW)) * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .displayGallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 40px;
  }
}
.displayGallery li {
  padding-left: 0 !important;
}
.displayGallery li:before {
  content: none !important;
}
.displayGallery li:nth-child(1) {
  grid-column: span 2;
}
.displayGallery a {
  display: block;
  height: 100%;
}
@media not all and (max-width: 767px), print {
  .displayGallery a:hover .displayGallery_thumb img,
  .displayGallery a:hover .displayGallery_thumbs img {
    scale: 1.1;
  }
}
.displayGallery a img {
  scale: 1.01;
}
.displayGallery_body {
  display: grid;
  grid-template-rows: max-content auto;
  height: 100%;
  overflow: hidden;
}
@media not all and (max-width: 767px), print {
  .displayGallery_body {
    border-radius: calc(10 / (var(--designW) + var(--scrollbarW)) * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .displayGallery_body {
    border-radius: 10px;
  }
}
.displayGallery_thumb {
  overflow: hidden;
}
.displayGallery_thumb img {
  width: 100%;
  aspect-ratio: 232/154;
  -o-object-fit: cover;
  object-fit: cover;
  transition: scale 0.3s ease-in-out;
}
.displayGallery_thumbs {
  overflow: hidden;
}
.displayGallery_thumbs img {
  width: 100%;
  aspect-ratio: 482/154;
  -o-object-fit: cover;
  object-fit: cover;
  transition: scale 0.3s ease-in-out;
}
.displayGallery_txt {
  display: grid;
  align-content: center;
  text-align: center;
  background-color: #005BAC;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
@media not all and (max-width: 767px), print {
  .displayGallery_txt {
    padding: calc(6 / (var(--designW) + var(--scrollbarW)) * 100vw);
    font-size: calc(14 / (var(--designW) + var(--scrollbarW)) * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .displayGallery_txt {
    padding: 6px;
    font-size: 1.4rem;
  }
}

@media not all and (max-width: 767px), print {
  .bl_contSet table th, .bl_contSet table td {
    padding: calc(13 / (var(--designW) + var(--scrollbarW)) * 100vw) calc(15 / (var(--designW) + var(--scrollbarW)) * 100vw) calc(14 / (var(--designW) + var(--scrollbarW)) * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .bl_contSet table th, .bl_contSet table td {
    padding: 20px 6px;
  }
}
.bl_contSet table .blue {
  line-height: 1.4;
  margin-bottom: 5px;
  color: #005BAC;
  font-weight: 700;
}
.bl_contSet table .th-width-01 {
  width: 30%;
}
@media not all and (max-width: 767px), print {
  .bl_contSet table .th-width-02 {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .bl_contSet table .th-width-02 {
    width: 78%;
  }
}
@media not all and (max-width: 767px), print {
  .bl_contSet table .th-width-03 {
    width: 20%;
  }
}
@media screen and (max-width: 767px) {
  .bl_contSet table .th-width-03 {
    width: 22%;
  }
}
@media not all and (max-width: 767px), print {
  .bl_contSet .desc {
    font-size: calc(14 / (var(--designW) + var(--scrollbarW)) * 100vw);
  }
}