/* ---------------------------------------------------------------------------
//  recruit-header
--------------------------------------------------------------------------- */
.recruit {
  padding-top: 7rem;
}

.recruit-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: .3s ease;
  background: #FFF;
  box-shadow: 0 .2rem .6rem 0 rgba(0, 0, 0, 0.20);
  height: 7rem;
}

.recruit-header .wrap {
  display: flex;
  justify-content: space-between;
  padding-left: 2rem;
  height: 100%;
  gap: 4rem;
}

.recruit-header .wrap .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .3s ease;
  gap: 1rem;
}

.recruit-header .wrap .logo img {
  width: 35rem;
}

.recruit-header .wrap .logo:hover {
  opacity: .7;
}

.recruit-header .wrap .logo span {
  font-size: 1rem;
  color: #fff;
  background: #004EA2;
  border-radius: 100%;
  width: 5rem;
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.recruit-header .wrap .menu {
  display: flex;
  gap: 3rem;
}

.recruit-header .wrap .menu .item {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.recruit-header .wrap .menu .item span {
  position: relative;
  transition: .3s ease;
}

.recruit-header .wrap .menu .item:hover span {
  opacity: .7;
}

.recruit-header .wrap .menu .item.normal::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: .9rem;
  transition: .3s ease;
  opacity: 0;
  background: var(--1, linear-gradient(51deg, #46E1E2 0.48%, #46E1E2 1.29%, #00ABD7 82.34%));
}

.recruit-header .wrap .menu .item.active::after {
  opacity: 1;
}

.recruit-header .wrap .menu .item.active::after {
  opacity: 1;
}

.recruit-header .wrap .menu .item.forSP {
  display: none;
}

.recruit-header .wrap .menu .item.corporate {
  color: #010101;
  font-family: "Noto Sans JP";
  font-size: 1.4rem;
  font-weight: 400;
  text-transform: uppercase;
  border-radius: .6rem;
  border: 1px solid;
  height: 2rem;
  margin: auto 0;
  opacity: .3;
  padding: 0 1.4rem .2rem;
}

@media screen and (min-width: 768.1px) {
  .recruit-header .wrap .menu .item.entry {
    border-radius: 100vh 0 0 100vh;
    box-shadow: 0 .5rem .8rem 0 rgba(0, 0, 0, 0.25);
    padding: 0 3rem 0 2rem;
    position: relative;
    overflow: hidden;
  }

  .recruit-header .wrap .menu .item.entry::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient(-158deg, #5AD5F1 13.48%, #33EDD4 50%, rgba(0, 78, 162, .4) 100%);
    transition: transform 0.3s ease;
    transform: translateX(-50%);
  }

  .recruit-header .wrap .menu .item.entry:hover::before {
    transform: translateX(0);
  }

  .recruit-header .forSP {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .recruit {
    padding-top: 5rem;
  }

  .recruit-header {
    top: 0;
    left: 0;
    border-radius: 0;
    /* box-shadow: none; */
    width: 100%;
    height: 5rem;
  }

  .scroll .recruit-header {
    top: 0;
  }

  .recruit-header .wrap {
    padding-left: 1rem;
    gap: 1rem;
  }

  .recruit-header .wrap .logo img {
    width: 23rem;
  }

  .recruit-header .wrap .logo span {
    display: none;
  }

  .recruit-header .wrap .h-btn {
    width: 2.5rem;
    position: relative;
    cursor: pointer;
    margin-left: auto;
  }

  .recruit-header .wrap .h-btn span {
    height: 1px;
    background: #1C2084;
    width: 100%;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    transition: .3s ease;
  }

  .recruit-header .wrap .h-btn span:nth-of-type(1) {
    top: 1.4rem;
  }

  .recruit-header .wrap .h-btn span:nth-of-type(2) {
    top: calc(2.5rem - .5px);
  }

  .recruit-header .wrap .h-btn span:nth-of-type(3) {
    top: 3.5rem;
  }

  .open .recruit-header .wrap .h-btn span:nth-of-type(1) {
    top: calc(2.5rem - .5px);
    transform: rotate(45deg);
  }

  .open .recruit-header .wrap .h-btn span:nth-of-type(2) {
    transform: rotate(45deg);
  }

  .open .recruit-header .wrap .h-btn span:nth-of-type(3) {
    top: calc(2.5rem - .5px);
    transform: rotate(-45deg);
  }

  .recruit-header .wrap .entry-btn {
    background: var(--1, linear-gradient(51deg, #46E1E2 0.48%, #46E1E2 1.29%, #00ABD7 82.34%));
    color: #fff;
    border-radius: 100vh 0 0 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 .3rem .4rem 0 rgba(0, 0, 0, 0.25);
    width: 6rem;
    font-size: 1.3rem;
    line-height: 1.15;
    padding-left: 1rem;
  }

  .recruit-header .wrap .menu {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 5rem;
    height: calc(100vh - 5rem);
    flex-wrap: wrap;
    gap: 0;
    background: var(--1, linear-gradient(51deg, #46E1E2 0.48%, #46E1E2 1.29%, #00ABD7 82.34%));
    ;
    color: #fff;
    left: 0;
    transition: .3s ease;
    overflow: auto;
    padding: 5rem 4rem 8rem;
    flex-wrap: wrap;
    gap: 0 1rem;
    align-content: flex-start;
  }

  .open .recruit-header .wrap .menu {
    opacity: 1;
    pointer-events: all;
  }

  .recruit-header .wrap .menu .item {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 2.5rem 0;
    width: 100%;
    height: auto;
  }

  .recruit-header .wrap .menu .item.normal {
    border-top: 1px solid rgba(255, 255, 255, 0.52);
  }

  .recruit-header .wrap .menu .item.normal::after {
    display: none;
  }

  .recruit-header .wrap .menu .item.forSP {
    display: flex;
  }

  .recruit-header .wrap .menu .item.entry {
    border-radius: 1rem;
    border: 3px solid #FFF;
    width: 100%;
    font-size: 0;
  }

  .recruit-header .wrap .menu .item.entry::before {
    content: "募集要項・エントリー";
    font-size: 1.6rem;
  }

  .recruit-header .wrap .menu .links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    order: 7;
    font-size: 1.4rem;
  }

  .recruit-header .wrap .menu .links .link:nth-of-type(1) {
    width: 100%;
    text-align: center;
  }

  .recruit-header .wrap .menu .item.corporate {
    color: #fff;
    font-size: 0;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.52);
    height: 4rem;
    opacity: 1;
    order: 6;
    margin-top: 2.5rem;
  }

  .recruit-header .wrap .menu .item.corporate::before {
    content: "コーポレートサイト";
    font-size: 1.6rem;
    font-weight: 400;
  }
}