@charset "UTF-8";
/* ==========================================
   募集要項ページ
   ========================================== */
.job-postings-page {
  padding: 60px 0 100px;
}
.job-postings-page .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* リードメッセージ */
.job-postings-lead {
  text-align: center;
  margin-bottom: 48px;
}
.job-postings-lead__title {
  font-size: 24px;
  font-weight: 700;
  color: #333333;
  margin: 0 0 16px;
  line-height: 1.5;
}
@media (max-width: 480px) {
  .job-postings-lead__title {
    font-size: 20px;
  }
}
.job-postings-lead__text {
  font-size: 15px;
  line-height: 1.9;
  color: #666666;
  margin: 0;
}
@media (max-width: 480px) {
  .job-postings-lead__text {
    font-size: 14px;
  }
}

/* 募集なしメッセージ */
.job-list__empty {
  text-align: center;
  font-size: 15px;
  color: #666666;
  padding: 40px 20px;
  background: #FFFAF1;
  border-radius: 12px;
  margin: 24px 0;
}

/* 絞り込みフィルター */
.job-filter {
  margin-bottom: 40px;
}
.job-filter__group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0;
  padding: 20px 0;
}
@media (max-width: 768px) {
  .job-filter__group {
    flex-wrap: wrap;
  }
}
.job-filter__group + .job-filter__group {
  border-top: 1px solid #e0e0e0;
}
.job-filter__label {
  font-size: 14px;
  font-weight: 700;
  color: #333333;
  min-width: 60px;
  margin-right: 16px;
  padding-top: 6px;
}
@media (max-width: 768px) {
  .job-filter__label {
    width: 100%;
    margin-bottom: 8px;
    padding-top: 0;
  }
}
.job-filter__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.job-filter__btn {
  padding: 6px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background: #ffffff;
  color: #333333;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s;
}
.job-filter__btn:hover {
  border-color: #e67e3c;
  color: #e67e3c;
}
.job-filter__btn.is-active {
  background: #e67e3c;
  border-color: #e67e3c;
  color: #ffffff;
}
.job-filter {
  /* 勤務地チェックボックス */
}
.job-filter__checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.job-filter__checkbox {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 13px;
  color: #333333;
}
.job-filter__checkbox input[type=checkbox] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
  position: relative;
}
.job-filter__checkbox input[type=checkbox]:checked {
  background: #e67e3c;
  border-color: #e67e3c;
}
.job-filter__checkbox input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 5px;
  height: 9px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* 募集一覧グリッド */
.job-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 768px) {
  .job-list {
    grid-template-columns: 1fr;
  }
}

/* 募集カード */
.job-card {
  display: block;
  position: relative;
  padding: 20px 50px 20px 24px;
  border: none;
  border-radius: 8px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  text-decoration: none;
  color: #333333;
  transition: box-shadow 0.3s;
}
.job-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 4px;
  border-radius: 2px;
  background: #e67e3c;
}
.job-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}
.job-card:hover .job-card__arrow {
  transform: translateY(-50%) translateX(4px);
}
.job-card__header {
  margin-bottom: 8px;
}
.job-card__type {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  color: #e67e3c;
  border: 1px solid #e67e3c;
  border-radius: 3px;
  padding: 2px 8px;
}
.job-card__title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 8px;
  color: #333333;
}
.job-card__station {
  display: inline-block;
  font-size: 12px;
  color: #666666;
  margin: 0;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
  padding: 2px 8px;
}
.job-card__arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 14px;
  transition: transform 0.3s;
}
.job-card__arrow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/*# sourceMappingURL=job-postings.css.map */
