/* =========================================================
   SHIGENOVA Recruit LP — 追加スタイル
   ベースは style.css を継承し、採用ページ固有の要素だけ定義
   ========================================================= */

/* ---------- ヒーロー：要点リスト ---------- */
.recruit-hero .hero-title { max-width: 16em; }

.hero-points {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: 14px;
  padding: 0; margin: 26px 0 8px;
}
.hero-points li {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: 16px;
  padding: 12px 18px;
  box-shadow: 4px 4px 0 var(--ink);
  display: flex; flex-direction: column; line-height: 1.4;
}
.hero-points b { font-size: 1.05rem; }
.hero-points small { color: var(--muted); font-size: .78rem; letter-spacing: .04em; }

/* ---------- 数字バンド ---------- */
.num-band { padding-top: 54px; padding-bottom: 54px; }
.num-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  margin-top: 26px;
}
.numcard {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 6px 6px 0 var(--mood);
  padding: 26px 20px; text-align: center;
}
.numcard b {
  display: block; font-size: clamp(2rem, 5vw, 3.1rem); line-height: 1;
  color: var(--ink); font-weight: 700;
}
.numcard b span { font-size: .42em; margin-left: .15em; color: var(--muted); }
.numcard > span { display: block; margin-top: 10px; font-size: .9rem; color: var(--muted); font-weight: 500; }

/* ---------- 働く環境チップ ---------- */
.env-list {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 40px;
}
.env-list span {
  background: var(--c6-s);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 9px 18px; font-weight: 500; font-size: .92rem;
  box-shadow: 3px 3px 0 var(--ink);
}

/* ---------- 募集要項テーブル ---------- */
.req-table {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: 8px 8px 0 var(--c4);
  overflow: hidden;
  margin-top: 30px;
}
.req-table dl { margin: 0; }
.req-table dt {
  background: var(--ink);
  color: var(--paper);
  font-weight: 700; font-size: .95rem; letter-spacing: .04em;
  padding: 16px 24px;
}
.req-table dd {
  margin: 0;
  padding: 18px 24px 22px;
  border-bottom: 1.5px dashed var(--line);
  line-height: 1.9;
}
.req-table dd:last-child { border-bottom: 0; }

/* デスクトップは2カラム（ラベル｜内容）表組み風 */
@media (min-width: 760px) {
  .req-table dl {
    display: grid;
    grid-template-columns: 210px 1fr;
  }
  .req-table dt {
    border-bottom: 1.5px solid #000;
    display: flex; align-items: center;
  }
  .req-table dt:last-of-type { border-bottom: 0; }
  .req-table dd { border-left: 2px solid var(--ink); }
}

.req-note { display: inline-block; color: var(--muted); font-size: .85rem; line-height: 1.7; }
.req-lawnote {
  display: block; margin-top: 12px;
  background: var(--green-050);
  border-left: 4px solid var(--green);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--ink-soft); font-size: .82rem; line-height: 1.8;
}
.req-caption { margin-top: 18px; color: var(--muted); font-size: .85rem; }

/* ---------- 選考フロー ---------- */
.flow-steps {
  list-style: none; padding: 0; margin: 34px 0 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  counter-reset: flow;
}
.flow-steps li {
  position: relative;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 5px 5px 0 var(--c5);
  padding: 24px 20px;
}
.flow-steps .fno {
  display: inline-block;
  font-size: 1.5rem; font-weight: 700; color: var(--c5);
  margin-bottom: 8px;
}
.flow-steps b { display: block; font-size: 1.05rem; margin-bottom: 6px; }
.flow-steps p { margin: 0; color: var(--muted); font-size: .88rem; line-height: 1.7; }

/* ---------- エントリー方法 ---------- */
.entry-methods {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin: 30px 0 6px;
}
.entry-card {
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 5px 5px 0 var(--ink);
  padding: 22px 20px;
  display: flex; flex-direction: column; gap: 6px;
  transition: transform .2s var(--ease-back), box-shadow .2s var(--ease);
}
.entry-card:hover { transform: translate(-2px,-2px); box-shadow: 8px 8px 0 var(--green); }
.entry-card .mono { color: var(--muted); font-size: .8rem; }
.entry-card b { font-size: 1.1rem; }
.entry-card small { color: var(--muted); font-size: .85rem; }
.entry-note { margin-top: 18px; font-size: .85rem; color: var(--muted); line-height: 1.8; }

/* cta-card 内はテキスト左寄せに */
#entry .cta-card { text-align: left; }
#entry .cta-card h2, #entry .cta-card > p { text-align: center; }

/* ---------- レスポンシブ ---------- */
@media (max-width: 860px) {
  .num-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-steps { grid-template-columns: repeat(2, 1fr); }
  .entry-methods { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .num-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero-points { gap: 10px; }
  .hero-points li { flex: 1 1 100%; }
}
