@charset "UTF-8";

/* =================================== */
/*               採用情報               */
/* =================================== */
/* .recruit_main */
@media screen and (min-width: 767px) {
  .recruit_main {
    margin-bottom: 100px;
  }
}

@media screen and (max-width: 768px) {
  .recruit_main {
    margin-bottom: 60px;
  }
}


.recruit_img img {
  width: 100%;
}



/* .recruit_wrap */
.btn {
  text-align: center;
}

.tbl01 {
  margin-bottom: 45px;
}

@media screen and (min-width: 767px) {
  .recruit_wrap_box {
    margin-bottom: 126px;
  }
  .recruit_wrap {
    margin-top: 116px;
    display: flex;
  }

  .recruit_wrap .recruit__title-area {
    width: 40%;
  }

  .tbl01 tr th {
    width: 20%;
    vertical-align: top;
  }

  .btn .button {
    width: 388px;
  }
}

@media (max-width: 1200px) and (min-width: 769px) {
  .recruit_wrap {
    display: block;
  }

  .recruit_wrap .recruit__title-area {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .recruit_wrap_box {
    margin-bottom: 100px;
  }

  .recruit_wrap {
    margin-top: 60px;
  }

  .tbl01 tr th {
    width: 35%;
    padding-right: 10px;
  }

}

@media screen and (max-width: 520px) {
  .company_info tbody,
  .company_info tr,
  .company_info th,
  .company_info td {
    display: block;
    width: 100%;
  }

  .company_info tr {
    padding: 20px 0px 0px 0px;
    /* border-bottom: 1px solid #e2e2e2; */
  }

  .company_info tr:last-child {
    border-bottom: none;
  }

  .company_info th {
    padding: 0 0 8px;
    font-weight: 600;
    border-bottom: none;
  }

  .company_info td {
    padding: 0;
    border-bottom: none;
  }

  .company_info td ul {
    margin-top: 12px;
  }
}

/* =================================== */
/*             募集職種                */
/* =================================== */
.job_openings {
    margin-top: 100px;
}

.job_listings {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 60px;
}

.job_item {
    background-color: #fff;
    padding: 60px;
}

.job_item_container {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.job_item_description_wrapper {
    width: 45%;
}

.job_item_body {
    width: 55%;
}

.job_item_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* border-bottom: 1px solid #E5E5E5; */
    padding-bottom: 20px;
    /* margin-bottom: 20px; */
}

.job_item_title_en {
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #1C1C1C;
}

.job_item_title_ja {
    font-size: 36px;
    font-weight: 700;
    line-height: 2;
    color: #1C1C1C;
}

.job_item_description {
    line-height: 2;
    /* margin-bottom: 40px; */
}

.job_item_details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.detail_block {
    /* Removed display: flex; to stack elements */
}

.detail_title {
    background-color: #1C1C1C;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 8px 30px;
    white-space: nowrap;
    height: fit-content;
    width: fit-content;
    margin-bottom: 10px;
    margin-top: 0px;
}

.detail_text {
    line-height: 2;
    /* Removed padding-left: 30px; */
}

.job_item .btn {
    margin-top: 40px;
}

@media screen and (max-width: 768px) {
    .job_openings {
        margin-top: 60px;
    }
    .job_listings {
        margin-top: 40px;
        gap: 30px;
    }
    .job_item {
        padding: 30px 20px;
    }
    .job_item_title_ja {
        font-size: 24px;
    }
    .job_item_container {
        flex-direction: column;
        gap: 30px;
    }
    .job_item_description_wrapper,
    .job_item_body {
        width: 100%;
    }
    .detail_block {
        /* No longer needed as it's the default now */
    }
    .detail_title {
        /* No longer needed as it's the default now */
    }
    .detail_text {
        /* No longer needed as it's the default now */
    }

    .job_item_header {
      padding-bottom: 10px;
    }
}