body::before {
  content: none;
}

.header2 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.6s ease;
  z-index: 100;
}
.header2.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.header2__inner {
  width: 100%;
  max-width: 1400px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header2__logo img {
  width: 120px;
  height: auto;
}
.header2__nav ul {
  display: flex;
  gap: 40px;
}
.header2__nav ul li a {
  color: #000;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 0.05em;
  position: relative;
}
.header2__nav ul li a:hover::after {
  width: 100%;
}
.header2__nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: #000;
  transition: width 0.3s ease;
}
@media (max-width: 768px) {
  .header2 {
    padding: 14px 20px;
  }
  .header2__logo img {
    width: 90px;
  }
  .header2__nav ul {
    gap: 24px;
  }
}

.fv2 {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  -webkit-mask-image: linear-gradient(to bottom, black 90%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 90%, transparent 100%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 120%;
  mask-size: 100% 120%;
  transition: -webkit-mask-image 0.2s;
}
.fv2__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
.fv2__cover {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  overflow: hidden;
}
.fv2__cover img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  display: block;
}
.fv2__cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 3;
}
.fv2__content {
  position: relative;
  display: flex;
  flex-flow: column;
  align-items: center;
  z-index: 4;
  transform: translateY(-5%);
}
.fv2__content__logo {
  width: clamp(80px, 8vw, 110px);
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .fv2__content__logo {
    width: clamp(70px, 20vw, 90px);
  }
}
.fv2__content__title {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.7;
  font-weight: 400;
}
.fv2__content__title span {
  display: block;
}
@media (max-width: 768px) {
  .fv2__content__title {
    font-size: clamp(16px, 4vw, 20px);
    line-height: 1.6;
  }
}
.fv2__arrow {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 64px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.8), transparent);
  animation: glow 2s linear infinite;
  z-index: 4;
}
@keyframes glow {
  0% {
    opacity: 0;
    transform: translate(-50%, -10px);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 10px);
  }
}
@media (max-width: 768px) {
  .fv2__arrow {
    bottom: 32px;
    height: 48px;
  }
}
.fv2__info {
  position: absolute;
  bottom: 24px;
  left: 32px;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.75);
  z-index: 4;
  display: flex;
  gap: 0.6em;
  align-items: center;
}
.fv2__info time {
  opacity: 0.8;
}
.fv2__info a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: 0.3s ease;
}
.fv2__info a:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.6);
}
@media (max-width: 768px) {
  .fv2__info {
    left: 16px;
    bottom: 16px;
    font-size: 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3em;
  }
}

.section-wrapper {
  position: relative;
  border-radius: 30px 30px 0 0;
}
.section-wrapper .section-body {
  position: relative;
  padding-top: 80px;
  margin-top: 100vh;
  width: 100%;
  height: 300px;
  text-align: center;
}
.section-wrapper .bg-image-clip {
  position: absolute;
  top: -100vh;
  left: 0;
  width: 100%;
  height: 100vh;
  min-height: 230px;
  clip-path: inset(0);
  z-index: -1;
}
.section-wrapper .bg-image-clip h2 {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
}
.section-wrapper .bg-image-fixed {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

#section1 {
  background-color: #ffd3dd;
}
#section1 .bg-image-fixed {
  background-image: url("../img/gallery1.webp");
}

#section2 {
  background-color: #bed1e3;
}
#section2 .bg-image-fixed {
  background-image: url("../img/gallery3.webp");
}

#section3 {
  background-color: #92a1c3;
}
#section3 .bg-image-fixed {
  background-image: url("../img/gallery6.webp");
}/*# sourceMappingURL=test.css.map */