@charset "UTF-8";
/* 各社募集要項一覧
================================================== */
#page-requirements #requirements-content {
  padding: 0 0 120px;
}
@media screen and (max-width: 767px) {
  #page-requirements #requirements-content {
    padding: 0 0 60px;
  }
}
#page-requirements {
  /* 絞り込みフィルター */
}
#page-requirements #filter-controls {
  /*
  .select-group {
    display: flex;
    flex-wrap: wrap;
    // justify-content: center;
    gap: 15px;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;

    @include mq(sp) {
      gap: 10px;
      padding-bottom: 30px;
      margin-bottom: 30px;
    }

    h3 {
      width: 100px;
      text-align: left;
      font-weight: bold;
    }

    .checks {
      flex: 1;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .check-label {
      display: inline-flex;
      align-items: center;
      cursor: pointer;

      input[type="checkbox"] {
        display: inline-block;
        margin-right: 5px;
        width: 16px;
        height: 16px;
      }

      .label-text {
        font-size: fz(14px);
        color: #333;

        @include mq(sp) {
          font-size: fz(13px);
        }
      }

      &:hover .label-text {
        opacity: 0.8;
      }
    }
  }
  */
}
#page-requirements {
  /* 募集要項カードリスト */
}
#page-requirements #req-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  #page-requirements #req-list {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 40px;
  }
}
#page-requirements #req-list .req-card {
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
}
#page-requirements #req-list .req-card.is-hidden {
  display: none;
}
@media screen and (max-width: 767px) {
  #page-requirements #req-list .req-card {
    flex-direction: column;
    padding: 20px;
  }
}
#page-requirements #req-list .req-card .card-title {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
#page-requirements #req-list .req-card .card-title .job-type {
  max-width: 100px;
  width: 20%;
  flex-shrink: 0;
  text-align: center;
}
#page-requirements #req-list .req-card .card-title .job-type img {
  width: 50px;
}
@media screen and (max-width: 767px) {
  #page-requirements #req-list .req-card .card-title .job-type img {
    width: 40px;
    margin-bottom: 0;
    margin-right: 15px;
  }
}
#page-requirements #req-list .req-card .card-title .job-type span {
  display: block;
  font-size: clamp(1.1rem, 1.056rem + 0.1vw, 1.2rem);
  color: #666;
}
#page-requirements #req-list .req-card .card-title .company-name {
  font-size: clamp(1.55rem, 1.224rem + 0.4vw, 1.8rem);
  font-weight: bold;
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  #page-requirements #req-list .req-card .card-title .company-name {
    font-size: clamp(1.7rem, 1.424rem + 0.4vw, 2rem);
    margin-bottom: 10px;
  }
}
#page-requirements #req-list .req-card .card-body {
  flex-grow: 1;
}
#page-requirements #req-list .req-card .card-body .req-details {
  font-size: clamp(1.25rem, 1.112rem + 0.2vw, 1.4rem);
  line-height: 1.7142857143;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  #page-requirements #req-list .req-card .card-body .req-details {
    font-size: clamp(1.175rem, 1.012rem + 0.2vw, 1.3rem);
    line-height: 1.6;
    margin-bottom: 15px;
  }
}
#page-requirements #req-list .req-card .card-body .req-details dt {
  color: #666;
  width: 6em;
  flex-shrink: 0;
}
#page-requirements #req-list .req-card .card-body .req-details dd {
  color: #333;
  width: calc(100% - 6em);
}
#page-requirements #req-list .req-card .card-body .card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1000px) {
  #page-requirements #req-list .req-card .card-body .card-bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
}
@media screen and (max-width: 767px) {
  #page-requirements #req-list .req-card .card-body .card-bottom {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
}
#page-requirements #req-list .req-card .card-body .card-bottom .tags {
  display: flex;
  gap: 4px;
}
#page-requirements #req-list .req-card .card-body .card-bottom .tags .tag {
  display: inline-block;
  background-color: #999;
  color: #fff;
  font-size: clamp(1.1rem, 1.056rem + 0.1vw, 1.2rem);
  padding: 4px 12px;
  border-radius: 3px;
}
#page-requirements #req-list .req-card .card-body .card-bottom .btn-detail {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #CC0000;
  color: #fff;
  font-size: clamp(1.25rem, 1.112rem + 0.2vw, 1.4rem);
  font-weight: bold;
  padding: 6px 30px;
  border-radius: 50px;
  text-decoration: none;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  #page-requirements #req-list .req-card .card-body .card-bottom .btn-detail {
    padding: 8px 20px;
    text-align: center;
  }
}
#page-requirements #req-list .req-card .card-body .card-bottom .btn-detail:hover {
  opacity: 0.8;
}
#page-requirements #req-list .req-card .card-body .card-bottom .btn-detail::after {
  content: "";
  margin-left: 10px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 7px solid #fff;
}
#page-requirements #req-list .req-card .card-body .card-bottom .btn-detail span {
  display: none;
}
#page-requirements {
  /* ページネーション（ドット装飾） */
}
#page-requirements .loading-dots {
  text-align: center;
}
#page-requirements .loading-dots span {
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #333;
  border-radius: 50%;
  margin: 0 5px;
}

/* 各社募集要項 詳細ページ
================================================== */
#page-requirements-detail {
  /* 詳細ページ専用タイトルエリア */
}
#page-requirements-detail .detail-page-title {
  padding: 80px 0 60px;
  background-color: transparent;
  /* bodyの#f7f7f7を活かす */
}
@media screen and (max-width: 767px) {
  #page-requirements-detail .detail-page-title {
    padding: 60px 0 40px;
  }
}
#page-requirements-detail .detail-page-title .category-label {
  color: #CC0000;
  font-size: clamp(1.4rem, 1.168rem + 0.3vw, 1.6rem);
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  #page-requirements-detail .detail-page-title .category-label {
    font-size: clamp(1.25rem, 1.112rem + 0.2vw, 1.4rem);
    margin-bottom: 15px;
  }
}
#page-requirements-detail .detail-page-title h1 {
  font-size: clamp(3.2rem, 2.272rem + 1.2vw, 4rem);
  font-weight: bold;
  color: #333;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  #page-requirements-detail .detail-page-title h1 {
    font-size: clamp(2.3rem, 1.792rem + 0.7vw, 2.8rem);
    margin-bottom: 20px;
  }
}
#page-requirements-detail .detail-page-title .note-text {
  font-size: clamp(1.1rem, 1.056rem + 0.1vw, 1.2rem);
  color: #666;
}
@media screen and (max-width: 767px) {
  #page-requirements-detail .detail-page-title .note-text {
    font-size: clamp(1.025rem, 0.956rem + 0.1vw, 1.1rem);
  }
}
#page-requirements-detail {
  /* 募集要項 詳細コンテンツ */
}
#page-requirements-detail .requirement-detail-content {
  padding: 0 0 120px;
  margin-top: 0;
  /* タイトル変更に伴い、重なり調整を解除 */
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  #page-requirements-detail .requirement-detail-content {
    padding: 0 0 60px;
    margin-top: 0;
  }
}
#page-requirements-detail .requirement-detail-content .detail-box {
  border-radius: 10px;
  /* デザインに角丸があれば */
}
@media screen and (max-width: 767px) {
  #page-requirements-detail .requirement-detail-content .detail-box {
    padding: 30px 5%;
  }
}
#page-requirements-detail .requirement-detail-content .detail-box .detail-load-error {
  color: #c62828;
  font-size: clamp(1.325rem, 1.068rem + 0.3vw, 1.5rem);
  line-height: 1.6;
  margin: 0 0 20px;
}
#page-requirements-detail .requirement-detail-content .detail-box .def-list {
  display: flex;
  flex-wrap: wrap;
  /* 薄いグレーの罫線 */
}
@media screen and (max-width: 767px) {
  #page-requirements-detail .requirement-detail-content .detail-box .def-list {
    flex-direction: column;
    padding: 20px 0;
  }
}
#page-requirements-detail .requirement-detail-content .detail-box .def-list:first-child {
  padding-top: 0;
}
#page-requirements-detail .requirement-detail-content .detail-box .def-list:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
#page-requirements-detail .requirement-detail-content .detail-box .def-list dt {
  width: 200px;
  /* 左側の固定幅（アタリ） */
  flex-shrink: 0;
  font-size: clamp(1.4rem, 1.168rem + 0.3vw, 1.6rem);
  font-weight: bold;
  color: #333;
  padding-right: 40px;
  padding: 30px 0;
  border-bottom: 1px solid #eee;
}
@media screen and (max-width: 767px) {
  #page-requirements-detail .requirement-detail-content .detail-box .def-list dt {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
    font-size: clamp(1.25rem, 1.112rem + 0.2vw, 1.4rem);
    padding: 15px 0;
    border-bottom: none;
    padding-bottom: 0;
  }
}
#page-requirements-detail .requirement-detail-content .detail-box .def-list dd {
  width: calc(100% - 240px);
  /* 右側の残り幅（アタリ） */
  font-size: clamp(1.325rem, 1.068rem + 0.3vw, 1.5rem);
  line-height: 1.8666666667;
  color: #333;
  padding: 30px 0;
  border-bottom: 1px solid #eee;
}
@media screen and (max-width: 767px) {
  #page-requirements-detail .requirement-detail-content .detail-box .def-list dd {
    font-size: clamp(1.25rem, 1.112rem + 0.2vw, 1.4rem);
    line-height: 1.8;
    padding: 0 0 30px 0;
  }
}
#page-requirements-detail .requirement-detail-content .detail-box .def-list dd.detail-dd-text {
  white-space: pre-wrap;
}
@media screen and (max-width: 767px) {
  #page-requirements-detail .requirement-detail-content .detail-box .def-list dd.detail-dd-text {
    width: 100%;
  }
}