@charset "UTF-8";

.sRecruitBody {
  padding: 2.75rem 0 5.5rem 0;
}

@media screen and (max-width: 540px) {
  .sRecruitBody {
    padding: 2.3rem 0 4.4rem 0;
  }
}

/* ========== タブ ========== */
.cTabs {
  display: flex;
  gap: 0;
  margin-bottom: 2.8rem;
  justify-content: center;
  border-bottom: 1px solid #D7D8DD;
}

@media screen and (max-width: 540px) {
  .cTabs {
    margin-bottom: 1.5rem;
  }
}

.cTabs__tab {
  padding: 1.25rem 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30%;
  color: #25599A;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-radius: 1.25rem 1.25rem 0 0;
  border: 1px solid #D7D8DD;
  border-bottom: none;
  background: #F3F3F1;
  font-weight: 500;
  cursor: pointer;
}



.cTabs__tab.isActive {
  position: relative;
  color: var(--bg-light-gray, #FBFBFB);
  font-size: 1rem;
  z-index: 1;
  border: none;
  background: var(--blue, #25599A);
  border-bottom-color: transparent;
}



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

  .cTabs__tab,
  .cTabs__tab.isActive {
    padding: 0.7rem 1rem;
    font-size: 0.8125rem;
    border-radius: 0.625rem 0.625rem 0 0;
  }
}




/* ========== テーブル（定義リスト） ========== */
.cRecruitTable__content {
  margin-bottom: 2.5rem;
}

.cRecruitTable {
  border: 1px solid var(--blue, #25599A);
}

.cRecruitTable__grid {
  margin: 0;
  display: block;
}

.cRecruitTable__row {
  display: grid;
  grid-template-columns: 250px 1fr;
  border-bottom: 1px solid var(--blue, #25599A);
}

@media screen and (max-width: 540px) {
  .cRecruitTable__row {
    grid-template-columns: 29% 1fr;
  }
}

.cRecruitTable__row:last-child {
  border-bottom: none;
}


.cRecruitTable__row dt,
.cRecruitTable__row dd {
  margin: 0;
  padding: 1.25rem 2.5rem;
}

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

  .cRecruitTable__row dt,
  .cRecruitTable__row dd {
    padding: 0.75rem 0.5rem;
  }
}

.cRecruitTable__row dt {
  display: flex;
  align-items: center;
  height: 100%;
  color: var(--black, #000);
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: 180%;
  border-right: 1px solid var(--blue, #25599A);
  background: var(--bg-light-blue, #E4E9F3);
  vertical-align: middle;
}

@media screen and (max-width: 540px) {
  .cRecruitTable__row dt {
    font-size: 0.8125rem;
  }
}

.cRecruitTable__row dd {
  color: #000;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
  white-space: pre-wrap;
}

@media screen and (max-width: 540px) {
  .cRecruitTable__row dd {
    font-size: 0.8125rem;
  }
}


/* 見出しセルが2行以上になっても縦中央に */
.cRecruitTable__row {
  align-items: center;
}

.cRecruitTable__row dd {
  align-self: stretch;
  display: flex;
  align-items: center;
}



.cRecruit__button {
  display: inline-block;
  padding: 1.3rem 2.5rem;
  border-radius: 0.6875rem;
  background: var(--white, #FFF);
  box-shadow: 0 0 5px 3px rgba(0, 0, 0, 0.14);
}

@media screen and (max-width: 540px) {
  .cRecruit__button {
    padding: 0.7rem 1.4rem;
  }
}

.cRecruit__button img {
  width: 22.72438rem;
}

@media screen and (max-width: 540px) {
  .cRecruit__button img {
    width: 13.43969rem;
  }
}