@charset "UTF-8";

/* =========================================================
   recruitment.css — 採用情報トップページ
   構成: HERO / INTRO / ASSIGNMENT / WHY ITL? /
        JOB DUTIES / WHO / EMPLOYEE VOICE / JOB TYPES / CTA
   ========================================================= */

/* テーマ色を緑 → 青 (ネイビー) にオーバーライド (採用ページ全体) */
body {
  --c-text: #344977;
  --c-green: #344977;
  --c-green-dark: #1d2942;
  --c-green-light: #4a5e8a;
}

/* =========================================================
   Hero (recruitment 全画面背景写真 + テキスト前面)
   ヘッダーの下まで写真が回り込む / マイナスマージンで上の余白を吸収
   ========================================================= */
.hero-fullbleed main { margin: 0; padding: 0; }
.recruit-hero {
  position: relative;
  min-height: 100vh;
  padding-top: clamp(120px, 11vw, 180px);
  padding-bottom: clamp(64px, 7vw, 110px);
  overflow: hidden;
  background: var(--c-bg-soft);
  display: flex;
  align-items: center;
}
.recruit-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.recruit-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}
/* 左側に薄い白グラデーション ── 文字可読性向上 */
.recruit-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.92) 0%,
    rgba(255, 255, 255, 0.78) 28%,
    rgba(255, 255, 255, 0.35) 50%,
    rgba(255, 255, 255, 0) 70%
  );
  pointer-events: none;
}

.recruit-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
}
.recruit-hero__crumb {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: clamp(12px, 0.95vw, 14px);
  color: var(--c-muted);
  letter-spacing: 0.08em;
  margin-bottom: clamp(40px, 5vw, 80px);
}
.recruit-hero__crumb a:hover { color: var(--c-green); }

.recruit-hero__catch {
  margin: 0;
  display: block;
  width: 100%;
  max-width: clamp(420px, 50vw, 760px);
}
.recruit-hero__catch img {
  display: block;
  width: 100%;
  height: auto;
}
.recruit-hero__catch img.recruit-hero__catch-sp { display: none; } /* PCでは非表示・SPで表示 */

.recruit-hero__sub {
  margin-top: clamp(22px, 2.6vw, 36px);
  font-family: var(--ff-jp);
  font-weight: 500;
  font-size: clamp(15px, 1.4vw, 18px);
  letter-spacing: 0.1em;
  color: var(--c-text);
}

.recruit-hero__ctas {
  margin-top: clamp(36px, 4vw, 56px);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.btn--pill-light,
.btn--pill-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: clamp(220px, 22vw, 300px);
  padding: 18px 32px;
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: clamp(14px, 1.2vw, 16px);
  letter-spacing: 0.14em;
  text-align: center;
}
.btn--pill-light {
  background: #8d9bb8;
  color: #fff;
}
.btn--pill-light:hover { background: #7a8aa9; opacity: 1; }
.btn--pill-dark {
  background: #344977;
  color: #fff;
}
.btn--pill-dark:hover { background: #283865; opacity: 1; }

@media (max-width: 820px) {
  .recruit-hero { min-height: 100vh; }
  .recruit-hero__media img { object-position: 70% center; }
  .recruit-hero__media::after {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.85) 0%,
      rgba(255, 255, 255, 0.55) 40%,
      rgba(255, 255, 255, 0) 75%
    );
  }
}

/* =========================================================
   Header transparent on this page, white-30% after scroll
   ========================================================= */
.hero-fullbleed .site-header {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.hero-fullbleed .site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.30);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
}

/* =========================================================
   Right rail — エントリー専用カラー (コーラル) + アイコン差し替え
   ========================================================= */

/* =========================================================
   Intro — 都市の未来を、シミュレーションでつくる
   ========================================================= */
.recruit-intro {
  background: #fff;
  padding-block: clamp(96px, 11vw, 160px);
}
.recruit-intro__head {
  position: relative;
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}
.recruit-intro__title {
  margin: 0 auto clamp(36px, 4vw, 56px);
  display: flex;
  justify-content: center;
}
.recruit-intro__title img {
  display: block;
  width: 100%;
  max-width: clamp(360px, 42vw, 619px);
  height: auto;
}
.recruit-intro__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.4vw, 18px);
}
.recruit-intro__body p {
  font-size: 16px;
  line-height: 1.95;
  letter-spacing: 0.04em;
  color: var(--c-text);
}
.recruit-intro__body p:last-child {
  margin-top: clamp(8px, 1vw, 14px);
  font-weight: 700;
}

.recruit-intro__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3vw, 56px);
  padding-block: clamp(40px, 5vw, 72px);
}
.ri-card {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.6vw, 20px);
  padding: 0;
  background: transparent;
  box-shadow: none;
  transform: rotate(-5deg);
  transform-origin: center center;
}
/* fade-up を上書きせず rotate を保持 */
.ri-card.fade-up { transform: translateY(24px) rotate(-5deg); }
.ri-card.fade-up.is-in { transform: translateY(0) rotate(-5deg); }
.ri-card__q {
  font-family: var(--ff-serif-jp, "Noto Serif JP", "Yu Mincho", serif);
  font-weight: 500;
  font-size: clamp(20px, 1.9vw, 26px);
  line-height: 1.85;
  letter-spacing: 0.04em;
  color: #344977;
  margin: 0;
  text-decoration: underline;
  text-decoration-color: #344977;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 8px;
}
.ri-card__a {
  background: #344977;
  color: #fff;
  border-radius: 2px;
  padding: clamp(20px, 2.2vw, 28px) clamp(20px, 2.2vw, 28px);
  font-size: 13.5px;
  line-height: 1.85;
  letter-spacing: 0.02em;
  margin: 0;
  margin-left: -15px;
  padding-left: calc(clamp(20px, 2.2vw, 28px) + 15px);
  /* 角: 左上=左端 / 右上=そのまま / 右下=左25px / 左下=左に15px（外側） */
  clip-path: polygon(15px 0, 100% 0, calc(100% - 25px) 100%, 0 100%);
}

/* =========================================================
   Assignment (What We Do) — 左テキスト + 右台形クリップ画像
   ========================================================= */
.assignment {
  position: relative;
  background: #fff;
  padding-block: clamp(40px, 6vw, 96px) clamp(90px, 11vw, 160px);
  overflow: hidden;
}
.assignment__big {
  position: absolute;
  left: 50%;
  top: clamp(20px, 2.4vw, 56px);
  transform: translateX(-50%);
  font-family: var(--ff-serif-jp, "Noto Serif JP", serif);
  font-weight: 500;
  font-size: clamp(80px, 12vw, 220px);
  line-height: 1;
  letter-spacing: 0.04em;
  color: rgba(52, 73, 119, 0.12);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  z-index: 1;
}
.assignment__inner {
  position: relative;
  z-index: 2;
}

.assignment__head {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  margin-bottom: 0;
  padding-top: clamp(120px, 14vw, 220px);
  top: clamp(40px, 6vw, 96px);
  z-index: 2;
}
.assignment__eyebrow {
  font-family: var(--ff-en);
  font-weight: 400;
  font-size: clamp(14px, 1.2vw, 18px);
  letter-spacing: 0.18em;
  color: var(--c-text);
  margin-bottom: clamp(24px, 2.4vw, 36px);
}
.assignment__title {
  font-family: var(--ff-serif-jp, "Noto Serif JP", serif);
  font-weight: 500;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: var(--c-text);
  margin: 0 0 clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.assignment__title span {
  text-decoration: underline;
  text-decoration-color: var(--c-green);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 8px;
}
.assignment__lead {
  font-size: 15.5px;
  line-height: 2;
  letter-spacing: 0.04em;
  color: var(--c-text);
}

.assignment__head-media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 85%);
  /* container の右パディングを打ち消して画面右端までくっつける */
  margin-right: calc(-1 * var(--pad-x));
  /* viewport の半分まで伸ばすため、自然な幅より広げる */
  width: calc(100% + var(--pad-x));
}
.assignment__head-media img,
.assignment__head-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.assignment__stack {
  position: relative;
  z-index: 2;
  /* head の top シフト分＋クリアランスを確保し、リード文との重なりを回避 */
  margin-top: clamp(64px, 9vw, 150px);
}
.assignment__stack-title {
  display: inline-block;
  font-weight: 500;
  font-size: clamp(13px, 1vw, 15px);
  letter-spacing: 0.14em;
  color: #fff;
  background: var(--c-navy);
  padding: 8px 32px;
  clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%);
  border-radius: 0;
  margin-bottom: clamp(28px, 3vw, 40px);
}

.stack-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 3vw, 48px) clamp(40px, 5vw, 80px);
}
.stack-card {
  display: grid;
  grid-template-columns: clamp(80px, 7vw, 108px) minmax(0, 1fr);
  grid-template-areas:
    "icon title"
    "icon desc";
  column-gap: clamp(18px, 2vw, 28px);
  row-gap: 6px;
  text-align: left;
  padding: 0;
  border: none;
}
.stack-card__icon {
  grid-area: icon;
  align-self: center;
  width: clamp(80px, 7vw, 108px);
  height: auto;
  display: block;
}
.stack-card h4 {
  grid-area: title;
  align-self: end;
  font-family: var(--ff-serif-jp, "Noto Serif JP", "Yu Mincho", serif);
  font-weight: 500;
  font-size: clamp(17px, 1.4vw, 20px);
  letter-spacing: 0.06em;
  color: var(--c-text);
  margin: 0;
  text-decoration: underline;
  text-decoration-color: var(--c-green);
  text-decoration-thickness: 1.2px;
  text-underline-offset: 6px;
}
.stack-card p {
  grid-area: desc;
  align-self: start;
  font-size: 13px;
  line-height: 1.75;
  letter-spacing: 0.04em;
  color: var(--c-text);
  margin: 0;
}

@media (max-width: 600px) {
  .stack-grid { grid-template-columns: 1fr; }
  .stack-card { grid-template-columns: clamp(64px, 18vw, 88px) minmax(0, 1fr); }
}

/* =========================================================
   Why ITL? — シルエット背景 + 平行四辺形カード + 外置きタイトル/数字
   ========================================================= */
.why-itl {
  position: relative;
  background: #fff;
  padding-block: clamp(110px, 12vw, 180px) clamp(140px, 14vw, 220px);
  overflow: hidden;
}
.why-itl__bg {
  position: absolute;
  inset: 0;
  background: url("../img/why-itl-bg.webp") no-repeat center center;
  background-size: cover;
  opacity: 1;
  z-index: 0;
  pointer-events: none;
}
.why-itl__inner {
  position: relative;
  z-index: 1;
}
.why-itl__head {
  text-align: left;
  margin-bottom: clamp(72px, 8vw, 120px);
  max-width: 880px;
}
.why-itl__eyebrow {
  font-family: var(--ff-serif-jp, "Noto Serif JP", serif);
  font-weight: 600;
  font-style: normal;
  font-size: clamp(44px, 5.5vw, 80px);
  letter-spacing: 0.02em;
  color: var(--c-navy);
  margin-bottom: clamp(8px, 1vw, 14px);
  line-height: 1.1;
}
.why-itl__title {
  font-family: var(--ff-serif-jp, "Noto Serif JP", serif);
  font-weight: 500;
  font-size: clamp(24px, 2.8vw, 40px);
  line-height: 1.55;
  letter-spacing: 0.06em;
  color: var(--c-navy);
  margin: 0 0 clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}
.why-itl__title span {
  text-decoration: underline;
  text-decoration-color: var(--c-navy);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 8px;
}
.why-itl__lead {
  font-size: 15px;
  line-height: 1.85;
  letter-spacing: 0.04em;
  color: var(--c-navy);
  margin: 0;
}

.why-itl__cards {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3.2vw, 56px);
  /* container の左右パディングを打ち消して画面端まで横線を引く */
  margin-inline: calc(-1 * var(--pad-x));
  padding-inline: var(--pad-x);
}
.why-itl__cards::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 62%;
  height: 1px;
  background: rgba(52, 73, 119, 0.6);
  z-index: 3;
  pointer-events: none;
}
.why-card {
  position: relative;
  background: transparent;
  color: inherit;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
.why-card__title {
  display: inline-block;
  font-family: var(--ff-serif-jp, "Noto Serif JP", serif);
  font-weight: 500;
  font-size: clamp(17px, 1.6vw, 22px);
  letter-spacing: 0.06em;
  line-height: 1.55;
  margin: 0 0 clamp(14px, 1.4vw, 20px);
  color: var(--c-navy);
  text-decoration: underline;
  text-decoration-color: var(--c-navy);
  text-decoration-thickness: 1.2px;
  text-underline-offset: 6px;
  transform: rotate(-5deg);
  transform-origin: left bottom;
}
.why-card__desc {
  position: relative;
  background:
    linear-gradient(125deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0) 38%, rgba(0,0,0,0.10) 100%),
    linear-gradient(60deg, rgba(255,255,255,0) 55%, rgba(255,255,255,0.05) 56%, rgba(255,255,255,0) 70%),
    linear-gradient(135deg, #3e527d 0%, #2f4268 55%, #364974 100%);
  padding: clamp(40px, 4vw, 60px) clamp(26px, 2.6vw, 36px);
  clip-path: polygon(0 14%, 100% 0, 100% 86%, 0 100%);
  margin: 0;
  z-index: 2;
}
.why-card__desc p {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.02em;
  transform: rotate(-5deg);
  transform-origin: center center;
}
.why-card__num {
  position: absolute;
  right: clamp(8px, 1vw, 18px);
  bottom: clamp(-12px, -0.6vw, 4px);
  font-family: var(--ff-en);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(48px, 5vw, 72px);
  color: rgba(52, 73, 119, 0.32);
  line-height: 1;
  pointer-events: none;
  z-index: 3;
}

/* =========================================================
   Job Duties (仕事内容) — ダークネイビー、左下に写真・右にリスト
   ========================================================= */
.job-duties {
  position: relative;
  background: #1c2b54;
  color: #fff;
  padding-block: clamp(80px, 9vw, 130px) clamp(120px, 14vw, 200px);
  overflow: hidden;
}
.job-duties::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  z-index: 0;
  pointer-events: none;
}
.job-duties__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 5vw, 80px);
  align-items: stretch;
}
.job-duties__text {
  position: relative;
  z-index: 3;
  align-self: start;
  margin-bottom: clamp(40px, 5vw, 80px);
}
.job-duties__media {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: clamp(220px, 22vw, 340px);
  z-index: 1;
}
.job-duties__media img {
  object-position: center 35%;
}
.job-duties__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.job-duties__eyebrow {
  font-family: var(--ff-serif-jp, "Noto Serif JP", serif);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(14px, 1.1vw, 17px);
  letter-spacing: 0.1em;
  color: rgba(220, 226, 245, 0.85);
  margin-bottom: clamp(12px, 1.4vw, 20px);
}
.job-duties__title {
  font-family: var(--ff-serif-jp, "Noto Serif JP", serif);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.25;
  letter-spacing: 0.06em;
  color: rgba(190, 200, 230, 0.95);
  margin: 0 0 clamp(28px, 3vw, 44px);
  text-decoration: underline;
  text-decoration-color: rgba(190, 200, 230, 0.75);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 10px;
  display: inline-block;
}
.job-duties__lead {
  font-size: 15px;
  line-height: 1.95;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

.job-duties__list {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.job-duties__list li {
  background: #465474;
  border: none;
  border-radius: 0;
  padding: clamp(16px, 1.6vw, 22px) clamp(20px, 2vw, 30px);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #fff;
}

/* =========================================================
   Who We Look For (求める人物像) — job-duties と同じネイビー背景で連続
   ========================================================= */
.who {
  position: relative;
  background: #1c2b54;
  color: #fff;
  padding-block: clamp(80px, 10vw, 140px);
  overflow: hidden;
}
.who::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  z-index: 0;
  pointer-events: none;
}
.who > .container {
  position: relative;
  z-index: 1;
}
.who__head {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 72px);
}
.who__eyebrow {
  font-family: var(--ff-serif-jp, "Noto Serif JP", serif);
  font-weight: 400;
  font-style: normal;
  font-size: clamp(14px, 1.1vw, 17px);
  letter-spacing: 0.1em;
  color: rgba(220, 226, 245, 0.85);
  margin-bottom: clamp(12px, 1.4vw, 20px);
  line-height: 1;
}
.who__title {
  font-family: var(--ff-serif-jp, "Noto Serif JP", serif);
  font-weight: 500;
  font-size: clamp(40px, 5vw, 72px);
  letter-spacing: 0.06em;
  color: rgba(190, 200, 230, 0.95);
  margin: 0 0 clamp(20px, 2.4vw, 32px);
  text-decoration: underline;
  text-decoration-color: rgba(190, 200, 230, 0.75);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 10px;
  display: inline-block;
  line-height: 1.25;
}
.who__lead {
  font-size: 15.5px;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

.who__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 1.6vw, 26px) clamp(20px, 2.4vw, 40px);
  max-width: 1200px;
  margin: 0 auto;
}
.who__col {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.4vw, 20px);
}
.who__col li {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: clamp(16px, 1.6vw, 22px) clamp(22px, 2vw, 30px) clamp(16px, 1.6vw, 22px) clamp(56px, 5vw, 72px);
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: #fff;
  position: relative;
}
.who__col li::before {
  content: "";
  position: absolute;
  left: clamp(22px, 2vw, 30px);
  top: 50%;
  transform: translateY(-65%) rotate(45deg);
  width: 10px;
  height: 18px;
  border-right: 2.5px solid #fff;
  border-bottom: 2.5px solid #fff;
}
.who__note {
  margin: clamp(28px, 3vw, 44px) auto 0;
  text-align: center;
  font-size: 14.5px;
  line-height: 1.95;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.82);
  max-width: 1100px;
}

/* =========================================================
   Employee Voice (社員インタビュー) — 白背景・縦長3カード
   ========================================================= */
.voice {
  background: #fff;
  padding-block: clamp(90px, 11vw, 160px);
}
.voice__head {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 84px);
}
.voice__eyebrow {
  font-family: var(--ff-serif-jp, "Noto Serif JP", serif);
  font-weight: 600;
  font-style: normal;
  font-size: clamp(36px, 4.5vw, 64px);
  letter-spacing: 0.04em;
  color: var(--c-navy);
  margin-bottom: clamp(12px, 1.4vw, 20px);
  line-height: 1.15;
}
.voice__title {
  font-family: var(--ff-serif-jp, "Noto Serif JP", serif);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: 0.08em;
  color: var(--c-navy);
  margin: 0;
  text-decoration: underline;
  text-decoration-color: var(--c-navy);
  text-decoration-thickness: 1.2px;
  text-underline-offset: 8px;
  display: inline-block;
  line-height: 1.4;
}

.voice__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
}
.voice-card { background: transparent; }
.voice-card a {
  display: block;
  color: inherit;
  text-decoration: none;
}
.voice-card__media {
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 0;
  background: #ddd;
}
.voice-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.voice-card:hover .voice-card__media img { transform: scale(1.04); }
.voice-card__body { padding-top: clamp(20px, 2.2vw, 28px); }
.voice-card__body h3 {
  font-family: var(--ff-serif-jp, "Noto Serif JP", serif);
  font-weight: 500;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: var(--c-navy);
  margin: 0 0 clamp(14px, 1.4vw, 20px);
  text-decoration: underline;
  text-decoration-color: var(--c-navy);
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}
.voice-card__role {
  font-family: var(--ff-jp);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--c-text);
}

.voice__more {
  margin-top: clamp(48px, 5vw, 72px);
  display: flex;
  justify-content: center;
}
.voice__more .btn {
  background: var(--c-navy);
  color: #fff;
  border: none;
}
.voice__more .btn:hover {
  background: #2a3a60;
  color: #fff;
}
.voice__more .btn__arrow { display: none; }
.voice__more .btn > span:first-child { padding-right: 0; }

/* =========================================================
   Job Types (募集職種) — 画像+本文の2カラムカード
   ========================================================= */
.job-types {
  background: #fff;
  padding-block: clamp(90px, 11vw, 160px);
}
.job-types__head {
  text-align: center;
  margin-bottom: clamp(48px, 6vw, 84px);
}
.job-types__eyebrow {
  font-family: var(--ff-serif-jp, "Noto Serif JP", serif);
  font-weight: 600;
  font-style: normal;
  font-size: clamp(36px, 4.5vw, 64px);
  letter-spacing: 0.04em;
  color: var(--c-navy);
  margin-bottom: clamp(12px, 1.4vw, 20px);
  line-height: 1.15;
}
.job-types__title {
  font-family: var(--ff-serif-jp, "Noto Serif JP", serif);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: 0.08em;
  color: var(--c-navy);
  margin: 0;
  text-decoration: underline;
  text-decoration-color: var(--c-navy);
  text-decoration-thickness: 1.2px;
  text-underline-offset: 8px;
  display: inline-block;
  line-height: 1.4;
}

.job-types__list {
  display: flex;
  flex-direction: column;
  gap: clamp(18px, 2vw, 28px);
  max-width: 1200px;
  margin: 0 auto;
}
.jt-row {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 64px);
  align-items: center;
  background: transparent;
  border-radius: 0;
  padding: 0;
}
.jt-row__media {
  margin: 0;
  aspect-ratio: 16 / 11;
  overflow: hidden;
}
.jt-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.jt-row__body h3 {
  font-family: var(--ff-serif-jp, "Noto Serif JP", serif);
  font-weight: 500;
  font-size: clamp(22px, 2.2vw, 32px);
  letter-spacing: 0.06em;
  color: var(--c-navy);
  margin: 0 0 clamp(16px, 1.6vw, 22px);
  text-decoration: underline;
  text-decoration-color: var(--c-navy);
  text-decoration-thickness: 1.2px;
  text-underline-offset: 8px;
  display: inline-block;
  line-height: 1.4;
}
.jt-row__body p {
  font-size: 15px;
  line-height: 1.85;
  letter-spacing: 0.04em;
  color: var(--c-text);
  margin: 0 0 clamp(22px, 2.4vw, 32px);
}
.jt-row__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 36px;
  background: var(--c-navy);
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.08em;
  border-radius: var(--r-pill);
  text-decoration: none;
  transition: background-color .25s var(--ease), transform .25s var(--ease);
  min-width: 260px;
}
.jt-row__btn:hover {
  background: #2a3a60;
  transform: translateY(-1px);
}

/* =========================================================
   Bottom CTA (Message for you) — ダークネイビー、中央テキスト
   ========================================================= */
.recruit-cta {
  position: relative;
  padding-block: clamp(90px, 11vw, 160px);
  background: #1c2b54;
  color: #fff;
  overflow: hidden;
  text-align: center;
}
.recruit-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  z-index: 0;
  pointer-events: none;
}
.recruit-cta__inner {
  position: relative;
  z-index: 1;
}
.recruit-cta__eyebrow {
  font-family: var(--ff-serif-jp, "Noto Serif JP", serif);
  font-weight: 400;
  font-size: clamp(14px, 1.1vw, 17px);
  letter-spacing: 0.1em;
  color: rgba(220, 226, 245, 0.85);
  margin-bottom: clamp(16px, 1.8vw, 24px);
  line-height: 1;
}
.recruit-cta__title {
  font-family: var(--ff-serif-jp, "Noto Serif JP", serif);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: rgba(190, 200, 230, 0.95);
  margin: 0 0 clamp(28px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.recruit-cta__title span {
  text-decoration: underline;
  text-decoration-color: rgba(190, 200, 230, 0.75);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 10px;
}
.recruit-cta__lead {
  font-size: 15.5px;
  line-height: 1.95;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 clamp(36px, 4.4vw, 56px);
}
.recruit-cta__btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(16px, 1.8vw, 24px);
}
.recruit-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 0 40px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.08em;
  border-radius: var(--r-pill);
  text-decoration: none;
  min-width: clamp(220px, 22vw, 300px);
  transition: background-color .25s var(--ease), transform .25s var(--ease);
}
.recruit-cta__btn:hover {
  background: rgba(255, 255, 255, 0.28);
  transform: translateY(-1px);
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 960px) {
  .recruit-intro__cards { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .assignment__head { grid-template-columns: 1fr; }
  .stack-grid { grid-template-columns: 1fr; gap: 12px; }
  .why-itl__cards { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .job-duties__inner { grid-template-columns: 1fr; }
  .job-duties__media { left: 0; opacity: 0.85; }
  .job-duties__media img { opacity: 0.15; }
  .who__grid { grid-template-columns: 1fr; max-width: 600px; }
  .voice__cards { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
}

@media (max-width: 600px) {
  .recruit-hero__ctas .btn { width: 100%; }
  .recruit-cta__btns .btn { width: 100%; }
  .jt-row { grid-template-columns: 1fr; text-align: center; }
  .jt-row__num { text-align: center; }
}

/* == websupport 2026-07-22 batch (#5854/5856/5857/5862-3/5866/5867/5869/5872) == */
/* #5869 採用イントロ本文を明朝(serif)に */
.recruit-intro__body p {
  font-family: "Yu Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN", "MS PMincho", serif;
}
