#about .flex { gap: 0% 5%;}

.parallax-container {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.parallax-container img {
  position: absolute;
}

.parallax-container:after{
  content:"";
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  background-color: rgba(0, 16, 41, 0.5);
  background-image:url(../img/mainvisual-09.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  filter: blur(12px);
  z-index:0;
}

/* 各レイヤーの配置指定 */
.layer1 {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transform: translate(-50%,-50%);
}
.layer1 img{
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.layer2 {
  position: absolute;
  top: 17.5%;
  left: 50%;
  width: 25%;
  z-index: 2;
  transform: translate(-50%,-50%);
}

.layer3 {
  position: absolute;
  top: 45%;
  left: 30%;
  width: auto;
  height: 40vh;
  z-index: 3;
  transform: translate(-50%,-50%);
  -webkit-filter: drop-shadow(0 0 2px rgba(0, 5, 15, 1)) drop-shadow(0 0 4px rgba(0, 28, 56, 1)) drop-shadow(0 0 10px rgba(0, 46, 87, .8));
  filter: drop-shadow(0 0 2px rgba(0, 5, 15, 1)) drop-shadow(0 0 4px rgba(0, 28, 56, 1)) drop-shadow(0 0 10px rgba(0, 46, 87, .8));
}

.layer4 {
  position: absolute;
  top: 75%;
  left: 50%;
  width: 100%;
  z-index: 4;
  transform: translate(-50%,-0%);
}



#gallery {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background-color: #000;
  background-image:url(../img/bg-gallery.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
}

.wrapper.text {
  font-size: 10vw;
  font-weight: bold;
  white-space: nowrap;
  color: rgba(255,255,255,0.5);
  will-change: transform;
}

.wrapper.image {
  display:flex;
  height:40vh;
  gap:0 5vw;
  padding-bottom:3vw;
}
.wrapper.image img {
  width:auto;
}