img {
  width: 100%;
}
/* ---------------------------------------
求人一覧ページ
------------------------------------------ */
#archive-recruit {
  margin-top: 26px;
  min-height: calc(100vh - 190px);
  background: #f7f7f7;
}
.archive_recruit_container {
  max-width: 1100px;
  width: calc(100% - 24px);
  margin: 12px auto;
  padding: 80px 0;
}
.job_list_card {
  position: relative;
  text-decoration: none;
  display: flex;
  background: #fff;
  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: 84%;
  padding: 28px 36px;
  flex-shrink: 0;
}
.job_list_link:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
}
.archive_recruit_container h1 {
  font-size: 24px;
  font-weight: bold;
}
.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(--sub-color);
  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: 980px) {
  .job_list_inner {
    width: 80%;
  }
}
@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;
    padding: 40px 0;
  }
  .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;
  }
}
/* ---------------------------------------
求人個別
------------------------------------------ */
#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: #2c2c2c;
  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(--sub-color) 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(--sub-color);
}
#recruit .recruit_text {
  line-height: 1.8;
  letter-spacing: 0.05em;
  padding-left: 16px;
}
.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: 30%;
}

/* ---------------------------------------
 キャリアプロセス
------------------------------------------ */
#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_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: #f4f4f4;
}
.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;
}
.entry_btn_wrap {
  display: block;
  margin: 5rem auto 0;
  -webkit-box-shadow: 0px 0px 0 var(--sub-color);
  box-shadow: 0px 0px 0 var(--sub-color);
  max-width: 677px;
  transition: 0.2s ease-out;
}
.entry_btn {
  position: relative;
  display: block;
  width: 100%;
  background: var(--accent-color);
  background: -moz-linear-gradient(
    -45deg,
    #ec6700 0%,
    #e38c4a 60%,
    #edb88f 100%
  );
  background: -webkit-linear-gradient(
    -45deg,
    #ec6700 0%,
    #e38c4a 60%,
    #edb88f 100%
  );
  background: linear-gradient(135deg, #ec6700 0%, #e38c4a 60%, #edb88f 100%);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 2rem 0;
  text-align: center;
  overflow: hidden;
}
.entry_btn:visited,
.entry_btn:link {
  color: #fff;
}
@media screen and (max-width: 480px) {
  .recruit_container {
    width: 90%;
  }
  #recruit h1 {
    font-size: 20px;
    margin-top: 2rem;
    padding: 1rem;
  }
  .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;
  }
  .entry_btn_wrap {
    margin: 2rem auto 0;
  }
  .entry_btn {
    font-size: 1.2rem;
    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;
  }
}
