@charset "UTF-8";
._VisuallyHidden {
  position: absolute !important;
  overflow: hidden !important;
  width: 1px !important;
  height: 1px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  white-space: nowrap !important;
  -webkit-clip-path: inset(50%) !important;
          clip-path: inset(50%) !important;
  clip: rect(0, 0, 0, 0) !important;
}

@keyframes zoomInOut {
  0% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}
.swiper-zoom {
  animation: zoomInOut 20s forwards ease-out;
}

html {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

body {
  overflow: hidden;
  line-height: 1.5;
  color: #59493f;
  font-size: 12px;
}

img {
  max-width: 100%;
  width: 100%;
  margin: 0;
  display: block;
  -webkit-user-drag: none;
}

dt {
  font-weight: normal;
}

main {
  max-width: 1080px;
  margin: 0 auto;
}

.--link {
  display: block;
  overflow: hidden;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
.--link img {
  transition: transform 0.3s ease-in-out;
}
.--link:hover {
  opacity: 0.6;
}
.--link:hover img {
  transform: scale(1.2);
}

.--mask {
  position: relative;
  display: block;
  overflow: hidden;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
.--mask::before, .--mask::after {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.--mask::before {
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.6);
}
.--mask::after {
  content: "詳細を見る";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 16px;
  border: 1px solid currentColor;
  border-radius: 4px;
  color: #fff;
  z-index: 2;
}
.--mask img {
  transition: transform 0.3s ease-in-out;
}
.--mask:hover {
  opacity: 0.6;
}
.--mask:hover::before, .--mask:hover::after {
  opacity: 1;
  visibility: visible;
}
.--mask:hover img {
  transform: scale(1.2);
}