/* =========================================================
   page-recruit.css : 採用情報
   page-pill / Recruit(募集要項) / 職種カード（正職員・パート）
   施設子サイト（りじょう認定こども園）
   ※ 背景はPC共通背景(body.bg-en)。.sec-head は components.css 流用。
   ========================================================= */

/* ===== ページタイトル pill（共通仕様） ===== */
.page-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 500px;
  max-width: calc(100% - 40px);
  height: 70px;
  margin: 40px auto 0;
  background: var(--color-white);
  border: 1px solid var(--color-accent-mid);
  border-radius: 10px;
  font-family: var(--font-gothic);
  font-weight: 900;
  font-size: 28px;
  color: var(--color-accent);
}

/* ===== Recruit セクション ===== */
.recruit__inner {
  width: 100%;
  max-width: 926px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.recruit__head { text-align: center; }
.recruit__intro {
  margin-top: 16px;
  text-align: center;
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 2;
  color: var(--color-text-sub);
}

/* ===== 職種カード ===== */
.job {
  margin-top: 40px;
  padding: 32px 54px 40px;
  background: var(--color-accent-bg); /* var(--color-accent-bg) */
  border-radius: 10px;
}
.job__title {
  text-align: center;
  font-family: var(--font-base);
  font-weight: 500;
  font-size: 18px;
  color: var(--color-text);
}

/* 2カラム（PC）。SPは縦1カラム */
.job__cols {
  display: flex;
  gap: 26px;
  margin-top: 30px;
}
.job__col { flex: 1; min-width: 0; }

/* 行：ラベルチップ＋値（PC＝横並び） */
.job__row {
  display: grid;
  grid-template-columns: 121px 1fr;
  align-items: start;
  column-gap: 34px;
}
.job__row + .job__row { margin-top: 16px; }

/* ラベル（白いチップ・淡い影） */
.job__label {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  background: var(--color-white);
  border-radius: 18px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.07);
  font-family: var(--font-base);
  font-size: 16px;
  color: var(--color-text-sub);
  white-space: nowrap;
}
.job__val {
  padding-top: 5px; /* 1行値をチップ中央に合わせる。複数行はほぼ上揃え */
  font-family: var(--font-base);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-sub);
}

/* ===== 応募ボタン（白・緑枠・緑文字＋矢印／カード右下） ===== */
.job__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 230px;
  height: 45px;
  margin: 30px 0 0 auto; /* 右寄せ */
  background: var(--color-white);
  border: 1px solid var(--color-accent-mid);
  border-radius: 10px;
  font-family: var(--font-gothic);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-accent);
  transition: opacity 0.2s;
}
.job__btn:hover { opacity: 0.7; }
/* 片矢じり（水平シャフト＋右先端の上バーブのみ）。色は淡い緑var(--color-accent-mid)、先端はボタン枠の外へ */
.job__btn-arrow {
  position: absolute;
  right: -24px;
  top: calc(50% - 1px);
  width: 45px;
  height: 2px;
  background: var(--color-accent-mid);
}
.job__btn-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 9px;
  height: 2px;
  background: var(--color-accent-mid);
  transform-origin: right bottom;
  transform: rotate(45deg);
}

/* =========================================================
   レスポンシブ（SP : max-width 750px）
   ========================================================= */
@media (max-width: 750px) {
  .page-pill { width: 300px; max-width: calc(100% - 40px); height: 40px; font-size: 22px; margin-top: 24px; }

  .recruit__inner { max-width: none; }
  .recruit__head { text-align: left; }
  .recruit__intro { text-align: left; margin-top: 14px; }

  .job { padding: 24px 13px 30px; margin-top: 30px; }
  .job__title { font-size: 16px; }

  /* SP：縦1カラム（ラベル上・値下） */
  .job__cols { flex-direction: column; gap: 0; margin-top: 24px; }
  .job__col + .job__col { margin-top: 24px; } /* 列の継ぎ目 */
  .job__row { display: block; }
  .job__row + .job__row { margin-top: 24px; }
  .job__label {
    width: 150px;
    height: 30px;
    border-radius: 15px;
    margin-left: 13px;
    font-size: 15px;
    color: var(--color-accent);
  }
  .job__val {
    margin-top: 10px;
    margin-left: 26px;
    padding-top: 0;
  }

  /* ボタン：中央・シェブロンのみ（文言「求人応募へ進む」に合わせ幅確保）。
     PCの片矢じり指定を打ち消し、従来の > chevron（accent・内側）を維持 */
  .job__btn { width: 200px; height: 44px; margin: 24px auto 0; }
  .job__btn-arrow {
    width: 0;
    height: 0;
    right: 18px;
    top: 50%;
    background: transparent;
  }
  .job__btn-arrow::after {
    right: 0;
    bottom: auto;
    top: 50%;
    width: 7px;
    height: 7px;
    background: transparent;
    border-top: 1.5px solid var(--color-accent);
    border-right: 1.5px solid var(--color-accent);
    transform: translateY(-50%) rotate(45deg);
    transform-origin: center;
  }
}
