@charset "UTF-8";
.main-visulal {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100vh;
  overflow: hidden;
  background-color: #fff;
}
@media screen and (orientation: portrait) and (max-width: 1365px) {
  .main-visulal {
    height: 60dvh;
  }
}
@media (max-width: 1023px) {
  .main-visulal {
    height: 60dvh;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 0 !important;
  }
}
@media screen and (orientation: landscape) and (max-width: 1023px) {
  .main-visulal {
    height: 100vh;
  }
}

@media (max-width: 1023px) {
  .home-main-visual {
    height: 60dvh;
  }
}
@media screen and (orientation: landscape) and (max-width: 1023px) {
  .home-main-visual {
    height: 100vh;
  }
}
.home-main-visual h1 {
  text-align: right;
  position: absolute;
  font-size: calc(2em + 3vw);
  color: #fff;
  z-index: 8;
  text-shadow: 0 0 0.25em rgba(0, 0, 0, 0.5);
  line-height: 1.5;
  width: 50%;
  right: 138px;
  top: 200px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeIn 3s ease-out forwards;
}
@media (max-width: 1023px) {
  .home-main-visual h1 {
    left: 16px;
    top: 100px;
    font-size: 9vw;
    width: 90%;
    padding: 0 16px;
  }
}
@media screen and (orientation: landscape) and (max-width: 1023px) {
  .home-main-visual h1 {
    width: 50%;
    top: initial;
    left: initial;
    right: 16px;
    bottom: 40px;
  }
}
@media (max-width: 767px) {
  .home-main-visual h1 {
    top: initial;
    left: 4px;
    bottom: 40px;
  }
}
.home-main-visual article {
  z-index: 5;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.recruit-main-visual {
  position: relative;
}
.recruit-main-visual h1 {
  left: 138px;
  bottom: 200px;
  text-align: right;
  position: absolute;
  z-index: 8;
}
@media (max-width: 1365px) {
  .recruit-main-visual h1 {
    left: 48px;
    bottom: 140px;
  }
}
@media screen and (orientation: landscape) and (max-width: 1023px) {
  .recruit-main-visual h1 {
    bottom: 40px;
  }
}
@media (max-width: 767px) {
  .recruit-main-visual h1 {
    left: 24px;
    bottom: 100px;
  }
}
.recruit-main-visual article {
  z-index: 5;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.recruit-main-visual .entry-btn {
  position: absolute;
  bottom: 88px;
  right: 24px;
  width: 340px;
  height: 80px;
  z-index: 8;
}
@media (max-width: 1023px) {
  .recruit-main-visual .entry-btn {
    bottom: 24px;
    right: 24px;
  }
}
@media screen and (orientation: landscape) and (max-width: 1023px) {
  .recruit-main-visual .entry-btn {
    width: 280px;
  }
}
@media (max-width: 767px) {
  .recruit-main-visual .entry-btn {
    width: 200px;
    height: 60px;
    bottom: 16px;
    right: 16px;
  }
  .recruit-main-visual .entry-btn .btn--gradient {
    height: 60px;
    padding: 16px;
    font-size: 1rem;
  }
}

.slide-in-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
@media (max-width: 1023px) {
  .slide-in-text {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .slide-in-text {
    gap: 8px;
  }
}
.slide-in-text img {
  height: 82px;
  clip-path: inset(0 100% 0 0);
  animation: revealRight 0.5s ease-out forwards;
}
@media (max-width: 1023px) {
  .slide-in-text img {
    height: 64px;
  }
}
@media (max-width: 767px) {
  .slide-in-text img {
    height: 48px;
  }
}
.slide-in-text img:nth-of-type(1) {
  animation-delay: 0.3s;
}
.slide-in-text img:nth-of-type(2) {
  animation-delay: 0.6s;
}
.slide-in-text img:nth-of-type(3) {
  animation-delay: 1.4s;
}

@keyframes revealRight {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0); /* 全て表示 */
  }
}/*# sourceMappingURL=main-visual.css.map */