@charset "UTF-8";

/* ============================================================
   採用情報（Recruit）
   - デザイン基準：PC 1280px（コンテンツ幅 約890px 中央）
   - ヘッダー・フッターはフル幅、コンテンツは中央寄せ
   - SP はレイアウトが崩れない範囲で段組み変更
   ============================================================ */

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; }
h1, h2, h3, h4, h5, h6, p, figure, figcaption, dl, dd, dt { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
img, picture, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
hr { border: 0; margin: 0; }

/* ---------- Tokens ---------- */
:root {
  --c-navy: #0c1d3d;
  --c-black: #000;
  --c-line: #c9c9c9;
  --c-subbar: #d9d9d9;
  --c-footer: #14133b;

  --ff-jp: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "游ゴシック", "Meiryo", sans-serif;
  --ff-en: "Inter", "Helvetica Neue", Arial, sans-serif;
  --ff-en-head: "Avenir Next", "Segoe UI", "Inter", "Helvetica Neue", Arial, sans-serif;

  --page-w: 1280px;
  --content-w: 890px;
}

/* ---------- Base ---------- */
body {
  font-family: var(--ff-jp);
  color: var(--c-black);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.page { background: #fff; }

/* ---------- Global header / footer ---------- */
.site-header { width: 100%; background: #fff; }
.site-footer { width: 100%; background: var(--c-footer); }
.site-header img,
.site-footer img {
  display: block;
  width: 100%;
  max-width: var(--page-w);
  height: auto;
  margin: 0 auto;
}

/* ---------- Breadcrumb ---------- */
.subbar { width: 100%; background: var(--c-subbar); }
.subbar__inner {
  max-width: var(--page-w);
  margin: 0 auto;
  min-height: 25px;
  display: flex;
  align-items: center;
  padding: 0 47px;
}
.breadcrumb { font-family: var(--ff-jp); font-size: 10px; line-height: 1.4; color: #000; }
.breadcrumb__link { font-weight: 300; }

/* ---------- Content ---------- */
.content { padding: 56px 0 100px; }
.content__inner {
  width: var(--content-w);
  max-width: calc(100% - 48px);
  margin: 0 auto;
}

/* ---------- Section heading (Recruit) ---------- */
.sec__head {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--c-line);
}
.sec__title {
  font-family: var(--ff-en-head);
  font-weight: 700;
  font-size: 35px;
  line-height: 1.4;
  color: var(--c-navy);
}
.sec__sub {
  margin-top: 10px;
  font-family: var(--ff-jp);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  color: var(--c-black);
}

/* ---------- 採用ブロック（新卒／キャリア） ---------- */
.rec-block { margin-top: 56px; }
.rec-block__title {
  font-family: var(--ff-jp);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.4;
  color: var(--c-navy);
}
.rec-block__hr {
  width: 803px;
  max-width: 100%;
  margin: 14px 0 28px;
  border-top: 1px solid var(--c-line);
}

/* ---------- 募集要項（定義リスト） ---------- */
.rec__row {
  display: flex;
  font-family: var(--ff-jp);
  font-size: 18px;
  line-height: 1.7;
  color: var(--c-black);
}
.rec__row + .rec__row { margin-top: 22px; }
.rec__row dt {
  flex: 0 0 180px;
}
.rec__row dd { flex: 1 1 auto; min-width: 0; overflow-wrap: anywhere; }
.rec__row dd a { color: inherit; text-decoration: underline; text-underline-position: from-font; }
.rec__row dd a:hover { opacity: .7; }

.rec__bullets li {
  padding-left: 1em;
  text-indent: -1em;
}
.rec__bullets li::before { content: "・"; }
.rec__note { margin-top: 2px; }

/* ---------- キャリア採用リンク ---------- */
.rec-career {
  font-family: var(--ff-jp);
  font-size: 18px;
  line-height: 1.7;
  color: var(--c-black);
}
.rec-career a:hover { text-decoration: underline; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .content { padding: 48px 0 80px; }
  .sec__title { font-size: clamp(26px, 3.4vw, 35px); }
  .rec-block__title { font-size: clamp(22px, 3vw, 26px); }
}

@media (max-width: 768px) {
  .content__inner { max-width: calc(100% - 40px); }
  .sec__sub { font-size: clamp(15px, 2.4vw, 20px); }
  .rec-block { margin-top: 44px; }
  .rec__row { font-size: 15px; }
  .rec__row dt { flex-basis: 140px; }
  .rec-career { font-size: 15px; }
}

@media (max-width: 480px) {
  .subbar__inner { padding: 0 20px; min-height: 20px; }
  .content { padding: 32px 0 56px; }
  .content__inner { max-width: calc(100% - 32px); }

  /* 定義リストを縦積み */
  .rec__row { flex-direction: column; }
  .rec__row dt { flex-basis: auto; font-weight: 600; margin-bottom: 4px; }
}
