@charset "UTF-8";
.ps {
  overflow: hidden;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto;
}

.ps__rail-x {
  display: none;
  opacity: 0;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  height: 15px;
  bottom: 0px;
  position: absolute;
}

.ps__rail-y {
  display: none;
  opacity: 0;
  transition: background-color 0.2s linear, opacity 0.2s linear;
  -webkit-transition: background-color 0.2s linear, opacity 0.2s linear;
  width: 15px;
  right: 0;
  position: absolute;
}

.ps--active-x > .ps__rail-x, .ps--active-y > .ps__rail-y {
  display: block;
  background-color: transparent;
}

.ps--focus > .ps__rail-x, .ps--focus > .ps__rail-y, .ps--scrolling-x > .ps__rail-x, .ps--scrolling-y > .ps__rail-y, .ps:hover > .ps__rail-x, .ps:hover > .ps__rail-y {
  opacity: 0.6;
}

.ps .ps__rail-x.ps--clicking, .ps .ps__rail-x:focus, .ps .ps__rail-x:hover, .ps .ps__rail-y.ps--clicking, .ps .ps__rail-y:focus, .ps .ps__rail-y:hover {
  background-color: #eee;
  opacity: 0.9;
}

.ps__thumb-x {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color 0.2s linear, height 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s linear, height 0.2s ease-in-out;
  height: 6px;
  bottom: 2px;
  position: absolute;
}

.ps__thumb-y {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color 0.2s linear, width 0.2s ease-in-out;
  -webkit-transition: background-color 0.2s linear, width 0.2s ease-in-out;
  width: 6px;
  right: 2px;
  position: absolute;
}

.ps__rail-x.ps--clicking .ps__thumb-x, .ps__rail-x:focus > .ps__thumb-x, .ps__rail-x:hover > .ps__thumb-x {
  background-color: #999;
  height: 11px;
}

.ps__rail-y.ps--clicking .ps__thumb-y, .ps__rail-y:focus > .ps__thumb-y, .ps__rail-y:hover > .ps__thumb-y {
  background-color: #999;
  width: 11px;
}

@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}
@media (-ms-high-contrast: none), screen and (-ms-high-contrast: active) {
  .ps {
    overflow: auto !important;
  }
}
/*********************************************
common
*********************************************/
.inner-1000 {
  position: relative;
  width: 1000px;
  margin: 0 auto;
  text-align: left;
  z-index: 8;
  min-height: 10px;
}
@media screen and (max-width: 1054px) {
  .inner-1000 {
    width: auto;
    margin: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .inner-1000 {
    margin: 0 5.3333333333vw;
  }
}

.inner-1320 {
  position: relative;
  width: 1320px;
  margin: 0 auto;
  text-align: left;
  z-index: 8;
  min-height: 10px;
}
@media screen and (max-width: 1374px) {
  .inner-1320 {
    width: auto;
    margin: 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .inner-1320 {
    margin: 0 5.3333333333vw;
  }
}

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

.header .header-logo {
  width: 409px;
}
@media screen and (min-width: 768px) and (max-width: 1440px) {
  .header .header-logo {
    width: 28.3094098884vw;
  }
}
@media screen and (max-width: 767px) {
  .header .header-logo {
    width: 72.8vw;
  }
}
.header .header-nav ul.-main li a {
  position: relative;
}
@media screen and (max-width: 767px) {
  .header .header-nav ul.-main li a::before {
    display: block;
    content: "";
    position: absolute;
    background: url(../img/common/icon_arrow_r.svg) 0 center no-repeat;
    background-size: 100% auto;
    right: 0;
    top: 50%;
    width: 4.2666666667vw;
    height: 3.2vw;
    margin-top: -1.6vw;
  }
}
@media screen and (max-width: 767px) {
  .header .header-sp__assets ul li.-corporate a {
    width: 100%;
  }
}

@media screen and (min-width: 768px) and (max-width: 1254px) {
  .footer-wave {
    -webkit-transform: scale(5.5, 1.3);
    transform: scale(5.5, 1.3);
  }
}

/*********************************************
loading / overlay
*********************************************/
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1002;
  opacity: 1;
  pointer-events: none;
  background: #fff;
  -webkit-transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}
#loading.loaded {
  opacity: 0;
}

/*********************************************
header
*********************************************/
.header {
  -webkit-transition: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -webkit-transition-delay: 2.5s;
          transition-delay: 2.5s;
  opacity: 0;
  top: -100px;
}
.header.loaded {
  top: 0;
  opacity: 1;
}

/*********************************************
contents-footer{
*********************************************/
.contents-footer {
  overflow: clip;
  padding-top: 0;
}

/*********************************************
cover
*********************************************/
.career-cover {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .career-cover {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(rgb(255, 255, 255)));
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0), rgb(255, 255, 255));
  }
}

/*********************************************
mv
*********************************************/
.career-mv {
  height: 100vh;
  z-index: 1;
  position: sticky;
  top: 0;
  left: 0;
  background: #0096DF;
}
.career-mv.is-hide {
  opacity: 0;
}

.career-mv__img {
  -webkit-transition: 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  -webkit-transition-delay: 2.3s;
          transition-delay: 2.3s;
  -webkit-filter: blur(16px);
          filter: blur(16px);
}
.career-mv__img img {
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.career-mv__img.loaded {
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
}
.career-mv__txt {
  position: absolute;
  width: 100%;
  height: 265px;
  left: 0;
  top: 336px;
  text-align: right;
  z-index: 10;
  -webkit-transition: translate 1s ease, opacity 0.8s ease, -webkit-filter 1s ease-out;
  transition: translate 1s ease, opacity 0.8s ease, -webkit-filter 1s ease-out;
  transition: translate 1s ease, filter 1s ease-out, opacity 0.8s ease;
  transition: translate 1s ease, filter 1s ease-out, opacity 0.8s ease, -webkit-filter 1s ease-out;
  -webkit-transition-delay: 1.5s;
          transition-delay: 1.5s;
  -webkit-filter: blur(5px);
          filter: blur(5px);
  translate: 0 10%;
  opacity: 0;
}
.career-mv__txt.loaded {
  translate: 0 0;
  -webkit-filter: blur(0);
          filter: blur(0);
  opacity: 1;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-mv__txt {
    height: 21.1323763955vw;
    top: 26.7942583732vw;
  }
}
@media screen and (max-width: 1024px) {
  .career-mv__txt {
    height: 36.8vw;
    top: auto;
    bottom: 16vw;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .career-mv__txt {
    bottom: 33.0666666667vw;
  }
}
.career-mv__txt p {
  width: 529px;
  margin-left: auto;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-mv__txt p {
    width: 42.1850079745vw;
  }
}
@media screen and (max-width: 1024px) {
  .career-mv__txt p {
    width: 104vw;
    max-width: 80%;
    margin-right: auto;
  }
}
@media screen and (max-width: 767px) {
  .career-mv__txt p {
    max-width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .career-mv__txt .inner-1200 {
    margin: 0;
  }
}

/*********************************************
message
*********************************************/
.career-message {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(84, 194, 240, 0)), color-stop(12%, rgba(0, 150, 223, 0.8)), to(rgba(0, 150, 223, 0.8)));
  background: linear-gradient(rgba(84, 194, 240, 0) 0%, rgba(0, 150, 223, 0.8) 12%, rgba(0, 150, 223, 0.8) 100%);
  color: #fff;
  position: relative;
  z-index: 3;
  padding-top: 245px;
  padding-bottom: 175px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-message {
    padding-top: 19.5374800638vw;
    padding-bottom: 13.9553429027vw;
  }
}
@media screen and (max-width: 767px) {
  .career-message {
    padding-top: 45.3333333333vw;
    padding-bottom: 30.6666666667vw;
  }
}

.career-message__layout {
  width: 529px;
  margin-left: auto;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-message__layout {
    width: 42.1850079745vw;
  }
}
@media screen and (max-width: 767px) {
  .career-message__layout {
    width: 100%;
  }
}

.career-message__txt {
  font-size: 17px;
  line-height: 2.3529411765;
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-message__txt {
    font-size: 1.355661882vw;
    margin-bottom: 3.9872408293vw;
  }
}
@media screen and (max-width: 767px) {
  .career-message__txt {
    font-size: 4vw;
    margin-bottom: 13.3333333333vw;
  }
}
.career-message__copy {
  font-size: 20px;
  line-height: 2;
  font-weight: 900;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-message__copy {
    font-size: 1.5948963317vw;
  }
}
@media screen and (max-width: 767px) {
  .career-message__copy {
    font-size: 5.3333333333vw;
  }
}
/*********************************************
common
*********************************************/
.career-sec__ttl {
  z-index: 1;
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-sec__ttl {
    margin-bottom: 3.1897926635vw;
  }
}
@media screen and (max-width: 767px) {
  .career-sec__ttl {
    text-align: center;
    margin-bottom: 10.6666666667vw;
  }
}
@media (orientation: landscape) and (max-width: 767px) {
  .career-sec__ttl {
    margin-bottom: 40px;
  }
}
.career-sec__ttl span {
  display: block;
}
.career-sec__ttl span.-en-txt {
  font-family: "Prompt", sans-serif;
  font-size: 26px;
  color: #0096DF;
  font-weight: 400;
  margin-top: 0.3em;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-sec__ttl span.-en-txt {
    font-size: 2.0733652313vw;
  }
}
@media screen and (max-width: 767px) {
  .career-sec__ttl span.-en-txt {
    font-size: 6.9333333333vw;
  }
}
@media (orientation: landscape) and (max-width: 767px) {
  .career-sec__ttl span.-en-txt {
    font-size: 26px;
  }
}
.career-sec__ttl span.-ja-txt {
  font-size: 50px;
  font-weight: 700;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-sec__ttl span.-ja-txt {
    font-size: 3.9872408293vw;
  }
}
@media screen and (max-width: 767px) {
  .career-sec__ttl span.-ja-txt {
    font-size: 8.5333333333vw;
    line-height: 1.5;
  }
}
@media (orientation: landscape) and (max-width: 767px) {
  .career-sec__ttl span.-ja-txt {
    font-size: 32px;
  }
}
.career-sec__ttl.txt-left {
  text-align: left;
}

/*********************************************
about
*********************************************/
.career-about {
  position: relative;
  width: 100%;
  z-index: 4;
  background: #fff;
  padding-top: 60px;
  padding-bottom: 100px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-about {
    padding-top: 4.7846889952vw;
    padding-bottom: 7.9744816587vw;
  }
}
@media screen and (max-width: 767px) {
  .career-about {
    padding-top: 8vw;
    padding-bottom: 16vw;
  }
}
.career-about .footer-wave {
  top: -610px;
}
.career-about .footer-wave svg {
  position: absolute;
}
.career-about .footer-wave svg:first-child {
  z-index: 2;
}
.career-about .footer-wave svg:last-child {
  z-index: 1;
}
.career-about .footer-wave svg:last-child path {
  opacity: 0.4;
  -webkit-animation: wave_svg linear 7s 0.4s infinite;
          animation: wave_svg linear 7s 0.4s infinite;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-about .footer-wave {
    top: -310px;
  }
}
@media screen and (max-width: 767px) {
  .career-about .footer-wave {
    top: -310px;
  }
}

.career-about__layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -15px;
  margin-bottom: 80px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-about__layout {
    margin-left: -1.1961722488vw;
    margin-bottom: 6.379585327vw;
  }
}
@media screen and (max-width: 767px) {
  .career-about__layout {
    margin-left: 0;
    margin-top: -5.3333333333vw;
    margin-bottom: 16vw;
  }
}

.career-about__item {
  width: calc(33.333% - 15px);
  margin-left: 15px;
  padding: 30px 0 40px;
  border-radius: 10px;
  background: -webkit-gradient(linear, left top, right top, from(#54c2f0), to(#0096df));
  background: linear-gradient(to right, #54c2f0 0%, #0096df 100%);
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-about__item {
    width: calc(33.333% - 1.1961722488vw);
    margin-left: 1.1961722488vw;
    padding: 2.3923444976vw 0 3.1897926635vw;
    border-radius: 0.7974481659vw;
  }
}
@media screen and (max-width: 767px) {
  .career-about__item {
    width: 100%;
    margin-left: 0;
    margin-top: 5.3333333333vw;
    padding: 8vw;
    border-radius: 2.6666666667vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.career-about__item img {
  width: 120px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-about__item img {
    width: 9.5693779904vw;
  }
}
@media screen and (max-width: 767px) {
  .career-about__item img {
    width: 26.6666666667vw;
    margin: 0;
  }
}
.career-about__item-copy {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-about__item-copy {
    font-size: 1.9138755981vw;
    margin-top: 1.5948963317vw;
    margin-bottom: 1.5948963317vw;
  }
}
@media screen and (max-width: 767px) {
  .career-about__item-copy {
    font-size: 5.3333333333vw;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: auto;
    width: 42.6666666667vw;
    text-align: left;
  }
}
.career-about__item-txt {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5625;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-about__item-txt {
    font-size: 1.2759170654vw;
  }
}
@media screen and (max-width: 767px) {
  .career-about__item-txt {
    width: 100%;
    font-size: 4vw;
    margin-top: 5.3333333333vw;
    line-height: 1.6;
  }
}

.career-about__data {
  -webkit-transition: 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  height: 425px;
  overflow: hidden;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-about__data {
    height: 33.8915470494vw;
  }
}
@media screen and (max-width: 1024px) {
  .career-about__data {
    height: 542px;
  }
}
@media screen and (max-width: 767px) {
  .career-about__data {
    height: 179.2vw;
  }
}
.career-about__data .career-about__data-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: -15px;
  margin-left: -15px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-about__data .career-about__data-inner {
    margin-top: -1.1961722488vw;
    margin-left: -1.1961722488vw;
  }
}
@media screen and (max-width: 1024px) {
  .career-about__data .career-about__data-inner {
    margin-top: -15px;
    margin-left: -15px;
  }
}
@media screen and (max-width: 767px) {
  .career-about__data .career-about__data-inner {
    margin-top: -4vw;
    margin-left: -4vw;
  }
}
@media screen and (max-width: 767px) {
  .career-about__data .js-child-first {
    opacity: 0;
    -webkit-transition: opacity 0.9s 0s ease-out, -webkit-transform 0.9s 0s ease-out;
    transition: opacity 0.9s 0s ease-out, -webkit-transform 0.9s 0s ease-out;
    transition: opacity 0.9s 0s ease-out, transform 0.9s 0s ease-out;
    transition: opacity 0.9s 0s ease-out, transform 0.9s 0s ease-out, -webkit-transform 0.9s 0s ease-out;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  .career-about__data .js-child-first.is-active {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

.career-about__data-layout04 {
  width: 255px;
  margin-top: 15px;
  margin-left: 15px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-about__data-layout04 {
    width: 20.3349282297vw;
    margin-top: 1.1961722488vw;
    margin-left: 1.1961722488vw;
  }
}
@media screen and (max-width: 1024px) {
  .career-about__data-layout04 {
    width: calc(50% - 15px);
    margin-top: 15px;
    margin-left: 15px;
  }
}
@media screen and (max-width: 767px) {
  .career-about__data-layout04 {
    width: calc(50% - 4vw);
    margin-top: 4vw;
    margin-left: 4vw;
  }
}

.career-about__data-layout03 {
  width: calc(33.333% - 15px);
  margin-top: 15px;
  margin-left: 15px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-about__data-layout03 {
    width: calc(33.333% - 1.1961722488vw);
    margin-top: 1.1961722488vw;
    margin-left: 1.1961722488vw;
  }
}
@media screen and (max-width: 1024px) {
  .career-about__data-layout03 {
    width: calc(50% - 15px);
    margin-top: 15px;
    margin-left: 15px;
  }
}
@media screen and (max-width: 767px) {
  .career-about__data-layout03 {
    width: calc(50% - 4vw);
    margin-top: 4vw;
    margin-left: 4vw;
  }
}

.career-about__data-layout02 {
  width: calc(50% - 15px);
  margin-top: 15px;
  margin-left: 15px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-about__data-layout02 {
    width: calc(50% - 1.1961722488vw);
    margin-top: 1.1961722488vw;
    margin-left: 1.1961722488vw;
  }
}
@media screen and (max-width: 1024px) {
  .career-about__data-layout02 {
    width: calc(50% - 15px);
    margin-top: 15px;
    margin-left: 15px;
  }
}
@media screen and (max-width: 767px) {
  .career-about__data-layout02 {
    width: calc(50% - 4vw);
    margin-top: 4vw;
    margin-left: 4vw;
  }
}

@media screen and (max-width: 1024px) {
  .career-about__data-layout01_sp {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .career-about__data-layout01_sp {
    width: 100%;
    padding-left: 5.3333333333vw;
    padding-right: 5.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .career-about__data-layout01_sp .num {
    font-size: 16vw !important;
  }
}

.career-about__data-ttl {
  padding: 0 50px;
  width: 390px;
  margin-top: 15px;
  margin-left: 15px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-about__data-ttl {
    padding: 0 3.9872408293vw;
    width: 31.1004784689vw;
    margin-top: 1.1961722488vw;
    margin-left: 1.1961722488vw;
  }
}
@media screen and (max-width: 1024px) {
  .career-about__data-ttl {
    padding: 0;
    width: calc(50% - 15px);
    margin-top: 15px;
    margin-left: 15px;
  }
}
@media screen and (max-width: 767px) {
  .career-about__data-ttl {
    padding: 0;
    width: calc(50% - 4vw);
    margin-top: 4vw;
    margin-left: 4vw;
  }
}
.career-about__data-ttl h3 span {
  display: block;
}
.career-about__data-ttl h3 span.-en-txt {
  font-family: "Prompt", sans-serif;
  font-size: 100px;
  color: #0096DF;
  font-weight: 200;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-about__data-ttl h3 span.-en-txt {
    font-size: 7.9744816587vw;
  }
}
@media screen and (max-width: 767px) {
  .career-about__data-ttl h3 span.-en-txt {
    font-size: 16vw;
  }
}
@media (orientation: landscape) and (max-width: 767px) {
  .career-about__data-ttl h3 span.-en-txt {
    font-size: 60px;
  }
}
.career-about__data-ttl h3 span.-ja-txt {
  font-size: 24px;
  font-weight: 700;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-about__data-ttl h3 span.-ja-txt {
    font-size: 1.9138755981vw;
  }
}
@media screen and (max-width: 767px) {
  .career-about__data-ttl h3 span.-ja-txt {
    font-size: 4.2666666667vw;
  }
}
@media (orientation: landscape) and (max-width: 767px) {
  .career-about__data-ttl h3 span.-ja-txt {
    font-size: 16px;
  }
}

.career-about__data-parts {
  background: #E5F6FF;
  border-radius: 10px;
  padding: 30px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-about__data-parts {
    border-radius: 0.7974481659vw;
    padding: 2.3923444976vw;
  }
}
@media screen and (max-width: 767px) {
  .career-about__data-parts {
    border-radius: 2.6666666667vw;
    padding: 5.3333333333vw 4vw;
  }
}
.career-about__data-parts dl dt {
  font-weight: 700;
  line-height: 1;
  font-size: 20px;
  margin-bottom: 20px;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-about__data-parts dl dt {
    font-size: 1.5948963317vw;
    margin-bottom: 1.5948963317vw;
  }
}
@media screen and (max-width: 767px) {
  .career-about__data-parts dl dt {
    font-size: 4.2666666667vw;
    margin-bottom: 4.2666666667vw;
  }
}
.career-about__data-parts dl dd {
  font-size: 25px;
  text-align: right;
  white-space: nowrap;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-about__data-parts dl dd {
    font-size: 1.9936204147vw;
  }
}
@media screen and (max-width: 767px) {
  .career-about__data-parts dl dd {
    font-size: 4.2666666667vw;
  }
}
.career-about__data-parts dl dd.sepa_pc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .career-about__data-parts dl dd.sepa_pc {
    display: block;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .career-about__data-parts dl dd.sepa_pc img {
    margin-bottom: 2.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .career-about__data-parts dl dd.sepa_sp {
    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;
  }
}
.career-about__data-parts dl dd .note {
  font-size: 14px;
  font-weight: 400;
  position: absolute;
  right: -20px;
  bottom: -20px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-about__data-parts dl dd .note {
    font-size: 1.1164274322vw;
    right: -1.5948963317vw;
    bottom: -1.5948963317vw;
  }
}
@media screen and (max-width: 767px) {
  .career-about__data-parts dl dd .note {
    font-size: 3.2vw;
    right: -2.6666666667vw;
    bottom: -3.2vw;
  }
}
.career-about__data-parts dl dd .num {
  font-family: "Prompt", sans-serif;
  font-size: 80px;
  color: #0096DF;
  font-weight: 200;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-about__data-parts dl dd .num {
    font-size: 6.379585327vw;
  }
}
@media screen and (max-width: 767px) {
  .career-about__data-parts dl dd .num {
    font-size: 13.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .career-about__data-parts dl dd .num_small {
    font-size: 10.6666666667vw;
  }
}
.career-about__data-parts dl dd .label {
  font-weight: 700;
  font-size: 25px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-about__data-parts dl dd .label {
    font-size: 1.9936204147vw;
  }
}
@media screen and (max-width: 767px) {
  .career-about__data-parts dl dd .label {
    font-size: 4.2666666667vw;
  }
}
.career-about__data-parts dl dd .bar {
  overflow: hidden;
  border-radius: 10px;
  height: 90px;
  background: #BDC7D8;
  position: relative;
  color: #fff;
  font-size: 25px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-about__data-parts dl dd .bar {
    border-radius: 0.7974481659vw;
    height: 7.1770334928vw;
    font-size: 1.9936204147vw;
  }
}
@media screen and (max-width: 767px) {
  .career-about__data-parts dl dd .bar {
    border-radius: 2.6666666667vw;
    height: 24vw;
    font-size: 4.2666666667vw;
  }
}
.career-about__data-parts dl dd .bar:before {
  content: "";
  width: 0;
  height: 100%;
  background: #0096DF;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.career-about__data-parts dl dd .bar.bar80.is-visible:before {
  width: 80%;
}
.career-about__data-parts dl dd .bar.bar45.is-visible:before {
  width: 45%;
}
.career-about__data-parts dl dd .bar .label {
  font-size: 20px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-about__data-parts dl dd .bar .label {
    font-size: 1.5948963317vw;
  }
}
@media screen and (max-width: 767px) {
  .career-about__data-parts dl dd .bar .label {
    font-size: 3.7333333333vw;
  }
}
.career-about__data-parts dl dd .bar .num {
  font-size: 50px;
  color: #fff;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-about__data-parts dl dd .bar .num {
    font-size: 3.9872408293vw;
  }
}
@media screen and (max-width: 767px) {
  .career-about__data-parts dl dd .bar .num {
    font-size: 8vw;
  }
}
.career-about__data-parts dl dd .bar .bar-left {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-about__data-parts dl dd .bar .bar-left {
    left: 1.5948963317vw;
    bottom: 1.5948963317vw;
  }
}
@media screen and (max-width: 767px) {
  .career-about__data-parts dl dd .bar .bar-left {
    left: 4vw;
    bottom: 5.3333333333vw;
  }
}
.career-about__data-parts dl dd .bar .bar-right {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 2;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-about__data-parts dl dd .bar .bar-right {
    right: 1.5948963317vw;
    bottom: 1.5948963317vw;
  }
}
@media screen and (max-width: 767px) {
  .career-about__data-parts dl dd .bar .bar-right {
    right: 4vw;
    bottom: 5.3333333333vw;
  }
}
.career-about__data-parts dl dd ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .career-about__data-parts dl dd ul {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .career-about__data-parts dl dd ul li {
    white-space: nowrap;
  }
}
.career-about__data-parts dl dd ul li:last-child {
  margin-left: 40px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-about__data-parts dl dd ul li:last-child {
    margin-left: 3.1897926635vw;
  }
}
@media screen and (max-width: 767px) {
  .career-about__data-parts dl dd ul li:last-child {
    margin-left: 0;
    margin-top: 5.3333333333vw;
  }
}
.career-about__data-parts dl dd .data_icon_01 {
  width: 107px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-about__data-parts dl dd .data_icon_01 {
    width: 8.5326953748vw;
  }
}
@media screen and (max-width: 767px) {
  .career-about__data-parts dl dd .data_icon_01 {
    width: 16.8vw;
  }
}
.career-about__data-parts dl dd .data_icon_02 {
  width: 80px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-about__data-parts dl dd .data_icon_02 {
    width: 6.379585327vw;
  }
}
@media screen and (max-width: 767px) {
  .career-about__data-parts dl dd .data_icon_02 {
    width: 13.0666666667vw;
  }
}
.career-about__data-parts dl dd .data_icon_03 {
  width: 123px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-about__data-parts dl dd .data_icon_03 {
    width: 9.8086124402vw;
  }
}
@media screen and (max-width: 767px) {
  .career-about__data-parts dl dd .data_icon_03 {
    width: 32.8vw;
    margin-bottom: 0;
  }
}
.career-about__data-parts dl dd .data_icon_04 {
  width: 108px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-about__data-parts dl dd .data_icon_04 {
    width: 8.6124401914vw;
  }
}
@media screen and (max-width: 767px) {
  .career-about__data-parts dl dd .data_icon_04 {
    width: 19.2vw;
  }
}
.career-about__data-parts dl dd .data_icon_05 {
  width: 100px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-about__data-parts dl dd .data_icon_05 {
    width: 7.9744816587vw;
  }
}
@media screen and (max-width: 767px) {
  .career-about__data-parts dl dd .data_icon_05 {
    width: 14.9333333333vw;
    margin-top: 2.6666666667vw;
    margin-bottom: 0 !important;
  }
}
.career-about__data-parts dl dd .data_icon_06 {
  width: 106px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-about__data-parts dl dd .data_icon_06 {
    width: 8.4529505582vw;
  }
}
@media screen and (max-width: 767px) {
  .career-about__data-parts dl dd .data_icon_06 {
    width: 19.2vw;
    margin-top: 2.6666666667vw;
    margin-bottom: 0 !important;
  }
}
.career-about__data-parts dl dd .data_icon_07 {
  width: 80px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-about__data-parts dl dd .data_icon_07 {
    width: 6.379585327vw;
  }
}
@media screen and (max-width: 767px) {
  .career-about__data-parts dl dd .data_icon_07 {
    display: none;
  }
}
.career-about__data-parts dl dd .data_icon_08 {
  width: 158px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-about__data-parts dl dd .data_icon_08 {
    width: 12.5996810207vw;
  }
}
@media screen and (max-width: 767px) {
  .career-about__data-parts dl dd .data_icon_08 {
    width: 36.2666666667vw;
    margin-bottom: 0;
  }
}

.career-about__data-sales {
  padding: 30px 15px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-about__data-sales {
    padding: 2.3923444976vw 1.1961722488vw;
  }
}
@media screen and (max-width: 767px) {
  .career-about__data-sales {
    padding: 8vw 2.6666666667vw;
  }
}
.career-about__data-sales dl dd .note {
  right: 0;
  bottom: -20px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-about__data-sales dl dd .note {
    right: 0;
    bottom: -1.5948963317vw;
  }
}

.career-moreBtn {
  font-size: 18px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding-top: 20px;
  position: relative;
  cursor: pointer;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-moreBtn {
    font-size: 1.4354066986vw;
    padding-top: 1.5948963317vw;
  }
}
@media screen and (max-width: 767px) {
  .career-moreBtn {
    font-size: 4.8vw;
    padding-top: 5.3333333333vw;
  }
}
.career-moreBtn:before {
  content: "";
  width: 100%;
  height: 160px;
  background: -webkit-gradient(linear, left bottom, left top, from(#fff), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(0deg, #fff 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  left: 0;
  top: -160px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-moreBtn:before {
    height: 12.7591706539vw;
    top: -12.7591706539vw;
  }
}
@media screen and (max-width: 767px) {
  .career-moreBtn:before {
    height: 42.6666666667vw;
    top: -42.6666666667vw;
  }
}
.career-moreBtn svg {
  width: 20px;
  height: auto;
  margin-left: 10px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-moreBtn svg {
    width: 1.5948963317vw;
    margin-left: 0.7974481659vw;
  }
}
@media screen and (max-width: 767px) {
  .career-moreBtn svg {
    width: 5.3333333333vw;
    margin-left: 2.6666666667vw;
  }
}

@media screen and (max-width: 767px) {
  .js-sp-open-content {
    overflow: hidden;
    -webkit-transition: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
}
@media screen and (max-width: 767px) {
  .js-sp-open-content.is-open {
    overflow: inherit;
  }
}
@media screen and (max-width: 767px) {
  .js-sp-open-content .js-child-first {
    opacity: 0;
    -webkit-transition: opacity 0.9s 0s ease-out, -webkit-transform 0.9s 0s ease-out;
    transition: opacity 0.9s 0s ease-out, -webkit-transform 0.9s 0s ease-out;
    transition: opacity 0.9s 0s ease-out, transform 0.9s 0s ease-out;
    transition: opacity 0.9s 0s ease-out, transform 0.9s 0s ease-out, -webkit-transform 0.9s 0s ease-out;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  .js-sp-open-content .js-child-first.is-active {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

.js-sp-open {
  -webkit-transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.js-sp-open.is-hide {
  opacity: 0;
  height: 0;
}

/*********************************************
works
*********************************************/
.career-works {
  position: relative;
  width: 100%;
  padding-top: 120px;
  padding-bottom: 180px;
  background: -webkit-gradient(linear, left top, left bottom, from(#e5f6ff), color-stop(73.89%, #e5f6ff), to(#fff));
  background: linear-gradient(#e5f6ff 0%, #e5f6ff 73.89%, #fff 100%);
  z-index: 4;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-works {
    padding-top: 9.5693779904vw;
    padding-bottom: 14.3540669856vw;
  }
}
@media screen and (max-width: 767px) {
  .career-works {
    padding-top: 21.3333333333vw;
    padding-bottom: 26.6666666667vw;
  }
}

.career-works-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 50px 45px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-works-head {
    padding: 0 3.9872408293vw 3.5885167464vw;
  }
}
@media screen and (max-width: 767px) {
  .career-works-head {
    padding: 0 0 13.3333333333vw;
  }
}
.career-works-head .career-works-head_left {
  width: 600px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-works-head .career-works-head_left {
    width: 47.8468899522vw;
  }
}
@media screen and (max-width: 767px) {
  .career-works-head .career-works-head_left {
    width: 100%;
  }
}
.career-works-head .career-works-head_left h3 {
  font-weight: 700;
  line-height: 1.5714285714;
  font-size: 28px;
  margin-bottom: 30px;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-works-head .career-works-head_left h3 {
    font-size: 2.2328548644vw;
    margin-bottom: 2.3923444976vw;
  }
}
@media screen and (max-width: 767px) {
  .career-works-head .career-works-head_left h3 {
    font-size: 5.8666666667vw;
    margin-top: 8vw;
    margin-bottom: 8vw;
  }
}
.career-works-head .career-works-head_left p {
  font-size: 15px;
  line-height: 1.8666666667;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-works-head .career-works-head_left p {
    font-size: 1.1961722488vw;
  }
}
@media screen and (max-width: 767px) {
  .career-works-head .career-works-head_left p {
    font-size: 4vw;
  }
}
.career-works-head .career-works-head_right {
  width: 371px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-works-head .career-works-head_right {
    width: 29.5853269537vw;
  }
}
@media screen and (max-width: 767px) {
  .career-works-head .career-works-head_right {
    display: none;
  }
}

.career-works-tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-left: -1px;
}
@media screen and (max-width: 767px) {
  .career-works-tab {
    margin-left: -2.1333333333vw;
    margin-top: -2.1333333333vw;
    margin-bottom: 5.3333333333vw;
  }
}
.career-works-tab li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #BDCCD8;
  color: #fff;
  width: calc(20% - 1px);
  margin-left: 1px;
  font-weight: 700;
  font-size: 20px;
  height: 70px;
  border-radius: 5px 5px 0 0;
  cursor: pointer;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-works-tab li {
    font-size: 1.5948963317vw;
    height: 5.5821371611vw;
    border-radius: 0.3987240829vw 0.3987240829vw 0 0;
  }
}
@media screen and (max-width: 767px) {
  .career-works-tab li {
    font-size: 4.2666666667vw;
    height: 13.3333333333vw;
    border-radius: 1.3333333333vw;
    margin-left: 2.1333333333vw;
    margin-top: 2.1333333333vw;
    width: calc(33.333% - 2.1333333333vw);
  }
}
@media screen and (max-width: 767px) {
  .career-works-tab li:nth-child(4), .career-works-tab li:nth-child(5) {
    width: calc(50% - 2.1333333333vw);
  }
}
.career-works-tab li.is-current {
  -webkit-transition: transform 0.3s ease-out;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  height: 80px;
  background: -webkit-gradient(linear, left top, right top, from(#54c2f0), to(#0096df));
  background: linear-gradient(to right, #54c2f0 0%, #0096df 100%);
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-works-tab li.is-current {
    height: 6.379585327vw;
  }
}
@media screen and (max-width: 767px) {
  .career-works-tab li.is-current {
    height: 13.3333333333vw;
  }
}
.career-works-tab li.is-current:after {
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -7px;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 7px 0 7px;
  border-color: #22A7E6 transparent transparent transparent;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-works-tab li.is-current:after {
    margin-left: -0.5582137161vw;
    border-width: 0.7974481659vw 0.5582137161vw 0 0.5582137161vw;
  }
}
@media screen and (max-width: 767px) {
  .career-works-tab li.is-current:after {
    margin-left: -1.3333333333vw;
    border-width: 2.1333333333vw 1.3333333333vw 0 1.3333333333vw;
  }
}

.career-works-tab-content {
  background: #fff;
  padding: 40px 80px;
  display: none;
  -webkit-box-shadow: 10px 0px 20px rgba(0, 150, 223, 0.1);
          box-shadow: 10px 0px 20px rgba(0, 150, 223, 0.1);
  border-radius: 0 0 10px 10px;
}
.career-works-tab-content.is-current {
  display: block;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-works-tab-content {
    padding: 3.1897926635vw 6.379585327vw;
    -webkit-box-shadow: 0.7974481659vw 0px 1.5948963317vw rgba(0, 150, 223, 0.1);
            box-shadow: 0.7974481659vw 0px 1.5948963317vw rgba(0, 150, 223, 0.1);
    border-radius: 0 0 0.7974481659vw 0.7974481659vw;
  }
}
@media screen and (max-width: 767px) {
  .career-works-tab-content {
    padding: 5.3333333333vw 5.3333333333vw 10.6666666667vw;
    -webkit-box-shadow: 2.6666666667vw 0px 5.3333333333vw rgba(0, 150, 223, 0.1);
            box-shadow: 2.6666666667vw 0px 5.3333333333vw rgba(0, 150, 223, 0.1);
    border-radius: 2.6666666667vw;
  }
}

.career-works-tab-content_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.career-works-tab-content_photo {
  width: 400px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-works-tab-content_photo {
    width: 31.8979266348vw;
  }
}
@media screen and (max-width: 767px) {
  .career-works-tab-content_photo {
    width: 100%;
    margin-bottom: 6.6666666667vw;
  }
}

.career-works-tab-content_txt {
  width: 580px;
  margin-left: auto;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-works-tab-content_txt {
    width: 46.2519936204vw;
  }
}
@media screen and (max-width: 767px) {
  .career-works-tab-content_txt {
    width: 100%;
  }
}
.career-works-tab-content_txt .career-works-tab-content_ttl {
  font-weight: 700;
  color: #0096DF;
  font-size: 28px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-works-tab-content_txt .career-works-tab-content_ttl {
    font-size: 2.2328548644vw;
    margin-bottom: 1.5948963317vw;
  }
}
@media screen and (max-width: 767px) {
  .career-works-tab-content_txt .career-works-tab-content_ttl {
    font-size: 6.4vw;
    margin-bottom: 2.6666666667vw;
  }
}
.career-works-tab-content_txt p {
  font-size: 16px;
  line-height: 1.75;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-works-tab-content_txt p {
    font-size: 1.2759170654vw;
  }
}
@media screen and (max-width: 767px) {
  .career-works-tab-content_txt p {
    font-size: 4.2666666667vw;
  }
}

/*********************************************
voice
*********************************************/
.career-voice {
  position: relative;
  width: 100%;
  padding-bottom: 100px;
  z-index: 4;
  background: #fff;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-voice {
    padding-bottom: 7.9744816587vw;
  }
}
@media screen and (max-width: 767px) {
  .career-voice {
    padding-bottom: 8vw;
  }
}
.career-voice__interviews_wrap {
  padding-top: 40px;
  margin-bottom: 215px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-voice__interviews_wrap {
    padding-top: 3.1897926635vw;
    margin-bottom: 17.1451355662vw;
  }
}
@media screen and (max-width: 767px) {
  .career-voice__interviews_wrap {
    padding-top: 0;
    margin-bottom: 21.3333333333vw;
    padding-bottom: 5.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .career-voice__interviews_wrap .ps {
    overflow: inherit !important;
  }
}
.career-voice__interviews_wrap .ps__rail-x, .career-voice__interviews_wrap .ps:hover > .ps__rail-y,
.career-voice__interviews_wrap .ps--focus > .ps__rail-x,
.career-voice__interviews_wrap .ps--focus > .ps__rail-y,
.career-voice__interviews_wrap .ps--scrolling-x > .ps__rail-x,
.career-voice__interviews_wrap .ps--scrolling-y > .ps__rail-y {
  opacity: 1 !important;
}
.career-voice__interviews_wrap .ps__rail-x {
  opacity: 1 !important;
  background-color: #EBF2FA !important;
  height: 2.1333333333vw;
  width: 89.3333333333vw !important;
  overflow: hidden;
}
.career-voice__interviews_wrap .ps__thumb-x {
  background: -webkit-gradient(linear, left top, left bottom, from(#54c2f0), to(#0096df));
  background: linear-gradient(#54c2f0 0%, #0096df 100%);
  border-radius: 1.0666666667vw;
  height: 2.1333333333vw;
  bottom: 0;
}
.career-voice__interviews_wrap .ps--active-x > .ps__rail-x,
.career-voice__interviews_wrap .ps--active-y > .ps__rail-y {
  background-color: #EBF2FA;
  border-radius: 2.6666666667vw;
  width: 2.1333333333vw;
}
.career-voice__interviews_wrap .ps--active-y > .ps__rail-y {
  display: none !important;
}

.career-voice__interviews {
  -webkit-display: flex;
  -moz-display: flex;
  -ms-display: flex;
  -o-display: flex;
  display: -webkit-box;
  display: flex;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -10px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-voice__interviews {
    margin-left: -0.7974481659vw;
  }
}
@media screen and (max-width: 767px) {
  .career-voice__interviews {
    margin-left: 0;
    margin-right: -5.3333333333vw;
    -ms-flex-wrap: nowrap;
    -o-flex-wrap: nowrap;
    flex-wrap: nowrap;
    /*overflow-x: scroll;*/
    position: relative;
  }
}
.career-voice__interviews li {
  position: relative;
  width: calc(20% - 10px);
  margin-left: 10px;
  overflow: hidden;
}
.career-voice__interviews li a {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.career-voice__interviews li a:after {
  content: "";
  width: 32px;
  height: 32px;
  background: url(../img/career/voice_btn.svg) center 0 no-repeat;
  background-size: 100% auto;
  position: absolute;
  right: 15px;
  bottom: 15px;
  z-index: 5;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-voice__interviews li a:after {
    width: 2.5518341308vw;
    height: 2.5518341308vw;
    right: 1.1961722488vw;
    bottom: 1.1961722488vw;
  }
}
.career-voice__interviews li a.coming {
  pointer-events: none;
}
@media screen and (min-width: 1025px) {
  .career-voice__interviews li a:hover .career-voice__interview-img img {
    -webkit-transform: scale(1.08);
    transform: scale(1.08);
    -webkit-transition: transform 0.2s ease-out;
    -webkit-transition: -webkit-transform 0.2s ease-out;
    transition: -webkit-transform 0.2s ease-out;
    transition: transform 0.2s ease-out;
    transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
  }
  .career-voice__interviews li a:hover .career-voice__interview-img::after {
    -webkit-transition: height 0.2s ease-out, background 0.2s ease-out;
    transition: height 0.2s ease-out, background 0.2s ease-out;
  }
}
.career-voice__interviews li:nth-of-type(2), .career-voice__interviews li:nth-of-type(4) {
  padding-top: 30px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-voice__interviews li {
    width: calc(20% - 0.7974481659vw);
    margin-left: 0.7974481659vw;
  }
  .career-voice__interviews li:nth-of-type(2), .career-voice__interviews li:nth-of-type(4) {
    padding-top: 2.3923444976vw;
  }
}
@media screen and (max-width: 767px) {
  .career-voice__interviews li {
    width: 68.2666666667vw;
    margin-left: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-right: 2.6666666667vw;
  }
  .career-voice__interviews li:last-child {
    margin-bottom: 0;
  }
  .career-voice__interviews li:nth-of-type(2), .career-voice__interviews li:nth-of-type(4) {
    padding-top: 8vw;
    padding-bottom: 7.4666666667vw;
  }
  .career-voice__interviews li:nth-of-type(5), .career-voice__interviews li:nth-of-type(4), .career-voice__interviews li:nth-of-type(3), .career-voice__interviews li:nth-of-type(2), .career-voice__interviews li:nth-of-type(1) {
    top: 0;
  }
}

.career-voice__interview-img {
  position: relative;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .career-voice__interview-img {
    width: 68.2666666667vw;
  }
}
.career-voice__interview-img img {
  -webkit-transition: transform 0.3s ease-out;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .career-voice__interview-img img {
    border-radius: 10px;
  }
}

.career-voice__interview-btm {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #fff;
  z-index: 2;
  background: -webkit-gradient(linear, left top, right top, from(#54c2f0), to(#0096df));
  background: linear-gradient(to right, #54c2f0 0%, #0096df 100%);
  padding: 0 25px 20px;
  padding-right: 0;
  border-radius: 0 0 10px 10px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-voice__interview-btm {
    padding: 0 1.9936204147vw 1.5948963317vw;
    padding-right: 0;
    border-radius: 0 0 0.7974481659vw 0.7974481659vw;
  }
}
@media screen and (max-width: 767px) {
  .career-voice__interview-btm {
    padding: 0 6.6666666667vw 5.3333333333vw;
    padding-right: 0;
    border-radius: 0 0 2.6666666667vw 2.6666666667vw;
  }
}

.career-voice__interview-txt {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
  padding-top: 5px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-voice__interview-txt {
    font-size: 1.2759170654vw;
    padding-top: 0.3987240829vw;
  }
}
@media screen and (max-width: 767px) {
  .career-voice__interview-txt {
    font-size: 4.2666666667vw;
    padding-top: 1.3333333333vw;
  }
}
.career-voice__interview-who {
  display: inline-block;
  background: #fff;
  color: #0096DF;
  font-weight: 700;
  line-height: 1;
  font-size: 16px;
  padding: 5px 6px;
  margin-top: -7px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-voice__interview-who {
    font-size: 1.2759170654vw;
    padding: 0.3987240829vw 0.4784688995vw;
    margin-top: -0.5582137161vw;
  }
}
@media screen and (max-width: 767px) {
  .career-voice__interview-who {
    font-size: 4.2666666667vw;
    padding: 1.3333333333vw 1.6vw;
    margin-top: -1.8666666667vw;
  }
}

.career-voice__interview-post {
  margin-top: 8px;
  font-size: 20px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-voice__interview-post {
    margin-top: 0.6379585327vw;
    font-size: 1.5948963317vw;
  }
}
@media screen and (max-width: 767px) {
  .career-voice__interview-post {
    margin-top: 1.3333333333vw;
    font-size: 5.3333333333vw;
  }
}
.career-voice__interview-post span {
  margin-left: 5px;
  font-size: 14px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-voice__interview-post span {
    margin-left: 0.3987240829vw;
    font-size: 1.1164274322vw;
  }
}
@media screen and (max-width: 767px) {
  .career-voice__interview-post span {
    margin-left: 1.3333333333vw;
    font-size: 3.7333333333vw;
  }
}

/*********************************************
popup
*********************************************/
body.is-fixed {
  position: fixed;
  overflow: hidden;
  width: 100%;
}

.career-popup {
  width: 100%;
  margin: 0 auto;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  pointer-events: none;
  z-index: 1000;
  /*
  opacity: 0;
  transition: opacity 0.3s, visibility 0s 0.3s;
  */
  display: none;
}
.career-popup.is-show {
  /*
  	visibility: visible;
  	opacity:1;
  	*/
  pointer-events: auto;
  /*transition: opacity 0.3s, visibility 0s 0s;*/
}
.career-popup .popup-modal-dismiss {
  width: 60px;
  height: 60px;
  background: url(../img/career/icon_close.svg) 0 0 no-repeat;
  background-size: 100% auto;
  position: fixed;
  top: 20px;
  right: 20px;
  cursor: pointer;
  z-index: 100;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-popup .popup-modal-dismiss {
    width: 4.7846889952vw;
    height: 4.7846889952vw;
    top: 1.5948963317vw;
    right: 1.5948963317vw;
  }
}
@media screen and (max-width: 767px) {
  .career-popup .popup-modal-dismiss {
    width: 10.6666666667vw;
    height: 10.6666666667vw;
    top: 2.6666666667vw;
    right: 2.6666666667vw;
  }
}

.career-popup-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.career-popup-left {
  width: 32%;
  height: 100vh;
  height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .career-popup-left {
    width: 100%;
    position: static;
    height: auto;
  }
}

.career-popup-profile img {
  width: 100%;
  height: auto;
}
@media (min-width: 768px) and (min-height: 604px) {
  .career-popup-profile img {
    height: 100vh;
    height: 100dvh;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (max-width: 767px) {
  .career-popup-profile img {
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.career-popup-profile-btm {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #fff;
  z-index: 2;
  background: -webkit-gradient(linear, left top, right top, from(#54c2f0), to(#0096df));
  background: linear-gradient(to right, #54c2f0 0%, #0096df 100%);
  padding: 30px 40px;
  padding-right: 5px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-popup-profile-btm {
    padding: 2.3923444976vw 3.1897926635vw;
    padding-right: 0.3987240829vw;
  }
}
@media screen and (max-width: 767px) {
  .career-popup-profile-btm {
    padding: 8vw 6.6666666667vw;
    padding-right: 1.3333333333vw;
    position: static;
  }
}

.career-popup-profile-who {
  display: inline-block;
  background: #fff;
  color: #0096DF;
  font-weight: 700;
  line-height: 1;
  font-size: 20px;
  padding: 5px 6px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-popup-profile-who {
    font-size: 1.5948963317vw;
    padding: 0.3987240829vw 0.4784688995vw;
  }
}
@media screen and (max-width: 767px) {
  .career-popup-profile-who {
    font-size: 5.3333333333vw;
    padding: 1.3333333333vw 1.6vw;
  }
}

.career-popup-profile-txt {
  margin-top: 5px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-popup-profile-txt {
    margin-top: 0.3987240829vw;
    font-size: 2.2328548644vw;
  }
}
@media screen and (max-width: 767px) {
  .career-popup-profile-txt {
    margin-top: 1.3333333333vw;
    font-size: 6.4vw;
  }
}
.career-popup-profile-post {
  margin-top: 5px;
  font-size: 14px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-popup-profile-post {
    margin-top: 0.3987240829vw;
    font-size: 1.1164274322vw;
  }
}
@media screen and (max-width: 767px) {
  .career-popup-profile-post {
    margin-top: 1.3333333333vw;
    font-size: 3.7333333333vw;
  }
}
.career-popup-profile-post span {
  margin-right: 5px;
  font-size: 20px;
  font-family: "Prompt", sans-serif;
  font-weight: 400;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-popup-profile-post span {
    margin-right: 0.3987240829vw;
    font-size: 1.5948963317vw;
  }
}
@media screen and (max-width: 767px) {
  .career-popup-profile-post span {
    margin-right: 1.3333333333vw;
    font-size: 5.3333333333vw;
  }
}

.career-popup-right {
  width: 63.333%;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .career-popup-right {
    width: 100%;
  }
}

.career-popup-right-inner {
  padding: 80px 100px 80px 80px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-popup-right-inner {
    padding: 6.379585327vw 7.9744816587vw 6.379585327vw 6.379585327vw;
  }
}
@media screen and (max-width: 767px) {
  .career-popup-right-inner {
    padding: 13.3333333333vw 6.6666666667vw;
  }
}

.career-popup-item .career-popup-item_ttl {
  position: relative;
  color: #0096DF;
  border-bottom: 1px solid #BDC7D8;
  padding-bottom: 10px;
  padding-left: 40px;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-popup-item .career-popup-item_ttl {
    padding-bottom: 0.7974481659vw;
    padding-left: 3.1897926635vw;
    margin-bottom: 1.5948963317vw;
    font-size: 1.9138755981vw;
  }
}
@media screen and (max-width: 767px) {
  .career-popup-item .career-popup-item_ttl {
    padding-bottom: 2.6666666667vw;
    padding-left: 10.6666666667vw;
    margin-bottom: 5.3333333333vw;
    font-size: 5.3333333333vw;
  }
}
.career-popup-item .career-popup-item_ttl .en-txt {
  font-family: "Prompt", sans-serif;
  font-weight: 200;
  font-size: 30px;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-popup-item .career-popup-item_ttl .en-txt {
    font-size: 2.3923444976vw;
  }
}
@media screen and (max-width: 767px) {
  .career-popup-item .career-popup-item_ttl .en-txt {
    font-size: 8vw;
  }
}
.career-popup-item p {
  font-size: 16px;
  line-height: 1.75;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-popup-item p {
    font-size: 1.2759170654vw;
  }
}
@media screen and (max-width: 767px) {
  .career-popup-item p {
    font-size: 4vw;
  }
}
.career-popup-item p + p {
  margin-top: 20px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-popup-item p + p {
    margin-top: 1.5948963317vw;
  }
}
@media screen and (max-width: 767px) {
  .career-popup-item p + p {
    margin-top: 5.3333333333vw;
  }
}
.career-popup-item img {
  margin-top: 30px;
  border-radius: 10px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-popup-item img {
    margin-top: 2.3923444976vw;
    border-radius: 0.7974481659vw;
  }
}
@media screen and (max-width: 767px) {
  .career-popup-item img {
    margin-top: 8vw;
    border-radius: 2.6666666667vw;
  }
}

.career-popup-item + .career-popup-item {
  margin-top: 80px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-popup-item + .career-popup-item {
    margin-top: 6.379585327vw;
  }
}
@media screen and (max-width: 767px) {
  .career-popup-item + .career-popup-item {
    margin-top: 16vw;
  }
}

.career-popup_ttl {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-popup_ttl {
    margin-bottom: 2.3923444976vw;
  }
}
@media screen and (max-width: 767px) {
  .career-popup_ttl {
    margin-bottom: 5.3333333333vw;
  }
}
.career-popup_ttl span {
  display: block;
}
.career-popup_ttl .ja-txt {
  font-size: 32px;
  font-weight: 700;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-popup_ttl .ja-txt {
    font-size: 2.5518341308vw;
  }
}
@media screen and (max-width: 767px) {
  .career-popup_ttl .ja-txt {
    font-size: 7.4666666667vw;
  }
}
.career-popup_ttl .en-txt {
  font-family: "Prompt", sans-serif;
  font-weight: 200;
  font-size: 20px;
  margin-top: 5px;
  color: #0096DF;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-popup_ttl .en-txt {
    font-size: 1.5948963317vw;
    margin-top: 0.3987240829vw;
  }
}
@media screen and (max-width: 767px) {
  .career-popup_ttl .en-txt {
    font-size: 5.3333333333vw;
    margin-top: 1.3333333333vw;
  }
}

.career-popup-schedule {
  margin-top: 80px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-popup-schedule {
    margin-top: 6.379585327vw;
  }
}
@media screen and (max-width: 767px) {
  .career-popup-schedule {
    margin-top: 16vw;
  }
}
.career-popup-schedule dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-popup-schedule dl {
    padding-bottom: 1.5948963317vw;
  }
}
@media screen and (max-width: 767px) {
  .career-popup-schedule dl {
    padding-bottom: 5.3333333333vw;
  }
}
.career-popup-schedule dl:last-child {
  padding-bottom: 0;
}
.career-popup-schedule dl:before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0096DF;
  position: absolute;
  top: 6px;
  left: 74px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-popup-schedule dl:before {
    width: 0.7974481659vw;
    height: 0.7974481659vw;
    top: 0.4784688995vw;
    left: 5.9011164274vw;
  }
}
@media screen and (max-width: 767px) {
  .career-popup-schedule dl:before {
    width: 2.6666666667vw;
    height: 2.6666666667vw;
    top: 1.6vw;
    left: 19.7333333333vw;
  }
}
.career-popup-schedule dl:after {
  content: "";
  width: 2px;
  height: 100%;
  background: #0096DF;
  position: absolute;
  top: 6px;
  left: 78px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-popup-schedule dl:after {
    top: 0.4784688995vw;
    left: 6.2200956938vw;
  }
}
@media screen and (max-width: 767px) {
  .career-popup-schedule dl:after {
    top: 1.6vw;
    left: 20.8vw;
  }
}
.career-popup-schedule dl dt {
  font-family: "Prompt", sans-serif;
  font-weight: 200;
  font-size: 22px;
  color: #0096DF;
  width: 60px;
  text-align: right;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-popup-schedule dl dt {
    font-size: 1.7543859649vw;
    width: 4.7846889952vw;
  }
}
@media screen and (max-width: 767px) {
  .career-popup-schedule dl dt {
    font-size: 5.8666666667vw;
    width: 16vw;
  }
}
.career-popup-schedule dl dd {
  color: #586565;
  font-size: 14px;
  line-height: 1.5714285714;
  padding-left: 46px;
  width: calc(100% - 60px);
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-popup-schedule dl dd {
    font-size: 1.1164274322vw;
    padding-left: 3.668261563vw;
    width: calc(100% - 4.7846889952vw);
  }
}
@media screen and (max-width: 767px) {
  .career-popup-schedule dl dd {
    font-size: 3.7333333333vw;
    padding-left: 13.3333333333vw;
    width: calc(100% - 16vw);
  }
}
.career-popup-schedule dl dd span {
  display: block;
  font-weight: 700;
  color: #000;
  font-size: 20px;
  margin-bottom: 5px;
  line-height: 1;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-popup-schedule dl dd span {
    font-size: 1.5948963317vw;
    margin-bottom: 0.3987240829vw;
  }
}
@media screen and (max-width: 767px) {
  .career-popup-schedule dl dd span {
    font-size: 5.3333333333vw;
    margin-bottom: 1.3333333333vw;
  }
}

.career-popup-off {
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-popup-off {
    margin-top: 6.379585327vw;
  }
}
@media screen and (max-width: 767px) {
  .career-popup-off {
    margin-top: 16vw;
  }
}
.career-popup-off .career-popup-off_left {
  width: 64%;
}
@media screen and (max-width: 767px) {
  .career-popup-off .career-popup-off_left {
    width: 100%;
  }
}
.career-popup-off .career-popup-off_left p {
  font-size: 16px;
  line-height: 1.75;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-popup-off .career-popup-off_left p {
    font-size: 1.2759170654vw;
  }
}
@media screen and (max-width: 767px) {
  .career-popup-off .career-popup-off_left p {
    font-size: 4vw;
  }
}
.career-popup-off .career-popup-off_right {
  width: 31%;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .career-popup-off .career-popup-off_right {
    margin: 8vw auto 0;
    width: 64vw;
  }
}
.career-popup-off .career-popup-off_right img {
  border-radius: 10px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-popup-off .career-popup-off_right img {
    border-radius: 0.7974481659vw;
  }
}
@media screen and (max-width: 767px) {
  .career-popup-off .career-popup-off_right img {
    border-radius: 2.6666666667vw;
  }
}

.career-popup-bottom {
  width: 100%;
  padding: 40px 100px;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-popup-bottom {
    padding: 3.1897926635vw 7.9744816587vw;
  }
}
@media screen and (max-width: 767px) {
  .career-popup-bottom {
    padding: 16vw 6.6666666667vw;
  }
}
.career-popup-bottom:before {
  content: "";
  width: 100vw;
  height: 100%;
  background: #E5F6FF;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

.career-popup-bottom-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 770px;
  margin-left: auto;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-popup-bottom-item {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .career-popup-bottom-item {
    width: 100%;
  }
}
.career-popup-bottom-item .career-popup_ttl {
  width: 22%;
  margin-bottom: 0;
}
@media screen and (max-width: 1480px) {
  .career-popup-bottom-item .career-popup_ttl {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .career-popup-bottom-item .career-popup_ttl {
    width: 100%;
    margin-bottom: 5.3333333333vw;
  }
}
.career-popup-bottom-item a {
  width: 78%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-popup-bottom-item a {
    border-radius: 0.7974481659vw;
  }
}
@media screen and (max-width: 1480px) {
  .career-popup-bottom-item a {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .career-popup-bottom-item a {
    width: 100%;
    border-radius: 2.6666666667vw;
  }
}
.career-popup-bottom-item a:after {
  content: "";
  background: url(../img/common/icon_arrow_r_w.svg) center 0 no-repeat;
  background-size: 100% auto;
  width: 16px;
  height: 12px;
  position: absolute;
  right: 20px;
  bottom: 20px;
  -webkit-transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-popup-bottom-item a:after {
    width: 1.2759170654vw;
    height: 0.956937799vw;
    right: 1.5948963317vw;
    bottom: 1.5948963317vw;
  }
}
@media screen and (max-width: 767px) {
  .career-popup-bottom-item a:after {
    width: 4.2666666667vw;
    height: 3.2vw;
    right: 4vw;
    bottom: 4vw;
  }
}
@media screen and (min-width: 1025px) {
  .career-popup-bottom-item a:hover:after {
    right: 15px;
  }
}
@media screen and (min-width: 1025px) and (min-width: 768px) and (max-width: 1254px) {
  .career-popup-bottom-item a:hover:after {
    right: 1.1961722488vw;
  }
}
@media screen and (min-width: 1025px) {
  .career-popup-bottom-item a:hover img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
}
.career-popup-bottom-item a picture {
  width: 50%;
  overflow: hidden;
}
.career-popup-bottom-item a picture img {
  -webkit-transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.career-popup-bottom-btm {
  width: 50%;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#54c2f0), to(#0096df));
  background: linear-gradient(to right, #54c2f0 0%, #0096df 100%);
  padding: 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-popup-bottom-btm {
    padding: 0 2.3923444976vw;
  }
}
@media screen and (max-width: 767px) {
  .career-popup-bottom-btm {
    padding: 0 5.3333333333vw 0;
  }
}

.career-popup-bottom-who {
  display: inline-block;
  background: #fff;
  color: #0096DF;
  font-weight: 700;
  line-height: 1;
  font-size: 16px;
  padding: 5px 6px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-popup-bottom-who {
    font-size: 1.2759170654vw;
    padding: 0.3987240829vw 0.4784688995vw;
  }
}
@media screen and (max-width: 767px) {
  .career-popup-bottom-who {
    font-size: 4.2666666667vw;
    padding: 1.3333333333vw 1.6vw;
  }
}

.career-popup-bottom-txt {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-popup-bottom-txt {
    font-size: 1.5948963317vw;
  }
}
@media screen and (max-width: 767px) {
  .career-popup-bottom-txt {
    font-size: 4.8vw;
  }
}
.career-popup-bottom-post {
  margin-top: 5px;
  font-size: 14px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-popup-bottom-post {
    margin-top: 0.3987240829vw;
    font-size: 1.1164274322vw;
  }
}
@media screen and (max-width: 767px) {
  .career-popup-bottom-post {
    margin-top: 1.3333333333vw;
    font-size: 3.7333333333vw;
  }
}
.career-popup-bottom-post span {
  margin-right: 5px;
  font-size: 20px;
  font-family: "Prompt", sans-serif;
  font-weight: 400;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-popup-bottom-post span {
    margin-right: 0.3987240829vw;
    font-size: 1.5948963317vw;
  }
}
@media screen and (max-width: 767px) {
  .career-popup-bottom-post span {
    margin-right: 1.3333333333vw;
    font-size: 5.3333333333vw;
  }
}

/*********************************************
system
*********************************************/
.career-system {
  background: -webkit-gradient(linear, left bottom, left top, from(#54c2f0), color-stop(36.51%, #0096df), to(#0096df));
  background: linear-gradient(0deg, #54c2f0 0%, #0096df 36.51%, #0096df 100%);
  padding-top: 60px;
  padding-bottom: 190px;
  color: #fff;
  position: relative;
  z-index: 5;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-system {
    padding-top: 4.7846889952vw;
    padding-bottom: 15.1515151515vw;
  }
}
@media screen and (max-width: 767px) {
  .career-system {
    padding-top: 16vw;
    padding-bottom: 29.3333333333vw;
  }
}
.career-system .career-sec__ttl .-en-txt {
  color: #fff;
}
.career-system .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.career-system .swiper-slide {
  width: 2950px !important;
  margin-right: 10px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-system .swiper-slide {
    width: 235.2472089314vw !important;
    margin-right: 0.7974481659vw;
  }
}
@media screen and (max-width: 767px) {
  .career-system .swiper-slide {
    width: 786.6666666667vw !important;
    margin-right: 2.6666666667vw;
  }
}
.career-system .footer-wave {
  top: -630px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-system .footer-wave {
    top: -300px;
  }
}
@media screen and (max-width: 767px) {
  .career-system .footer-wave {
    top: -260px;
  }
}
.career-system .footer-wave svg path {
  fill: #0096df;
}

.career-system__ttl {
  font-weight: 700;
  line-height: 1;
  font-size: 32px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-system__ttl {
    font-size: 2.5518341308vw;
    margin-bottom: 2.3923444976vw;
  }
}
@media screen and (max-width: 767px) {
  .career-system__ttl {
    font-size: 7.4666666667vw;
    margin-bottom: 8vw;
  }
}

.career-system-benefits {
  margin-top: 80px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-system-benefits {
    margin-top: 6.379585327vw;
  }
}
@media screen and (max-width: 767px) {
  .career-system-benefits {
    margin-top: 13.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .career-system-benefits .js-sp-open-content {
    height: 94.4vw;
  }
}
.career-system-benefits .js-sp-open-content.is-open {
  height: auto;
}
.career-system-benefits .career-moreBtn:before {
  background: -webkit-gradient(linear, left bottom, left top, from(#0096df), to(rgba(0, 150, 223, 0)));
  background: linear-gradient(0deg, #0096df 0%, rgba(0, 150, 223, 0) 100%);
}

.career-system-benefits__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -20px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-system-benefits__inner {
    margin-left: -1.5948963317vw;
  }
}
@media screen and (max-width: 767px) {
  .career-system-benefits__inner {
    margin-left: 0;
  }
}
.career-system-benefits__inner dl {
  width: calc(33.333% - 20px);
  margin-left: 20px;
  padding: 30px 0;
  border-top: 1px solid #FFFFFF;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-system-benefits__inner dl {
    width: calc(33.333% - 1.5948963317vw);
    margin-left: 1.5948963317vw;
    padding: 2.3923444976vw 0;
  }
}
@media screen and (max-width: 767px) {
  .career-system-benefits__inner dl {
    width: 100%;
    margin-left: 0;
    padding: 4vw 0;
  }
}
.career-system-benefits__inner dl dt {
  margin-bottom: 10px;
  font-weight: 700;
  font-size: 18px;
  padding-left: 40px;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-system-benefits__inner dl dt {
    margin-bottom: 0.7974481659vw;
    font-size: 1.4354066986vw;
    padding-left: 3.1897926635vw;
  }
}
@media screen and (max-width: 767px) {
  .career-system-benefits__inner dl dt {
    margin-bottom: 2.6666666667vw;
    font-size: 4.8vw;
    padding-left: 10.6666666667vw;
  }
}
.career-system-benefits__inner dl dt span {
  font-family: "Prompt", sans-serif;
  font-weight: 200;
  font-size: 20px;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-system-benefits__inner dl dt span {
    font-size: 1.5948963317vw;
  }
}
@media screen and (max-width: 767px) {
  .career-system-benefits__inner dl dt span {
    font-size: 5.3333333333vw;
  }
}
.career-system-benefits__inner dl dd {
  padding-left: 40px;
  font-size: 14px;
  line-height: 1.5714285714;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-system-benefits__inner dl dd {
    padding-left: 3.1897926635vw;
    font-size: 1.1164274322vw;
  }
}
@media screen and (max-width: 767px) {
  .career-system-benefits__inner dl dd {
    padding-left: 10.6666666667vw;
    font-size: 3.7333333333vw;
  }
}

.career-system-support {
  margin-top: 80px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-system-support {
    margin-top: 6.379585327vw;
  }
}
@media screen and (max-width: 767px) {
  .career-system-support {
    margin-top: 21.3333333333vw;
  }
}

.career-system-support__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-system-support__head {
    margin-bottom: 3.1897926635vw;
  }
}
@media screen and (max-width: 767px) {
  .career-system-support__head {
    margin-bottom: 8vw;
  }
}
.career-system-support__head .career-system__ttl {
  margin-bottom: 0;
}
.career-system-support__head p {
  font-size: 16px;
  line-height: 1.75;
  margin-left: 70px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-system-support__head p {
    font-size: 1.2759170654vw;
    margin-left: 5.5821371611vw;
  }
}
@media screen and (max-width: 767px) {
  .career-system-support__head p {
    font-size: 4.2666666667vw;
    margin-left: 0;
    margin-top: 2.6666666667vw;
  }
}

.career-system-support__inner {
  background: #fff;
  border-radius: 10px;
  padding: 50px 60px 60px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-system-support__inner {
    border-radius: 0.7974481659vw;
    padding: 3.9872408293vw 4.7846889952vw 4.7846889952vw;
  }
}
@media screen and (max-width: 767px) {
  .career-system-support__inner {
    border-radius: 2.6666666667vw;
    padding: 10.6666666667vw 5.3333333333vw 5.3333333333vw;
  }
}

.career-system-support__ttl {
  text-align: center;
  color: #0096DF;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-system-support__ttl {
    font-size: 1.9138755981vw;
    margin-bottom: 0.7974481659vw;
  }
}
@media screen and (max-width: 767px) {
  .career-system-support__ttl {
    font-size: 6.4vw;
    margin-bottom: 2.6666666667vw;
    line-height: 1.5;
  }
}

.career-system-support__txt {
  text-align: center;
  color: #000;
  line-height: 1.8125;
  font-size: 16px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-system-support__txt {
    font-size: 1.2759170654vw;
    margin-bottom: 3.1897926635vw;
  }
}
@media screen and (max-width: 767px) {
  .career-system-support__txt {
    font-size: 4.2666666667vw;
    margin-bottom: 8vw;
  }
}

.career-system-support__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -15px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-system-support__flex {
    margin-left: -1.1961722488vw;
  }
}
@media screen and (max-width: 767px) {
  .career-system-support__flex {
    margin-left: 0;
    margin-top: -2.6666666667vw;
  }
}

.career-system-support__item {
  width: calc(33.333% - 15px);
  margin-left: 15px;
  border-radius: 10px;
  background: -webkit-gradient(linear, left top, left bottom, from(#54c2f0), to(#0096df));
  background: linear-gradient(#54c2f0 0%, #0096df 100%);
  padding: 30px;
  text-align: center;
  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-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-system-support__item {
    width: calc(33.333% - 1.1961722488vw);
    margin-left: 1.1961722488vw;
    padding: 2.3923444976vw;
  }
}
@media screen and (max-width: 767px) {
  .career-system-support__item {
    width: 100%;
    display: block;
    margin-left: 0;
    margin-top: 2.6666666667vw;
    padding: 5.3333333333vw;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
  }
}
.career-system-support__item ul {
  margin: 15px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: left;
  width: 240px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-system-support__item ul {
    margin-top: 1.1961722488vw;
    width: 19.1387559809vw;
  }
}
@media screen and (max-width: 767px) {
  .career-system-support__item ul {
    margin-top: 4vw;
    width: 64vw;
  }
}
.career-system-support__item ul li {
  font-size: 16px;
  width: 50%;
  margin-top: 4px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-system-support__item ul li {
    font-size: 1.2759170654vw;
    margin-top: 0.3189792663vw;
  }
}
@media screen and (max-width: 767px) {
  .career-system-support__item ul li {
    font-size: 4.2666666667vw;
    margin-top: 1.0666666667vw;
  }
}
.career-system-support__item ul li:before {
  content: "・";
}

.career-system-support__subcnt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .career-system-support__subcnt {
    display: block;
  }
}

.career-system-support__subttl {
  font-weight: 700;
  line-height: 1;
  font-size: 24px;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-system-support__subttl {
    font-size: 1.9138755981vw;
    margin-bottom: 2.3923444976vw;
  }
}
@media screen and (max-width: 767px) {
  .career-system-support__subttl {
    font-size: 5.3333333333vw;
    margin-bottom: 5.3333333333vw;
  }
}

.career-system-support__subtxt {
  width: 100%;
  font-size: 14px;
  line-height: 1.5714285714;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-system-support__subtxt {
    font-size: 1.1164274322vw;
  }
}
@media screen and (max-width: 767px) {
  .career-system-support__subtxt {
    font-size: 3.7333333333vw;
  }
}

.career-system-support__etc {
  width: 100%;
  font-size: 14px;
  line-height: 1.5714285714;
  letter-spacing: 0;
  text-align: right;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-system-support__etc {
    font-size: 1.1164274322vw;
  }
}
@media screen and (max-width: 767px) {
  .career-system-support__etc {
    font-size: 3.7333333333vw;
  }
}

/*********************************************
recruit
*********************************************/
.career-recruit {
  background: #fff;
  position: relative;
  z-index: 6;
  padding-top: 80px;
  padding-bottom: 120px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-recruit {
    padding-top: 6.379585327vw;
    padding-bottom: 9.5693779904vw;
  }
}
@media screen and (max-width: 767px) {
  .career-recruit {
    padding-top: 21.3333333333vw;
    padding-bottom: 32vw;
  }
}
.career-recruit .footer-wave {
  top: -640px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-recruit .footer-wave {
    top: -300px;
  }
}
@media screen and (max-width: 767px) {
  .career-recruit .footer-wave {
    top: -300px;
  }
}

.career-recruit-ttl {
  color: #0096DF;
  font-weight: 700;
  line-height: 1;
  font-size: 32px;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-recruit-ttl {
    font-size: 2.5518341308vw;
    margin-bottom: 3.1897926635vw;
  }
}
@media screen and (max-width: 767px) {
  .career-recruit-ttl {
    font-size: 7.4666666667vw;
    margin-bottom: 8vw;
  }
}
.career-recruit-ttl span {
  color: #586565;
  font-weight: 400;
  display: inline-block;
  font-size: 14px;
  margin-left: 10px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-recruit-ttl span {
    font-size: 1.1164274322vw;
    margin-left: 0.7974481659vw;
  }
}
@media screen and (max-width: 767px) {
  .career-recruit-ttl span {
    font-size: 3.4666666667vw;
    margin-left: 0;
    margin-top: 2.6666666667vw;
    display: block;
  }
}

.career-recruit-requirements {
  margin-bottom: 100px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-recruit-requirements {
    margin-bottom: 7.9744816587vw;
  }
}
.career-recruit-requirements table {
  width: 100%;
  border-top: 1px solid #BDC7D8;
}
.career-recruit-requirements table th {
  border-bottom: 1px solid #BDC7D8;
  font-weight: 700;
  padding: 22px 10px;
  font-size: 18px;
  width: 19%;
  line-height: 1.8125;
  vertical-align: top;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-recruit-requirements table th {
    padding: 1.7543859649vw 0.7974481659vw;
    font-size: 1.4354066986vw;
  }
}
@media screen and (max-width: 767px) {
  .career-recruit-requirements table th {
    display: block;
    width: 100%;
    padding: 6.6666666667vw 0 4vw;
    font-size: 4.8vw;
    border-bottom: none;
  }
}
.career-recruit-requirements table td {
  border-bottom: 1px solid #BDC7D8;
  font-size: 16px;
  padding: 22px 0;
  line-height: 1.8125;
  font-weight: 400;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-recruit-requirements table td {
    font-size: 1.2759170654vw;
    padding: 1.7543859649vw 0;
  }
}
@media screen and (max-width: 767px) {
  .career-recruit-requirements table td {
    display: block;
    width: 100%;
    padding: 0 0 6.6666666667vw;
    font-size: 4.2666666667vw;
  }
}
.career-recruit-requirements table td .small {
  font-size: 14px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-recruit-requirements table td .small {
    font-size: 1.1164274322vw;
  }
}
@media screen and (max-width: 767px) {
  .career-recruit-requirements table td .small {
    font-size: 3.7333333333vw;
  }
}
.career-recruit-requirements table td dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.career-recruit-requirements table td dl dt {
  color: #0096DF;
  font-weight: 700;
  font-size: 18px;
  width: 94px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-recruit-requirements table td dl dt {
    font-size: 1.4354066986vw;
    width: 7.4960127592vw;
  }
}
@media screen and (max-width: 767px) {
  .career-recruit-requirements table td dl dt {
    font-size: 4.8vw;
    width: 100%;
  }
}
.career-recruit-requirements table td dl dd {
  width: calc(100% - 94px);
  padding-top: 3px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-recruit-requirements table td dl dd {
    width: calc(100% - 7.4960127592vw);
    padding-top: 0.2392344498vw;
  }
}
@media screen and (max-width: 767px) {
  .career-recruit-requirements table td dl dd {
    width: 100%;
    padding-top: 2.6666666667vw;
  }
}
.career-recruit-requirements table td dl dd ul li {
  font-size: 14px;
  position: relative;
  padding-left: 15px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-recruit-requirements table td dl dd ul li {
    font-size: 1.1164274322vw;
    padding-left: 1.1961722488vw;
  }
}
@media screen and (max-width: 767px) {
  .career-recruit-requirements table td dl dd ul li {
    font-size: 3.7333333333vw;
    padding-left: 5.3333333333vw;
    margin-bottom: 2.6666666667vw;
  }
}
.career-recruit-requirements table td dl dd ul li:before {
  content: "";
  width: 6px;
  height: 6px;
  background: #0096DF;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 12px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-recruit-requirements table td dl dd ul li:before {
    width: 0.4784688995vw;
    height: 0.4784688995vw;
    top: 0.956937799vw;
  }
}
@media screen and (max-width: 767px) {
  .career-recruit-requirements table td dl dd ul li:before {
    width: 1.6vw;
    height: 1.6vw;
    top: 3.2vw;
  }
}
.career-recruit-requirements table td dl dd ul li span {
  font-weight: 700;
  font-size: 16px;
  width: 170px;
  display: inline-block;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-recruit-requirements table td dl dd ul li span {
    font-size: 1.2759170654vw;
    width: 13.5566188198vw;
  }
}
@media screen and (max-width: 767px) {
  .career-recruit-requirements table td dl dd ul li span {
    display: block;
    font-size: 4.2666666667vw;
    margin-right: 0;
    width: auto;
  }
}
.career-recruit-requirements table td dl + dl {
  margin-top: 20px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-recruit-requirements table td dl + dl {
    margin-top: 1.5948963317vw;
  }
}
@media screen and (max-width: 767px) {
  .career-recruit-requirements table td dl + dl {
    margin-top: 5.3333333333vw;
  }
}
.career-recruit-requirements table td .note {
  color: #586565;
  font-size: 14px;
  line-height: 1.5714285714;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-recruit-requirements table td .note {
    font-size: 1.1164274322vw;
  }
}
@media screen and (max-width: 767px) {
  .career-recruit-requirements table td .note {
    font-size: 3.7333333333vw;
  }
}
.career-recruit-requirements table td .note-indent {
  display: block;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 767px) {
  .career-recruit-requirements .js-sp-open-content {
    height: 186.6666666667vw;
  }
}
.career-recruit-requirements .js-sp-open-content.is-open {
  height: auto;
}

.career-recruit-flow {
  margin-bottom: 100px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-recruit-flow {
    margin-bottom: 7.9744816587vw;
  }
}
@media screen and (max-width: 767px) {
  .career-recruit-flow {
    margin-bottom: 16vw;
  }
}

.career-recruit-flow-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
.career-recruit-flow-step:after {
  content: "";
  width: 830px;
  height: 2px;
  background: #BDC7D8;
  position: absolute;
  top: 70px;
  left: 50%;
  margin-left: -415px;
  z-index: 1;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-recruit-flow-step:after {
    width: 66.1881977671vw;
    height: 0.1594896332vw;
    top: 5.5821371611vw;
    margin-left: -33.0940988836vw;
  }
}
@media screen and (max-width: 767px) {
  .career-recruit-flow-step:after {
    width: 0.5333333333vw;
    height: 100%;
    top: 0;
    left: 13.0666666667vw;
    margin-left: 0;
  }
}
.career-recruit-flow-step li {
  position: relative;
  z-index: 2;
  width: 170px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-recruit-flow-step li {
    width: 13.5566188198vw;
  }
}
@media screen and (max-width: 767px) {
  .career-recruit-flow-step li {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .career-recruit-flow-step li + li {
    margin-top: 5.3333333333vw;
  }
}
.career-recruit-flow-step .career-recruit-flow-step_pic {
  width: 140px;
  margin: 0 auto 15px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-recruit-flow-step .career-recruit-flow-step_pic {
    width: 11.1642743222vw;
    margin: 0 auto 1.1961722488vw;
  }
}
@media screen and (max-width: 767px) {
  .career-recruit-flow-step .career-recruit-flow-step_pic {
    width: 26.6666666667vw;
    margin: 0;
  }
}
@media screen and (max-width: 767px) {
  .career-recruit-flow-step .career-recruit-flow-step_txt {
    width: 58.6666666667vw;
    margin-left: auto;
  }
}
.career-recruit-flow-step .career-recruit-flow-step_ttl {
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-recruit-flow-step .career-recruit-flow-step_ttl {
    font-size: 1.4354066986vw;
    margin-bottom: 0.7974481659vw;
  }
}
@media screen and (max-width: 767px) {
  .career-recruit-flow-step .career-recruit-flow-step_ttl {
    text-align: left;
    font-size: 4.8vw;
    margin-bottom: 1.3333333333vw;
  }
}
.career-recruit-flow-step .career-recruit-flow-step_desc {
  text-align: center;
  font-size: 14px;
  line-height: 1.5714285714;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-recruit-flow-step .career-recruit-flow-step_desc {
    font-size: 1.1164274322vw;
  }
}
@media screen and (max-width: 767px) {
  .career-recruit-flow-step .career-recruit-flow-step_desc {
    text-align: left;
    font-size: 3.7333333333vw;
  }
}

.career-recruit-ideal {
  margin-bottom: 100px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-recruit-ideal {
    margin-bottom: 7.9744816587vw;
  }
}
@media screen and (max-width: 767px) {
  .career-recruit-ideal {
    margin-bottom: 16vw;
  }
}

.career-recruit-ideal_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-recruit-ideal_head {
    margin-bottom: 3.1897926635vw;
  }
}
@media screen and (max-width: 767px) {
  .career-recruit-ideal_head {
    margin-bottom: 8vw;
  }
}
.career-recruit-ideal_head .career-recruit-ttl {
  margin-bottom: 0;
}
.career-recruit-ideal_head p {
  font-size: 16px;
  line-height: 1.75;
  margin-left: 108px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-recruit-ideal_head p {
    font-size: 1.2759170654vw;
    margin-left: 8.6124401914vw;
  }
}
@media screen and (max-width: 767px) {
  .career-recruit-ideal_head p {
    font-size: 4.2666666667vw;
    margin-top: 2.6666666667vw;
    margin-left: 0;
  }
}

.career-recruit-ideal_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-left: -15px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-recruit-ideal_inner {
    margin-left: -1.1961722488vw;
  }
}
@media screen and (max-width: 767px) {
  .career-recruit-ideal_inner {
    margin-left: 0;
    margin-top: -2.6666666667vw;
  }
}

.career-recruit-ideal_item {
  width: calc(33.333% - 20px);
  margin-left: 20px;
  border-radius: 10px;
  background: -webkit-gradient(linear, left top, left bottom, from(#54c2f0), to(#0096df));
  background: linear-gradient(#54c2f0 0%, #0096df 100%);
  padding: 30px 25px;
  color: #fff;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-recruit-ideal_item {
    width: calc(33.333% - 1.5948963317vw);
    margin-left: 1.5948963317vw;
    padding: 2.3923444976vw 1.9936204147vw;
  }
}
@media screen and (max-width: 767px) {
  .career-recruit-ideal_item {
    width: 100%;
    margin-left: 0;
    margin-top: 2.6666666667vw;
    padding: 5.3333333333vw 8vw;
  }
}
.career-recruit-ideal_item dt {
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-recruit-ideal_item dt {
    font-size: 1.9138755981vw;
    margin-bottom: 0.7974481659vw;
  }
}
@media screen and (max-width: 767px) {
  .career-recruit-ideal_item dt {
    font-size: 5.3333333333vw;
    margin-bottom: 2.6666666667vw;
  }
}
.career-recruit-ideal_item ul li {
  font-size: 16px;
  line-height: 1.5625;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-recruit-ideal_item ul li {
    font-size: 1.2759170654vw;
  }
}
@media screen and (max-width: 767px) {
  .career-recruit-ideal_item ul li {
    font-size: 4vw;
  }
}

.career-recruit-faq {
  margin-bottom: 100px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-recruit-faq {
    margin-bottom: 7.9744816587vw;
  }
}
@media screen and (max-width: 767px) {
  .career-recruit-faq {
    margin-bottom: 0;
  }
}
.career-recruit-faq .toggle-item {
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-recruit-faq .toggle-item {
    border-radius: 0.7974481659vw;
    margin-bottom: 0.7974481659vw;
  }
}
@media screen and (max-width: 767px) {
  .career-recruit-faq .toggle-item {
    border-radius: 2.6666666667vw;
    margin-bottom: 2.6666666667vw;
  }
}
.career-recruit-faq .toggle-q {
  background: #DDF3FC;
  padding: 20px 56px 20px 64px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-recruit-faq .toggle-q {
    padding: 1.5948963317vw 4.4657097289vw 1.5948963317vw 5.1036682616vw;
  }
}
@media screen and (max-width: 767px) {
  .career-recruit-faq .toggle-q {
    padding: 4vw 14.9333333333vw;
    font-size: 4.8vw;
    letter-spacing: 0;
  }
}
.career-recruit-faq .toggle-q:after {
  content: "Q.";
  font-size: 24px;
  font-weight: 200;
  background: none;
  font-family: "Prompt", sans-serif;
  left: 30px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-recruit-faq .toggle-q:after {
    font-size: 1.9138755981vw;
    left: 2.3923444976vw;
  }
}
@media screen and (max-width: 767px) {
  .career-recruit-faq .toggle-q:after {
    font-size: 6.4vw;
    left: 5.3333333333vw;
    top: 3.2vw;
    width: auto;
  }
}
.career-recruit-faq .toggle-a__inner {
  padding: 30px 30px 30px 64px;
  border: 1px solid #DDF3FC;
  border-top: none;
  border-radius: 0 0 10px 10px;
  font-size: 16px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-recruit-faq .toggle-a__inner {
    padding: 2.3923444976vw 2.3923444976vw 2.3923444976vw 5.1036682616vw;
    border-radius: 0 0 0.7974481659vw 0.7974481659vw;
  }
}
@media screen and (max-width: 767px) {
  .career-recruit-faq .toggle-a__inner {
    padding: 8vw 8vw 8vw 14.9333333333vw;
    border-radius: 0 0 2.6666666667vw 2.6666666667vw;
  }
}
.career-recruit-faq .toggle-a__inner:after {
  content: "A.";
  font-size: 24px;
  font-weight: 200;
  background: none;
  font-family: "Prompt", sans-serif;
  left: 30px;
  top: 35px;
  color: #0096DF;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-recruit-faq .toggle-a__inner:after {
    font-size: 1.9138755981vw;
    left: 2.3923444976vw;
    top: 2.7910685805vw;
  }
}
@media screen and (max-width: 767px) {
  .career-recruit-faq .toggle-a__inner:after {
    font-size: 6.4vw;
    left: 5.3333333333vw;
    top: 9.3333333333vw;
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  .career-recruit-faq .toggle-a__inner .toggle-a___txt {
    font-size: 4.2666666667vw;
  }
}

/*********************************************
career-entry
*********************************************/
.career-entry {
  position: relative;
  background: #fff;
  z-index: 2;
  height: 630px;
  padding-top: 120px;
  padding-top: 170px;
}
.career-entry::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1200px;
  left: 0;
  top: 0;
  z-index: 1;
  background: url(../img/common/bg_btm_entry.png) center 0 no-repeat;
  background-size: 1920px auto;
}
@media screen and (max-width: 767px) {
  .career-entry::after {
    display: none;
  }
}
@media screen and (min-width: 1920px) {
  .career-entry::after {
    background-size: 100% 1200px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-entry {
    height: 61.7224880383vw;
    padding-top: 11.1642743222vw;
    padding-top: 11.5629984051vw;
  }
  .career-entry::after {
    height: 95.6937799043vw;
  }
}
@media screen and (max-width: 767px) {
  .career-entry {
    background: url(../img/common/bg_btm_entry_sp.png) 0 0 no-repeat #fff;
    background-size: 100% auto;
    height: 149.3333333333vw;
    padding-top: 17.3333333333vw;
  }
  .career-entry::after {
    display: none;
  }
}

.career-entry__ttl {
  position: relative;
  z-index: 3;
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-entry__ttl {
    margin-bottom: 3.1897926635vw;
  }
}
@media screen and (max-width: 767px) {
  .career-entry__ttl {
    margin-bottom: 10.6666666667vw;
  }
}
.career-entry__ttl span {
  display: block;
}
.career-entry__ttl span.-en-txt {
  font-family: "Prompt", sans-serif;
  font-size: 100px;
  font-weight: 200;
  color: #fff;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-entry__ttl span.-en-txt {
    font-size: 7.9744816587vw;
  }
}
@media screen and (max-width: 767px) {
  .career-entry__ttl span.-en-txt {
    font-size: 18.6666666667vw;
  }
}
.career-entry__ttl span.-ja-txt {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-entry__ttl span.-ja-txt {
    font-size: 1.9138755981vw;
  }
}
@media screen and (max-width: 767px) {
  .career-entry__ttl span.-ja-txt {
    font-size: 5.3333333333vw;
  }
}

.career-entry__link {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  width: 880px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-entry__link {
    width: 70.1754385965vw;
  }
}
@media screen and (max-width: 767px) {
  .career-entry__link {
    width: 100%;
    gap: 5.3333333333vw;
  }
}
.career-entry__link li {
  width: calc(50% - 20px);
}
@media screen and (max-width: 767px) {
  .career-entry__link li {
    width: calc(50% - 2.6666666667vw);
  }
}
.career-entry__link li:first-child {
  width: 620px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-entry__link li:first-child {
    width: 49.4417862839vw;
  }
}
@media screen and (max-width: 767px) {
  .career-entry__link li:first-child {
    width: 100%;
  }
}
.career-entry__link li:first-child a {
  font-size: 26px;
  height: 120px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-entry__link li:first-child a {
    font-size: 2.0733652313vw;
    height: 9.5693779904vw;
  }
}
@media screen and (max-width: 767px) {
  .career-entry__link li:first-child a {
    font-size: 5.8666666667vw;
    height: 26.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .career-entry__link li:first-child a:after {
    right: 5.3333333333vw;
  }
}
.career-entry__link li a {
  display: -ms-grid;
  display: grid;
  place-content: center;
  font-weight: 700;
  height: 80px;
  font-size: 20px;
  color: #0096DF;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-entry__link li a {
    height: 6.379585327vw;
  }
}
@media screen and (max-width: 767px) {
  .career-entry__link li a {
    height: 16vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-entry__link li a {
    font-size: 1.5948963317vw;
    border-radius: 0.6379585327vw;
  }
}
@media screen and (max-width: 767px) {
  .career-entry__link li a {
    font-size: 3.7333333333vw;
    border-radius: 2.1333333333vw;
    border-radius: 2.1333333333vw;
  }
}
@media screen and (min-width: 1025px) {
  .career-entry__link li a:hover span {
    opacity: 0.7;
    -webkit-transition: opacity 0.2s ease-out;
    transition: opacity 0.2s ease-out;
  }
}
.career-entry__link li a::after {
  display: block;
  content: "";
  position: absolute;
  width: 17px;
  height: 18px;
  background: url(../img/career/icon_blank.svg) 0 center no-repeat;
  background-size: 100% auto;
  right: 30px;
  top: 50%;
  margin-top: -9px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-entry__link li a::after {
    width: 1.355661882vw;
    height: 1.4354066986vw;
    margin-top: -0.7177033493vw;
    right: 2.3923444976vw;
  }
}
@media screen and (max-width: 767px) {
  .career-entry__link li a::after {
    width: 3.2vw;
    height: 3.2vw;
    margin-top: -1.6vw;
    right: 2.6666666667vw;
  }
}
@media (orientation: landscape) and (max-width: 767px) {
  .career-entry__link li a::after {
    width: 12px;
    height: 12px;
    margin-top: -6px;
    right: 10px;
  }
}
.career-entry__link li a span {
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
  position: relative;
  z-index: 2;
  display: inline-block;
}
.career-entry__link li a span.-main {
  width: auto;
  padding: 0 40px;
  text-align: center;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-entry__link li a span.-main {
    padding: 0 3.1897926635vw;
  }
}
@media screen and (max-width: 767px) {
  .career-entry__link li a span.-main {
    width: 37.3333333333vw;
    padding: 0 0;
    text-indent: -1.6vw;
  }
}
.career-entry__link li a span.-sub {
  width: 120px;
  font-size: 16px;
  letter-spacing: 0;
  top: -4px;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-entry__link li a span.-sub {
    width: 9.5693779904vw;
    font-size: 1.2759170654vw;
    top: -0.3189792663vw;
  }
}
@media screen and (max-width: 767px) {
  .career-entry__link li a span.-sub {
    width: 22.4vw;
    font-size: 4.2666666667vw;
    top: -0.5333333333vw;
    margin-left: 10.6666666667vw;
  }
}
.career-entry__link li p {
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4666666667;
  text-align: center;
  margin-top: 20px;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) and (max-width: 1254px) {
  .career-entry__link li p {
    font-size: 1.1961722488vw;
    margin-top: 1.5948963317vw;
  }
}
@media screen and (max-width: 767px) {
  .career-entry__link li p {
    font-size: 3.2vw;
    margin-top: 2.6666666667vw;
    text-align: left;
  }
}

/*********************************************
footer
*********************************************/
@media screen and (max-width: 767px) {
  .footer {
    margin-top: 0;
    padding-top: 5.3333333333vw;
    background: #fff;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer-wave {
    top: -270px;
  }
}

/*********************************************
fixed_sp_btn
*********************************************/
#fixed_sp_btn {
  display: none;
}
@media screen and (max-width: 767px) {
  #fixed_sp_btn {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    -webkit-transition: transform 0.2s ease-out;
    -webkit-transition: -webkit-transform 0.2s ease-out;
    transition: -webkit-transform 0.2s ease-out;
    transition: transform 0.2s ease-out;
    transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
    -webkit-transform: translate3d(0, 16vw, 0);
            transform: translate3d(0, 16vw, 0);
  }
}
#fixed_sp_btn.is-show {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
@media screen and (max-width: 767px) {
  #fixed_sp_btn a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 16vw;
    border-radius: 2.6666666667vw 2.6666666667vw 0px 0px;
    background: -webkit-gradient(linear, left top, left bottom, from(#54c2f0), to(#0096df));
    background: linear-gradient(#54c2f0 0%, #0096df 100%);
    color: #fff;
  }
}
@media screen and (max-width: 767px) {
  #fixed_sp_btn .en-txt {
    font-family: "Prompt", sans-serif;
    font-weight: 400;
    font-size: 8vw;
    letter-spacing: 0.06em;
  }
}
@media screen and (max-width: 767px) {
  #fixed_sp_btn .ja-txt {
    margin-left: 1.0666666667vw;
    font-size: 3.7333333333vw;
    font-weight: 700;
  }
}