@charset "UTF-8";
/* CSS Document */
#secFix {
  position: fixed;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.9);
	
}
.maskTag {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: center center;
  clip-path: inset(0% 50%);
}
/*.maskTag.fout {
  opacity: 0.5;
  transition: 1s;
}*/

.maskTag .maskBg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(50%) brightness(0.7) contrast(120%);
}
/*.maskTag .engTxt {
	font-size: 24px;
	letter-spacing: 0.1em;
	color: #fff;
	position: absolute;
	left: 50%;
	bottom: 15%;
	transform: translateX(-50%);
}*/
.maskTag .engTxt  {
	color: #fff;
	position: absolute;
	display: inline-block;
	bottom: 15%;
	left: 50%;
	transform: translateX(-50%);
	font-size: clamp(18px, 2vw, 24px);
}
.maskTag .engTxt::after {
	content: "▼";
	font-size: 12px;
	position: absolute;
	left: calc(50% - 6px);
	top: 1.6em;
	animation: sankaku 1s ease 0.3s infinite normal;
}
@keyframes sankaku {
    0% {
        transform: translateY(0%);
			opacity: 0;
    }
    100% {
       transform: translateY(200%);
			opacity: 1;
    }
}
#secFix .fixBg {
	width: 100%;
  height: 100%;
  object-fit: cover;
	filter: grayscale(80%) brightness(0.2);
}
#secFix .next {
  position: absolute;
  width: 22%;
  bottom: 7%;
  right: 5%;
  opacity: 0;
  filter: blur(6px);
  transition: 2s 2s;
}
._on #secFix .next {
  opacity: 1;
  filter: blur(0px);
}
.maskTag .gateBox {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}


@media screen and (max-width: 959px) {
  #secFix, .maskTag {
    /*height: 70vw;*/
  }
	.maskTag .gateBox {
		top: 45%;
		width: 50%;
	}
}
@media screen and (max-width: 599px) {
  #secFix, .maskTag {
    height: calc(100vh - 0px);
    /*top: 60px;*/
  }
  #secFix + #secTit {
    margin-top: 200vh !important;
  }
	.maskTag .gateBox {
		top: 45%;
		width: 80%;
	}
	.maskTag .engTxt  {
		bottom: 30%;
	}
	.maskTag .maskBg,#secFix .fixBg  {
		object-position: 75% 100%;
	}
}