@charset "utf-8";
/* CSS Document */

.footer_recruit{display:none;}
.recruit_page {
  position: relative;
  overflow: hidden;
}

.recruit_page > .cate {
  position: relative;
  z-index: 2;
}

.staff_interview .interview_list {
  display: grid;
  gap: clamp(50px, 7vw, 90px);
}

.staff_interview .interview_item {
  align-items: center;
  gap: clamp(40px, 7vw, 90px);
}

.staff_interview .interview_img {
  width: min(420px, 42%);
  position: relative;
  overflow: hidden;
}

.staff_interview .interview_img::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 32%;
  background: #1A73F1;
  clip-path: polygon(0 0, 100% 0, 100% 32%, 0 100%);
  z-index: 1;
}

.staff_interview .interview_img img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.staff_interview .interview_txtbox {
  flex: 1;
  min-width: 0;
}

.staff_interview .job {
  position: relative;
  padding-bottom: 12px;
}

.staff_interview .job::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 1px;
  background: #1A73F1;
}

.staff_interview .interview_name {
  justify-content: flex-start;
  gap: 18px;
}

.staff_interview .interview_name p {
  letter-spacing: 0.22em;
}

.staff_interview .interview_q {
  justify-content: flex-start;
  gap: 14px;
}

.staff_interview .interview_q > p {
  width: 32px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #1A73F1;
  color: #fff;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .staff_interview .interview_item {
    display: block;
  }

  .staff_interview .interview_img {
    width: 100%;
    max-width: 420px;
    margin: 0 auto 36px;
  }
}

.ideal_candidate .candidate_contents {
  align-items: center;
  gap: clamp(40px, 7vw, 90px);
}

.ideal_candidate .txtbox {
  flex: 1;
}

.ideal_candidate .imgbox {
  width: min(560px, 50%);
  overflow: hidden;
}

.ideal_candidate .imgbox img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.ideal_candidate .candidate_list {
  display: grid;
  gap: clamp(18px, 2vw, 26px);
}

.ideal_candidate .candidate_item {
  justify-content: flex-start;
  gap: 12px;
    flex-wrap: nowrap;
}

.ideal_candidate .candidate_item i {
  width: 32px;
  aspect-ratio: 1;
  flex: none;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #1A73F1;
  color: #fff;
  font-size: 15px;
}

.ideal_candidate .candidate_item p {
  line-height: 1.8;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 900px) {
  .ideal_candidate .candidate_contents {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
      gap:0px
  }

  .ideal_candidate .imgbox {
    order: 1;
    width: 100%;
    max-width: 560px;
    margin: 0 auto 34px;
  }

  .ideal_candidate .txtbox {
    order: 2;
    width: 100%;
  }
}

.job_description .job_box {
  width: 100%;
  background: transparent;
  box-shadow: none;
}

.job_description .job_item {
  align-items: stretch;
  gap: 0;
  padding: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.job_description .job_item:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.job_description .job_item p {
  margin: 0;
  box-sizing: border-box;
}

.job_description .job_item .label {
  width: clamp(230px, 28vw, 360px);
  flex: none;
  padding: clamp(22px, 2.6vw, 32px) clamp(22px, 3vw, 36px);
  background: #1A73F1;
  color: #fff;
  font-weight: 700;
  line-height: 1.6;
}

.job_description .job_item .body_txt {
  flex: 1;
  padding: clamp(22px, 2.6vw, 32px) clamp(24px, 3vw, 42px);
  background: #fff;
  line-height: 1.8;
}

@media screen and (max-width: 768px) {
  .job_description .job_item {
    display: block;
  }

  .job_description .job_item .label,
  .job_description .job_item .body_txt {
    display: block;
    width: 100%;
  }

  .job_description .job_item .label {
    padding: 18px 24px;
  }

  .job_description .job_item .body_txt {
    padding: 18px 24px 24px;
  }
}

.recruitment_link {
  justify-content: center;
  gap: clamp(14px, 2vw, 24px);
  flex-wrap: wrap;
}

.recruitment_link a {
  display: block;
  width: calc((100% - clamp(14px, 2vw, 24px) * 3) / 4);
  min-width: 220px;
  background: #fff;
  border-radius: 4px;
  text-decoration: none;
}

.recruitment_link a > .flex {
  justify-content: space-between;
  gap: 12px;
  padding: 18px 24px;
  flex-wrap: nowrap;
}

.recruitment_link p {
  color: #0B0BAC;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.recruitment_link i {
  color: #111;
  line-height: 1;
}

@media screen and (max-width: 1280px) {
  .recruitment_link a {
    width: calc((100% - clamp(14px, 2vw, 24px)) / 2);
    min-width: 0;
  }
}


@media screen and (max-width: 576px) {
  .recruitment_link a {
    width: 100%;
  }
}
.recruitment_block {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 12%, rgba(135, 76, 190, 0.38) 0%, rgba(135, 76, 190, 0) 34%),
    radial-gradient(circle at 84% 18%, rgba(36, 122, 255, 0.36) 0%, rgba(36, 122, 255, 0) 34%),
    radial-gradient(circle at 48% 58%, rgba(68, 190, 255, 0.22) 0%, rgba(68, 190, 255, 0) 38%),
    radial-gradient(circle at 70% 82%, rgba(92, 48, 165, 0.3) 0%, rgba(92, 48, 165, 0) 40%),
    linear-gradient(140deg, #060923 0%, #171052 32%, #063a8f 62%, #12072f 100%);
}
.recruitment_block .inner {
  position: relative;
  z-index: 2;
}

.recruitment_block .recruitment_list {
  display: grid;
  gap: clamp(34px, 5vw, 64px);
}

.recruitment_block .recruitment_table {
  width: 100%;
  background: #fff;
  overflow: hidden;
}

.recruitment_block .recruitment_table .row {
  align-items: stretch;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.recruitment_block .recruitment_table .row:last-child {
  border-bottom: none;
}

.recruitment_block .recruitment_table .row p {
  margin: 0;
  padding: clamp(14px, 2vw, 22px);
  line-height: 1.8;
  box-sizing: border-box;
}

.recruitment_block .recruitment_table .label {
  width: clamp(150px, 20vw, 230px);
  flex: none;
  background: #1A73F1;
  color: #fff;
  font-weight: 700;
}

.recruitment_block .recruitment_table .row p:not(.label) {
  flex: 1;
  background: #fff;
}

@media screen and (max-width: 768px) {

      .recruitment_block .recruitment_table .row {
    display: block;
  }

  .recruitment_block .recruitment_table .label,
  .recruitment_block .recruitment_table .row p:not(.label) {
    display: block;
    width: 100%;
  }

  .recruitment_block .recruitment_table .row p {
    padding-left: 24px;
    padding-right: 24px;
  }
    
}

/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}
/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px){
}
/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px){
}
/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px){
}
/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px){
}
/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px){
}

