@charset "UTF-8";
.related-link-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 12.36vw;
  margin-right: -2.78vw;
}

.related-link-list_item {
  width: calc(33.3333% - 2.78vw);
  margin-right: 2.78vw;
}

.related-link-list .title-lv3, .related-link-list .text {
  color: #000;
}

.related-link-list .title-lv3 {
  position: relative;
  margin-top: 20px;
  margin-bottom: 22px;
  font-size: 30px;
}

@media screen and (max-width: 1339px) {
  .related-link-list .title-lv3 {
    font-size: 28px;
  }
}
.related-link-list .title-lv3::after {
  content: "";
  display: block;
  position: absolute;
  vertical-align: middle;
  width: 5px;
  height: 2px;
  border-top: 2px solid #757575;
  bottom: -17px;
  left: 0;
}

.related-link-list .title-lv3-ja {
  display: block;
  margin-top: -10px;
  font-size: 12px;
  color: #757575;
}

.related-link-list .text {
  margin-top: 35px;
}

.related-link-list .text-link-container {
  margin-top: 16px;
  border-top: 1px solid #e5e5e5;
  padding-top: 12px;
}

/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */
/* Hide scroll bar */
html.remodal-is-locked {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
}

/* Anti FOUC */
.remodal,
[data-remodal-id] {
  display: none;
}

/* Necessary styles of the overlay */
.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  display: none;
}

/* Necessary styles of the wrapper */
.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch;
}

.remodal-wrapper:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: "";
}

/* Fix iPad, iPhone glitches */
.remodal-overlay,
.remodal-wrapper {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

/* Necessary styles of the modal dialog */
.remodal {
  position: relative;
  outline: none;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}

/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */
/* Default theme styles for the background */
.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  -webkit-filter: blur(3px);
          filter: blur(3px);
}

/* Default theme styles of the overlay */
.remodal-overlay {
  background: rgb(255, 255, 255);
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
  -webkit-animation-name: remodal-overlay-opening-keyframes;
          animation-name: remodal-overlay-opening-keyframes;
}

.remodal-overlay.remodal-is-closing {
  -webkit-animation-name: remodal-overlay-closing-keyframes;
          animation-name: remodal-overlay-closing-keyframes;
}

/* Default theme styles of the wrapper */
.remodal-wrapper {
  padding: 10px 10px 0;
}

/* Default theme styles of the modal dialog */
.remodal {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
  -webkit-animation-name: remodal-opening-keyframes;
          animation-name: remodal-opening-keyframes;
}

.remodal.remodal-is-closing {
  -webkit-animation-name: remodal-closing-keyframes;
          animation-name: remodal-closing-keyframes;
}

/* Vertical align of the modal dialog */
.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}

/* Close button */
.remodal-close {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  overflow: visible;
  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  text-decoration: none;
  color: #95979c;
  border: 0;
  outline: 0;
  background: transparent;
}

.remodal-close:hover,
.remodal-close:focus {
  color: #2b2e38;
}

.remodal-close:before {
  font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  font-size: 25px;
  line-height: 35px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 35px;
  content: "×";
  text-align: center;
}

/* Dialog buttons */
.remodal-confirm,
.remodal-cancel {
  font: inherit;
  display: inline-block;
  overflow: visible;
  min-width: 110px;
  margin: 0;
  padding: 12px 0;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border: 0;
  outline: 0;
}

.remodal-confirm {
  color: #fff;
  background: #81c784;
}

.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a;
}

.remodal-cancel {
  color: #fff;
  background: #e57373;
}

.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350;
}

/* Remove inner padding and border in Firefox 4+ for the button tag. */
.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* Keyframes
   ========================================================================== */
@-webkit-keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    opacity: 0;
  }
  to {
    -webkit-transform: none;
            transform: none;
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    opacity: 0;
  }
  to {
    -webkit-transform: none;
            transform: none;
    opacity: 1;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@-webkit-keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    opacity: 0;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
    opacity: 0;
    -webkit-filter: blur(0);
            filter: blur(0);
  }
}
@-webkit-keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* Media queries
   ========================================================================== */
@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 950px;
  }
}
/* IE8
   ========================================================================== */
.lt-ie9 .remodal-overlay {
  background: #2b2e38;
}

.lt-ie9 .remodal {
  width: 700px;
}

/*
.hoge{
	@include size(width, 1440);
}
*/
html {
  scroll-behavior: inherit;
}

.sp, .-sp {
  display: none !important;
}

@font-face {
  font-family: "Noto Sans JP Regular";
  font-style: normal;
  font-weight: 400;
  src: url("font/NotoSansJP-Regular.woff") format("woff");
}
:root {
  --fw-m: "Noto Sans JP Medium";
  --fw-b: "Noto Sans JP Bold";
}

#recruitPage {
  font-family: "Noto Sans JP", sans-serif;
}
#recruitPage .pc, #recruitPage .-pc {
  display: block !important;
}
#recruitPage .pageHead {
  padding-left: 3.47vw;
  padding-right: 3.47vw;
  padding-top: 40px;
  margin-bottom: 85px;
}
#recruitPage .pageHead .title-lv2 {
  position: relative;
  font-size: 60px;
  color: #000;
  font-weight: 500 !important;
  line-height: 1.2;
}
#recruitPage .pageHead .title-lv2-ja {
  display: block;
  font-size: 20px;
  color: #757575;
  font-weight: bold;
}
#recruitPage .kvSecWrp {
  overflow: hidden;
}
#recruitPage .kvSec {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: marquee-kv 75s linear infinite;
          animation: marquee-kv 75s linear infinite;
}
#recruitPage .kvSec .sld-item {
  width: 412px;
}
#recruitPage .kvSec .sld-item img {
  width: 100%;
}
#recruitPage .recruitSec {
  margin: 0 auto;
  max-width: 960px;
  padding: 70px 0 80px;
}
#recruitPage .recruitSec__ttl {
  position: relative;
  font-size: 24px;
  font-weight: 700;
  font-family: var(--fw-b);
  line-height: normal;
  margin-bottom: 60px;
}
#recruitPage .recruitSec__ttl::after {
  content: "";
  display: block;
  position: absolute;
  width: 5px;
  height: 2px;
  border-top: 2px solid #757575;
  bottom: -17px;
  left: 0;
}
#recruitPage .recruitSec .recruitCnt {
  margin-top: -5px;
}
#recruitPage .recruitSec .recruitCnt__topTxt {
  font-size: 16px;
  font-weight: 400;
}
#recruitPage .recruitSec .recruitCnt__clm {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 40px;
}
#recruitPage .recruitSec .recruitCnt__clm .recruitBox {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #F6F6F6;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px 42px 32px;
  border-radius: 4px;
  gap: 13px;
  width: calc(50% - 15px);
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#recruitPage .recruitSec .recruitCnt__clm .recruitBox__txtarea p {
  margin-bottom: 12px;
}
#recruitPage .recruitSec .recruitCnt__clm .recruitBox__ttl {
  font-size: 20px;
  font-weight: 700;
  font-family: var(--fw-b);
  line-height: 1.7; /* 170% */
}
#recruitPage .recruitSec .recruitCnt__clm .recruitBox__txt {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75; /* 175% */
}
#recruitPage .recruitSec .recruitCnt__clm .recruitBox__note {
  color: #757575;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.66; /* 166.667% */
}
#recruitPage .recruitSec .recruitCnt__clm .recruitBox__btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
#recruitPage .recruitSec .recruitCnt__clm .recruitBox__btn a {
  font-weight: 700;
  font-family: var(--fw-b);
  border-radius: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: #000;
  color: #fff;
  line-height: 1;
  padding: 7px 15px 7px 25px;
  font-size: 12px;
}
#recruitPage .activatorSec {
  background: #F5F5F5;
  padding: 70px 0 80px;
}
#recruitPage .activatorSec__in {
  margin: 0 auto;
  max-width: 960px;
}
#recruitPage .activatorSec__ttl {
  position: relative;
  font-size: 24px;
  margin-bottom: 65px;
}
#recruitPage .activatorSec__ttl::after {
  content: "";
  display: block;
  position: absolute;
  width: 5px;
  height: 2px;
  border-top: 2px solid #757575;
  bottom: -17px;
  left: 0;
}
#recruitPage .activatorSec .atCnt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#recruitPage .activatorSec .atCnt__img {
  width: 360px;
}
#recruitPage .activatorSec .atCnt__img img {
  width: 100%;
}
#recruitPage .activatorSec .atCnt__txtarea {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 568px;
}
#recruitPage .activatorSec .atCnt__txtarea .txtCopy {
  font-family: Inter;
  font-size: 16px;
  font-family: var(--fw-m);
  font-weight: 600;
  line-height: normal;
}
#recruitPage .activatorSec .atCnt__txtarea .txtTtl {
  font-family: Inter;
  font-size: 32px;
  font-family: var(--fw-m);
  font-weight: 600;
  line-height: normal;
  margin-top: 5px;
}
#recruitPage .activatorSec .atCnt__txtarea .txtRead {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px; /* 175% */
  margin-top: 15px;
}
#recruitPage .activatorSec .atCnt__txtarea .btnBlock {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 25px;
}
#recruitPage .activatorSec .atCnt__txtarea .btnBlock a {
  font-weight: 700;
  font-family: var(--fw-b);
  border-radius: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: #000;
  color: #fff;
  line-height: 1;
  padding: 7px 15px 7px 25px;
  font-size: 12px;
}
#recruitPage .activatorSec .ogBlock {
  margin-top: 70px;
}
#recruitPage .activatorSec .ogBlock .ogItem {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #CCC;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
#recruitPage .activatorSec .ogBlock .ogItem__img {
  width: 270px;
}
#recruitPage .activatorSec .ogBlock .ogItem__img img {
  width: 100%;
}
#recruitPage .activatorSec .ogBlock .ogItem__txtarea {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  gap: 6px;
  padding: 0 32px;
  width: calc(100% - 270px);
}
#recruitPage .activatorSec .ogBlock .ogItem__txtarea .infoClm {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
#recruitPage .activatorSec .ogBlock .ogItem__txtarea .date {
  color: #757575;
  font-family: "Helvetica Neue";
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}
#recruitPage .activatorSec .ogBlock .ogItem__txtarea .cat {
  -webkit-font-smoothing: antialiased;
  border-radius: 100px;
  background: var(--blk, #000);
  color: #fff;
  font-weight: 700;
  font-family: var(--fw-b);
  line-height: 1; /* 100% */
  padding: 4px 8px;
  font-size: 12px;
}
#recruitPage .activatorSec .ogBlock .ogItem__txtarea .ttl {
  font-size: 18px;
  font-weight: 500;
  font-family: var(--fw-m);
  line-height: 160%; /* 28.8px */
  letter-spacing: -0.36px;
}
#recruitPage .activatorSec .ogBlock .ogItem__txtarea .tag {
  color: #757575;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
}
#recruitPage .graphSec {
  -webkit-font-smoothing: antialiased;
  padding: 70px 0 80px;
  background: url("/corp/set/data/technology/research/recruit/img/graph-bg.png");
  color: #fff;
}
#recruitPage .graphSec__in {
  margin: 0 auto;
  width: 950px;
}
#recruitPage .graphSec__ttl {
  position: relative;
  font-size: 24px;
  margin-bottom: 65px;
}
#recruitPage .graphSec__ttl::after {
  content: "";
  display: block;
  position: absolute;
  vertical-align: middle;
  width: 5px;
  height: 2px;
  border-top: 2px solid #757575;
  bottom: -17px;
  left: 0;
}
#recruitPage .graphSec .graphList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 72px 58px;
  margin-bottom: 50px;
}
#recruitPage .graphSec .item__head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: solid 1px #fff;
  padding-bottom: 5px;
  margin-bottom: 30px;
}
#recruitPage .graphSec .item__head .txtJ {
  font-size: 16px;
  font-weight: 700;
  font-family: var(--fw-b);
}
#recruitPage .graphSec .item__head .txtE {
  font-family: Inter;
  font-size: 12px;
  font-weight: 500;
  font-family: var(--fw-m);
}
#recruitPage .graphSec .item__img {
  text-align: center;
}
#recruitPage .graphSec .item .-img1 {
  width: 241px;
}
#recruitPage .graphSec .item .-img2 {
  width: 262px;
}
#recruitPage .graphSec .item .-img3 {
  width: 421px;
  margin-top: 55px;
}
#recruitPage .graphSec .item .-img4 {
  width: 364px;
}
#recruitPage .graphSec .item .-img5 {
  width: 345px;
}
#recruitPage .graphSec .item .-img6 {
  width: 302px;
  margin-top: 55px;
}
#recruitPage .graphSec .item .-img7 {
  width: 730px;
}
#recruitPage .graphSec .item .-img8 {
  width: 685px;
}
#recruitPage .graphSec .item .-img9 {
  width: 719px;
}
#recruitPage .graphSec .qList {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 55px;
}
#recruitPage .graphSec .qList .qItem {
  padding-bottom: 55px;
  border-bottom: dotted 1px #555;
}
#recruitPage .graphSec .qList .qItem:last-child {
  border: none;
  padding-bottom: 0;
}
#recruitPage .graphSec .qList .qItem__ttl {
  font-weight: 700;
  font-family: var(--fw-b);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  letter-spacing: 0.1em;
  gap: 6px;
  font-size: 20px;
  margin-bottom: 32px;
}
#recruitPage .graphSec .qList .qItem__ttl .qBox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 6px;
  border: solid 1px #fff;
  font-family: Inter;
  font-size: 14px;
  width: 38px;
  height: 18px;
}
#recruitPage .graphSec .qList .qItem__img {
  text-align: center;
}
#recruitPage .graphSec .qList .qItem__img img {
  margin-left: auto;
  margin-right: auto;
}
#recruitPage .relatedSec {
  padding: 80px 0;
}
#recruitPage .relatedSec .related-link-list {
  margin: 0 auto;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0px 30px;
  max-width: 960px;
}
#recruitPage .relatedSec .related-link-list_item {
  width: auto;
  margin: 0;
}
#recruitPage .relatedSec .related-link-list .title-lv3 {
  font-weight: 500;
  font-family: var(--fw-m);
}

@-webkit-keyframes marquee-kv {
  from {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes marquee-kv {
  from {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}/*# sourceMappingURL=substyle.css.map */