/* ---------------------------------------
求人一覧ページ
------------------------------------------ */
#archive-recruit {
  /* margin-top: 26px; */
  min-height: calc(100vh - 190px);
  background: #f7f7f7;
}
.archive_recruit_container {
  max-width: 1240px;
  width: calc(100% - 24px);
  margin: 0px auto;
  padding: 120px 0;
}
.archive_recruit_container h1 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 32px;
}
.job_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.job_list::after {
  content: "";
  width: calc((100% / 2) - 8px);
}
.job_list_card {
  position: relative;
  text-decoration: none;
  display: flex;
  background: #fff;
  width: calc((100% / 2) - 8px);
  max-width: 1100px;
  /* margin: 16px auto; */
  border-radius: 4px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
  transition: 0.3s ease;
}
.job_list_card:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.15);
  color: var(--sub-color);
  transition: 0.3s ease;
}
.job_list_inner {
  width: 100%;
  padding: 28px 36px;
  flex-shrink: 0;
}
.job_list_link:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
}
.job_list_card h2 {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.43;
  height: auto;
  word-wrap: break-word;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
  overflow: visible;
  border-left: 3px solid var(--color-main);
  margin-bottom: 12px;
  padding-left: 12px;
}
.job_content h3 {
  line-height: 1.43;
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-decoration: none;
  font-weight: bold;
}
.job_thumb_wrap {
  width: 180px;
  flex-shrink: 0;
  display: block;
  overflow: hidden;
  border-radius: 4px 0 0 4px;
}
.job_list_card:hover img {
  border-radius: 4px 0 0 4px;
  transform: scale(1.05);
  transition: 0.3s ease;
}
.job_thumb_wrap img {
  border-radius: 4px 0 0 4px;
  transition: 0.3s ease;
}
.job_content .job_content_text {
  font-size: 14px;
  color: #767676;
  margin-top: 12px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 1040px) {
  .job_list_inner {
    padding: 24px;
  }
}
@media (max-width: 980px) {
  .job_list {
    display: block;
  }
  .job_list_card {
    width: 100%;
    margin: 16px 0;
  }
  .job_list_inner {
    width: 98%;
    margin: 0 auto;
  }
}
@media (max-width: 820px) {
  .job_list_inner {
    /* width: 80%; */
    padding: 28px;
  }
  .job_thumb_wrap {
    width: 140px;
  }
}
@media (max-width: 680px) {
  .archive_recruit_container {
    margin: 0px auto;
  }
  .archive_recruit_container h1 {
    font-size: 22px;
  }
  .job_list_card {
    display: block;
  }
  .job_thumb_wrap {
    width: 100%;
  }
  .job_thumb_wrap img {
    border-radius: 4px 4px 0 0;
    aspect-ratio: 16 / 9;
  }
  .job_list_inner {
    width: 100%;
    padding: 20px;
  }
  .job_list {
    margin-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .job_list_card h2 {
    font-size: 16px;
  }
}
/* ---------------------------------------
求人個別
------------------------------------------ */
#recruit img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bg_overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.8);
}
#recruit {
  width: 100%;
  margin-top: 100px;
}
.recruit_container {
  width: 96%;
  max-width: 900px;
  margin: 0 auto;
  padding-bottom: 80px;
}
#recruit h1 {
  display: block;
  font-size: 24px;
  font-weight: bold;
  background: linear-gradient(90deg, var(--color-main) 0%, #1f73c7 100%);
  padding: 1.5rem 2rem;
  color: #fff;
  margin-top: 4rem;
  overflow: hidden;
  letter-spacing: 0.1em;
  line-height: 1.5;
  position: relative;
}
#recruit h1::before {
  content: "";
  display: block;
  width: 110px;
  height: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  background: var(--sub-color);
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
  -webkit-transform: skew(-20deg);
  transform: skew(-20deg);
  z-index: 1;
}
.recruit_thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  /* height: 320px; */
  margin: 32px auto;
}
.recruit_thumb img {
  object-fit: cover;
}
#recruit h2 {
  position: relative;
  display: block;
  font-size: 22px;
  font-weight: bold;
  padding-left: 2rem;
  margin: 4rem 0 1.6rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  padding-top: 0.5rem;
}
#recruit h2::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: var(--color-main) transparent transparent transparent;
  position: absolute;
  top: 0;
  left: 0;
}
.job_detail_title {
  font-weight: 700;
  font-size: 18px;
  margin: 16px 0;
  padding-left: 16px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: var(--color-main);
}
.recruit_container p,
.recruit_container ul {
  line-height: 2;
  letter-spacing: 0.05em;
  padding-left: 16px;
}
.recruit_container .c-table p {
  padding-left: 0;
}
.detail {
  width: 100%;
  max-width: 980px;
  margin: 80px auto;
}
table {
  background: white;
  width: 100%;
  margin: 32px auto;
  font-size: 0.9em;
  line-height: 1.8;
  letter-spacing: 0.05em;
  border-spacing: 0;
  border-collapse: collapse;
}
tr:nth-child(odd) {
  background-color: #f7f7f7;
}
th,
td {
  padding: 14px;
  line-height: 1.5;
  vertical-align: middle;
  border: 1px solid #ccc;
}
th {
  width: 25%;
}
@media (max-width: 480px) {
  #recruit h2 {
    padding-left: 1.6rem;
    margin: 4rem 0 1.2rem;
  }
  th,
  td {
    font-size: 14px;
  }
  .recruit_container p,
  .recruit_container ul {
    padding: 0;
    line-height: 1.8;
  }
}
/* ---------------------------------------
 キャリアプロセス
------------------------------------------ */
#message {
  width: 100%;
  background: #f4f4f4;
  padding-top: 40px;
}
#message h2 {
  margin: 0 auto 40px;
}
.career_image {
  width: 100%;
}
@media (max-width: 480px) {
  .career_image {
    width: 560px;
  }
  #message .recruit_container {
    overflow-x: scroll;
  }
}

/* ---------------------------------------
選考フロー（flow）
------------------------------------------ */
#recruit .flow h2 {
  margin: 80px auto 40px;
}
.flow {
  background: #f4f4f4;
  padding: 40px 0;
}
.flow_list_wrap {
  list-style: none;
  margin-top: 3rem;
  counter-reset: number 0;
}
.flow_item {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  color: #2c2c2c;
  margin: 0 0 40px;
  padding: 1.5rem;
  background: #fff;
}
.flow_item:not(.first_flow)::before {
  position: absolute;
  top: -25px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 13px 14px 0 14px;
  border-color: #2c2c2c transparent transparent transparent;
}
.flow .flow_item h3 {
  position: relative;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1.5;
  margin: 16px 0;
  padding: 4px 0 4px 48px;
}
.flow_item h3::before {
  counter-increment: number 1;
  content: counter(number) " ";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  line-height: 36px;
  font-size: 20px;
  font-family: "Lato", sans-serif;
  font-weight: bold;
  text-align: center;
  color: #fff;
  background: #2c2c2c;
}
.job_entry_btn_wrap {
  display: block;
  margin: 5rem auto 0;
  -webkit-box-shadow: 0px 0px 0 var(--color-accent);
  box-shadow: 0px 0px 0 var(--color-accent);
  max-width: 677px;
  transition: 0.2s ease-out;
}
.job_entry_btn {
  position: relative;
  display: block;
  width: 100%;
  background: var(--color-accent);
  background: -moz-linear-gradient(
    -45deg,
    var(--color-accent) 0%,
    #d72d60 60%,
    #cc7994 100%
  );
  background: -webkit-linear-gradient(
    -45deg,
    var(--color-accent) 0%,
    #d72d60 60%,
    #cc7994 100%
  );
  background: var(--color-accent-gradient);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 2rem 0;
  text-align: center;
  overflow: hidden;
}
.job_entry_btn:visited,
.job_entry_btn:link {
  color: #fff;
}
@media screen and (max-width: 480px) {
  .recruit_container {
    width: 96%;
  }
  #recruit h1 {
    font-size: 20px;
    margin-top: 2rem;
    padding: 1rem;
  }
  #recruit .flow h2 {
    margin: 40px auto;
  }
  .recruit_thumb {
    height: 224px;
  }
  #recruit h2 {
    font-size: 20px;
    margin-top: 2.4rem;
  }
  #recruit p {
    font-size: 14px;
  }
  .detail {
    margin: 56px auto 0;
  }
  .flow_list_wrap {
    margin-top: 2rem;
  }
  #recruit h3 {
    font-size: 17px;
    padding-left: 0;
  }
  .flow_item {
    font-size: 14px;
    padding: 1rem;
  }
  .flow_item h3::before {
    width: 28px;
    height: 28px;
    line-height: 28px;
    font-size: 16px;
  }
  #recruit .flow_item h3 {
    font-size: 18px;
    padding: 4px 0 4px 40px;
  }
  .job_entry_btn_wrap {
    margin: 2rem auto 0;
  }
  .job_entry_btn {
    font-size: 1rem;
    padding: 1rem 0;
  }
}
.interview_job {
  background: #f4f4f4;
  padding-top: 40px;
}
.-two-step {
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 40px auto 0;
}
.interview_job img {
  object-position: top;
}
.c-red-section {
  margin-top: 0;
}
.interview_title {
  font-size: clamp(16px, 3vw, 22px);
}
@media screen and (max-width: 820px) {
  .-two-step {
    gap: 24px;
    margin: 40px auto 0;
  }
}
@media screen and (max-width: 480px) {
  .-two-step {
    gap: 8px;
    margin: 24px auto 0;
  }
  .-two-step {
    grid-template-columns: 1fr;
  }
  .c-column__box {
    width: 96%;
    margin: 16px auto;
  }
}
