:root {
  --anchor-offset-sp: 60px;
  --anchor-offset-pc: 132px;
  --sp-header-height: 60px;
  --sp-hero-progress: 0;
}

* {
  margin: 0;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  word-break: normal;
  overflow-wrap: break-word;
  word-wrap: break-word;
  font-style: normal;
  text-decoration: inherit;
  vertical-align: inherit;
  color: inherit;
  border: none;
  outline: none;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}

body {
  font-size: min(3.2dvw, 16px);
  font-family: YakuHanMP, "Noto Serif JP", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: normal;
  text-decoration: none;
  color: #000636;
  background: #EFEEEC;
}
body.intro-lock {
  overflow: hidden;
}
body.menu-open {
  overflow: hidden;
}

a {
  transition: opacity 0.3s ease, transform 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

main {
  display: block;
  width: 100%;
  position: relative;
}

img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

li {
  list-style: none;
}

.sp {
  display: block;
}
@media screen and (min-width: 769px), print {
  .sp {
    display: none;
  }
}

.pc {
  display: none;
}
@media screen and (min-width: 769px), print {
  .pc {
    display: block;
  }
}

.photo {
  position: relative;
  font-size: 0;
  line-height: 1;
}
.photo img {
  position: relative;
  font-size: 0;
  line-height: 1;
}
.photo .cap {
  position: absolute;
  padding: 0.5em;
  right: 0;
  bottom: 0;
  color: #fff;
  font-size: min(2dvw, 10px);
  text-shadow: 0 0 3px #000;
}
.photo .cap.bg {
  background: #000;
}
.photo .cap.left {
  left: 0;
  right: auto;
}

/* =========================================================
   HEADER
========================================================= */
#header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 20;
}
#header .header-wrap {
  display: flex;
  align-items: flex-start;
  transition: opacity 0.55s ease, transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1), background 0.35s ease, backdrop-filter 0.35s ease, -webkit-backdrop-filter 0.35s ease;
}
@media screen and (min-width: 769px), print {
  #header .header-wrap {
    position: fixed;
    top: 0;
    left: 100px;
    width: calc(70% - 100px);
    height: 132px;
    z-index: 21;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
  }
}
#header .logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 1em 0;
  width: 100%;
  height: fit-content;
  padding: 2dvw;
}
@media screen and (min-width: 769px), print {
  #header .logo {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 0;
    padding: 2dvw 2dvw 2dvw 20px;
  }
}
#header .logo .logo-l {
  margin-right: 4dvw;
}
#header .logo .logo-l img {
  max-width: 75px;
}
@media screen and (min-width: 769px), print {
  #header .logo .logo-l img {
    max-width: 140px;
  }
}
#header .logo .logo-c img {
  max-width: 50px;
}
@media screen and (min-width: 769px), print {
  #header .logo .logo-c img {
    max-width: 90px;
  }
}
#header .logo .logo-r {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-grow: 1;
  width: 100%;
}
#header .logo .logo-r img {
  max-width: 120px;
}
@media screen and (min-width: 769px), print {
  #header .logo .logo-r img {
    max-width: 210px;
  }
}
@media screen and (min-width: 769px), print {
  #header .logo .logo-r {
    justify-content: end;
    width: auto;
  }
}
#header .trigger {
  position: relative;
  width: 28px;
  height: 96px;
  cursor: pointer;
  border: 0;
  background: transparent;
  padding: 0;
  --gap: 12px;
  transform: rotate(90deg);
}
#header .trigger span {
  position: absolute;
  left: 50%;
  width: 2px;
  height: 100%;
  max-height: 24px;
  background-color: #fff;
  border-radius: 4px;
  top: 50%;
  transform-origin: center;
  transition: transform 0.45s cubic-bezier(0.2, 0.9, 0.2, 1), opacity 0.25s;
  will-change: transform, opacity;
}
#header .trigger span:nth-of-type(1) {
  transform: translate(calc(-50% - var(--gap)), -50%);
}
#header .trigger span:nth-of-type(2) {
  transform: translate(-50%, -50%) scaleY(1);
}
#header .trigger span:nth-of-type(3) {
  transform: translate(calc(-50% + var(--gap)), -50%);
}
#header .trigger.active span:nth-of-type(1) {
  transform: translate(-50%, -50%) rotate(45deg);
  height: 34px;
}
#header .trigger.active span:nth-of-type(2) {
  opacity: 0;
  transform: translate(-50%, -50%) scaleY(0.2);
}
#header .trigger.active span:nth-of-type(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
  height: 34px;
}
#header .menu_SP {
  display: flex;
  gap: 0 1em;
  height: fit-content;
  padding: 2dvw;
}
@media screen and (min-width: 769px), print {
  #header .menu_SP {
    display: none;
  }
}
#header .menu_SP .trial {
  background: #2c2e2e;
  color: #fff;
  font-size: min(2dvw, 10px);
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#header .menu_SP .trial a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5em;
  width: 100%;
  height: 100%;
  text-align: center;
}
#header .menu_SP .drawer {
  display: block;
  width: 50px;
  height: 50px;
  padding: 10px;
  border: solid 1px #2c2e2e;
}
#header .menu_SP .drawer .trigger {
  height: 100%;
  transform: rotate(0deg);
}
#header .menu_SP .drawer .trigger span {
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #2c2e2e;
}
#header .menu_SP .drawer .trigger span:nth-of-type(1) {
  transform: translateY(calc(-50% - var(--gap))) rotate(0deg);
}
#header .menu_SP .drawer .trigger span:nth-of-type(2) {
  transform: translateY(-50%) scaleX(1);
}
#header .menu_SP .drawer .trigger span:nth-of-type(3) {
  transform: translateY(calc(-50% + var(--gap))) rotate(0deg);
}
#header .menu_SP .drawer .trigger.active span:nth-of-type(1) {
  transform: translateY(-50%) rotate(45deg);
}
#header .menu_SP .drawer .trigger.active span:nth-of-type(2) {
  opacity: 0;
  transform: translateY(-50%) scaleX(0.2);
}
#header .menu_SP .drawer .trigger.active span:nth-of-type(3) {
  transform: translateY(-50%) rotate(-45deg);
}
#header .menu_PC {
  display: none;
  flex-wrap: wrap;
  writing-mode: vertical-rl;
  height: 100dvh;
  z-index: 25;
}
@media screen and (min-width: 769px), print {
  #header .menu_PC {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100px;
    height: 100vh;
    opacity: 0;
    transform: translateX(-100%);
    transition: opacity 0.45s ease, transform 0.75s cubic-bezier(0.22, 0.61, 0.36, 1);
    pointer-events: none;
  }
}
#header .menu_PC .top {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background: #000636;
  color: #fff;
  padding: 1em;
  height: 60%;
  cursor: pointer;
}
#header .menu_PC .top p {
  font-size: min(3.6dvw, 18px);
}
#header .menu_PC .btm {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #b7cdda;
  color: #000636;
  height: 40%;
}
#header .menu_PC .btm a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: min(3.6dvw, 18px);
  padding: 1em 2em;
}

/* =========================================================
   MENU LIST
========================================================= */
.menu_list {
  position: fixed;
  top: var(--sp-header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: #EFEEEC;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  z-index: 70;
  padding: 3rem 1.5rem;
}
.menu_list::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}
.menu_list.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  padding-top: 6em;
}
@media screen and (min-width: 769px), print {
  .menu_list.open {
    padding-top: 3em;
  }
}
@media screen and (min-width: 769px), print {
  .menu_list {
    top: 132px;
    left: 100px;
    right: 0;
    bottom: 0;
    width: auto;
    z-index: 30;
  }
}
.menu_list #menu {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding-bottom: 4rem;
}
.menu_list #menu .title {
  max-width: 320px;
  margin: auto;
  display: none;
}
@media screen and (min-width: 769px), print {
  .menu_list #menu .title {
    display: block;
  }
}
.menu_list #menu ul {
  width: 100%;
  margin: auto;
}
.menu_list #menu ul li {
  padding: 0.5em 0;
  margin: 1em auto;
  font-size: min(3.6dvw, 18px);
}
.menu_list #menu ul li::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.5em;
  border-bottom: solid 1px #000636;
  border-right: solid 1px #000636;
  transform: skew(55deg);
  position: relative;
  left: -0.5em;
}
.menu_list #menu ul li:first-child {
  margin-bottom: 0;
}
.menu_list #menu ul li:nth-child(2) {
  margin-top: 0;
}
.menu_list #menu ul li:nth-child(2)::after {
  content: none;
}
.menu_list #menu ul li span {
  display: flex;
  align-items: center;
  padding-left: 0.5em;
}
.menu_list #menu ul li span a {
  display: block;
  width: 100%;
  height: 100%;
  color: #2c2e2e;
}
.menu_list #menu ul li span::before {
  content: "";
  display: block;
  width: 2em;
  height: 2em;
  margin-right: 0.5em;
}
.menu_list #menu ul li span.menu01::before {
  background: url(../images/icon_01.png) 50% 50%/contain no-repeat;
}
.menu_list #menu ul li span.menu02::before {
  background: url(../images/icon_02.png) 50% 50%/contain no-repeat;
}
.menu_list #menu ul li span.menu03::before {
  background: url(../images/icon_03.png) 50% 50%/contain no-repeat;
}
.menu_list #menu ul li span.menu04::before {
  background: url(../images/icon_04.png) 50% 50%/contain no-repeat;
}
.menu_list #menu ul li span.menu05::before {
  background: url(../images/icon_05.png) 50% 50%/contain no-repeat;
}
.menu_list #menu ul li span.menu06::before {
  background: url(../images/icon_06.png) 50% 50%/contain no-repeat;
}
.menu_list #menu ul li .insta-area {
  display: flex;
  justify-content: center;
  gap: 0 0.5em;
}
@media screen and (min-width: 769px), print {
  .menu_list #menu ul li .insta-area {
    gap: 0 2em;
  }
}
.menu_list #menu ul li .insta-area .block {
  font-size: min(2.8dvw, 14px);
}
.menu_list #menu ul li .insta-area .block a {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
}
.menu_list #menu ul li .insta-area .block a p {
  margin-bottom: 0.5em;
  font-size: min(3.6dvw, 18px);
}
.menu_list #menu ul li .insta-area .block a .box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 1em;
  border: solid 1px #000636;
  padding: 1em;
}
.menu_list #menu ul li .insta-area .block a .box .txt {
  font-size: min(2.8dvw, 14px);
  margin: 0;
}
.menu_list #menu ul li .insta-area .block a .box img {
  max-width: 36px;
}

/* =========================================================
   GALLERY
========================================================= */
#gallery {
  min-height: 100vh;
  padding: var(--sp-header-height) 16px 16px;
  overflow: visible;
}
@media screen and (min-width: 769px), print {
  #gallery {
    padding: 100px 34px 16px 134px;
    width: 90%;
    margin: auto;
  }
}
#gallery .gallery-inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 769px), print {
  #gallery .gallery-inner {
    gap: 16px;
  }
}
#gallery h2 {
  text-align: center;
  letter-spacing: 0.12em;
  color: #000636;
  font-size: clamp(22px, 4.8vw, 40px);
  font-weight: 500;
}
#gallery .gallery-slider-wrap {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  gap: 12px;
}
@media screen and (min-width: 769px), print {
  #gallery .gallery-slider-wrap {
    gap: 16px;
  }
}
#gallery .gallery-main {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08), 0 2px 12px rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
#gallery .gallery-main.swiper,
#gallery .gallery-main .swiper-wrapper,
#gallery .gallery-main .swiper-slide {
  width: 100%;
  height: 100%;
  min-height: 0;
}
#gallery .gallery-main .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #b3b3b3;
}
#gallery .gallery-main img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#gallery .gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
}
@media screen and (min-width: 769px), print {
  #gallery .gallery-nav {
    width: 56px;
    height: 56px;
  }
}
#gallery .gallery-nav::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #000636;
  border-right: 2px solid #000636;
}
#gallery .gallery-nav.prev {
  left: 10px;
}
#gallery .gallery-nav.prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}
#gallery .gallery-nav.next {
  right: 10px;
}
#gallery .gallery-nav.next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}
#gallery .gallery-thumbs-note {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  margin-bottom: 8px;
  color: #000636;
  font-size: 12px;
  letter-spacing: 0.08em;
  opacity: 0.85;
}
#gallery .gallery-thumbs-note::before, #gallery .gallery-thumbs-note::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-right: 1px solid #000636;
  border-bottom: 1px solid #000636;
  transform: rotate(45deg);
  animation: thumbsScrollHint 1.4s ease-in-out infinite;
}
#gallery .gallery-thumbs-note::after {
  animation-delay: 0.2s;
}
@keyframes thumbsScrollHint {
  0% {
    transform: translateY(0) rotate(45deg);
    opacity: 0.25;
  }
  50% {
    transform: translateY(4px) rotate(45deg);
    opacity: 1;
  }
  100% {
    transform: translateY(0) rotate(45deg);
    opacity: 0.25;
  }
}
#gallery .gallery-thumbs-wrap {
  position: relative;
  padding: 12px 4px 0 0;
  overflow-y: auto;
  overflow-x: hidden;
}
#gallery .gallery-thumbs-wrap::-webkit-scrollbar {
  width: 8px;
}
#gallery .gallery-thumbs-wrap::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.08);
  border-radius: 999px;
}
#gallery .gallery-thumbs-wrap::-webkit-scrollbar-thumb {
  background: rgba(0, 6, 54, 0.45);
  border-radius: 999px;
}
#gallery .gallery-thumbs-wrap::after {
  content: "";
  position: sticky;
  left: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 26px;
  margin-top: -26px;
  background: linear-gradient(to bottom, rgba(239, 238, 236, 0) 0%, rgba(239, 238, 236, 0.92) 70%, rgb(239, 238, 236) 100%);
  pointer-events: none;
  z-index: 2;
}
#gallery .gallery-thumbs {
  width: 100%;
}
#gallery .gallery-thumbs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
@media screen and (min-width: 769px), print {
  #gallery .gallery-thumbs-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }
}
#gallery .gallery-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 6, 54, 0.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  opacity: 0.72;
  transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  padding: 0;
}
#gallery .gallery-thumb:hover {
  transform: translateY(-2px);
  opacity: 1;
}
#gallery .gallery-thumb.is-active {
  opacity: 1;
  border-color: rgba(0, 6, 54, 0.5);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}
#gallery .gallery-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================================================
   FOOTER
========================================================= */
#footer {
  background: #000636;
  color: #fff;
  padding: 3em 2.5em;
  margin-left: 0;
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 769px), print {
  #footer {
    width: 100%;
    margin-left: 0;
    margin-top: 0;
    padding: 2em;
    border-top: none;
    flex: 0 0 auto;
  }
}
#footer .footer-tit {
  width: 90%;
  max-width: 360px;
  margin: 0 auto;
}
#footer address {
  font-size: min(3.2dvw, 16px);
  display: block;
  width: fit-content;
  margin: 1em auto;
  font-style: normal;
  line-height: 1.8;
}
#footer address span {
  display: inline-block;
  margin-right: 0.25em;
}
@media screen and (min-width: 769px), print {
  #footer address span {
    display: inline;
    margin-right: 0.2em;
  }
}
#footer .insta-line {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 1em;
  font-size: min(2.8dvw, 14px);
  margin: 0 auto 1.5em;
}
#footer .insta-line img {
  max-width: 100px;
  margin-left: 1em;
}
@media screen and (min-width: 769px), print {
  #footer .insta-line img {
    margin-left: 0;
  }
}
#footer .copyright {
  text-align: center;
  font-size: min(2.4dvw, 12px);
  margin-top: 2em;
}
@media screen and (min-width: 769px), print {
  #footer .copyright {
    margin-top: 0;
    padding-top: 1.5em;
    border-top: 1px solid rgba(0, 6, 54, 0.12);
  }
}

/* =========================================================
   GALLERY PAGE LAYOUT FIX
========================================================= */
body.has-sp-hero {
  background: #EFEEEC;
}

body.gallery-page #header .header-wrap {
  width: 100%;
}
@media screen and (min-width: 769px), print {
  body.gallery-page #header .header-wrap {
    width: calc(100% - 100px);
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
  }
}
@media screen and (min-width: 769px), print {
  body.gallery-page #header .menu_PC {
    opacity: 1 !important;
    transform: translateX(0) !important;
    pointer-events: auto !important;
  }
}
body.gallery-page #main {
  min-height: auto;
}
body.gallery-page #gallery {
  height: 120dvh;
  min-height: 120dvh;
  display: flex;
  flex-direction: column;
  padding: var(--sp-header-height) 16px 16px;
}
@media screen and (min-width: 769px), print {
  body.gallery-page #gallery {
    height: 120dvh;
    min-height: 120dvh;
    padding: 100px 34px 16px 134px;
    width: 90%;
    margin: auto;
  }
}
body.gallery-page .gallery-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 769px), print {
  body.gallery-page .gallery-inner {
    gap: 16px;
  }
}
body.gallery-page h2 {
  flex: 0 0 auto;
}
body.gallery-page .gallery-slider-wrap {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 769px), print {
  body.gallery-page .gallery-slider-wrap {
    gap: 16px;
  }
}
body.gallery-page .gallery-main {
  flex: 1 1 40%;
  min-height: 0;
  height: auto;
}
@media screen and (min-width: 769px), print {
  body.gallery-page .gallery-main {
    flex: 1 1 60%;
  }
}
body.gallery-page .gallery-main.swiper,
body.gallery-page .gallery-main .swiper-wrapper,
body.gallery-page .gallery-main .swiper-slide {
  width: 100%;
  height: 100%;
  min-height: 0;
}
body.gallery-page .gallery-main .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
body.gallery-page .gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
body.gallery-page .gallery-thumbs-wrap {
  flex: 2 1 50%;
  min-height: 0;
  height: auto;
  max-height: none;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 12px 4px 0 0;
}
body.gallery-page .gallery-thumbs {
  width: 100%;
}
body.gallery-page .gallery-thumbs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
@media screen and (min-width: 769px), print {
  body.gallery-page .gallery-thumbs-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
  }
}
body.gallery-page .gallery-thumb {
  display: block;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 6, 54, 0.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  opacity: 0.72;
  transition: transform 0.3s ease, opacity 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  appearance: none;
  -webkit-appearance: none;
  padding: 0;
}
body.gallery-page .gallery-thumb:hover {
  transform: translateY(-2px);
  opacity: 1;
}
body.gallery-page .gallery-thumb.is-active {
  opacity: 1;
  border-color: rgba(0, 6, 54, 0.5);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}
body.gallery-page .gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}/*# sourceMappingURL=gallery.css.map */