
/* このシートにはヘッダーとフッターが書いてある*/

html {
    font-size: 62.5%;
    width: 100%;
    box-sizing: border-box;
    background-color: #ffffff;
}


/* 以下が求職者ヘッダー*/

/* common.css　ヘッダーとフッターが入っている */
:root {
  --font-weight-black: 900;
  /* 他の共通変数もここに定義可能 */
}

body {
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
}

/*※ピックアップは最初非表示、将来的にインスタに繋げる*/
.header .pickup {
  display: none;
}

/* nakai work 後で移動する */


/*言語切り替えボタン　プルダウン*/
.top-right-select {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 8px 16px;
  background-color: white;
  border: 1px solid black;
  border-radius: 6px;
  color: black;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 1px 2px 1px 1px #000000; /* 影 */
  font-weight: 900;
  appearance: none; /* 標準の矢印を消す（必要であれば） */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='black'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px 6px;
  padding-right: 30px;
}



@media(max-width:1000px) {
  .top-right-select {
    top: 5rem;
    font-size: 11px;
    padding: 2px 20px 4px 3px;
    right: 5px;
    }
  }



.top-right-button:hover {
    background-color: #f8f8f8;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.top-right-button:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}



.spmenu.active {
  width: 100vw;
  height: 100vh;
  position: fixed;
  background: rgba(248, 247, 255, 0.78);
  top: 0px;
}

.spmenu__nav-wrap {
  padding-left: 29px;
  padding-top: 100px;
}

.spmenu__nav-list {
  font-size: 20px;
  font-weight: bold;
}
.spmenu__nav-item {
  margin-bottom: 36px;
}
.spmenu__nav-link {
  color: #333333;
}

.spmenu__button {
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  padding: 8px 51px 10px 53px;
  background-color: #333333;
  border-radius: 8px;
  margin-top: 8px;
}

/*  */

/*  PCとSPの表示非表示の切り替え */
.pc-only {
  display: block;
}
.sp-only {
  display: none;
}
@media screen and (max-width: 1000px) {
  .pc-only {
    display: none !important;
  }
  .sp-only {
        display: block !important;
    }
}

/*画像の縦横比設定*/
img {
  width: 100%;
  height: auto;
  display: block;
}

/* aタグのスタイルリセット*/
a {
  text-decoration: none;
}



/* マウスホバーがあるデバイスでのアニメーション */
@media (any-hover: hover) {
  a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  a:hover {
    opacity: 0.8;
  }
}

/* pc幅での電話発信しない */
@media (any-hover: hover) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 780px) {
  html {
    font-size: 1.4146772767vw;
  }
}
@media (min-width: 1131px) {
  html {
    font-size: 16px;
  }
}

/* インナー */
.inner {
  width: 100%;
  max-width: 1250px;
  padding-right: 25px;
  padding-left: 25px;
  margin-inline: auto;
}
@media screen and (max-width: 765px) {
  .inner {
    max-width: 37.5rem;
    padding-right: 15px;
    padding-left: 15px;
  }
}

/* ヘッダー */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
  overflow-y: auto;
  overflow-x: clip;
  height: 100dvh;
  border-bottom: none;
  background-color: #ffffff;
}
@media screen and (max-width: 1000px) {
  .header {
    height: 4.6875rem;
    width: 100%;
    border-bottom: 1px solid #707070;
    /* スクロールしないようにする */
    overflow-y: hidden;
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-top: 2.0625rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media screen and (max-width: 1000px) {
  .header__inner {
    margin-top: initial;
    flex-direction: row;
    padding-top: 12px;
  }
}

.header__logo {
  width: 9.5rem;
  height: 6.5625rem;
}
@media screen and (max-width: 765px) {
  .header__logo {
    width: 5rem;
    height: 2.5625rem;
    padding-top: 12px;
  }
}

.header__logo a {
  display: block;
  width: 100%;
  height: 100%;
  color: #000000;
}

.header__nav-list {
  display: -ms-grid;
  display: grid;
  gap: 2rem;
}
@media screen and (max-width: 765px) {
  .header__nav-list {
    margin-top: initial;
    display: flex;
    gap: initial;
  }
}

.header__nav-link {
  font-size: 1.25rem;
  line-height: 1.2;
  text-transform: capitalize;
  color: #000000;
  font-weight: 700;
}
@media screen and (max-width: 765px) {
  .header__nav-link {
    font-size: initial;
    line-height: initial;
  }
}

.header__button {
  display: block;
  margin-top: 4rem;
  background-color: #3e3e3e;
  color: #ffffff;
  padding-block: 1.5rem 1.3125rem;
  width: 11.25rem;
  max-width: 100%;
  text-align: center;
  border-radius: 0.625rem;
  font-size: 1.125rem;
  line-height: 1.2222222222;
  font-weight: 800;
  letter-spacing: 0.15em;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 765px) {
  .header__button {
    display: none;
  }
}

.header__button:hover {
  background-color: #dfdfdf;
}

@media screen and (min-width: 766px) {
  .body-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

/* Pick up */
.pickup {
  margin-top: 2.5rem;
  max-width: 11.5625rem;
  margin-inline: auto;
  display: none;
}

.pickup__title {
  font-size: 0.8125rem;
  line-height: 1.2307692308;
  font-weight: 500;
  color: #555555;
}

.pickup__slide {
  margin-top: 0.5625rem;
  border: 1px solid #3e3e3e;
  border-radius: 0.5rem;
  padding-block: 1.25rem 1.9375rem;
  padding-inline: 1.25rem;
}

.pickup__phrase-title {
  font-size: 0.8125rem;
  line-height: 1.2307692308;
  font-weight: 500;
  color: #555555;
  text-transform: uppercase;
}

.pickup__figure {
  display: block;
  margin-top: 0.6875rem;
  aspect-ratio: 148/128;
}

.pickup__image {
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}

.pickup__text-ja {
  margin-top: 0.75rem;
  font-size: 0.6875rem;
  line-height: 1.1818181818;
  font-weight: 500;
}

.pickup__text-en {
  margin-top: 0.4375rem;
  font-size: 0.625rem;
  line-height: 1.2;
  font-weight: 500;
}

.pickup__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  width: 139%;
  position: absolute;
  top: 50%;
  left: -20%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.pickup__arrows .splide__arrow {
  padding: 0;
}

.pickup__arrows button img {
  width: 1.875rem;
  height: 1.875rem;
}

@media(max-width: 1000px) {
  #email-input .main {
    width: calc(100% - 17.75rem);
    margin: 0 auto;
  }
}

.section-title {
  text-align: center;
  margin: 6.9vw 5.5vw 0 17.75rem;
}

@media(max-width:1000px) {
  .section-title {
    margin: 0;
  }
}

.section-title__en {
  display: block;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.2;
  text-transform: capitalize;
}
@media screen and (max-width: 765px) {
  .section-title__en {
    font-size: 1.6rem;
    line-height: 1.2142857143;
  }
}

.section-title__ja {
  display: block;
  margin-top: 0.4375rem;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.2222222222;
}
@media screen and (max-width: 765px) {
  .section-title__ja {
    font-size: 1rem;
    line-height: 1.1875;
  }
}

/* ハンバーガーボタン */
.open-btn {
  width: 1.875rem;
  display: none;
  padding: 0;
  z-index: 9999;
  cursor: pointer;
}

.open-btn span {
  display: block;
  background: #000000;
  width: 1.875rem;
  height: 0.125rem;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  position: relative;
  z-index: 11;
}

.open-btn span:nth-of-type(2) {
  margin-block: 0.625rem;
}

.open-btn.active span:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 0.7em;

  /* top: 0.4rem; */
}

.open-btn.active span:nth-of-type(2) {
  opacity: 0;
}

.open-btn.active span:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  /* top: -0.8125rem; */
  top: -0.3em;

  /* top: -0.81rem; */
}

.spmenu {
  display: none;
 }
.spmenu.active {
  display: block;
  width: 100vw;
  height: 100vh;
  position: fixed;
  background: rgba(248, 247, 255, 0.78);
  top: 0;
  left: 0;
 }


/* 以下が求職者フッター*/

.footer {
  background-color: #3e3e3e;
  padding-block: 5.5625rem 0.5625rem;
  padding-inline: 4.375rem 5.6875rem;
  color: #ffffff;
}

@media screen and (max-width: 765px) {
  .footer {
    padding-block: 2.5625rem 1.3125rem;
    padding-inline: 1.3125rem;
  }
}

.footer__inner {

}

.footer__top {
  display: flex;
  padding-bottom: 2.875rem;
  border-bottom: 1px solid #ffffff;
  justify-content: center;
  flex-wrap: wrap;
  column-gap: 30px;
  row-gap: 30px;
  justify-content: space-between;
}

@media screen and (max-width: 765px) {
  .footer__top {
    padding-bottom: 2.1875rem;
    flex-direction: column;
  }
}

.footer__message {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.5;
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.875rem;
}

@media screen and (max-width: 765px) {
  .footer__nav {
    margin-inline: initial;
    margin-bottom: 1.8125rem;
  }
}




.footer__nav-link {
  color: #ffffff;
  border: 1px solid #ffffff;
  border-radius: 0.3125rem;
  padding-block: 1rem 0.75rem;
  padding-inline: 1.5rem;
  text-align: center;
  font-size: 0.9375rem;
  line-height: calc(18 / 15);
}

@media screen and (max-width: 765px) {
  .footer__nav-link {
    font-size: 0.75rem;
    line-height: calc(14 / 12);
    padding-inline: 1.375rem;
    padding-block: 0.75rem;
  }
}

.footer__nav-link:last-child {
  grid-column: 1/3;
  font-size: 1.125rem;
  font-weight: 900;
  position: relative;
}

@media screen and (max-width: 765px) {
  .footer__nav-link:last-child {
    font-size: 0.9375rem;
  }
}

.footer__nav-link:last-child::before {
  content: "";
  position: absolute;
  background-image: url(../images/book-icon.svg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 1.875rem;
  height: 1.4375rem;
  top: 50%;
  left: 3.25rem;
  transform: translateY(-50%);
  z-index: 2;
}

@media screen and (max-width: 765px) {
  .footer__nav-link:last-child::before {
    width: 1rem;
    height: 1rem;
    left: 4.4375rem;
    display: none;
  }
}

.footer__nav-link:last-child::after {
  content: "";
  position: absolute;
  background-color: #ffffff;
  width: 3.0625rem;
  height: 3.0625rem;
  border-radius: 50%;
  top: 50%;
  left: 2.6875rem;
  transform: translateY(-50%);
  z-index: 1;
  display: none;
}

@media screen and (max-width: 765px) {
  .footer__nav-link:last-child::after {
    width: 1.6875rem;
    height: 1.6875rem;
    left: 4.0625rem;
  }
}

.footer__entry {
  font-size: 2.6785rem;
  font-weight: 900;
  background-color: #266fc4;
  border-radius: 0.625rem;
  flex-grow: 1;
  text-align: center;
  line-height: 12rem;
  position: relative;
  max-width: 400px;
}
.footer__entry a {
  color: #ffffff;
}

.footer__entry:hover {
    opacity: 0.5;
}

@media screen and (max-width: 765px) {
  .footer__entry {
    font-size: 1.9375rem;
    line-height: 5.4375rem;
  }
}

.footer__entry::after {
  content: "";
  position: absolute;
  background-image: url(../images/footer-entry.png);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 10vw;
  height: 10vw;
  bottom: 0;
  right: 0;
}

@media screen and (max-width: 765px) {
  .footer__entry::after {
    content: none;
  }
}

.footer__wrapper {
  margin-top: 2.875rem;
  display: flex;
  justify-content:flex-end;
  
}

@media screen and (max-width: 765px) {
  .footer__wrapper {
    flex-direction: column;
    gap: 1.4375rem;
    
  }
}


/*SNSは状況が整い次第UPする*/
.footer__sns-box {
  display: none;
}

.footer__sns-text {
  font-size: 0.875rem;
  font-weight: bold;
  line-height: calc(17 / 14);
  letter-spacing: 0.05em;
  text-transform: capitalize;
}

.footer__sns-icons {
  margin-top: 1.3125rem;
  display: flex;
  gap: 1.5625rem;
}

@media screen and (max-width: 765px) {
  .footer__sns-icons {
    margin-top: 0.5625rem;
    gap: 0.8125rem;
  }
}

.footer__sns-icons img {
  object-fit: contain;
  height: 100%;
}

@media screen and (max-width: 765px) {
  .footer__sns-icons img {
    width: 1.5625rem;
  }
}

.footer__info-box {
  background-color: #ffffff;
  display: flex;
  gap: 0.875rem;
  color: #000000;
  padding: 1.4375rem 1.5625rem;
  border-radius: 0.625rem;
  align-items: center;
  justify-content: space-evenly;
}

@media screen and (max-width: 765px) {
  .footer__info-box {
    align-items: flex-start;
  }
}

.footer__info-label {
  width: 4.1875rem;
}

@media screen and (max-width: 765px) {
  .footer__info-label {
    width: 3.5625rem;
  }
}

.footer__info-contact {
  display: flex;
  gap: 2.125rem;
}

@media screen and (max-width: 765px) {
  .footer__info-contact {
    flex-direction: column;
    gap: 0.75rem;
  }
}

.footer__email {
  font-size: 1rem;
  line-height: calc(19 / 16);
  font-weight: 500;
  position: relative;
  padding-left: 2rem;
  font-weight: 500;
}

.footer__tel::before {
  content: "";
  position: absolute;
  background-image: url(../images/tel-icon.svg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 0.75rem;
  height: 1rem;
  top: 50%;
  left: 0.5rem;
  transform: translateY(-50%);
  z-index: 2;
}

.footer__tel::after {
  content: "";
  position: absolute;
  background-color: #3e3e3e;
  width: 1.625rem;
  height: 1.625rem;
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
}

.footer__tel {
  font-size: 1rem;
  line-height: calc(19 / 16);
  font-weight: 500;
  position: relative;
  padding-left: 2rem;
  font-weight: 500;
}

.footer__email::before {
  content: "";
  position: absolute;
  background-image: url(../images/mail-icon.svg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  width: 0.9375rem;
  height: 1.0625rem;
  top: 50%;
  left: 0.3125rem;
  transform: translateY(-50%);
  z-index: 2;
}

.footer__email::after {
  content: "";
  position: absolute;
  background-color: #3e3e3e;
  width: 1.625rem;
  height: 1.625rem;
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
}

.footer__info-hours {
  margin-top: 0.9375rem;
  font-weight: 500;
  font-size: 0.625rem;
  line-height: calc(12 / 10);
  letter-spacing: -0.03em;
}

@media screen and (max-width: 765px) {
  .footer__info-hours {
    margin-left: initial;
  }
}

.footer__bottom {
  margin-top: 2.25rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 20px;
}

@media screen and (max-width: 765px) {
  .footer__bottom {
    margin-top: 2.4375rem;
    flex-direction: column;
    gap: 2rem;
  }
}

.footer__bottom-links {
  display: flex;
  column-gap: 2rem;
  flex-wrap: wrap;
}

@media screen and (max-width: 765px) {
  .footer__bottom-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /*row-gap: 1.8125rem;
    column-gap: 2.1875rem;*/
  }
}

.footer__bottom-item {
  position: relative;
  line-height: 1;
}

.footer__bottom-item:not(:last-child)::after {
  /*content: "|";*/
  position: absolute;
  right: -1.0625rem;
  color: #ffffff;
}

@media screen and (max-width: 765px) {
  .footer__bottom-item:not(:last-child)::after {
    content: none;
  }
}

.footer__bottom-link {
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 500;
}

.footer__label {
  color: #ffffff;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: calc(16 / 13);
  position: relative;
  text-align: right;
}



.job-site-link-btn a::before {
  content: "";
  position: absolute;
  background-image: url(../images/);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 1.25rem;
  height: 1.25rem;
  top: 0;
  left: -1.6875rem;
}

@media screen and (max-width: 765px) {
  .footer__label::before {
    left: 0;
  }
}

.footer__logo {
  width: 9.8125rem;
  margin-inline: auto;
  margin-top: 1.6875rem;
}
@media screen and (max-width: 765px) {
  .footer__logo {
    margin-top: 3.25rem;
    width: 6.125rem;
  }
}

.footer__copyright {
  text-align: center;
  color: #ffffff;
  font-size: 0.8125rem;
  line-height: 1.2307692308;
  font-weight: 400;
}

.footer {
 
 /*これはいったん消すpadding-left: 300px*/
  @media screen and (max-width: 765px) {
   
    padding-left: 20px;
    
}
}

/*企業側のCSS*/

/*ーーーーーーーーーーーーーーーーーーーーここから下が企業側のフッターには
.footer#client-footerが入れてある ーーーーーーーーーーーーーーーーーーー--------=========ーーーーーーーーーー*/

/* common.css */
.footer#client-footer:root {
  --font-weight-black: 900;
  /* 他の共通変数もここに定義可能 */
}

.footer#client-footer body {
  color: #141414;
}

/* -------------------------------------------- */
/* --------------- Noto Sans JP --------------- */
/* -------------------------------------------- */
.footer#client-footer body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
}

/* nakai work  後で移動*/

.footer#client-footer .spheadermenu:not(.active) {
  /* 開いてない時 */
  display: none;
}

.footer#client-footer .spheadermenu.active {
  width: 100vw;
  height: 100vh;
  position: fixed;
  background: rgba(248, 247, 255, 0.78);
  top: 0px;
}

.footer#client-footer .spheadermenu__nav-wrap {
  padding-left: 29px;
  padding-top: 107px;
}

.footer#client-footer .spheadermenu__nav-list {
  font-size: 20px;
  font-weight: bold;
}
.footer#client-footer .spheadermenu__nav-item {
  margin-bottom: 40px;
}
.footer#client-footer .spheadermenu__nav-link {
  font-size: 18px;
  color: #141414;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.9px;
}

.footer#client-footer .spheadermenu__button {
  font-size: 16px;
  font-weight: 900;
  border-radius: 120px;
  color: #ffffff;
  padding: 18px 27px 18px 20px;
  background: linear-gradient(
    353deg,
    rgba(63, 186, 254, 0.46) -28%,
    #2d65dc -14.11%,
    #3590ed -14.11%
  );
  margin-top: 22px;
}

/*  */

/*  */

/*  PCとSPの表示非表示の切り替え */
.footer#client-footer .pc-only {
  display: block;
}
.footer#client-footer .sp-only {
  display: none;
}
@media screen and (max-width: 765px) {
  .footer#client-footer .pc-only {
    display: none;
  }
  .footer#client-footer .sp-only {
    display: block;
  }
}

/*画像の縦横比設定*/
.footer#client-footer img {
  width: 100%;
  height: auto;
  display: block;
}

/* aタグのスタイルリセット*/
.footer#client-footer a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
}

/* マウスホバーがあるデバイスでのアニメーション */
@media (any-hover: hover) {
  a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    color: #ffffff;
  }
  a:hover {
    opacity: 0.8;
  }
}

/* pc幅での電話発信しない */
@media (any-hover: hover) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 780px) {
  html {
    font-size: 1.4146772767vw;
  }
}
@media (min-width: 1131px) {
  html {
    font-size: 16px;
  }
}

/* インナー */
.footer#client-footer .inner {
  width: 100%;
  padding-right: 25px;
  padding-left: 25px;
  margin-inline: auto;
}
@media screen and (max-width: 765px) {
  .footer#client-footer .inner {
    max-width: 37.5rem;
    padding-right: 15px;
    padding-left: 15px;
  }
}


/* これ以下へ企業側のfooter 先頭に＃client-fooderをふる*/
#client-footer.footer {
  background-color: #394669;
  border-top-right-radius: 0.625rem;
  border-top-left-radius: 0.625rem;
  padding-block: 2.5rem 1.5625rem;
}
@media screen and (max-width: 765px) {
  #client-footer.footer {
    padding-block: 2.8125rem 1.6875rem;
  }
}

#client-footer.footer__nav {
  padding-bottom: 2.6875rem;
  border-bottom: 1px solid #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 765px) {
  #client-footer .footer__nav {
    display: block;
    padding-bottom: 1.875rem;
  }
}

#client-footer .footer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 3.1875rem;
}
@media screen and (max-width: 765px) {
  #client-footer .footer__menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.6875rem;
  }
}

#client-footer .footer__menu-link {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.1875;
}
@media screen and (max-width: 765px) {
  #client-footer .footer__menu-link {
    font-size: 0.875rem;
    line-height: 1.3571428571;
  }
}

#client-footer .footer__cta {
  margin-top: initial;
  display: block;
  color: #ffffff;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(rgb(239, 178, 54)),
    color-stop(52%, rgb(255, 143, 28)),
    color-stop(96%, rgb(255, 137, 74))
  );
  background: linear-gradient(
    270deg,
    rgb(239, 178, 54),
    rgb(255, 143, 28) 52%,
    rgb(255, 137, 74) 96%
  );
  padding-block: 1rem;
  padding-inline: 1.25rem;
  border-radius: 7.5rem;
  margin-inline: initial;
  font-size: 0.9375rem;
  line-height: 1.2;
}
@media screen and (max-width: 765px) {
  #client-footer .footer__cta {
    margin-top: 2.25rem;
    padding-inline: 1.875rem;
    border-radius: 5rem;
    margin-inline: auto;
    font-size: 0.875rem;
    line-height: 1.2142857143;
  }
}

#client-footer .footer__info {
  margin-top: 1.1875rem;
}
@media screen and (max-width: 765px) {
  #client-footer .footer__info {
    margin-top: 1.6875rem;
  }
}

#client-footer .footer__label {
  font-size: 0.8125rem;
  line-height: 1.2307692308;
  font-weight: 500;
  color: #ffffff;
}
@media screen and (max-width: 765px) {
  #client-footer .footer__label {
    font-size: 0.9375rem;
    line-height: 1.2;
  }
}

#client-footer .footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 2.125rem;
  margin-top: 0.75rem;
}
@media screen and (max-width: 765px) {
  #client-footer .footer__links {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
    row-gap: 1.0625rem;
    margin-top: 1.4375rem;
    gap: initial;
  }
}

#client-footer .footer__info-item {
  position: relative;
}


@media screen and (min-width: 766px) {
  #client-footer .footer__info-item:not(:last-child)::after {
    content: "|";
    position: absolute;
    right: -1.0625rem;
    color: #ffffff;
  }
}

#client-footer .footer__info-link {
  color: #ffffff;
  font-size: 0.8125rem;
  line-height: 1.2307692308;
  font-weight: 500;
}

#client-footer .footer__logo {
  width: 9.8125rem;
  margin-inline: auto;
  margin-top: 4.4375rem;
}
@media screen and (max-width: 765px) {
  #client-footer .footer__logo {
    margin-top: 3.25rem;
    width: 6.125rem;
  }
}

#client-footer .footer__copyright {
  text-align: center;
  color: #ffffff;
  font-size: 0.8125rem;
  line-height: 1.2307692308;
  font-weight: 400;
  letter-spacing: 0.28em;
}

/* これ以下へ企業側のheader 先頭に＃client-headerをふる*/
#client-header.header {
  height: auto;
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  border: none;


}
@media screen and (max-width: 765px) {
  #client-header.header {
    height: 4.25rem;
  }
}



#client-header .header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: inherit;
  max-width: 80.625rem;
  margin-top: 0;
}
@media screen and (max-width: 765px) {
  #client-header .header__inner {
    max-width: initial;
  }
}

#client-header .header__logo {
  width: 8.0625rem;
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 765px) {
  #client-header .header__logo {
    width: 5.125rem;
    padding-top: 4px;
  }
}

#client-header .header__nav {
  height: inherit;
}

#client-header .header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2.5rem;
  height: inherit;
}

#client-header .header__nav-item {
  height: inherit;
}

#client-header .header__nav-link {
  color: #141414;
  font-size: 1.125rem;
  line-height: 1.2222222222;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: inherit;
}

#client-header .header__nav-link.header__nav-link--contact {
  color: #ffffff;
  background: linear-gradient(45deg, rgb(45, 76, 205), rgb(28, 153, 220) 86%);
  padding-block: 1rem;
  padding-inline: 1.25rem;
  border-radius: 7.5rem;
  height: initial;
}

#client-header.section-title {
  font-size: 1.6875rem;
  line-height: 1.1851851852;
  font-weight: 900;
  text-align: center;
  position: relative;
  height: 4.875rem;
  padding-block: 1.4375rem;
}
@media screen and (min-width: 780px) {
  #client-header.section-title {
    font-size: 2rem;
    line-height: 1.1875;
    height: 18.5625rem;
    padding-block: 7.375rem;
  }
}

#client-header.section-title::before {
  position: absolute;
  display: inline-block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 4rem;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(46%, #3fbafe),
    color-stop(100%, #3590ed),
    color-stop(50%, #2d65dc)
  );
  background: linear-gradient(90deg, #3fbafe 46%, #3590ed 100%, #2d65dc 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.15;
}
@media screen and (min-width: 780px) {
  #client-header.section-title::before {
    font-size: 15.625rem;
  }
}

#client-header.section-title.section-title--contact::before {
  content: "inquiry";
}

#client-header.section-title.section-title--complete::before {
  content: "complete";
}

#client-header.section-title.section-title--confirm::before {
  content: "confirm";
}

/* ハンバーガーボタン */
.open-btn {
  padding: 0;
  z-index: 9999;
  padding-top: 12px;
}

#client-header.open-btn span {
  display: block;
  background: #000000;
  width: 1.375rem;
  height: 0.125rem;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  position: relative;
  z-index: 11;
}

#client-header.open-btn span:nth-of-type(2) {
  margin-block: 0.5rem;
}

#client-header.open-btn.active span:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 0.4375rem;
}

#client-header.open-btn.active span:nth-of-type(2) {
  opacity: 0;
}

#client-header.open-btn.active span:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: -0.8125rem;
}


/*求職者ページへリンクボタン*/

.job-site-link-btn button {
  color: #ffffff;
}
/*
button {
  padding-top: 10px;
  padding: 10px 0;
}*/

.foooter__info-wrap {
  display: flex;
  justify-content: space-between;
}





/*以下が追記分=====================================================================================================================*/

/* common.css */
:root {
  --font-weight-black: 900;
  /* 他の共通変数もここに定義可能 */
}
html {
    font-size: 62.5%;
    width: 100%;
    box-sizing: border-box;
    background-color: #ffffff;
}

*, *:before, *:after {
  box-sizing: border-box
}

body #client-header, body #client-footer {
  color: #141414;
}

/* -------------------------------------------- */
/* --------------- Noto Sans JP --------------- */
/* -------------------------------------------- */
body #client-header, body #client-footer {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
}

/* nakai work  後で移動*/

#client-header .spheadermenu:not(.active) {
  /* 開いてない時 */
  display: none;
}

#client-header .spheadermenu.active {
  width: 100vw;
  height: 100vh;
  position: fixed;
  background: rgba(248, 247, 255, 0.78);
  top: 0px;
}

#client-header .spheadermenu__nav-wrap {
  padding-top: 107px;
  text-align: center;
}

#client-header .spheadermenu__nav-list {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}
#client-header .spheadermenu__nav-item {
  margin-bottom: 10px;
}
#client-header .spheadermenu__nav-link {
  color: #141414;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.9px;
}

#client-header .spheadermenu__button {
  font-size: 16px;
  font-weight: 700;
  border-radius: 120px;
  color: #ffffff;
  padding: 18px 27px 18px 20px;
  background: linear-gradient(
    353deg,
    rgba(63, 186, 254, 0.46) -28%,
    #2d65dc -14.11%,
    #3590ed -14.11%
  );
  margin-top: 22px;
}

/*  */


/*  */

/*  PCとSPの表示非表示の切り替え */
#client-header .pc-only {
  display: block;
}
#client-header .sp-only {
  display: none;
}
@media screen and (max-width: 1000px) {
  #client-header .pc-only {
    display: none;
  }
  #client-header .sp-only {
    display: block;
  }
}

/*画像の縦横比設定*/
#client-header img, #client-footer img {
  width: 100%;
  height: auto;
  display: block;
}

/* aタグのスタイルリセット*/
#client-header a, #client-footer a  {
  text-decoration: none;
}

/* マウスホバーがあるデバイスでのアニメーション */
@media (any-hover: hover) {
  #client-header a,#client-footer a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  #client-header a,#client-footer a:hover {
    opacity: 0.8;
  }
}

/* pc幅での電話発信しない */
@media (any-hover: hover) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 780px) {
  html {
    font-size: 1.4146772767vw;
  }
}
@media (min-width: 1131px) {
  html {
    font-size: 16px;
  }
}

/* インナー */
#client-header .inner , #client-footer .inner {
  width: 100%;
  max-width: 1250px;
  padding-right: 25px;
  padding-left: 25px;
  margin-inline: auto;
  padding-top: 15px;
  padding-bottom: 15px;
}
@media screen and (max-width: 765px) {
  #client-header .inner , #client-footer .inner {
    max-width: 37.5rem;
    padding-right: 15px;
    padding-left: 15px;
  }
}



#client-header .spheadermenu {
  display: none;
}

/* .active がついたときだけ表示する */
#client-header .spheadermenu.active {
  display: block;
  width: 100vw;
  height: 100vh;
  position: fixed;
  background: rgba(248, 247, 255, 0.78);
  top: 0;
  left: 0;
}


/* footer */
#client-footer .footer {
  background-color: #394669;
  border-top-right-radius: 0.625rem;
  border-top-left-radius: 0.625rem;
  padding-block: 2.5rem 1.5625rem;
  padding-left: none;
}
@media screen and (max-width: 765px) {
  #client-footer .footer {
    padding-block: 2.8125rem 1.6875rem;
  }
}

#client-footer .footer__nav {
  padding-bottom: 2.6875rem;
  border-bottom: 1px solid #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 765px) {
  #client-footer .footer__nav {
    display: block;
    padding-bottom: 1.875rem;
  }
}

#client-footer .footer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  gap: 4rem;
  flex-wrap: wrap;

}
@media screen and (max-width: 765px) {
  #client-footer .footer__menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.6875rem;
  }
}

#client-footer .footer__menu-link {
  color: #ffffff;
  font-size: 1.6rem;
  line-height: 1.1875;
  font-weight: 700;
}
@media screen and (max-width: 765px) {
  #client-footer .footer__menu-link {
    font-size: 1.4rem;
    line-height: 1.3571428571;
  }
}

#client-footer .footer__cta {
  margin-top: initial;
  display: block;
  color: #ffffff;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(rgb(239, 178, 54)),
    color-stop(52%, rgb(255, 143, 28)),
    color-stop(96%, rgb(255, 137, 74))
  );
  background: linear-gradient(
    270deg,
    rgb(239, 178, 54),
    rgb(255, 143, 28) 52%,
    rgb(255, 137, 74) 96%
  );
  padding-block: 1rem;
  padding-inline: 1.25rem;
  border-radius: 7.5rem;
  margin-inline: initial;
  font-size: 1.6rem;
  line-height: 1.2;
  font-weight: 700;
}
@media screen and (max-width: 765px) {
  #client-footer .footer__cta {
    margin-top: 2.25rem;
    padding-inline: 1.875rem;
    border-radius: 5rem;
    margin-inline: auto;
    font-size: 1.6rem;
    line-height: 1.2142857143;
  }
}

#client-footer .footer__info {
  margin-top: 1.1875rem;
}
@media screen and (max-width: 765px) {
  #client-footer .footer__info {
    margin-top: 1.6875rem;
  }
}

#client-footer .footer__label {
  font-size: 1.2rem;
  line-height: 1.2307692308;
  font-weight: 500;
  color: #ffffff;
  text-align: left;
}
@media screen and (max-width: 765px) {
  #client-footer .footer__label {
    font-size: 0.9375rem;
    line-height: 1.2;
  }
}

#client-footer .footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 4rem;
  margin-top: 0.75rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 765px) {
  #client-footer .footer__links {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-column-gap: 1.25rem;
    -moz-column-gap: 1.25rem;
    column-gap: 1.25rem;
    row-gap: 1.0625rem;
    margin-top: 1.4375rem;
    gap: initial;
    flex-direction: column;
  }
}

#client-footer .footer__info-item {
  position: relative;
}



@media screen and (min-width: 766px) {
  #client-footer .footer__info-item:not(:last-child)::after {
    content: "|";
    position: absolute;
    right: -2.0625rem;
    color: #ffffff;
  }
}

#client-footer .footer__info-link {
  color: #ffffff;
  font-size: 1.6rem;
  line-height: 1.2307692308;
  font-weight: 500;
}

#client-footer .footer__logo {
  width: 9.8125rem;
  margin-inline: auto;
  margin-top: 4.4375rem;
}
@media screen and (max-width: 765px) {
  #client-footer .footer__logo {
    margin-top: 3.25rem;
    width: 6.125rem;
  }
}

#client-footer .footer__copyright {
  text-align: center;
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1.2307692308;
  font-weight: 400;
  letter-spacing: 0.1em;
}

/* header */
#client-header .header {
  height: 7.8125rem;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}
@media screen and (max-width: 765px) {
  #client-header .header {
    height: 4.25rem;
  }
}



#client-header .header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: auto;
  max-width: 1440px;
  flex-direction: row;
  color: #000000;
}
@media screen and (max-width: 1000px) {
  #client-header .header__inner {
    max-width: initial;
    height: auto;
  }
}

#client-header .header__logo {
  width: 8.0625rem;
  max-width: 100%;
}
@media screen and (max-width: 765px) {
  #client-header .header__logo {
    width: 5.125rem;
    padding-top: 4px;
  }
}

#client-header .header__nav {
  height: inherit;
}

#client-header .header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2.5rem;
  height: auto;
  align-items: center;
}

#client-header .header__nav-item {
  height: inherit;
}

#client-header .header__nav-link {
  color: #000000;
  font-size: 1.6rem;
  line-height: 1.2222222222;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: inherit;
  text-transform: none;
}

#client-header .header__nav-link.header__nav-link--contact {
  color: #ffffff;
  background: linear-gradient(45deg, rgb(45, 76, 205), rgb(28, 153, 220) 86%);
  padding-block: 1rem;
  padding-inline: 1.25rem;
  border-radius: 7.5rem;
  height: initial;
}

#client-header .section-title {
  font-size: 1.6875rem;
  line-height: 1.1851851852;
  font-weight: 900;
  text-align: center;
  position: relative;
  height: 4.875rem;
  padding-block: 1.4375rem;
}
@media screen and (min-width: 780px) {
  #client-header .section-title {
    font-size: 2rem;
    line-height: 1.1875;
    height: 18.5625rem;
    padding-block: 7.375rem;
  }
}

#client-header .section-title::before {
  position: absolute;
  display: inline-block;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 4rem;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(46%, #3fbafe),
    color-stop(100%, #3590ed),
    color-stop(50%, #2d65dc)
  );
  background: linear-gradient(90deg, #3fbafe 46%, #3590ed 100%, #2d65dc 50%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.15;
}
@media screen and (min-width: 780px) {
  #client-header .section-title::before {
    font-size: 15.625rem;
  }
}

#client-header .section-title.section-title--contact::before {
  content: "inquiry";
}

#client-header .section-title.section-title--complete::before {
  content: "complete";
}

#client-header .section-title.section-title--confirm::before {
  content: "confirm";
}

/* ハンバーガーボタン */
#client-header .open-btn {
  width: 1.375rem;
  padding: 0;
  z-index: 9999;
}

#client-header .open-btn span {
  display: block;
  background: #000000;
  width: 1.375rem;
  height: 0.125rem;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  position: relative;
  z-index: 11;
}

#client-header .open-btn span:nth-of-type(2) {
  margin-block: 0.5rem;
}

#client-header .open-btn.active span:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 0.4375rem;
}

#client-header .open-btn.active span:nth-of-type(2) {
  opacity: 0;
}

#client-header .open-btn.active span:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: -0.8125rem;
}


/*求職者ページへリンクボタン*/

#client-footer .job-site-link-btn button {
  color: #ffffff;
  padding: 0;
  font-weight: 700;
  
}
#client-footerbutton {
  padding-top: 10px;
  padding: 10px 0;
}

#client-footer .footer__info-wrap {
  display: flex;
  justify-content: space-between;
  flex-direction: wrap;
  flex-wrap: wrap;
  align-items: flex-start;
}



#client-header .spheadermenu__button {
  margin-top: 20px;
}
.error-message {
  color: red;
  font-size: 0.9rem;
  margin-top: 4px;
}

/* Chrome, Safari, Edge */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.error {
  color: red;
  font-weight: bold;
  margin-top: 5px;
  font-size: 12px;
}



@media(max-width: 1000px) {
  #client-header .sp-only {
        display: none;
    }
}