img {
  height: auto;
  width: 100%;
}

.pc-b {
  display: block !important;
}
@media screen and (max-width: 767px) {
  .pc-b {
    display: none !important;
  }
}

.sp-b {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp-b {
    display: block !important;
  }
}

.pc-ib {
  display: inline-block !important;
}
@media screen and (max-width: 767px) {
  .pc-ib {
    display: none !important;
  }
}

.sp-ib {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp-ib {
    display: inline-block !important;
  }
}

.pc-f {
  display: flex !important;
}
@media screen and (max-width: 767px) {
  .pc-f {
    display: none !important;
  }
}

.sp-f {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp-f {
    display: flex !important;
  }
}

:root {
  --black: #1d242b;
  --white: #fff;
  --sky: #00aaeb;
  --barlow: "Barlow Condensed", sans-serif;
  --sans: "Noto Sans JP", serif;
  --selif: "Noto Serif", serif;
  --subHeight: 550px;
}
@media screen and (max-width: 767px) {
  :root {
    --subHeight: 300px;
  }
}

body {
  font-family: var(--sans);
  color: var(--black);
}

*[data-scroll=fade-up] {
  transform: translateY(20px);
  opacity: 0;
}
*.fade-up {
  animation: fadeup 1.5s forwards;
}
@keyframes fadeup {
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.sub-mv {
  height: var(--subHeight);
  width: 100%;
}
.sub-mv::after {
  content: "";
  z-index: -1;
  height: var(--subHeight);
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
}
.sub-mv__inner {
  position: relative;
  height: inherit;
  max-width: 1100px;
  width: 90%;
  margin: 0 auto;
}
.sub-mv__text {
  margin-top: 20px;
  max-width: 470px;
  font-size: 16px;
  line-height: 1.875;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .sub-mv__text {
    font-size: 14px;
  }
}
.sub-mv__title {
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  color: var(--white);
  margin-bottom: 30px;
}
.sub-mv__title-span {
  display: inline-block;
}
.sub-mv__title-en {
  display: flex;
  align-items: center;
  font-family: var(--barlow);
  font-weight: bold;
  gap: 8px;
  margin-bottom: 15px;
}
.sub-mv__title-en::before {
  content: "";
  height: 1px;
  width: 40px;
  background: var(--white);
}
.sub-mv__title-jp {
  font-family: var(--sans);
  font-weight: bold;
  font-size: 52px;
  line-height: 1.2307692308;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 1024px) {
  .sub-mv__title-jp {
    font-size: 46px;
  }
}
@media screen and (max-width: 1024px) and (max-width: 767px) {
  .sub-mv__title-jp {
    font-size: 30px;
  }
}

.header {
  position: fixed;
  z-index: 100;
  top: 15px;
  padding-inline: 50px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .header {
    padding-inline: 15px;
  }
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__left a {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .header__left a {
    gap: 10px;
  }
}
.header__logo {
  width: 150px;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 100px;
  }
}
.header__type {
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
  font-weight: bold;
  font-family: var(--barlow);
}
@media screen and (max-width: 767px) {
  .header__type {
    font-size: 16px;
  }
}
.header__right {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .header__right {
    gap: 12px;
  }
}
.header__entry-wrap {
  display: flex;
}
.header__entry {
  width: 140px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--black);
  background: var(--white);
  border: solid 1px var(--black);
  font-weight: bold;
  font-family: var(--barlow);
  transition: color 0.3s, background 0.3s;
}
@media (hover) {
  .header__entry:hover {
    color: var(--white);
    background: var(--black);
  }
  .header__entry:hover::after {
    background: var(--white);
  }
}
.header__entry--1 {
  padding-left: 10px;
}
.header__entry--1::after {
  content: "";
  -webkit-mask-image: url(/recruit/common/imgs/blank.png);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(/recruit/common/imgs/blank.png);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: var(--black);
  display: block;
  height: auto;
  width: 18px;
  aspect-ratio: 18/15;
  transition: background 0.3s;
}
@media screen and (max-width: 767px) {
  .header__entry--1::after {
    width: 12px;
  }
}
.header__entry--2 {
  margin-left: -1px;
}
.header__entry-text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.1em;
}
.header__entry-text span {
  display: block;
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.1em;
}
.header__overlay {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.header__overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.hamburger {
  position: relative;
  z-index: 60;
}
.hamburger.is-active .hamburger__top-line:nth-child(1) {
  top: 50%;
  rotate: -45deg;
}
.hamburger.is-active .hamburger__top-line:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active .hamburger__top-line:nth-child(3) {
  top: 50%;
  rotate: 45deg;
}
.hamburger.is-active .hamburger__bottom {
  display: none;
}
.hamburger__inner {
  width: 40px;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
}
.hamburger__top {
  height: 20px;
  width: 100%;
  position: relative;
}
.hamburger__top-line {
  position: absolute;
  left: 50%;
  background: var(--white);
  height: 2px;
  width: 100%;
  translate: -50% -50%;
  transition: opacity 0.3s, rotate 0.3s;
}
.hamburger__top-line:nth-child(1) {
  top: 0;
}
.hamburger__top-line:nth-child(2) {
  top: 50%;
}
.hamburger__top-line:nth-child(3) {
  top: 100%;
}
.hamburger__bottom {
  font-family: var(--barlow);
  font-weight: bold;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--white);
}

.hamburger-nav {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  height: 100vh;
  width: 520px;
  max-width: 100%;
  background: #000;
  color: var(--white);
  translate: 100% 0;
  transition: translate 0.3s;
}
.hamburger-nav.is-active {
  translate: 0 0;
}
.hamburger-nav .header__entry-wrap {
  margin-top: 30px;
  justify-content: center;
  gap: 15px;
}
.hamburger-nav__logo {
  display: none;
}
@media screen and (max-width: 767px) {
  .hamburger-nav__logo {
    position: absolute;
    top: 25px;
    left: 5%;
    display: flex;
    align-items: center;
    gap: 15px;
  }
}
.hamburger-nav__logo img {
  width: 100px;
}
.hamburger-nav__logo p {
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--white);
  font-weight: bold;
  font-family: var(--barlow);
}
.hamburger-nav__list {
  width: 85%;
  margin: 0 auto;
  margin-top: 160px;
}
@media screen and (max-width: 767px) {
  .hamburger-nav__list {
    margin-top: 100px;
    width: 90%;
  }
}
.hamburger-nav__item-link {
  position: relative;
  display: block;
  border-bottom: solid 1px var(--white);
  padding: 20px 0 20px 10px;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.04em;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .hamburger-nav__item-link {
    font-size: 16px;
  }
}
.hamburger-nav__item-link p {
  position: relative;
  z-index: 5;
}
.hamburger-nav__item-hover-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  transform: translate(0, 100%);
}
.hamburger-nav__item-button {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  width: 100%;
  height: 80px;
  background: var(--sky);
  border: solid 2px var(--sky);
  transition: background 0.3s, color 0.3s;
}
@media (hover) {
  .hamburger-nav__item-button:hover {
    background: var(--white);
    color: var(--sky);
  }
}
@media screen and (max-width: 767px) {
  .hamburger-nav__item-button {
    height: 60px;
    margin-top: 20px;
  }
}
.hamburger-nav__item-button span {
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0em;
}
@media screen and (max-width: 767px) {
  .hamburger-nav__item-button span {
    font-size: 22px;
  }
}

.bottom-menu__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 640px) {
  .bottom-menu__inner {
    grid-template-columns: 1fr;
  }
}
.bottom-menu__title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-weight: bold;
  font-family: var(--barlow);
  gap: 10px;
  transition: scale 0.3s;
}
.bottom-menu__title-en {
  font-size: 45px;
  line-height: 1;
  letter-spacing: 0em;
}
.bottom-menu__title-jp {
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0em;
}
.bottom-menu__left, .bottom-menu__right {
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
.bottom-menu__left {
  background: url(/recruit/img/requirements-bg.jpg) no-repeat;
  background-size: cover;
  color: var(--white);
}
@media screen and (max-width: 640px) {
  .bottom-menu__left {
    height: 160px;
  }
}
@media (hover) {
  .bottom-menu__left:hover .bottom-menu__title {
    scale: 0.9;
  }
}
.bottom-menu__right {
  background: url(/recruit/img/entry-bg.jpg) no-repeat;
  background-size: cover;
  color: var(--black);
}
@media screen and (max-width: 640px) {
  .bottom-menu__right {
    height: 200px;
  }
}

.footer {
  background: var(--black);
  color: var(--white);
  padding: 40px 0 20px;
}
.footer__inner {
  width: 90%;
  margin: 0 auto;
  max-width: 1100px;
}
.footer__nav-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 30px;
}
@media screen and (max-width: 800px) {
  .footer__nav-list {
    gap: 15px 20px;
  }
}
.footer__nav-item {
  font-size: 14px;
  line-height: 1.2857142857;
  letter-spacing: 0.02em;
}
.footer__nav-item-link {
  position: relative;
}
.footer__nav-item-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  height: 1px;
  width: 100%;
  background: #fff;
  scale: 0 1;
  transition: scale 0.3s;
  transform-origin: left top;
}
@media (hover) {
  .footer__nav-item-link:hover::after {
    scale: 1 1;
  }
}
.footer__nav-item-button {
  height: 50px;
  display: flex;
  padding: 0 20px;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: var(--white);
  font-family: var(--barlow);
  font-weight: bold;
  letter-spacing: 0.1em;
  color: var(--black);
  border: solid 1px #fff;
  transition: color 0.3s, background 0.3s;
}
@media (hover) {
  .footer__nav-item-button:hover {
    background: #000;
    color: #fff;
  }
  .footer__nav-item-button:hover::after {
    background: #fff;
  }
}
.footer__nav-item-button::after {
  content: "";
  -webkit-mask-image: url(/recruit/common/imgs/blank.png);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(/recruit/common/imgs/blank.png);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  background-color: var(--black);
  display: block;
  height: auto;
  width: 18px;
  aspect-ratio: 18/15;
  transition: background 0.3s;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .footer__top {
    flex-direction: column;
    gap: 30px;
  }
}
.footer__top-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .footer__top-sns {
    margin-left: auto;
  }
}
.footer__top-sns img {
  width: 38px;
}
.footer__top-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.footer__top-logo img {
  max-width: 195px;
}
@media screen and (max-width: 800px) {
  .footer__top-logo img {
    max-width: 140px;
  }
}
.footer__top-logo p {
  font-weight: bold;
  font-family: var(--barlow);
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.02em;
}
.footer__bottom {
  padding-top: 25px;
  border-top: solid 1px #a2a2a2;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0em;
}

/*# sourceMappingURL=style.css.map */
