@keyframes scroll {
  0% {
    transform: translateY(0px);
  }

  100% {
    transform: translateY(7px);
  }
}

.main_img {
  position: relative;
  overflow: hidden;
  transition: initial;
}

.main_img>.container {
  height: 100vh;
  width: 100%;
  position: absolute;
  overflow: hidden;
  will-change: transform;
}

.slide {
  position: relative;
  height: 100vh;
}

.slide li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1);
  will-change: transform, opacity;
}

.main_img .slide li figure {
  position: fixed;
  top: 0px;
  width: 100%;
  height: 100%;
}

.slide li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  filter: brightness(0.7);
  will-change: transform, filter;
}

.concept-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  min-height: 100vh;
}

.concept-bg figure {
  width: 100%;
  height: 100vh;
}

.concept-bg figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8);
}

.blur-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(0px);
  opacity: 0;
  z-index: 4;
  pointer-events: none;
  will-change: backdrop-filter;
}

.blur-overlay.show {
  backdrop-filter: blur(10px);
}

.main-col {
  height: 100vh;
  display: flex;
  align-items: flex-start;
  min-height: 100vh;
  justify-content: flex-end;
}

.concept-col {
  height: 100vh;
  display: flex;
  align-items: center;
  min-height: 100vh;
  justify-content: flex-end;
}

.main-col .text_box {
  color: #fff;
  animation: none;
  transform: translateY(-50%);
  position: relative;
  top: 45%;
}

.concept-col .text_box {
  color: #fff;
  /* animation: none; */
  /* transform: translateY(-50%); */
  /* position: relative; */
  /* top: 45%; */
}

.main_img .concept-col .text_box p {
  font-size: var(--f-r);
  font-weight: var(--w-m);
  margin-top: 0.7em;
}

.main_img .concept-col .text_box p.ceo-name {
  text-align: right;
  margin-top: 2rem;
}

.main_img .concept-col .text_box p.ceo-name small {
  display: block;
  line-height: 1;
}

.main_img .main-col .text_box h2 {
  font-weight: var(--w-b);
  font-size: clamp(1.7rem, 2.5vw, 2rem);
  font-feature-settings: "palt";
  margin-bottom: 0.5em;
  white-space: nowrap;
}

.main_img .main-col .text_box h2 span {
  display: flex;
  align-items: center;
}

.main_img .main-col .text_box h3 {
  opacity: 0;
  transition: opacity 1s ease-in-out;
  font-size: clamp(1.1rem, 1.3vw, 2rem);
  font-weight: var(--w-m);
  font-size: var(--f-r);
  line-height: 1.7;
}

.en-catch {
  font-family: var(--f-hand);
  font-size: clamp(3.5rem, 6.5vw, 7rem);
  color: #cbc4b8;
  transform: rotate(-6deg) !important;
  transform-origin: bottom left;
  font-style: italic;
  white-space: nowrap;
  mix-blend-mode: luminosity;
  z-index: 9;
  position: fixed;
  bottom: 1vw;
  left: 4vw;
  opacity: 0;
}

.en-catch:first-letter {
  font-size: 1.3em;
  line-height: 0.5;
  vertical-align: middle;
}

.typing-cursor::after {
  content: "|";
  display: inline-block;
  margin-left: 2px;
  font-weight: 100;
  line-height: 1.1;
  overflow: hidden;
}

.en-catch span {
  display: block;
  line-height: 1;
  align-items: center;
  margin-bottom: -4%;
}

.en-catch span:nth-child(2) {
  text-align: right;
  margin-right: -9%;
}

.blink::after {
  content: "|";
  display: inline-block;
  animation: blink 1.4s infinite;
  font-weight: 100;
  line-height: 1.1;
  overflow: hidden;
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

.main_img .concept-col h2 {
  font-size: clamp(2.4em, 5vw, 5rem);
  font-weight: var(--w-b);
  margin-bottom: 2rem;
  font-size: var(--f-xxl);
}

.main_img .main-col .rotate {
  position: absolute;
  transform: translateY(-50%);
  top: 63%;
  right: 6%;
  width: 100px;
  height: 100px;
  color: #fff;
}

.main_img .main-col .rotate a {
  display: block;
}

.rotate {
  display: block;
  position: relative;
  width: 160px;
  height: 160px;
}

.rotate img {
  width: 24px;
  height: auto;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
}

.circleText {
  overflow: visible;
  animation: rotation 18s linear infinite;
  width: 100%;
  height: 100%;
}

.circleText__circle {
  fill: none;
}

.circleText__text {
  fill: #fff;
  font-size: 6px;
  letter-spacing: 0.04em;
  font-family: var(--f-en);
  text-transform: uppercase;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.contents {
  margin-top: -1px;
}

/*
## ゲートウェイ
*/
.gateway {
  background: var(--c-10);
  color: #fff;
  overflow: hidden;
}

.gateway .list {
  display: flex;
  width: 100%;
  gap: 1rem;
  margin: 0 auto;
  flex-wrap: wrap;
}

.gateway .list li {
  flex-basis: calc((100% - 1rem) / 2);
  background: rgb(0 0 0 / 30%);
  position: relative;
  overflow: hidden;
  max-height: 540px;
}

.gateway .list li a {
  display: flex;
  position: relative;
  height: 100%;
  padding: 2rem;
  align-items: flex-end;
  opacity: 1;
}

.gateway .list li a figure {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.gateway .list li a figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
  transform: scale(1);
  transition: all 0.8s cubic-bezier(0.08, 0.78, 0.08, 0.98);
}

.gateway .list li a:hover figure img {
  transform: scale(1.05);
  filter: brightness(0.8);
}

.gateway .list li > a dl {
  position: relative;
  z-index: 3;
  padding-top: 30vw;
}

.gateway .list li > a dl dt {
  padding-bottom: 1rem;
}

.gateway .list li > a dl dt img {
  max-height: 50px;
  width: auto;
  max-width: 40%;
}

.gateway .list li > a dl dd h3 {
  font-size: clamp(1.5em, 2vw, 2rem);
  font-size: var(--f-xl);
  font-weight: var(--w-b);
  margin-bottom: 0.5rem;
}

.gateway .list li > a dl dd p {
  font-size: var(--f-s);
  font-weight: var(--w-m);
}

.gateway .list li > a dl dd .btn {
  background: rgb(0 0 0 / 20%);
  border-radius: 2.5em;
  padding: 0.4rem 0.7rem;
  display: inline-block;
  line-height: 1;
  font-size: var(--f-xs);
  margin-top: 1rem;
}

.gateway .column {
  position: relative;
  z-index: 3;
  width: 100vw;
  margin: 0 var(--m-fix);
  padding: 0 1rem;
}

@media screen and (max-width: 1024px) {
  .gBody {
  }
}

@media screen and (max-width: 767px) {
  .main_img .slide li:nth-child(1) img {
    object-position: 58% center;
  }

  .main_img .slide li:nth-child(2) img {
    object-position: 51% center;
  }

  .main_img .slide li:nth-child(3) img {
    object-position: 41% center;
  }

  .main_img .slide li:nth-child(4) img {
    object-position: 50% center;
  }

  .main_img .slide li:nth-child(5) img {
    object-position: 60% center;
  }

  .main_img .main-col {
    justify-content: flex-start;
  }

  .concept-bg figure img {
    object-position: 52% center;
  }

  .gateway .list {
    flex-direction: column;
  }
}

@media print {
  .main_img.sticky .slide {
    position: relative !important;
    right: 0px;
  }

  .main_img {
    height: 80vh;
  }
}
