.first-view {
  position: relative;
  display: grid;
  grid-template-columns: calc(1051 / 1920 * 100%) 1fr;
  width: 100%;
  height: 100vh;
}

.first-view .recruit__banner {
  position: absolute;
  width: 384px;
  left: 31px;
  bottom: 33px;
  background-color: #FFF;
  transition: all .4s ease;
  z-index: 10;
}

.first-view .recruit__banner .img {
  width: 100%;
  height: 128px;
}

.first-view .recruit__banner .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.first-view .recruit__banner .text {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  padding: 12px 0 16px;
}

.first-view .recruit__banner .text .sec__title.has-subtext {
  margin-bottom: 0;
}

.first-view .recruit__banner .text .sec__title.has-subtext .sec__text-main {
  gap: 8px;
}

.first-view .recruit__banner .text .sec__title.has-subtext img {
  width: 16px;
}

.first-view .recruit__banner .text .sec__title.has-subtext .sec__text-main h2 {
  font-size: 24px;
  line-height: 32px;
}

.first-view .recruit__banner .text .sec__title.has-subtext .sec__text-sub {
  font-size: 12px;
  margin-left: 25px;
}

.first-view .recruit__banner .text .desc {
  font-size: 14px;
  line-height: 23px;
  font-family: var(--font-en);
  font-weight: bold;
  color: #000;
}

.first-view .recruit__banner:hover {
  filter: opacity(80%);
  transition: all .4s ease;
}

.first-view__slider,
.first-view__slider .swiper {
  width: 100%;
  height: 100%;
}

.first-view__slider img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
}

.first-view__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: #fff;

}

.header__topnav {
  position: fixed;
  top: 28px;
  right: 32px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
  z-index: 501;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  will-change: transform, opacity;
}

.header__topnav.show {
  transform: translateY(0);
  opacity: 1;
}

.header__topnav.hide {
  transform: translateY(-100%);
  opacity: 0;
}


.header__topnav a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  width: 238px;
  height: 42px;
  margin-top: 9px;
  background: #fff;
  overflow: hidden;
  border: 1px solid #000;
  transition: all .4s ease;
  z-index: 5;
}

.header__topnav a::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  background-color: #000;
  width: 100%;
  height: 100%;
  transform: translateX(-100%);
  transition: all .4s ease;
  z-index: -1;
}

.header__topnav a:hover::before {
  transform: translateX(0);
  transition: all .4s ease;
}

.header__topnav a:hover p {
  color: #FFF;
  transition: all .4s ease;
}

.header__topnav a.header__tel:hover img, .header__topnav a.header__contact:hover img {
  filter: invert(1);
  transition: all .4s ease;
}

.header__topnav .h_sns {
  max-width: none;
  border: none;
  width: auto;
  background-color: transparent;
}

.header__topnav .h_sns::before {
  content: none;
}

.header__topnav .h_sns:hover {
  filter: opacity(60%);
  transition: all .4s ease;
}

.header__topnav a img {
  width: 26px;
  transition: all .4s ease;
}

.header__topnav a p {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 18px;
  line-height: 24px;
  color: #000;
  text-align: center;
  transition: all .4s ease;
}

.header__topnav .pc-hidden {
  display: none;
}

.header__logo {
  margin-top: calc(353 / 1078 * 100vh);
}

.header__logo img {
  max-width: 514px;
  width: 90%;
  height: auto;
  margin: auto;
  display: block;
}



.header__text {
  width: 100%;
  margin-top: auto;
  margin-bottom: 23px;
  margin-right: 96px;
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 16px;
  color: #000;
  text-align: right;
}

.header__menuBox p::after {
  content: "MENU";
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 16px;
  color: #000;
}

.header__menuBox p br {
  display: none;
}

.header__menuWrap {
  width: 58px;
  height: 58px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: #000;
  border: none;
  cursor: pointer;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  transition: all .4s ease;
}

.header__menuWrap .dot {
  width: 5px;
  height: 5px;
  background: #fff;
  border-radius: 50%;
}

.header__menuBox.is-open .header__menuWrap {
  flex-direction: row;
  background: #fff;
  transform: rotate(90deg);
}

.header__menuBox.is-open .header__menuWrap .dot {
  background: #000;
}

.header__menuBox.is-open p::after {
  content: "CLOSE";
  color: #fff;
}

@media screen and (max-width: 1152px) {
  .header__text {
    margin-right: 0;
  }
}

@media screen and (max-width: 1024px) {
  .header__topnav {
    max-width: 100%;
    top: 0;
    right: 0;
    left: 0;
    padding: 20px 10px;
    background-color: #FFF;
    margin: auto;
    justify-content: flex-start;
    z-index: 600;
  }

  .header__topnav .h_sns {
    margin-left: auto;
  }

  .header__menuBox.is-open .header__menuWrap {
    background-color: #000;
  }

  .header__menuBox.is-open .header__menuWrap .dot {
    background-color: #FFF;
  }

  .header__menuBox.is-open p::after {
    color: #000;
  }

  a.header__tel.sp-hidden,
  a.header__contact.sp-hidden {
    display: none;
  }

  .first-view {
    display: flex;
    flex-direction: column;
    height: auto;
  }

  .first-view__slider,
  .first-view__slider .swiper {
    height: 416px;
  }

  .first-view__slider img {
    height: 100%;
    object-fit: cover;
  }

  .header__logo img {
    max-width: 241px;
  }

  .header__logo {
    margin-top: 167px;
    margin-bottom: 48px;
  }

  .first-view .recruit__banner {
    position: relative;
    left: 0;
    bottom: 0;
    margin-top: 40px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    width: 100%;
  }

  .first-view .recruit__banner .text .desc {
    font-size: 12px;
    line-height: 18px;
  }

  .header__topnav .pc-hidden {
    display: block;
  }

  .header__topnav .h_logo {
    display: block;
    border: none;
    margin-top: 0;
    width: auto;
    height: auto;
    background-color: transparent;
  }

  .header__topnav .h_logo::before {
    content: none;
  }

  .header__topnav .h_logo img {
    width: 143px;
  }

  .header__topnav .header__text {
    font-family: var(--font-en);
    font-weight: 800;
    font-size: 9px;
    line-height: 13px;
    color: #000;
    text-align: left;
    margin-bottom: 0;
  }
}