/* ========== recruit ========== */
:root {
  --font-noto: "Noto Sans JP", sans-serif;
  --font-poppins: "Poppins", sans-serif;
}

.recruit {
  text-align: center;
  margin: 0 0 7rem;
  font-weight: 400;
}

.recruit .fv_bg {
  background-image: url(../img/recruit_fv.png);
}

.recruit .fv_txt_wrap {
  text-align: left;
}

.recruit .recruit_main {
  padding: 0 2rem;
}

.recruit_Preface {
  font-size: 1.8rem;
  line-height: 1.5;
  margin-bottom: 9rem;
}

.recruit_title {
  font-size: 2.8rem;
  font-weight: 500;
  display: inline-block;
  padding-bottom: 1rem;
  width: 25rem;
  border-bottom: solid 0.5rem #004795;
}

.recruit__profile__img {
  width: 86px;
  margin-inline: auto;
  margin-bottom: 42px;
}

.recruit_logo_wrapper {
  display: flex;
  justify-content: center;
  gap: 5rem;
  margin: 7rem 0;
}

.recruit__profile__list .recruit__profile__item {
  position: relative;
}

.recruit__profile__list .recruit__profile__item:nth-child(1)::before,
.recruit__profile__list .recruit__profile__item:nth-child(2)::before {
  height: 100%;
  width: 1px;
  background-color: rgba(37, 37, 37, 0.2);
  content: "";
  position: absolute;
  left: 100%;
  margin-left: 46px;
}

.recruit_logo {
  width: 40rem;
}

@media screen and (max-width: 750px) {
  /* .recruit {
    padding: 36rem 0 5.7rem;
  } */

  .recruit_Preface {
    font-size: 2.8rem;
    line-height: 1.8;
  }

  .recruit_logo_wrapper {
    flex-direction: column;
    align-items: center;
    margin: 5rem 0 7rem;
  }

  .recruit_logo {
    width: 55rem;
  }
}

/* 求人情報 */
.recruit_detail {
  flex-flow: row wrap;
  margin: 0 auto;
  margin-bottom: 14.5rem;
  max-width: 1080px;
  font-size: 1.8rem;
  text-align: left;
  border: 0.2rem solid #ccc;
}

.recruit dl {
  display: flex;
  align-items: center;
  background-color: #f2f2f2;
  border-bottom: 0.1rem solid #ccc;
  border-collapse: collapse;
}

.recruit dl:last-child {
  border: none;
}

.recruit dt {
  width: 30rem;
  flex-basis: 30%;
  text-align: center;
  font-weight: normal;
}

.recruit dd {
  flex-basis: 70%;
  font-weight: normal;
  margin: auto 0;
  padding: 2rem 5rem;
  width: 100%;
  background-color: #fff;
  border-left: 1px solid #ccc;
}

@media screen and (max-width: 750px) {
  .recruit_detail {
    width: 68rem;
    font-size: 2.2rem;
    text-align: center;
    border: 0.5rem solid #ccc;
  }

  .recruit dl {
    flex-direction: column;
    align-items: center;
  }

  .recruit dt {
    margin: 2rem;
  }

  .recruit dd {
    border-left: none;
    border-top: 1px solid #ccc;
  }
}

/* ========== 応募フォーム ========== */
.form-table {
  margin: 0 auto;
  margin-top: 6rem;
  width: 90rem;
  font-size: 2.2rem;
  text-align: left;
  border: 0.2rem solid #ccc;
  border-radius: 30px;
  font-weight: normal;
}

.form-table table {
  display: flex;
  justify-content: center;
}

.form-table table tbody {
  margin: 5rem;
}

.form-table table tbody tr {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
  align-items: center;
}

.form-table table tbody tr:not(:last-child) {
  align-items: center;
}

.form-table table tbody tr th p {
  display: inline-block;
  font-size: 2rem;
  font-weight: normal;
  width: 16rem;
  white-space: nowrap;
}

input.wpcf7-form-control.wpcf7-text,
textarea.wpcf7-form-control.wpcf7-textarea,
input.wpcf7-form-control.wpcf7-number {
  border: solid 1px #ccc;
  border-radius: 1rem;
  font-size: 2rem;
  padding: 1.5rem 2rem;
  height: 6rem;
  width: 62rem;
}

textarea.wpcf7-form-control.wpcf7-textarea {
  height: 26rem;
  resize: none;
}

/* submit下部のエラー表示 */
.wpcf7-response-output {
  display: none;
}

@media screen and (max-width: 750px) {
  .form-table {
    border: 0.4rem solid #ccc;
    border-radius: 1.3rem;
    width: 68rem;
  }

  .form-table table tbody tr {
    flex-direction: column;
    gap: 1rem;
    margin: 0 auto;
  }

  .form-table table tbody tr:not(:last-child) {
    margin-bottom: 2.7rem;
  }

  .form-table table tbody tr th p {
    font-size: 2.8rem;
    width: auto;
    text-align: center;
  }

  input.wpcf7-form-control.wpcf7-text,
  textarea.wpcf7-form-control.wpcf7-textarea {
    font-size: 3.2rem;
    width: 63rem;
  }

  input.wpcf7-form-control.wpcf7-number {
    width: 63rem;
  }

  textarea.wpcf7-form-control.wpcf7-textarea {
    height: 24rem;
  }

  .form-table table tbody tr:last-child th {
    padding-top: initial;
  }
}

/* ======== エントリーボタン ======== */
.form-table-submit .wpcf7-submit {
  color: transparent;
  background-image: url(../img/recruit_entry_btn.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 10rem;
  height: 20.1rem;
  width: 90rem;
  max-width: 100%;
  transition: 0.2s;
}

.form-table-submit > p {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form-table-submit .wpcf7-submit:hover {
  filter: brightness(130%);
  cursor: pointer;
}

@media screen and (max-width: 750px) {
  .form-table-submit .wpcf7-submit {
    height: 14rem;
    width: 68rem;
  }
}

/* ======== メッセージ ======== */
.recruit_message {
  width: 94rem;
  margin: 0 auto;
}

.recruit_message h3 {
  margin-top: 10rem;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 4.6rem;
}

.recruit_message p {
  font-size: 2rem;
  margin-top: 4rem;
  line-height: 3.2rem;
}

@media screen and (max-width: 750px) {
  .recruit_message {
    width: 60rem;
  }

  .recruit_message h3 {
    font-size: 3.8rem;
    margin-top: -2rem;
    line-height: 5.6rem;
  }

  .recruit_message p {
    font-size: 2.8rem;
    line-height: 4rem;
    text-align: left;
  }
}

/* ========== 応募フォーム（確認画面） ========== */
.recruit_confirm .form-table table tbody tr {
  align-items: flex-start;
  justify-content: flex-start;
  margin: 3rem 0;
}

.recruit_confirm .form-table table tbody tr th {
  width: 20rem;
}

.recruit_confirm .form-table table tbody tr td {
  max-width: 60rem;
}

.recruit_confirm .confirm-table-submit {
  display: flex;
  justify-content: center;
  margin-top: 5rem;
}

.recruit_confirm .confirm-table-submit .wpcf7-submit,
.recruit_confirm .confirm-table-submit .wpcf7-previous {
  font-size: 1.6rem;
  font-weight: 500;
  padding: 1.5rem;
  width: 27.2rem;
  height: 5.4rem;
  letter-spacing: 0.2em;
  text-align: center;
  display: block;
}

.recruit_confirm .confirm-table-submit .wpcf7-submit {
  background-color: #004795;
  color: #fff;
}

.recruit_confirm .confirm-table-submit .wpcf7-previous {
  border: #000 solid 0.2rem;
}

@media screen and (max-width: 750px) {
  .recruit_confirm .form-table table {
    justify-content: flex-start;
  }

  .recruit_confirm .form-table table tbody {
    margin: 5rem 6rem;
    max-width: 100%;
  }

  .recruit_confirm .form-table table tbody tr {
    margin: 4rem 0;
  }

  .recruit_confirm .form-table table tbody tr th p {
    font-weight: bold;
    text-align: left;
  }

  .recruit_confirm .form-table table tbody tr td p {
    font-size: 3rem;
  }

  .recruit_confirm .confirm-table-submit .wpcf7-submit,
  .recruit_confirm .confirm-table-submit .wpcf7-previous {
    font-size: 2.3rem;
    padding: 2.4rem;
    height: 9rem;
    width: 40rem;
  }
}

/* ========== 応募フォーム（完了画面） ========== */
.recruit_thanks .recruit_message p {
  text-align: center;
}

.recruit_back_btn {
  position: relative;
  display: block;
  border: #000 solid 0.2rem;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 1.5rem;
  margin: 8rem auto;
  width: 30rem;
  letter-spacing: 0.2em;
  text-align: center;
}

.recruit_back_btn:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -17%;
  transform: translateY(-50%);
  width: 8rem;
  height: 0.2rem;
  background-color: #000;
  transition: 0.4s;
}

.recruit_back_btn:hover:after {
  right: -10%;
}

@media screen and (max-width: 750px) {
  .recruit_back_btn {
    font-size: 2.3rem;
    padding: 2.4rem;
    width: 40rem;
  }
}

/* ========== / recruit ========== */

/* ========== recruit_new ========== */
.recruit__bg {
  position: relative;
  height: 200vh;
  z-index: 10;
}

.recruit__title__section {
  background-color: #f4f4f4;
  position: relative;
  z-index: 1;
  overflow: hidden;
  /* background-image: url(../img/recruit_title_bg.jpg);
  background-size: 680px;
  background-position: right bottom;
  background-repeat: no-repeat; */
}

.recruit__title__wrap {
  position: relative;
  z-index: 1;
  width: calc(1200 / 1600 * 100%);
  margin-inline: auto;
  overflow: hidden;
}

.recruit__title {
  margin-bottom: 0;
  padding-bottom: 93px;
  text-align: left;
  color: #004795;
  padding-top: 200px;
}

.recruit__title .-lg {
  font-size: 64px;
  font-weight: 400;
  line-height: calc(95 / 64);
}

.recruit__title .-sm {
  font-size: 20px;
  font-weight: 700;
}

.recruit__body {
  position: absolute;
  inset: 0;
}

.recruit__top__button {
  position: fixed;
  bottom: 60px;
  right: 30px;
  z-index: 1000;
}

.recruit__top__button a {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start
  align-items: center;
  width: 208px;
  height: 62px;
  background: linear-gradient(45deg, #3859d7 0%, #96f3ff 100%);
  border: 1px solid #fff;
  border-radius: calc(1px / 0);
  color: #fff;
  font-weight: 700;
  column-gap: 60px;
  font-size: 14px;
  filter: brightness(1);
  transition: all 0.4s;
}
.recruit__top__button a:hover {
  filter: brightness(1.2);
}
.recruit__bg__top {
  height: 100vh;
  width: calc(1528 / 1600 * 100%);
  max-width: 1528px;
  margin-inline: auto;
  position: relative;
  z-index: 10;
}

.recruit__bg__bottom {
  height: 3000px;
  width: calc(1200 / 1600 * 100%);
  margin-inline: auto;
  color: #fff;
  position: relative;
  z-index: 10;
  padding-top: 100px;
}
.recruit__title__bg {
  position: absolute;
  top: -138px;
  right: -265px;
  bottom: 0;
  object-fit: cover;
  z-index: 0;
  width: calc(1000 / 1600 * 100vw);
  max-width: 1000px;
  min-width: 800px;
}
.recruit__title__bg img {
  width: 100%;
}
@media screen and (max-width: 750px) {
  .recruit__bg {
  height: 230vh;
}
.recruit__bg__bottom {
  padding-top: 50px;
}
  .recruit__top__button {
    position: fixed;
    bottom: 30px;
    right: 16px;
    z-index: 1000;
  }

  .recruit__top__button a {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    align-items: center;
    width: 164px;
    height: 56px;
  }

  .recruit__title__bg {
    position: absolute;
    top: -107px;
    right: -226px;
    bottom: 0;
    object-fit: cover;
    z-index: 0;
    width: calc(615 / 375 * 100vw);
    max-width: initial;
    min-width: initial;
  }
  /* .recruit__title__section {
    background-image: url(../img/recruit_title_bg_sp.jpg);
    background-size: auto 100%;
  } */

  .recruit__title .-lg {
    font-size: 32px;
  }

  .recruit__title .-sm {
    font-size: 12px;
  }

  .recruit__title__wrap {
    width: calc(320 / 375 * 100%);
  }

  .recruit__title__wrap .recruit__title {
    padding-top: 95px;
    padding-bottom: 63px;
  }

  .recruit__bg__bottom {
    width: calc(320 / 375 * 100%);
  }

  .recruit .recruit__body__title {
    text-align: left;
    margin-bottom: 20px;
  }
}

.recruit__top__button a:after,
.recruit__top__button a:before {
  position: absolute;
  right: 24px;
  top: 0;
  bottom: 0;
  margin-block: auto;
  content: "";
  height: 13px;
  width: 8px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../img/arrow_white.svg);
  transition: all 0.4s;
}
.recruit__top__button a:before {
  opacity: 0;
  transform: translateY(-30px);
}
.recruit__top__button a:hover::after {
  opacity: 0;
  transform: translateY(30px);
}
.recruit__top__button a:hover:before {
  opacity: 1;
  transform: translateY(0px);
}
.recruit__bg__image {
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 0;
}

.fixed.recruit__bg__image {
  position: fixed;
}

.recruit__nav__sticky.fixed {
  position: fixed;
  top: 200px;
  left: min(calc(130 / 1600 * 100vw), 130px);
  right: 0;
  z-index: 100;
  width: max-content;
}

.recruit__bg__image img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.recruit__bottom {
  background-color: #fff;
  position: relative;
  z-index: 1;

}

.recruit__bg__image {
  --opacity: 0;
}
.recruit__bg__bottom__wrapper {
  background-color: rgba(37, 37, 37, 0.8);
  position: relative;
  z-index: 100;
  /* overflow: hidden; */
}

.recruit__bg{
  overflow: hidden;
  width: 100%;
}
.recruit__bg__image::before {
  content: "";
  position: absolute;
  /* top: 0; */
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(37, 37, 37, 0.8);
  width: 100%;
  height: 50%;
  opacity: var(--opacity);
}

.recruit__body__flex {
  display: flex;
  column-gap: 124px;
  margin-top: 64px;
}

@media screen and (max-width: 750px) {
  .recruit{
  overflow: hidden;
}
  .recruit__bg__image {
    top: 40px;
  }

  .recruit__body__flex {
    display: block;
    margin-top: 64px;
  }
}

.recruit__body__title {
  font-size: 16px;
  line-height: 2;
}

.recruit__body__subtitle {
  font-size: clamp(24px, calc(40 /1600 * 100vw), 40px);
  margin-bottom: clamp(64px, calc(88 /1600 * 100vw), 88px);
  font-weight: 500;
  line-height: 1.75;
}

.recruit__card__figure {
  position: relative;
}

.recruit__card__figure .-modalIcon {
  position: absolute;
  width: 30px;
  height: 30px;
  border-radius: calc(1px / 0);
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  bottom: 10px;
  right: 13px;
}

.recruit__card__figure .-modalIcon::after,
.recruit__card__figure .-modalIcon::before {
  content: "";
  width: 10px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  inset: 0;
  margin: auto;
}

.recruit__card__figure .-modalIcon::after {
  transform: rotate(90deg);
}

@media screen and (max-width: 750px) {
  .recruit__body__subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    font-weight: 500;
  }
}

.recruit__body__text {
  text-align: left;
  line-height: 2;
}

.recruit__body__text p {
  /* font-size: clamp(13px,calc( 16 /1600 * 100vw), 16px); */
  font-size: 20px;
}

.recruit__profile__list {
  display: flex;
  column-gap: 90px;
}

@media screen and (max-width: 750px) {
  .recruit__profile__list {
    display: block;
  }

  .recruit__body__text p {
    font-size: 14px;
  }
}

.recruit__profile__item .-title {
  margin-bottom: 24px;
  font-size: 24px;
  color: #004795;
  font-weight: 700;
}

.recruit__profile__item .-text {
  font-size: 16px;
  color: #004795;
  line-height: 2;
}

.recruit__profile__text {
  width: calc(500 / 1000 * 100%);
  font-size: 20px;
  line-height: 2;
}

@media screen and (max-width: 750px) {
  .recruit__profile__text {
    font-size: 16px;
    width: 100%;
  }

  .recruit__profile__item .-title {
    margin-bottom: 13px;
    font-size: 18px;
  }

  .recruit__profile__item .-text {
    font-size: 14px;
    color: #252525;
    line-height: calc(25 / 14);
  }

  .recruit__profile__item + .recruit__profile__item {
    margin-top: 56px;
  }
}

.recruit__data__text {
  width: calc(703 / 1200 * 100%);
}

@media screen and (max-width: 750px) {
  .recruit__data__text {
    width: 100%;
  }
}

.recruit__data__text .-title {
  font-size: 24px;
  color: #004795;
  margin-bottom: 40px;
  font-weight: 500;
  line-height: calc(51 / 24);
}

@media screen and (max-width: 750px) {
  .recruit__data__text .-title {
    font-size: 16px;
    margin-bottom: 24px;
  }
}

.recruit__data__text .-text {
  line-height: 2;
  font-size: 20px;
}

.recruit__heading {
  color: #004795;
  position: relative;
  z-index: 2;
}
.recruit .form-table .-text {
  font-size: 16px;
}
@media screen and (max-width: 750px) {
  .recruit .form-table .-text {
    font-size: 14px;
  }
}
.recruit__heading.-job {
  margin-bottom: 88px;
}

.recruit__heading .-lg {
  font-size: 32px;
  font-weight: 400;
  display: block;
  margin-bottom: 15px;
}

.recruit__heading .-sm {
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
}

.recruit__right {
  margin-left: auto;
  max-width: 1000px;
  width: calc(1000 / 1200 * 100%);
}

@media screen and (max-width: 750px) {
  .recruit__heading .-lg {
    margin-bottom: 12px;
  }

  .recruit__data__inner .recruit__heading {
    margin-bottom: 36px;
  }

  .recruit__data__text .-title {
    font-size: 18px;
  }

  .recruit__right {
    width: 100%;
  }

  .recruit__data__text .-text {
    font-size: 14px;
  }
}

.recruit__profile {
  padding-top: 88px;
}

.recruit__profile__flex {
  margin-bottom: 120px;
  /* padding-top: 122px; */
  position: relative;
}

@media screen and (max-width: 750px) {
  .recruit__profile {
    padding-top: 52px;
  }
  input.wpcf7-form-control.wpcf7-text {
    height: 60px;
  }
  .recruit__profile__flex {
    padding-top: 0px;
  }

  .recruit__profile .recruit__heading {
    margin-bottom: 36px;
  }
}

.recruit__content__flex {
  display: flex;
  justify-content: space-between;
  margin-bottom: 116px;
}

@media screen and (max-width: 750px) {
  .recruit__content__flex {
    display: block;
    margin-bottom: 52px;
  }

  .recruit__data__inner .recruit__content__flex {
    margin-bottom: 32px;
  }
}

/* .recruit__profile__flex::after {
  content: "";
  width: 100%;
  height: 3px;
  background-color: #004795;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: block;
} */
@media screen and (max-width: 750px) {
  .recruit__profile__flex::after {
    height: 1px;
  }
}

.recruit__interview__image {
  width: 100%;
  height: auto;
  aspect-ratio: 1600 / 640;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.recruit__content__bg {
  margin-inline: auto;
  max-width: 1200px;
  /* width: calc(1200 / 1600 * 100%); */
  padding-bottom: 177px;
}

@media screen and (max-width: 750px) {
  .recruit__content__bg {
    max-width: initial;
    width: calc(320 / 375 * 100%);
    padding-bottom: 0;
  }
}

.recruit__workflow__top {
  margin-bottom: 66px;
}

.recruit__workflow__bg {
  background: linear-gradient(-45deg, rgba(147, 240, 255, 0.3) 0%, rgba(57, 100, 227, 0.3) 100%);
  padding-top: 162px;
  padding-bottom: 120px;
}

@media screen and (max-width: 750px) {
  .recruit__workflow__top .recruit__heading {
    margin-bottom: 36px;
  }

  .recruit__workflow__bg {
    padding-top: 52px;
    padding-bottom: 96px;
  }
}

.recruit__content {
  position: relative;
  z-index: 11;
  background-color: #fff;
  text-align: left;
}

.recruit__footer {
  position: relative;
  z-index: 1;
}

.recruit__data__bg {
  background-color: #f2f2f2;
  padding-bottom: 180px;
  padding-top: 120px;
}

@media screen and (max-width: 750px) {
  .recruit__data__bg {
    padding-bottom: 96px;
    padding-top: 52px;
  }

  .recruit__data__list + .recruit__data__list {
    margin-top: 10px;
  }
}

.recruit__data__listWrap {
  display: flex;
  column-gap: 8px;
}

@media screen and (max-width: 750px) {
  .recruit__data__listWrap {
    display: block;
    column-gap: 16px;
  }
}

.recruit__data__list {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
}

.recruit__data__list.-lg {
  width: calc(371 / 1000 * 100%);
}

.recruit__data__list.-md {
  width: calc(344 / 1000 * 100%);
}
.recruit__data__list.-second {
  width: calc(310 / 1000 * 100%);
}
.recruit__data__list.-third {
  width: calc(370 / 1000 * 100%);
}
@media screen and (max-width: 750px) {
  .recruit__data__list.-lg {
    width: 100%;
  }

  .recruit__data__list.-md {
    width: 100%;
  }
}

.recruit__data__chart img {
  width: calc(330.99 / 391 * 100%);
  margin-inline: auto;
}

.recruit__data__item .recruit__data__result {
  color: #3859d7;
}

.recruit__data__item.-overtime .recruit__data__result {
  font-size: 99px;
  color: #3859d7;
}

.recruit__data__result .-lg {
  font-family: var(--font-poppins);
  letter-spacing: -0.08em;
  font-weight: 400;
}

.recruit__data__item.-size1 .recruit__data__result .-lg {
  font-size: 99px;
}

.recruit__data__item.-size1 .recruit__data__result .-sm {
  font-size: 27px;
}

.recruit__data__item.-size2 .recruit__data__result .-lg {
  font-size: 110px;
}

.recruit__data__item.-size2 .recruit__data__result .-sm {
  font-size: 37px;
}

.recruit__data__item.-size3 .recruit__data__result .-lg {
  font-size: 80px;
}

.recruit__data__item.-size3 .recruit__data__result .-sm {
  font-size: 22px;
}

.recruit__data__item.-size4 .recruit__data__result .-lg {
  font-size: 85px;
}

.recruit__data__item.-size4 .recruit__data__result .-sm {
  font-size: 29px;
}

.recruit__data__item .-bottom {
  font-size: 16px;
  color: #2e2e2e;
  font-weight: 500;
  opacity: 0.36;
}

.recruit__data__item {
  background-color: #fff;
  padding-block: 20px;
  text-align: center;
}

.recruit__data__inner {
  /* width: calc(1000 / 1200 * 100%); */
  max-width: 1000px;
  margin-left: auto;
}

@media screen and (max-width: 750px) {
  .recruit__data__inner {
    width: 100%;
    margin-left: auto;
  }
}

.recruit__data__item .-top {
  font-weight: 500;
  margin-bottom: 20px;
}

.recruit__data__item.-ratio .-top {
  margin-bottom: 50px;
}

.recruit__data__item.-first {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.recruit__tab__wrapper {
  font-size: 18px;
}

.recruit__tab__wrapper li.active {
  background-color: #fff;
  border-bottom: 2px solid #fff;
  margin-bottom: -2px;
}

.recruit__tab__content {
  display: none;
}

.recruit__tab__content.active {
  display: block;
}

.recruit .recruit__job__list {
  display: block;
  background-color: transparent;
  line-height: calc(32 / 18);
  margin-top: 50px;
}

.recruit__job__item {
  display: flex;
  padding-block: 32px;
}

.recruit .recruit__job__list {
  display: block;
  background-color: transparent;
}

.recruit .recruit__job__description {
  padding: 0;
  border: none;
}

.recruit__job__item + .recruit__job__item {
  border-top: 1px solid rgba(37, 37, 37, 0.2);
}

.recruit .recruit__job__term {
  width: 300px;
  text-align: left;
  font-weight: normal;
}

.recruit__tab__btns {
  display: flex;
  border-bottom: 1px solid rgba(37, 37, 37, 0.2);
}

.recruit__tab__btns li {
  width: 240px;
  display: flex;
  justify-content: center;
  padding-block: 20px;
  font-weight: 500;
}

.recruit__tab__btns li.active {
  border: 1px solid rgba(37, 37, 37, 0.2);
  border-bottom: none;
  background-color: #fff;
}

.recruit__tab__btns li {
  border-radius: 4px 4px 0 0;
  background-color: rgba(0, 71, 149, 0.05);
  cursor: pointer;
}

@media screen and (max-width: 750px) {
  .recruit__tab__wrapper {
    font-size: 14px;
  }

  .recruit__job__item {
    display: block;
  }
}

.recruit__contact__bg {
  background-color: rgba(0, 71, 149, 0.1);
  padding-top: 90px;
}

.recruit .form-table {
  width: 100%;
  border: none;
}

.recruit .form-table table {
  display: block;
}

.recruit .form-table table tbody {
  margin: 0;
}

.recruit td,
.recruit th {
  font-size: 18px;
}

.recruit .form-table table tbody tr th p {
  font-size: 18px;
}

.recruit .form-table table tbody tr {
  padding-block: 40px;
  margin-block: 0;
  justify-content: flex-start;
}

.recruit .form-table table .-require {
  position: relative;
  line-height: calc(28.8 / 16);
}

.recruit .form-table table td {
  width: calc(594 / 1000 * 100%);
}

.recruit .form-table table .-require::before {
  position: absolute;
  top: 18px;
  right: calc(100% + 16px);
  content: "必須";
  width: 40px;
  height: 24px;
  background: linear-gradient(45deg, #3859d7 0%, #96f3ff 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #fff;
}

.recruit .form-table table .-flex {
  display: flex;
  justify-content: flex-end;
}

.recruit .form-table table tbody tr {
  padding-block: 40px;
  margin-block: 0;
}

.recruit .wpcf7 .-exsample {
  display: block;
  font-size: 16px;
  margin-top: 11px;
}

.recruit .form-table {
  font-size: 16px;
}

.recruit input.wpcf7-form-control.wpcf7-text,
.recruit textarea.wpcf7-form-control.wpcf7-textarea,
.recruit input.wpcf7-form-control.wpcf7-number {
  border: none;
  background-color: #fff;
  border-radius: 8px;
  width: 100%;
}

.recruit .form-table table tbody tr + tr {
  border-top: 1px solid rgba(37, 37, 37, 0.2);
}

.recruit .form-table-submit .wpcf7-submit {
  /* text-align: center;
  color: #fff;

  max-width: 246px;


  background: linear-gradient(90deg, #3859d7 0%, #96f3ff 100%);
  border-radius: calc(1px / 0);
*/
  color: transparent;
  margin-inline: auto;
  margin-top: 0;
  width: 246px;
  height: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  background-image: none;
  width: 246.91px;
  position: relative;
  z-index: 10;
}

.recruit__nav__sticky {
  font-size: 16px;
}

.recruit__nav__sticky li a {
  color: #004795;
  opacity: 0.2;
  transition: all 0.4s;
}

.recruit__nav__sticky li + li {
  margin-top: 24px;
}

.recruit__nav__sticky li.current {
  position: relative;
}

.recruit__nav__sticky li.current::before {
  content: "";
  position: absolute;
  top: 0;
  left: -17px;
  width: 3px;
  height: 100%;
  background-color: #3859d7;
}

.recruit__nav__sticky li.current a {
  opacity: 1;
}

.recruit .form-table {
  border-top: 1px solid rgba(37, 37, 37, 0.2);
  border-radius: 0;
}

.recruit__content {
  position: relative;
}

.recruit__nav__sticky {
  position: absolute;
  left: min(calc(130 / 1600 * 100%), 170px);
  top: 60px;
}

.recruit .form-table table tbody tr:not(:last-child) {
  align-items: flex-start;
  justify-content: space-between;
}

@media screen and (max-width: 750px) {
  .recruit__nav__sticky {
    display: none;
  }
}

.recruit__heading.-white {
  color: #fff;
}

.recruit__interview__bg {
  width: calc(1200 / 1600 * 100%);
  max-width: 1200px;
  margin-left: auto;
  background-color: #004795;
  color: #fff;
  padding-block: 85px;
  padding-left: 100px;
  position: relative;
  z-index: 2;
}

.recruit__job__content {
  margin-top: 88px;
  padding-top: 116px;
  position: relative;
}

/* .recruit__job__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: #004795;
  max-width: 1200px;
  width: calc(1200 / 1600 * 100%);
  margin-inline: auto;
  height: 1px;
} */

@media screen and (max-width: 750px) {
  .recruit dt {
    margin: 0;
  }
  .recruit .wpcf7 .-exsample {
    font-size: 14px;
    margin-top: 6px;
  }
  .recruit__interview__bg {
    width: 100%;
    max-width: initial;
    margin-left: 0;
    padding-top: 52px;
    padding-bottom: 96px;
    padding-left: 0px;
    position: relative;
  }

  .recruit .swiper-wrapper {
    display: block;
  }

  .recruit__interview .swiper-button-prev,
  .recruit__interview .swiper-button-next {
    display: none;
  }

  .recruit__interview__wrap .swiper {
    padding-top: 0;
  }

  .recruit__interview {
    width: calc(320 / 375 * 100%);
    margin-inline: auto;
  }

  .recruit__interview .recruit__card + .recruit__card {
    margin-top: 36px;
  }

  .recruit__card .-title {
    margin-top: 15px;
  }

  .recruit__interview .recruit__card .-text {
    font-size: 16px;
  }

  .recruit__interview .recruit__heading {
    margin-bottom: 36px;
  }

  .recruit .recruit__interview__wrap .swiper {
    padding-top: 0;
  }

  .recruit .recruit__interview__image {
    position: static;
  }

  .recruit .recruit__interview__wrap {
    padding-top: 0;
  }

  .recruit__job__item {
    padding-top: 18px;
    padding-bottom: 14px;
  }

  .recruit__job__content {
    margin-top: 52px;
    margin-bottom: 96px;
  }

  .recruit .recruit__job__list {
    margin-top: 0;
  }

  .recruit__heading.-job {
    margin-bottom: 36px;
  }
}



.recruit__interview__wrap {
  position: relative;
  background-color: #f2f2f2;
  padding-top: 350px;
}

.recruit form {
  font-size: 16px;
}

.recruit__card {
  cursor: pointer;
}

.recruit__card .-title {
  margin-top: 15px;
  font-size: 15px;
  font-weight: 400;
}

.recruit__card .-text {
  margin-top: 17px;
  font-size: 20px;
  line-height: 2;
  font-weight: 500;
}

.recruit__content__bg form {
  font-size: 16px;
}

.swiper-button-wrap {
  bottom: 100%;
  right: 0;
  position: absolute;
}

.recruit__interview__wrap .swiper-button-next,
.recruit__interview__wrap .swiper-button-prev {
  top: 30px;
  right: 200px;
  color: #fff;
  width: 13px;
  --swiper-navigation-size: 20px;
}

.recruit__interview__wrap .swiper-button-prev {
  right: 266px;
}

.recruit__interview__wrap .swiper-button-next::before,
.recruit__interview__wrap .swiper-button-prev::before {
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  border-radius: calc(1px / 0);
  border: 1px solid #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}

.recruit__interview__wrap .swiper-button-prev {
  left: auto;
}

.recruit__interview__wrap .swiper {
  padding-top: 100px;
}

.recruit__form__addressWrap {
  display: flex;
}

.recruit__form__left {
  font-size: 16px;
  margin-right: 8px;
  display: inline-block;
}

.recruit__form__addressWrap .-addressIcon {
  margin-right: 10px;
  display: inline-block;
  margin-top: 10px;
}

/* チェックされた状態のデザイン */
.recruit .wpcf7-form-control-wrap input[type="checkbox"]:checked::before {
  content: "\2713";
  /* チェックマーク */
  position: absolute;
  top: -2px;
  left: 9px;
  font-size: 18px;
  color: #000;
}

.recruit .wpcf7-form-control-wrap input[type="checkbox"] {
  appearance: none;
  /* 標準のチェックボックスを非表示 */
  -webkit-appearance: none;
  -moz-appearance: none;
  display: inline-block;
  width: 30px;
  /* 四角のサイズ */
  height: 30px;
  /* 四角のサイズ */
  border-radius: 2px;
  /* 四角形にするためにborder-radiusを0に */
  position: relative;
  margin-right: 10px;
  cursor: pointer;
  background-color: #fff;
  /* 背景色 */
}

/* ラベルのカスタマイズ */
.recruit .wpcf7-form-control-wrap label {
  font-size: 16px;
  color: #333;
  cursor: pointer;
}

/* チェックボックスとラベルの配置調整 */
.recruit .wpcf7-list-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.wpcf7-list-item.first.last {
  margin-left: 0;
}

.recruit .form-table .-text {
  margin-bottom: 10px;
}
.recruit .form-table .-text .links {
  color: #3859d7;
  text-decoration: underline;
  font-weight: 700;
  cursor: pointer;
}
.recruit {
  margin-bottom: 0;
}
.recruit .wpcf7-checkbox {
  font-weight: 700;
}

.recruit__footer {
  background-color: #fff;
  position: relative;
  z-index: 3;
  z-index: 10;
}
  .recruit__interview .recruit__heading.-white {
  margin-bottom: 0px;
}
@media screen and (max-width: 750px) {
  .recruit__interview .recruit__heading.-white {
  margin-bottom: 50px;
}
  .recruit th {
    margin-bottom: 14px;
  }

  .recruit .form-table table tbody tr {
    padding-block: 14px;
  }

  .recruit .form-table table tbody tr th p {
    position: relative;
    font-size: 14px;
  }

  .recruit .form-table table tbody tr th p::after {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: calc(100% + 6px);
    content: "必須";
    width: 36px;
    height: 22px;
    background: linear-gradient(45deg, #3859d7 0%, #96f3ff 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #fff;
  }

  .recruit .form-table table .-require::before {
    display: none;
  }

  .recruit__form__left {
    font-size: 14px;
    width: 30%;
  }

  .recruit .form-table table td {
    width: 100%;
  }

  .wpcf7-form-control-wrap input[type="checkbox"] {
    appearance: none;
    /* 標準のチェックボックスを非表示 */
    -webkit-appearance: none;
    -moz-appearance: none;
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #333;
    border-radius: 3px;
    position: relative;
    margin-right: 10px;
    cursor: pointer;
  }
}

/*
モーダル
*/
.baseDialog::-webkit-scrollbar,
.menuDialog::-webkit-scrollbar {
  display: none;
}
.baseDialog:focus,
.menuDialog:focus {
  outline: none;
}
.baseDialog::backdrop,
.menuDialog::backdrop {
  background-color: rgba(0, 0, 0, 0.45);
}

.baseDialog_wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: calc(100% + 1px);
  /* padding: 24px; */
}

.baseDialog_content {
  position: relative;
  width: calc(1200 / 1600 * 100%);
  max-width: 1200px;
  overflow: hidden;
  background-color: #fff;
}

.baseDialog_content_inner {
  width: 100%;
  height: 100%;
  /* padding: 72px 24px 24px 24px; */
  overflow: auto;
  overscroll-behavior: contain;
  display: flex;
  align-items: center;
  /* @include mq(lg) {
    padding: 72px 50px 48px 50px;
  } */
}

.baseDialog_close {
  position: absolute;
  top: 1.6rem;
  right: 1.6rem;
}

.baseDialog {
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  margin: 0;
  padding: 0;
  overflow-y: auto;
  transition: opacity 0.5s, transform 0.5s;
  border: none;
  background-color: transparent;
  -ms-overflow-style: none;
  scrollbar-width: none;
  overscroll-behavior: none;
}

.baseDialog.-closing {
  /* transform: scale(0.9); */
  opacity: 0;
}

/* ========== / recruit_new ========== */

/* ========== / recruit modal Interview========== */
.baseDialog_content.--recruitInterview {
  height: 80vh;
  overflow-y: auto;
}

.recruit__modal__inner {
  max-width: 1000px;
  width: calc(100% - 30px);
  margin: 0 auto;
}

.recruit__modal__inner.--flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.recruit__modal__head {
  background: #004795;
  width: 100%;
  padding: 88px 0 102px;
}

.recruit__modal__title {
  width: 50%;
}

.recruit__modal__title .-top {
  color: #ffffff;
  font-family: var(--font-poppins);
  font-size: 24px;
}

.recruit__modal__title .-bottom {
  margin-top: 36px;
  display: block;
  color: #ffffff;
  font-size: 32px;
  line-height: calc(38.4 / 32);
  letter-spacing: 0.5px;
}

.recruit__modal__personal {
  width: auto;
}

.recruit__modal__personal ._affiliation,
.recruit__modal__personal ._season {
  color: #ffffff;
  font-size: 15px;
  display: block;
}

.recruit__modal__personal ._name {
  margin-top: 6px;
  display: flex;
  align-items: flex-end;
  gap: 16px;
  color: #ffffff;
  font-size: 24px;
}

.recruit__modal__main {
  padding: 104px 0 86px;
}

.recruit__modal__main .recruit__modal__data {
  background-color: white;
  border: none;
  display: block;
}

.recruit__modal__item {
  margin-bottom: 72px;
}

.recruit__modal__main .recruit__modal__term {
  width: auto;
  text-align: left;
  display: flex;
  gap: 24px;
  color: #004795;
  font-size: 24px;
  font-weight: 500;
}

.recruit__modal__main .recruit__modal__term ._number {
  margin-top: 4px;
  display: block;
  font-family: var(--font-poppins);
  font-size: 20px;
}

.recruit__modal__main .recruit__modal__description {
  background-color: white;
  margin: 0;
  margin-top: 40px;
  padding: 0;
  border: none;
  display: block;
  font-size: 16px;
  line-height: calc(32 / 16);
}

.recruit__modal__message {
  width: 100%;
  padding: 67px 0;
  position: relative;
  z-index: 2;
}

.recruit__modal__message::before {
  content: "";
  background: #004795;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.1;
  position: absolute;
  top: 0;
  left: 0;
}

.recruit__message__inner {
  max-width: 800px;
  width: calc(100% - 40px);
  margin: 0 auto;
}

.recruit__modal__message .-title {
  color: #004795;
  font-size: 24px;
  font-weight: 500;
}

.recruit__modal__message .-lg {
  margin-top: 40px;
  font-size: 20px;
  font-weight: 500;
  line-height: calc(36 / 20);
  letter-spacing: 0.3px;
}

.recruit__modal__message .-copy {
  margin-top: 32px;
  font-size: 15px;
  font-weight: 500;
  line-height: calc(29 / 15);
  letter-spacing: 0.5px;
}

@media screen and (max-width: 600px) {
  .baseDialog_content.--recruitInterview {
    width: calc(347 / 375 * 100%);
  }

  .recruit__modal__inner.--flex {
    flex-direction: column;
  }

  .recruit__modal__head {
    padding: 56px 0 48px;
  }

  .recruit__modal__title {
    width: 100%;
  }

  .recruit__modal__title .-top {
    font-size: 16px;
  }

  .recruit__modal__title .-bottom {
    margin-top: 24px;
    font-size: 18px;
    line-height: calc(32 / 18);
  }

  .recruit__modal__personal {
    width: 100%;
    margin-top: 16px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
  }

  .recruit__modal__personal ._affiliation,
  .recruit__modal__personal ._season {
    font-size: 15px;
    display: inline;
  }

  .recruit__modal__personal ._name {
    margin-top: 0;
    gap: 8px;
    font-size: 24px;
  }

  .recruit__modal__main {
    padding: 52px 0 56px;
  }

  .recruit__modal__item {
    margin-bottom: 40px;
  }

  .recruit__modal__main .recruit__modal__term {
    gap: 18px;
    font-size: 18px;
    line-height: calc(32 / 18);
  }

  .recruit__modal__main .recruit__modal__term ._number {
    margin-top: 2px;
    font-size: 16px;
  }

  .recruit__modal__main .recruit__modal__description {
    margin-top: 25px;
    font-size: 14px;
    font-weight: 400;
    line-height: calc(25.6 / 14);
  }

  .recruit__modal__message {
    padding: 24px 0;
  }

  .recruit__modal__message .-title {
    font-size: 18px;
    line-height: calc(32 / 18);
  }

  .recruit__modal__message .-lg {
    margin-top: 24px;
    font-size: 18px;
    line-height: calc(32 / 18);
  }

  .recruit__modal__message .-copy {
    margin-top: 16px;
    font-size: 14px;
    line-height: calc(25.6 / 14);
  }
}
.recruit__data__item .-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
  font-size: 16px;
}
.recruit__data__item.-top {
  font-size: 16px;
}
.recruit__data__item .-icon::before {
  content: "";
  background-size: cover;
}
.recruit__data__item .-icon1::before {
  width: 33.62px;
  height: 17.94px;
  background-image: url(../img/recruit_data_icon1.svg);
}
.recruit__data__item .-icon2::before {
  width: 26.57px;
  height: 25.76px;
  background-image: url(../img/recruit_data_icon2.svg);
}
.recruit__data__item .-icon3::before {
  width: 34.7px;
  height: 18.33px;
  background-image: url(../img/recruit_data_icon3.svg);
}
.recruit__data__item .-icon4::before {
  width: 24px;
  height: 24px;
  background-image: url(../img/recruit_data_icon4.svg);
}
.recruit__data__item .-icon5::before {
  width: 31px;
  height: 31px;
  background-image: url(../img/recruit_data_icon5.svg);
}
.recruit__data__item .-icon6::before {
  width: 25.59px;
  height: 25.14px;
  background-image: url(../img/recruit_data_icon6.svg);
}
.recruit__data__item .-icon7::before {
  width: 21.6px;
  height: 19.19px;
  background-image: url(../img/recruit_data_icon7.svg);
}
.recruit__right.-border {
  padding-top: 116px;
  /* border-top: 3px solid #004795; */
  position: relative;
}
.recruit__right.-border::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #004795;
  width: 0%;
  transition: width 1.6s cubic-bezier(.16,1,.3,1);
}
.is-inview .recruit__right.-border::after {
  width: 100%;
}
.recruit__data__inner.-border::after {
  /* padding-top: 116px; */
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #004795;
  width: 0%;
  transition: width 1.6s cubic-bezier(.16,1,.3,1);
}
.is-inview .recruit__data__inner.-border::after {
  width: 100%;
}
@media screen and (max-width: 750px) {
  .recruit__right.-border {
    padding-top: 46px;
  }
  .recruit__job__content {
    padding-top: 0;
  }
  .recruit__data__inner.-border {
    padding-top: 46px;
  }
}
.recruit__poricy__title {
  font-size: 32px;
  margin-bottom: 50px;
  color: #004795;
  font-weight: 500;
}
.recruit__poricy__top {
  margin-bottom: 116px;
}
.recruit__poricy__box {
  background-color: rgba(45, 71, 149, 0.2);
  padding-block: 23px;
  padding-inline: 36px;
  margin-top: 42px;
}
.recruit__poricy__item .-title {
  font-size: 24px;
  margin-bottom: 12px;
  font-weight: 500;
}
.recruit__poricy__item .-text {
  line-height: calc(32 / 16);
  font-size: 16px;
}
.recruit__poricy__item + .recruit__poricy__item {
  margin-top: 66px;
}
.recruit__poricy__list {
  padding-bottom: 100px;
}

.recruit__poricy__contact .-text {
  font-size: 16px;
  line-height: 2;
}
.recruit__poricy__box .-lg {
  margin-bottom: 11px;
  font-size: 22px;
}
.recruit__poricy__box .-md {
  font-size: 22px;
}
.recruit__poricy__box .-sm {
  font-size: 18px;
  font-weight: 400;
}
@media screen and (max-width: 750px) {
  .recruit__poricy__item .-title {
    font-size: 18px;
    margin-bottom: 24px;
  }
  .recruit__poricy__contact .-text {
    font-size: 14px;
  }
  .recruit__poricy__box {
    background-color: rgba(45, 71, 149, 0.2);
    padding-block: 20px;
    padding-inline: 30px;
    margin-top: 40px;
  }
  .recruit__poricy__title {
    font-size: 20px;
    margin-bottom: 32px;
  }
  .recruit__poricy__top {
    margin-bottom: 40px;
  }
  .recruit__poricy__box .-lg {
    font-size: 18px;
    margin-bottom: 24px;
  }
  .recruit__poricy__box .-md {
    font-size: 18px;
  }
  .recruit__poricy__item + .recruit__poricy__item {
    margin-top: 24px;
  }
}
.recruit__profile__item .-show,
.recruit__workflow__item .-show,
.recruit__data__item .-show {
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.5s;
  transition-delay: var(--delay);
  display: block;
}
.recruit__profile__item.is-show .-show,
.recruit__workflow__item.is-show .-show,
.recruit__data__item.is-show .-show {
  transform: translateY(0);
  opacity: 1;
}
.recruit__workflow__list {
  display: flex;
}
.recruit__workflow__list li + li {
  margin-left: -20px;
}
.recruit__workflow__item .-circle {
  width: 270px;
  height: 270px;
  border: 1px solid #252525;
  border-radius: calc(1px / 0);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.recruit__workflow__item .-number {
  margin-bottom: 36px;
  font-size: 24px;
}
.recruit__workflow__item .-text {
  font-size: 24px;
  position: relative;
  bottom: 16px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .recruit__workflow__list li + li {
    margin-left: 0px;
  }
  .recruit__workflow__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .recruit__workflow__item .-circle {
    width: 170px;
    height: 170px;
  }
  .recruit__workflow__item .-number {
    margin-bottom: 20px;
    font-size: 14px;
  }
  .recruit__workflow__item .-text {
    font-size: 14px;
    position: relative;
    bottom: 8px;
  }
  .recruit__workflow__list li:nth-child(2n + 1) {
    margin-right: -10px;
  }
  .recruit__workflow__list li:nth-child(2n) {
    margin-left: -10px;
  }
  .recruit__workflow__list li {
    margin-top: -10px;
  }
}
.recruit__workflow__bg {
  overflow: hidden;
  position: relative;
}
.recruit__workflow__bg1 {
  position: absolute;
  top: -235px;
  left: -206px;
  width: calc(764 / 1600 * 100%);
  max-width: 660px;
}
.recruit__workflow__bg2 {
  position: absolute;
  bottom: -126px;
  right: -128px;
  width: calc(630 / 1600 * 100%);
  max-width: 660px;
  transform: rotate(38deg);
}
@media screen and (max-width: 750px) {
  .recruit__workflow__bg1 {
    position: absolute;
    top: -50px;
    left: -70px;
    width: 100%;
    max-width: 460px;
  }
  .recruit__workflow__bg2 {
    display: none;
  }
  .recruit__contact__bg {
    padding-bottom: 98px;
  }
}
.recruit__card__figure {
  overflow: hidden;
}
.recruit__card__figure img {
  /* transform: scale(1); */
  transition: all 0.5s;
}
.recruit__card:hover .recruit__card__figure img {
  transform: scale(1.1);
}
.form-table-submit {
  position: relative;
}

.form-table-submit__text {
  border: 1px solid #fff;
  text-align: center;
  color: #fff;
  background-image: none;
  max-width: 246px;
  margin-inline: auto;
  width: 246px;
  height: 56px;
  display: flex;
  justify-content: left;
  align-items: center;
  width: 246.91px;
  background: linear-gradient(90deg, #3859d7 0%, #96f3ff 100%);
  filter: brightness(1);
  transition: filter 0.8s;
  border-radius: calc(1px / 0);
  margin-top: 0;
  position: relative;
}
.is-hover .form-table-submit__text {
  filter: brightness(1.2);
}
.form-table-submit__text .-first,
.form-table-submit__text .-second,
.recruit__top__button a::before,
.recruit__top__button a::after {
  transition: all 0.4s;
}

.is-hover .form-table-submit__text .-first {
  opacity: 0;
  transform: translateY(-100%);
}
.is-hover .form-table-submit__text .-second {
  opacity: 1;
  transform: translateY(-100%);
}
.form-table-submit__text::before {
  content: "";
  width: 12.91px;
  height: 6.91px;
  background-image: url(../img/recruit_submit_arrow.svg);
  background-size: cover;
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin-block: auto;
  transition: all 0.2s;
}
.form-table-submit__text::after {
  content: "";
  width: 12.91px;
  height: 6.91px;
  background-image: url(../img/recruit_submit_arrow.svg);
  background-size: cover;
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin-block: auto;
  transition: all 0.2s;
  transform: translateY(-100%);
  opacity: 0;
}
.is-hover .form-table-submit__text::before {
  opacity: 0;
  transform: translateY(100%);
}
.is-hover .form-table-submit__text::after {
  opacity: 1;
  transform: translateY(0%);
}
/* .form-table-submit .-first,
.form-table-submit .-second {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
} */
.form-table-submit .-second {
  transform: translateY(100%);
  opacity: 0;
}

.recruit .form-table-submit .wpcf7-submit {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.recruit__form__text {
  font-size: 18px;
}
@media screen and (max-width: 750px) {
  .recruit__form__text {
    font-size: 14px;
  }
}
.recruit .wpcf7-spinner {
  position: absolute;
  top: 0;
}
.form-table-submit__text .-center {
  text-align: center;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  margin-left: 26px;
  font-size: 15px;
}
.recruit__top__button .-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 16px;
  margin-left: 35px;
}
.recruit__top__button a {
  position: relative;
}
.recruit__top__button a .-first {
  transition: all 0.3s;
}
.recruit__top__button a .-second {
  transition: all 0.3s;
  opacity: 0;
  transform: translateY(100%);
}
.recruit__top__button a:hover .-first {
  opacity: 0;
  transform: translateY(-100%);
}
.recruit__top__button a:hover .-second {
  opacity: 1;
  transform: translateY(-100%);
}
.is-interview-white .recruit__nav__sticky li a {
  color: #fff;
}
.is-interview-white .recruit__nav__sticky li.current::before {
  background-color: #fff;
}
.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  width: 48px;
}
@media screen and (max-width: 750px) {
  .recruit__top__button .-wrap {
    margin-left: 20px;
    margin-top: 16px;
  }
  .modal__close {
    position: absolute;
    top: 16px;
    right: 14px;
    cursor: pointer;
    width: 36.25px;
  }
}
.recruit__top__button {
  transition: all 0.3s;
}

.is-contact-target .recruit__top__button {
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

.js-anime{
    display: inline-block;
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
    transition: -webkit-clip-path 1.6s cubic-bezier(.16,1,.3,1);
    transition: clip-path 1.6s cubic-bezier(.16,1,.3,1);
    transition: clip-path 1.6s cubic-bezier(.16,1,.3,1), -webkit-clip-path 1.6s cubic-bezier(.16,1,.3,1);
}

.is-inview .js-anime{
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
}
.recruit__data__holiday  img {
    width: calc(125 / 344 * 100%);
    margin-inline: auto;
}
.recruit__data__good  img {
    width: calc(290.33 / 344 * 100%);
    margin-inline: auto;
}
.recruit__data__atmosphere  img {
    width: calc(274.5 / 344 * 100%);
    margin-inline: auto;
}
.recruit__data__chart img {
    width: calc(308.28 / 344 * 100%);
    margin-inline: auto;
}
.recruit__data__job img {
    width: calc(318.45 / 344* 100%);
    margin-inline: auto;
}
.recruit__data__age img {
    width: calc(296 / 344* 100%);
    margin-inline: auto;
}
.recruit__data__advantageAge img {
    width: calc(279 / 344* 100%);
    margin-inline: auto;
}
/* .recruit__data__item.-size1{
  padding-top: 40px;
} */
.u-br.-sp{
  display:none;
}
  .u-br.-pc{
  display: block;
}
@media screen and (max-width: 750px) {
  .u-br.-sp{
  display:block;
}
  .u-br.-pc{
  display: none;
}
}

.anime-reveal span{
  display: inline-block;
  position: relative;
  line-height: 140%;
}
.anime-reveal span:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: scaleX(0);
}
.anime-reveal span {
  -webkit-mask-image: linear-gradient(to right, rgba(37, 37, 37, 0.8), rgba(37, 37, 37, 0.8) calc(100% / 3), transparent calc(100% * 2 / 3), transparent);
  mask-image: linear-gradient(to right, rgba(37, 37, 37, 0.8), rgba(37, 37, 37, 0.8) calc(100% / 3), transparent calc(100% * 2 / 3), transparent);
  -webkit-mask-size: 300% 100%;
  mask-size: 300% 100%;
  -webkit-mask-position: 100% 0;
  mask-position: 100% 0;
}
.is-inview .anime-reveal span:after {
  animation: anime-reveal 2200ms forwards;
}
 .is-inview .anime-reveal span {
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
  transition: mask-position 1000ms 700ms cubic-bezier(0.28, 0.11, 0.02, 1);
  transition: -webkit-mask-position 1000ms 700ms cubic-bezier(0.28, 0.11, 0.02, 1);
}
@keyframes anime-reveal {
  0% {
    transform: scaleX(0);
    transform-origin: left center;
    animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  }
  35% {
    transform: scaleX(1);
    transform-origin: left center;
  }
  40% {
    transform: scaleX(1);
    transform-origin: right center;
    animation-timing-function: cubic-bezier(0.87, 0, 0.13, 1);
  }
  100% {
    transform: scaleX(0);
    transform-origin: right center;
  }
}
.header_nav_open{
  z-index: 12;
}
 .anime-reveal .-sp{
  display: inline-block;
 }
 .anime-reveal .-pc{
  display: inline-block;
 }
.recruit__body__subtitle.-sp{
  display: none;
  line-height: 2;
}
.recruit__body__subtitle.-pc{
  display: block;
}
@media screen and (max-width: 750px) {
  .recruit__body__subtitle.-sp{
    display: block;
  }
  .recruit__body__subtitle.-pc{
    display: none;
  }
}
.recruit .recruit__modal__birth{
    /* max-width: 1000px;
    width: calc(100% - 30px); */
    margin: 0 auto;
    background-color: transparent;
}
.recruit__modal__birth .recruit__modal__item{
  padding-bottom: 0;
  margin-bottom: 0;
  margin-top: 8px;
}
.recruit__modal__birth .recruit__modal__term{
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  color: #FFF;
  margin-bottom: 8px;
}
.recruit__modal__birth .recruit__modal__description{
  display: block;
  font-size: 16px;
  line-height: calc(32 / 16);
  background-color: transparent;
  padding: 0;
  color: #FFF;
  font-size: 16px;
  border-left: none;
  line-height: 100%;
}
.recruit__modal__birth .recruit__modal__term{
  display: none;
}
@media screen and (max-width: 750px) {
.recruit .recruit__modal__inner.--flex{
  align-items: flex-start;
}
.recruit .recruit__modal__description{
  border-top: none;
}
.recruit .recruit__modal__birth .recruit__modal__item{
  margin-top: 10px;
}
.recruit .recruit__modal__birth{
 align-items: baseline;
}
.recruit .recruit__modal__birth .recruit__modal__item{
  display: flex;
  column-gap: 16px;
  width: 100%;
  align-items: center;
}
.recruit .recruit__modal__birth .recruit__modal__term{
  width: initial;
  margin-bottom: 0;
}
.recruit__modal__birth .recruit__modal__description{
  font-size:14px;
}
}
