@charset "UTF-8";
/*----------------------------------

home

----------------------------------*/
/**
 * 手書き文字アニメーション
 */
#handwriting_svg {
  position: absolute;
}
#handwriting_svg .text {
  -webkit-mask: url(#handwriting_mask);
          mask: url(#handwriting_mask);
  fill: #042b65;
}
#handwriting_svg.start_animation #handwriting_mask path {
  -webkit-animation: 4s linear 1s forwards handwriting_animation;
          animation: 4s linear 1s forwards handwriting_animation;
}
#handwriting_mask path {
  fill: none;
  stroke: #fff;
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 4000px;
  stroke-dashoffset: 4000px;
}

@-webkit-keyframes handwriting_animation {
  0% {
    stroke-dashoffset: 4000px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes handwriting_animation {
  0% {
    stroke-dashoffset: 4000px;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
/**
 * 浮き出る文字
 */
.mv .voices {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}
.mv .voices .voice {
  position: absolute;
  height: auto;
}
.mv .voices.is-visible .voice {
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: opacity 0.2s linear, -webkit-filter 0.5s linear, -webkit-transform 5s cubic-bezier(0.1, 0.8, 0.3, 0.9);
  transition: opacity 0.2s linear, -webkit-filter 0.5s linear, -webkit-transform 5s cubic-bezier(0.1, 0.8, 0.3, 0.9);
  transition: opacity 0.2s linear, filter 0.5s linear, transform 5s cubic-bezier(0.1, 0.8, 0.3, 0.9);
  transition: opacity 0.2s linear, filter 0.5s linear, transform 5s cubic-bezier(0.1, 0.8, 0.3, 0.9), -webkit-filter 0.5s linear, -webkit-transform 5s cubic-bezier(0.1, 0.8, 0.3, 0.9);
  -webkit-transition-delay: var(--delay, 0ms);
          transition-delay: var(--delay, 0ms);
}
.mv .voices.is-hidden .voice {
  opacity: 0;
  -webkit-filter: blur(15px);
          filter: blur(15px);
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transition: opacity 0.5s linear, -webkit-filter 0.5s ease-in, -webkit-transform 2s ease-in;
  transition: opacity 0.5s linear, -webkit-filter 0.5s ease-in, -webkit-transform 2s ease-in;
  transition: opacity 0.5s linear, filter 0.5s ease-in, transform 2s ease-in;
  transition: opacity 0.5s linear, filter 0.5s ease-in, transform 2s ease-in, -webkit-filter 0.5s ease-in, -webkit-transform 2s ease-in;
}

.recruit_home .mv {
  position: relative;
}
@media (max-width: 767px) {
  .recruit_home .mv {
    margin-bottom: -0.5vw;
    overflow: hidden;
    z-index: 1;
  }
}
.recruit_home .mv_bg {
  width: 100%;
}
.recruit_home .mv_txt {
  position: absolute;
  top: 0;
  left: 0;
}
.recruit_home .mv_txt.txt1 {
  top: 21.9271vw;
  left: 18.6458vw;
  width: 62.7417vw;
  height: 18.4491vw;
}
@media (max-width: 767px) {
  .recruit_home .mv_txt.txt1 {
    top: 82.1333vw;
    left: 3.4683vw;
    width: 93.5977vw;
    height: 29.6563vw;
  }
}
.recruit_home .mv_txt.txt2 svg {
  top: 28.851vw;
  left: 33.0625vw;
  width: 34.0031vw;
  height: 5.0875vw;
}
@media (max-width: 767px) {
  .recruit_home .mv_txt.txt2 svg {
    top: 92.5008vw;
    left: 12.4213vw;
    width: 75.4416vw;
    height: 11.2864vw;
  }
}
.recruit_home .mv_scroll_icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 19px;
  position: absolute;
  bottom: 0;
  right: 31px;
}
@media (max-width: 767px) {
  .recruit_home .mv_scroll_icon {
    gap: 10px;
    right: 10px;
  }
}
.recruit_home .mv_scroll_text {
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .recruit_home .mv_scroll_text {
    font-size: 1.2rem;
  }
}
.recruit_home .mv_scroll_line {
  position: relative;
  width: 1px;
  height: 102px;
  margin-right: 1px;
  background: #fff;
}
@media (max-width: 767px) {
  .recruit_home .mv_scroll_line {
    height: 51px;
  }
}
.recruit_home .mv_scroll_circle {
  position: absolute;
  left: 50%;
  top: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #fff;
  -webkit-transform: translate(-50%, -7px);
          transform: translate(-50%, -7px);
  -webkit-animation: scroll-down 1.5s infinite linear;
          animation: scroll-down 1.5s infinite linear;
}
@media (max-width: 767px) {
  .recruit_home .mv_scroll_circle {
    width: 7px;
    height: 7px;
    -webkit-transform: translate(-50%, -4px);
            transform: translate(-50%, -4px);
    -webkit-animation: scroll-down_sp 1.25s infinite linear;
            animation: scroll-down_sp 1.25s infinite linear;
  }
}
@-webkit-keyframes scroll-down {
  0% {
    -webkit-transform: translateY(-50%, -7px);
            transform: translateY(-50%, -7px);
  }
  100% {
    -webkit-transform: translate(-50%, 110px);
            transform: translate(-50%, 110px);
  }
}
@keyframes scroll-down {
  0% {
    -webkit-transform: translateY(-50%, -7px);
            transform: translateY(-50%, -7px);
  }
  100% {
    -webkit-transform: translate(-50%, 110px);
            transform: translate(-50%, 110px);
  }
}
@-webkit-keyframes scroll-down_sp {
  0% {
    -webkit-transform: translateY(-50%, -4px);
            transform: translateY(-50%, -4px);
  }
  100% {
    -webkit-transform: translate(-50%, 55px);
            transform: translate(-50%, 55px);
  }
}
@keyframes scroll-down_sp {
  0% {
    -webkit-transform: translateY(-50%, -4px);
            transform: translateY(-50%, -4px);
  }
  100% {
    -webkit-transform: translate(-50%, 55px);
            transform: translate(-50%, 55px);
  }
}
.recruit_home .content {
  padding-bottom: 114px;
  background: url(/recruitsite/img/home/bg2.svg) no-repeat top center/cover #f2faff;
  overflow: hidden;
}
@media (max-width: 767px) {
  .recruit_home .content {
    padding-bottom: 70px;
    background: url(/recruitsite/img/home/bg2_sp.svg) no-repeat top center/100% auto #f2faff;
  }
}
.recruit_home .content .inner {
  position: relative;
  width: 100%;
  max-width: 1760px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 767px) {
  .recruit_home .content .inner {
    padding: 0 12px;
  }
}
.recruit_home .content .hdg {
  z-index: 10;
}
@media (min-width: 768px) {
  .recruit_home .content .hdg.vertical {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
  }
}
@media (min-width: 768px) {
  .recruit_home .content .hdg.right {
    position: absolute;
    top: 100px;
    right: 51px;
  }
}
@media (min-width: 768px) {
  .recruit_home .content .hdg.right .hdg_sub {
    position: absolute;
    top: 8px;
    right: -70px;
  }
}
@media (min-width: 768px) {
  .recruit_home .content .hdg.left {
    position: relative;
    top: 79px;
    left: -24px;
  }
}
@media (min-width: 768px) {
  .recruit_home .content .hdg.left .hdg_sub {
    position: absolute;
    top: 8px;
  }
}
.recruit_home .content .hdg_sub {
  font-size: 2rem;
  font-family: "Work Sans", sans-serif;
  letter-spacing: 0.02em;
}
@media (max-width: 767px) {
  .recruit_home .content .hdg_sub {
    font-size: 1.4rem;
  }
}
.recruit_home .content .hdg h2 {
  font-size: 7rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.24em;
}
@media (max-width: 767px) {
  .recruit_home .content .hdg h2 {
    font-size: 3.2rem;
    letter-spacing: 0.14em;
  }
}
.recruit_home .content .hdg h2 span {
  color: #60b5ea;
}
.recruit_home .lead {
  position: relative;
  background: url(/recruitsite/img/home/bg1.svg) no-repeat;
  background-size: cover;
}
@media (max-width: 767px) {
  .recruit_home .lead {
    background: url(/recruitsite/img/home/bg1_sp.svg) no-repeat;
    background-size: cover;
  }
}
.recruit_home .lead::before, .recruit_home .lead::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
}
.recruit_home .lead::before {
  bottom: -16px;
  left: -61.3vw;
  width: 92px;
  height: 134px;
  background: url(/recruitsite/img/home/img_human1.svg) no-repeat;
  background-size: 100% auto;
}
@media (max-width: 767px) {
  .recruit_home .lead::before {
    bottom: -1px;
    left: -50.5vw;
    width: 65px;
    height: 94px;
  }
}
.recruit_home .lead::after {
  bottom: -16px;
  right: -50vw;
  width: 175px;
  height: 134px;
  background: url(/recruitsite/img/home/img_human2.svg) no-repeat;
  background-size: 100% auto;
}
@media (max-width: 767px) {
  .recruit_home .lead::after {
    bottom: 0;
    right: -41vw;
    width: 123px;
    height: 94px;
  }
}
.recruit_home .lead .inner {
  max-width: 874px;
  padding-top: 132px;
  padding-bottom: 144px;
}
@media (max-width: 767px) {
  .recruit_home .lead .inner {
    padding: 60px 23px 137px;
  }
}
.recruit_home .lead_hdg {
  font-size: 9rem;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  line-height: 1.32;
}
@media (max-width: 767px) {
  .recruit_home .lead_hdg {
    padding-left: 1px;
    font-size: 4.5rem;
    line-height: 1.33;
    white-space: nowrap;
  }
}
.recruit_home .lead_hdg span {
  color: #00a0e9;
}
.recruit_home .lead_hdg + .lead_txt {
  margin-top: 45px;
}
@media (max-width: 767px) {
  .recruit_home .lead_hdg + .lead_txt {
    margin-top: 33px;
  }
}
.recruit_home .lead_txt {
  margin-top: 47px;
  padding-left: 1px;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 2.09;
}
@media (max-width: 767px) {
  .recruit_home .lead_txt {
    margin-top: 32px;
    font-size: 1.6rem;
    line-height: 2;
  }
}
.recruit_home .introduction {
  position: relative;
}
.recruit_home .introduction::before, .recruit_home .introduction::after {
  content: "";
  position: absolute;
  z-index: 10;
}
.recruit_home .introduction::before {
  top: 82px;
  left: 31px;
  width: 1142px;
  height: 122px;
  background: url(/recruitsite/img/home/hdg_en1.svg) no-repeat;
  background-size: 100% auto;
}
@media (max-width: 767px) {
  .recruit_home .introduction::before {
    top: -1px;
    left: 0;
    width: 100%;
  }
}
.recruit_home .introduction::after {
  bottom: -18px;
  left: -33.8vw;
  right: 0;
  width: 245px;
  height: 100px;
  margin: auto;
  background: url(/recruitsite/img/home/img_human3.svg) no-repeat;
  background-size: 100% auto;
}
@media (max-width: 767px) {
  .recruit_home .introduction::after {
    bottom: -6px;
    left: -35.4vw;
    width: 150px;
    height: 62px;
  }
}
.recruit_home .introduction .inner {
  padding-top: 181px;
  padding-bottom: 265px;
}
@media (max-width: 767px) {
  .recruit_home .introduction .inner {
    padding-top: 61px;
    padding-bottom: 97px;
  }
}
@media (max-width: 767px) {
  .recruit_home .introduction .hdg {
    position: relative;
    margin-bottom: -15px;
    text-align: center;
    z-index: 1;
  }
}
@media (max-width: 1800px) {
  .recruit_home .introduction .hdg.right {
    right: 61px;
  }
}
@media (max-width: 767px) {
  .recruit_home .introduction .hdg.right {
    right: auto;
  }
}
@media (max-width: 767px) {
  .recruit_home .introduction .hdg h2 {
    letter-spacing: 0;
  }
}
.recruit_home .introduction_nav {
  position: relative;
}
.recruit_home .introduction_image {
  width: 100%;
  height: 43.92vw;
}
@media (min-width: 768px) {
  .recruit_home .introduction_image {
    max-height: 850px;
  }
}
@media (max-width: 767px) {
  .recruit_home .introduction_image {
    height: 53.868vw;
  }
}
.recruit_home .introduction_image_item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 980px) {
  .recruit_home .introduction_image_item {
    height: auto;
  }
}
@media (max-width: 767px) {
  .recruit_home .introduction_image_item {
    border-radius: 10px;
  }
}
.recruit_home .introduction_image_item.acitve {
  opacity: 1;
}
.recruit_home .introduction_image_item.acitve img {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.recruit_home .introduction_image_item img {
  width: 100%;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.recruit_home .introduction_list {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 866px;
  padding: 65px 20px 16px 6px;
  border-radius: 0 20px 0 0;
  background: #f2faff;
  z-index: 1;
}
@media (max-width: 980px) {
  .recruit_home .introduction_list {
    position: static;
    max-width: 100%;
    border-radius: 0;
    background: none;
  }
}
@media (max-width: 767px) {
  .recruit_home .introduction_list {
    padding: 16px 12px 0;
  }
}
.recruit_home .introduction_list_item.acitve a {
  color: #0a2466;
  opacity: 1;
}
.recruit_home .introduction_list_item.acitve a span {
  background: #0a2466;
  color: #fff;
}
.recruit_home .introduction_list_item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.16em;
}
@media (max-width: 767px) {
  .recruit_home .introduction_list_item a {
    font-size: 1.6rem;
  }
}
.recruit_home .introduction_list_item a span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 66px;
  height: 48px;
  margin-right: 30px;
  border: 1px solid #707070;
  border-radius: 18px;
  font-size: 1.7rem;
  font-family: "Work Sans", sans-serif;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .recruit_home .introduction_list_item a span {
    width: 30px;
    height: 22px;
    margin-right: 8px;
    font-size: 1.2rem;
    letter-spacing: 0.04em;
  }
}
.recruit_home .introduction_list_item + .introduction_list_item {
  margin-top: 18px;
}
.recruit_home .works {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
}
.recruit_home .works::before, .recruit_home .works::after {
  content: "";
  position: absolute;
}
.recruit_home .works::before {
  top: 34px;
  left: -10px;
  width: 122px;
  height: 572px;
  background: url(/recruitsite/img/home/hdg_en2.svg) no-repeat;
  background-size: 100% auto;
}
@media (max-width: 767px) {
  .recruit_home .works::before {
    top: 18px;
    left: -4px;
    width: 55px;
    height: 257px;
  }
}
.recruit_home .works::after {
  bottom: -10px;
  left: -75.3vw;
  right: 0;
  width: 111px;
  height: 112px;
  margin: auto;
  background: url(/recruitsite/img/home/img_human5.svg) no-repeat;
  background-size: 100% auto;
  z-index: 10;
}
@media (max-width: 767px) {
  .recruit_home .works::after {
    bottom: 0px;
    left: 12px;
    right: auto;
    width: 66px;
    height: 67px;
  }
}
.recruit_home .works .inner {
  padding-top: 175px;
  padding-bottom: 216px;
}
@media (max-width: 767px) {
  .recruit_home .works .inner {
    padding-top: 68px;
    padding-bottom: 107px;
  }
}
.recruit_home .works .hdg_sub {
  color: #042b65;
}
@media (min-width: 768px) {
  .recruit_home .works .hdg_sub {
    padding-left: 3px;
  }
}
@media (min-width: 768px) {
  .recruit_home .works .hdg h2 {
    margin-top: 17px;
  }
}
.recruit_home .works_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1400px) {
  .recruit_home .works_wrap {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.recruit_home .works_wrap_box {
  max-width: 650px;
}
@media (max-width: 1400px) {
  .recruit_home .works_wrap_box {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .recruit_home .works_wrap_box {
    padding: 0 12px;
  }
}
.recruit_home .works_wrap_box p {
  margin-top: 311px;
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0.02em;
}
@media (max-width: 1400px) {
  .recruit_home .works_wrap_box p {
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  .recruit_home .works_wrap_box p {
    margin-top: 23px;
    font-size: 1.6rem;
  }
}
.recruit_home .works_wrap_nav {
  margin: 85px 138px 0 85px;
}
@media (max-width: 1400px) {
  .recruit_home .works_wrap_nav {
    margin: 220px auto 0;
  }
}
@media (max-width: 767px) {
  .recruit_home .works_wrap_nav {
    margin: 19.46vw auto 0;
  }
}
.recruit_home .works_wrap_nav_circle {
  --r: 314;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 628px;
  height: 628px;
  border: 2px solid #0268aa;
  border-radius: 50%;
}
@media (max-width: 1600px) {
  .recruit_home .works_wrap_nav_circle {
    --r: 280;
    width: 560px;
    height: 560px;
  }
}
@media (max-width: 980px) {
  .recruit_home .works_wrap_nav_circle {
    --r: 250;
    width: 500px;
    height: 500px;
  }
}
@media (max-width: 767px) {
  .recruit_home .works_wrap_nav_circle {
    width: 65.7253vw;
    height: 65.7253vw;
  }
}
.recruit_home .works_wrap_nav_circle_center {
  position: relative;
  top: -5px;
  text-align: center;
}
@media (max-width: 767px) {
  .recruit_home .works_wrap_nav_circle_center {
    top: 1.6vw;
  }
}
@media (max-width: 1600px) {
  .recruit_home .works_wrap_nav_circle_center img {
    width: 70px;
  }
}
@media (max-width: 767px) {
  .recruit_home .works_wrap_nav_circle_center img {
    width: 10.93vw;
  }
}
.recruit_home .works_wrap_nav_circle_center p {
  margin-top: 9px;
  color: #0268aa;
  font-size: 2rem;
  font-weight: 600;
}
@media (max-width: 767px) {
  .recruit_home .works_wrap_nav_circle_center p {
    margin-top: 1.45vw;
    font-size: 1.2rem;
    font-size: 3.2vw;
  }
}
.recruit_home .works_wrap_nav_circle_item {
  --a2: calc(var(--a) * 1deg - 90deg);
  --x: calc(cos(var(--a2)) * var(--r) * 1.05px);
  --y: calc(sin(var(--a2)) * var(--r) * 1.05px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 23px;
  position: absolute;
  width: 324px;
  height: 324px;
  border-radius: 50%;
  background: #0268aa;
  color: #fff;
  translate: var(--x) var(--y);
}
@media (max-width: 1600px) {
  .recruit_home .works_wrap_nav_circle_item {
    width: 280px;
    height: 280px;
    gap: 0;
  }
}
@media (max-width: 980px) {
  .recruit_home .works_wrap_nav_circle_item {
    width: 250px;
    height: 250px;
  }
}
@media (max-width: 767px) {
  .recruit_home .works_wrap_nav_circle_item {
    --x: calc(cos(var(--a2)) * var(--r) * 0.97px);
    --y: calc(sin(var(--a2)) * var(--r) * 0.97px);
    gap: 3vw;
    width: 31.735vw;
    height: 31.735vw;
    translate: var(--x) var(--y);
  }
}
@media (min-width: 768px) {
  .recruit_home .works_wrap_nav_circle_item:hover {
    background-color: #02aa87;
    opacity: 1;
  }
}
.recruit_home .works_wrap_nav_circle_item:nth-of-type(2), .recruit_home .works_wrap_nav_circle_item:nth-of-type(4) {
  --y: calc(calc(sin(var(--a2)) * var(--r) * 1.02px) - -42.5px);
}
@media (max-width: 767px) {
  .recruit_home .works_wrap_nav_circle_item:nth-of-type(2), .recruit_home .works_wrap_nav_circle_item:nth-of-type(4) {
    --y: calc(calc(sin(var(--a2)) * var(--r) * 1.02px) - -3.5vw);
  }
}
.recruit_home .works_wrap_nav_circle_item:nth-of-type(3), .recruit_home .works_wrap_nav_circle_item:nth-of-type(5) {
  --y: calc(calc(sin(var(--a2)) * var(--r) * 1.02px) - -56.5px);
}
@media (max-width: 767px) {
  .recruit_home .works_wrap_nav_circle_item:nth-of-type(3), .recruit_home .works_wrap_nav_circle_item:nth-of-type(5) {
    --y: calc(calc(sin(var(--a2)) * var(--r) * 1.02px) - -4.7vw);
  }
}
.recruit_home .works_wrap_nav_circle_item:nth-of-type(2) {
  --x: calc(calc(cos(var(--a2)) * var(--r) * 1.02px) - -10px);
}
@media (max-width: 767px) {
  .recruit_home .works_wrap_nav_circle_item:nth-of-type(2) {
    --x: calc(calc(cos(var(--a2)) * var(--r) * 1.02px) - 0.4vw);
  }
}
@media (min-width: 768px) {
  .recruit_home .works_wrap_nav_circle_item:nth-of-type(2):hover {
    background-color: #0203aa;
  }
}
@media (min-width: 768px) {
  .recruit_home .works_wrap_nav_circle_item:nth-of-type(2):hover .works_wrap_nav_circle_item_image svg .custom_stroke {
    stroke: #0203aa;
  }
}
.recruit_home .works_wrap_nav_circle_item:nth-of-type(3) {
  --x: calc(calc(cos(var(--a2)) * var(--r) * 1.02px) - -19px);
}
@media (max-width: 767px) {
  .recruit_home .works_wrap_nav_circle_item:nth-of-type(3) {
    --x: calc(calc(cos(var(--a2)) * var(--r) * 1.02px) - -1.5vw);
  }
}
@media (min-width: 768px) {
  .recruit_home .works_wrap_nav_circle_item:nth-of-type(3):hover {
    background-color: #aa4402;
  }
}
@media (min-width: 768px) {
  .recruit_home .works_wrap_nav_circle_item:nth-of-type(3):hover .works_wrap_nav_circle_item_image svg .custom_fill {
    fill: #aa4402;
  }
}
.recruit_home .works_wrap_nav_circle_item:nth-of-type(4) {
  --x: calc(calc(cos(var(--a2)) * var(--r) * 1.02px) - 19px);
}
@media (max-width: 767px) {
  .recruit_home .works_wrap_nav_circle_item:nth-of-type(4) {
    --x: calc(calc(cos(var(--a2)) * var(--r) * 1.02px) - -0.4vw);
  }
}
@media (min-width: 768px) {
  .recruit_home .works_wrap_nav_circle_item:nth-of-type(4):hover {
    background-color: #8c701c;
  }
}
@media (min-width: 768px) {
  .recruit_home .works_wrap_nav_circle_item:nth-of-type(4):hover .works_wrap_nav_circle_item_image svg .custom_fill {
    fill: #8c701c;
  }
}
.recruit_home .works_wrap_nav_circle_item:nth-of-type(5) {
  --x: calc(calc(cos(var(--a2)) * var(--r) * 1.02px) - 10px);
}
@media (min-width: 768px) {
  .recruit_home .works_wrap_nav_circle_item:nth-of-type(5):hover {
    background-color: #aa028a;
  }
}
.recruit_home .works_wrap_nav_circle_item_image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 158px;
  height: 115px;
}
@media (max-width: 767px) {
  .recruit_home .works_wrap_nav_circle_item_image {
    width: 10.335vw;
    height: 11.335vw;
    -webkit-box-align: end;
    -webkit-align-items: end;
        -ms-flex-align: end;
            align-items: end;
  }
}
.recruit_home .works_wrap_nav_circle_item_image svg path {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .recruit_home .works_wrap_nav_circle_item_image svg {
    height: auto;
  }
}
.recruit_home .works_wrap_nav_circle_item_image span {
  position: absolute;
  top: 64px;
  right: 83px;
  font-size: 1.8rem;
  font-family: "Work Sans", sans-serif;
  letter-spacing: 0.04em;
}
@media (max-width: 1600px) {
  .recruit_home .works_wrap_nav_circle_item_image span {
    top: 45px;
  }
}
@media (max-width: 980px) {
  .recruit_home .works_wrap_nav_circle_item_image span {
    right: 55px;
  }
}
@media (max-width: 767px) {
  .recruit_home .works_wrap_nav_circle_item_image span {
    top: 3.8vw;
    right: 7.8vw;
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .recruit_home .works_wrap_nav_circle_item:nth-of-type(1) img {
    width: 62%;
  }
  .recruit_home .works_wrap_nav_circle_item:nth-of-type(2) svg {
    width: 89%;
  }
  .recruit_home .works_wrap_nav_circle_item:nth-of-type(4) img {
    width: 92%;
  }
  .recruit_home .works_wrap_nav_circle_item:nth-of-type(5) svg {
    width: 80%;
  }
}
.recruit_home .works_wrap_nav_circle_item_txt {
  position: relative;
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.8;
  letter-spacing: 0.08em;
}
@media (max-width: 767px) {
  .recruit_home .works_wrap_nav_circle_item_txt {
    font-size: 2.666vw;
    line-height: 1.6;
  }
}
.recruit_home .works_wrap_nav_circle_item_txt .arrow {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 11px;
  width: 7px;
  height: 14px;
  margin-left: 28px;
  background: url(/recruitsite/img/common/arrow_white.svg) no-repeat;
  background-size: 100% auto;
}
@media (max-width: 767px) {
  .recruit_home .works_wrap_nav_circle_item_txt .arrow {
    bottom: 0.9vw;
    width: 0.9vw;
    height: 1.8vw;
    margin-left: 2vw;
  }
}
.recruit_home .works_nav {
  position: relative;
  margin-top: 229px;
}
@media (max-width: 767px) {
  .recruit_home .works_nav {
    margin-top: 25vw;
  }
}
.recruit_home .works_nav img {
  border-radius: 20px;
}
@media (max-width: 767px) {
  .recruit_home .works_nav img {
    border-radius: 10px;
  }
}
.recruit_home .works_nav_label {
  position: absolute;
  top: 0;
  right: 0;
  padding: 23px 40px 26px 32px;
  border-radius: 0 20px 0 10px;
  background: #0a2466;
  color: #fff;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .recruit_home .works_nav_label {
    padding: 5px 18px 5px 19px;
    border-radius: 0 10px 0 10px;
    font-size: 1.2rem;
  }
}
.recruit_home .works_nav_list {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  max-width: 784px;
  padding: 52px 20px 33px 49px;
  border-radius: 20px 0 18px 0;
  background: #fff;
  z-index: 1;
}
@media (max-width: 980px) {
  .recruit_home .works_nav_list {
    position: static;
    max-width: 100%;
    border-radius: 0;
    background: none;
  }
}
@media (max-width: 767px) {
  .recruit_home .works_nav_list {
    padding: 16px 12px 0;
  }
}
@media (min-width: 768px) {
  .recruit_home .works_nav_list_item:hover a {
    color: #0a2466;
    opacity: 1;
  }
  .recruit_home .works_nav_list_item:hover a span {
    background: #0a2466;
    color: #fff;
  }
}
.recruit_home .works_nav_list_item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.16em;
}
@media (max-width: 767px) {
  .recruit_home .works_nav_list_item a {
    font-size: 1.6rem;
  }
}
.recruit_home .works_nav_list_item a span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 66px;
  height: 48px;
  margin-right: 30px;
  border: 1px solid #707070;
  border-radius: 18px;
  font-size: 1.7rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .recruit_home .works_nav_list_item a span {
    width: 30px;
    height: 22px;
    margin-right: 8px;
    font-size: 1.2rem;
    letter-spacing: 0.04em;
  }
}
.recruit_home .people {
  position: relative;
  margin-top: 173px;
  height: 960px;
  background: rgb(25, 107, 188);
  background: -webkit-linear-gradient(283deg, rgb(25, 107, 188) 0%, rgb(19, 77, 134) 100%);
  background: linear-gradient(167deg, rgb(25, 107, 188) 0%, rgb(19, 77, 134) 100%);
  overflow: hidden;
  z-index: 1;
}
@media (max-width: 767px) {
  .recruit_home .people {
    margin-top: 70px;
    height: auto;
  }
}
.recruit_home .people::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 18px;
  width: 607px;
  height: 126px;
  background: url(/recruitsite/img/home/hdg_en3.svg) no-repeat;
  background-size: 100% auto;
}
@media (max-width: 767px) {
  .recruit_home .people::before {
    top: -2px;
    left: -2px;
    width: 254px;
    height: 53px;
  }
}
.recruit_home .people .inner {
  height: 100%;
}
@media (max-width: 767px) {
  .recruit_home .people .hdg {
    padding: 18px 12px 0;
  }
}
.recruit_home .people .hdg_sub {
  color: #fff;
}
.recruit_home .people .hdg h2 {
  color: #fff;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .recruit_home .people .hdg h2 {
    line-height: 1.4;
  }
}
.recruit_home .people_gallery {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 50px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 5px;
  right: 0;
  width: 100%;
  max-width: 808px;
  height: 100%;
  margin: auto;
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
}
@media (max-width: 767px) {
  .recruit_home .people_gallery {
    margin: 24px 0;
    position: relative;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-flow: column-reverse;
        -ms-flex-flow: column-reverse;
            flex-flow: column-reverse;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    top: 0;
    bottom: 0;
    height: auto;
    max-width: 100%;
    gap: 23px;
  }
}
.recruit_home .people_swiper {
  width: 377px;
  height: 100%;
  margin: 0;
  overflow: visible !important;
}
@media (max-width: 767px) {
  .recruit_home .people_swiper {
    width: 100%;
    height: auto;
  }
}
.recruit_home .people_swiper_wrap {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.recruit_home .people_swiper_slide {
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .recruit_home .people_swiper_slide {
    width: 116px;
    border-radius: 5px;
  }
}
.recruit_home .people_swiper_slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.recruit_home .people_nav_list {
  position: absolute;
  bottom: 128px;
  right: 0;
  width: 100%;
  max-width: 497px;
  z-index: 1;
}
@media (max-width: 767px) {
  .recruit_home .people_nav_list {
    position: relative;
    bottom: 0;
    right: 0;
    padding: 0 12px 69px;
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .recruit_home .people_nav_list_item:hover a {
    opacity: 1;
  }
  .recruit_home .people_nav_list_item:hover a span {
    background: #fff;
    color: #0a2466;
  }
}
.recruit_home .people_nav_list_item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.16em;
}
@media (max-width: 767px) {
  .recruit_home .people_nav_list_item a {
    font-size: 1.4rem;
  }
}
.recruit_home .people_nav_list_item a span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 66px;
  height: 48px;
  margin-right: 30px;
  border: 1px solid #fff;
  border-radius: 18px;
  font-size: 1.7rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .recruit_home .people_nav_list_item a span {
    width: 30px;
    height: 22px;
    margin-right: 8px;
    font-size: 1.2rem;
    letter-spacing: 0.04em;
  }
}
.recruit_home .people_nav_list_item + .people_nav_list_item {
  margin-top: 27px;
}
@media (max-width: 767px) {
  .recruit_home .people_nav_list_item + .people_nav_list_item {
    margin-top: 16px;
  }
}
.recruit_home .environment {
  position: relative;
}
.recruit_home .environment::before, .recruit_home .environment::after {
  content: "";
  position: absolute;
}
.recruit_home .environment::before {
  top: -9px;
  left: 24px;
  width: 1186px;
  height: 128px;
  background: url(/recruitsite/img/home/hdg_en4.svg) no-repeat;
  background-size: 100% auto;
}
@media (max-width: 767px) {
  .recruit_home .environment::before {
    width: 108%;
    top: -3px;
    left: -4%;
  }
}
.recruit_home .environment::after {
  bottom: 326px;
  left: -37.5vw;
  right: 0;
  width: 184px;
  height: 125px;
  margin: auto;
  background: url(/recruitsite/img/home/img_human6.svg) no-repeat;
  background-size: 100% auto;
  z-index: 10;
}
@media (max-width: 767px) {
  .recruit_home .environment::after {
    content: none;
  }
}
.recruit_home .environment .inner {
  padding-top: 278px;
  padding-bottom: 546px;
}
@media (max-width: 767px) {
  .recruit_home .environment .inner {
    padding-top: 60px;
    padding-bottom: 70px;
  }
}
@media (max-width: 767px) {
  .recruit_home .environment .hdg {
    padding: 0 12px;
  }
}
.recruit_home .environment .hdg_sub {
  padding-left: 3px;
  color: #042b65;
}
.recruit_home .environment .hdg h2 {
  margin-top: 17px;
}
@media (max-width: 767px) {
  .recruit_home .environment .hdg h2 {
    margin-top: 0;
  }
}
.recruit_home .environment_wrap {
  position: relative;
  width: 100%;
}
.recruit_home .environment_list {
  width: 100%;
  max-width: 588px;
  margin-top: 200px;
}
@media (max-width: 1500px) {
  .recruit_home .environment_list {
    max-width: 1058px;
    margin: 40px auto 0;
  }
}
@media (max-width: 767px) {
  .recruit_home .environment_list {
    margin-top: 25px;
    padding: 0 12px;
  }
}
.recruit_home .environment_list_item.acitve a {
  color: #0a2466;
  opacity: 1;
}
.recruit_home .environment_list_item.acitve a span {
  background: #0a2466;
  color: #fff;
}
@media (min-width: 768px) {
  .recruit_home .environment_list_item:hover a {
    color: #0a2466;
    opacity: 1;
  }
  .recruit_home .environment_list_item:hover a span {
    background: #0a2466;
    color: #fff;
  }
}
.recruit_home .environment_list_item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.16em;
}
@media (max-width: 767px) {
  .recruit_home .environment_list_item a {
    font-size: 1.4rem;
  }
}
.recruit_home .environment_list_item a span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 66px;
  height: 48px;
  margin-right: 30px;
  border: 1px solid #707070;
  border-radius: 18px;
  font-size: 1.7rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .recruit_home .environment_list_item a span {
    width: 30px;
    height: 22px;
    margin-right: 8px;
    font-size: 1.2rem;
    letter-spacing: 0.04em;
  }
}
.recruit_home .environment_list_item + .environment_list_item {
  margin-top: 18px;
}
@media (max-width: 767px) {
  .recruit_home .environment_gallery_wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-flow: column-reverse;
        -ms-flex-flow: column-reverse;
            flex-flow: column-reverse;
  }
}
.recruit_home .environment_gallery {
  position: absolute;
  top: 5px;
  right: -2px;
  width: 54.621vw;
  max-width: 1058px;
}
@media (max-width: 1500px) {
  .recruit_home .environment_gallery {
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
    margin: 60px auto 0;
  }
  .recruit_home .environment_gallery::after {
    content: "";
    position: absolute;
    top: -57px;
    right: 0;
    width: 84px;
    height: 57px;
    margin: auto;
    background: url(/recruitsite/img/home/img_human6.svg) no-repeat;
    background-size: 100% auto;
    z-index: 10;
  }
}
@media (max-width: 767px) {
  .recruit_home .environment_gallery {
    margin-top: 35px;
  }
}
.recruit_home .environment_gallery_container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 42.5401vw;
  max-width: 824px;
  margin: 40px 0 0 auto;
}
@media (max-width: 1500px) {
  .recruit_home .environment_gallery_container {
    gap: 14px;
    width: 100%;
    margin: 20px auto 0;
  }
}
@media (max-width: 767px) {
  .recruit_home .environment_gallery_container {
    gap: 8px;
    width: 78%;
    margin: 8px 0 0 auto;
  }
}
.recruit_home .environment_gallery_sub {
  width: 13.63vw;
  max-width: 265px;
}
@media (max-width: 1500px) {
  .recruit_home .environment_gallery_sub {
    width: calc(33.3333333333% - 14px);
  }
}
@media (max-width: 767px) {
  .recruit_home .environment_gallery_sub {
    width: calc(33.3333333333% - 5px);
  }
}
.recruit_home .environment_gallery_sub.acitve {
  display: none;
}
.recruit_home .recruit {
  position: relative;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
}
.recruit_home .recruit::before, .recruit_home .recruit::after {
  content: "";
  position: absolute;
}
.recruit_home .recruit::before {
  top: -69px;
  right: -3px;
  width: 123px;
  height: 654px;
  background: url(/recruitsite/img/home/hdg_en5.svg) no-repeat;
  background-size: 100% auto;
  z-index: 10;
}
@media (max-width: 767px) {
  .recruit_home .recruit::before {
    top: -16px;
    left: -3px;
    right: auto;
    width: 55px;
    height: 282px;
  }
}
.recruit_home .recruit::after {
  bottom: -26px;
  left: 0;
  right: -69.8vw;
  width: 162px;
  height: 155px;
  margin: auto;
  background: url(/recruitsite/img/home/img_human7.svg) no-repeat;
  background-size: 100% auto;
  z-index: 10;
}
@media (max-width: 767px) {
  .recruit_home .recruit::after {
    width: 67px;
    height: 64px;
    bottom: -10px;
    right: 12px;
    left: auto;
  }
}
.recruit_home .recruit .inner {
  padding-bottom: 170px;
}
@media (max-width: 767px) {
  .recruit_home .recruit .inner {
    padding-top: 63px;
    padding-bottom: 68px;
  }
}
.recruit_home .recruit .hdg.right {
  top: -74px;
  right: 113px;
}
@media (max-width: 767px) {
  .recruit_home .recruit .hdg.right {
    top: 0;
    right: 0;
    padding: 0 12px;
  }
}
.recruit_home .recruit_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 110px;
  position: relative;
  top: -55px;
}
@media (max-width: 1400px) {
  .recruit_home .recruit_wrap {
    display: block;
  }
}
@media (max-width: 767px) {
  .recruit_home .recruit_wrap {
    top: 0;
    margin-top: 18px;
  }
}
.recruit_home .recruit_image {
  position: relative;
  width: 47.755vw;
}
@media (max-width: 1400px) {
  .recruit_home .recruit_image {
    width: 100%;
    max-width: 608px;
    max-width: 783px;
    padding-right: 175px;
  }
}
@media (max-width: 767px) {
  .recruit_home .recruit_image {
    max-width: 100%;
    padding-right: 0;
  }
}
.recruit_home .recruit_image img {
  border-radius: 20px;
}
@media (max-width: 767px) {
  .recruit_home .recruit_image img {
    border-radius: 10px;
  }
}
.recruit_home .recruit_image_label {
  position: absolute;
  top: 0;
  right: 0;
  padding: 23px 47px 26px 42px;
  border-radius: 0 20px 0 10px;
  background: #0a2466;
  color: #fff;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
}
@media (max-width: 1400px) {
  .recruit_home .recruit_image_label {
    right: 175px;
  }
}
@media (max-width: 767px) {
  .recruit_home .recruit_image_label {
    right: 0;
    font-size: 1.2rem;
    padding: 5px 17px;
    border-radius: 0 10px 0 10px;
  }
}
.recruit_home .recruit_image .recruit_list {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 658px;
  padding: 54px 0 40px;
  border-radius: 0 20px 0 0;
  background: #fff;
}
@media (max-width: 1400px) {
  .recruit_home .recruit_image .recruit_list {
    display: none;
  }
}
.recruit_home .recruit_list {
  width: 100%;
  max-width: 588px;
  margin-top: 200px;
}
@media (max-width: 1400px) {
  .recruit_home .recruit_list {
    width: 100%;
    max-width: 100%;
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .recruit_home .recruit_list {
    margin-top: 25px;
    padding: 0 12px;
  }
}
@media (min-width: 768px) {
  .recruit_home .recruit_list_item:hover a {
    color: #60b5ea;
    opacity: 1;
  }
  .recruit_home .recruit_list_item:hover a span {
    border-color: #60b5ea;
    background: #60b5ea;
    color: #fff;
  }
}
.recruit_home .recruit_list_item.first {
  display: none;
}
@media (max-width: 1400px) {
  .recruit_home .recruit_list_item.first {
    display: block;
  }
}
.recruit_home .recruit_list_item a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.16em;
}
@media (max-width: 767px) {
  .recruit_home .recruit_list_item a {
    font-size: 1.4rem;
  }
}
.recruit_home .recruit_list_item a span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 66px;
  height: 48px;
  margin-right: 30px;
  border: 1px solid #707070;
  border-radius: 18px;
  font-size: 1.7rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .recruit_home .recruit_list_item a span {
    width: 30px;
    height: 22px;
    margin-right: 8px;
    font-size: 1.2rem;
    letter-spacing: 0.04em;
  }
}
.recruit_home .recruit_list_item + .recruit_list_item {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .recruit_home .recruit_list_item + .recruit_list_item {
    margin-top: 18px;
  }
}