@charset "utf-8";
/* ============================================================
   立達徵信社工作、人才招募｜career.css
   設計語言：紙質淡藍底 × 大量留白 × 白色圓角照片卡片
   × 直排標題 Banner × 超大描邊英文字 × 大數字步驟
   主色調：藍色系
   ============================================================ */

:root{
  --cr-ink:      #3c567d;   /* 深藍墨色（主要文字） */
  --cr-primary:  #1f5fa8;   /* 主藍 */
  --cr-accent:   #28a7e1;   /* 亮藍（與全站一致） */
  --cr-paper:    #f3f7fb;   /* 紙質淡藍底 */
  --cr-band:     #e6eef6;   /* 深一階的區塊帶 */
  --cr-line:     #c9d8e6;   /* 細線 */
  --cr-white:    #ffffff;
  --cr-serif:    'Noto Serif TC', serif;
  --cr-radius:   14px;
  --cr-shadow:   0 10px 28px rgba(31, 95, 168, .10);
}

/* ---------- 版面框架（配合左側 300px 固定選單） ---------- */
#career_page{
  width: calc(100% - 300px);
  margin-left: 300px;
  box-sizing: border-box;
  background:
    radial-gradient(rgba(31,95,168,.045) 1px, transparent 1px) 0 0 / 22px 22px,
    var(--cr-paper);
  color: var(--cr-ink);
  overflow: hidden;
}
@media screen and (max-width: 1100px){
  #career_page{ width: 100%; margin-left: 0; }
}

/* ---------- BANNER（career.jpg 1000×382，等比例滿版） ---------- */
.cr-hero{ position: relative; }
.cr-hero-img{ position: relative; overflow: hidden; }
.cr-hero-img img{
  display: block;
  width: 100%;
  height: auto;                 /* 依 1000:382 原比例縮放 */
  aspect-ratio: 1000 / 382;
  object-fit: cover;
}
.cr-hero-shade{
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(27,42,65,0) 45%, rgba(27,42,65,.55) 100%);
  pointer-events: none;
}
.cr-hero-title{
  position: absolute; top: 8%; right: 5%;
  text-align: right; color: #fff;
}
.cr-hero-en{
  font-size: clamp(10px, 1vw, 13px);
  letter-spacing: .35em;
  margin: 0 0 12px; padding: 0; line-height: 1;
  color: rgba(255,255,255,.85);
}
.cr-hero-vertical{
  display: inline-block;
  writing-mode: vertical-rl;
  font-family: var(--cr-serif);
  font-weight: 900;
  font-size: clamp(26px, 3.4vw, 46px);
  letter-spacing: .3em;
  line-height: 1;
  padding: .5em .35em;
  background: rgba(31,95,168,.72);
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
}
/* 超大描邊英文字（呼應參考版型的 Ghost Text） */
.cr-ghost{
  font-family: var(--cr-serif);
  font-weight: 900;
  font-size: clamp(48px, 9vw, 130px);
  line-height: .95;
  white-space: nowrap;
  color: transparent;
  -webkit-text-stroke: 1px rgba(31,95,168,.28);
  letter-spacing: .04em;
  user-select: none;
  margin-top: -0.52em;
  padding-left: 2%;
  position: relative; z-index: 1;
}

/* ---------- 麵包屑 ---------- */
.cr-breadcrumb{
  padding: 26px 5% 0;
  font-size: 14px;
  color: #5b7188;
}
.cr-breadcrumb ol, .cr-breadcrumb li{ display: inline; }
.cr-breadcrumb a{ color: var(--cr-primary); }

/* ---------- 章節共用 ---------- */
.cr-section{
  max-width: 960px;
  margin: 0 auto;
  padding: 72px 5% 88px;
  box-sizing: border-box;
}
.cr-band{
  max-width: none;
  background: var(--cr-band);
  border-top: 1px solid var(--cr-line);
  border-bottom: 1px solid var(--cr-line);
}
.cr-band > *{ max-width: 960px; margin-left: auto; margin-right: auto; }

.cr-eyebrow{
  text-align: center;
  font-size: 12px;
  letter-spacing: .4em;
  color: var(--cr-accent);
  padding: 0; margin: 0 auto 14px;
  max-width: 960px;
  line-height: 1;
}
.cr-eyebrow::after{
  content: "";
  display: block;
  width: 34px; height: 2px;
  background: var(--cr-accent);
  margin: 12px auto 0;
}
#career_page h1{
  font-family: var(--cr-serif);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 700;
  color: var(--cr-ink);
  text-align: center;
  line-height: 1.7;
  margin: 0 0 34px;
}
.cr-h1-sub{ display: block; font-size: .62em; color: var(--cr-primary); margin-top: 6px; }
.cr-title{
  font-family: var(--cr-serif);
  font-size: clamp(22px, 2.3vw, 30px);
  font-weight: 700;
  color: var(--cr-ink);
  text-align: center;
  line-height: 1.75;
  margin: 0 auto 38px;
  max-width: 960px;
}

.cr-prose p{
  padding: 0;
  margin: 0 0 1.6em;
  font-size: 17px;
  line-height: 2.05;
  letter-spacing: .04em;
  color: #33455c;
  text-align: justify;
}
.cr-note{
  margin: 44px auto 0;
  padding: 22px 26px;
  font-size: 16.5px;
  line-height: 2;
  color: #33455c;
  background: var(--cr-white);
  border-left: 4px solid var(--cr-accent);
  border-radius: 0 var(--cr-radius) var(--cr-radius) 0;
  box-shadow: var(--cr-shadow);
}

/* ---------- 亮點數據列 ---------- */
.cr-stats{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 44px;
}
.cr-stat{
  background: var(--cr-white);
  border: 1px solid var(--cr-line);
  border-radius: var(--cr-radius);
  text-align: center;
  padding: 22px 8px 18px;
  box-shadow: var(--cr-shadow);
}
.cr-stat strong{
  display: block;
  font-family: var(--cr-serif);
  font-weight: 900;
  font-size: clamp(22px, 2.2vw, 30px);
  color: var(--cr-primary);
  line-height: 1.2;
}
.cr-stat strong i{ font-style: normal; font-size: .55em; }
.cr-stat span{ display: block; margin-top: 8px; font-size: 12.5px; color: #5b7188; letter-spacing: .05em; }
@media screen and (max-width: 800px){
  .cr-stats{ grid-template-columns: repeat(2, 1fr); }
}

/* ---------- 角色卡片（圖文交錯） ---------- */
.cr-role{
  display: flex;
  gap: 34px;
  align-items: stretch;
  background: var(--cr-white);
  border-radius: var(--cr-radius);
  box-shadow: var(--cr-shadow);
  padding: 26px;
  box-sizing: border-box;
  margin-top: 44px;
}
.cr-role-rev{ flex-direction: row-reverse; }
.cr-role-img{ flex: 0 0 42%; min-width: 0; }
.cr-role-txt{ flex: 1; min-width: 0; }
.cr-role-txt h3{
  font-family: var(--cr-serif);
  font-size: 21px;
  font-weight: 700;
  color: var(--cr-primary);
  line-height: 1.6;
  margin: 4px 0 16px;
}
.cr-role-txt p{
  padding: 0; margin: 0;
  font-size: 16px; line-height: 2;
  color: #33455c; text-align: justify;
}
.cr-tag{
  display: inline-block;
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: var(--cr-accent);
  border-radius: 4px;
  padding: 4px 12px;
  margin-right: 10px;
  vertical-align: middle;
  letter-spacing: .15em;
}
@media screen and (max-width: 800px){
  .cr-role, .cr-role-rev{ flex-direction: column; gap: 18px; padding: 18px; }
}

/* ---------- 薪資表格（RWD：手機轉卡片） ---------- */
.cr-table-wrap{ margin-top: 34px; }
.cr-table{
  width: 100%;
  background: var(--cr-white);
  border-radius: var(--cr-radius);
  overflow: hidden;
  box-shadow: var(--cr-shadow);
  border-collapse: collapse;
}
.cr-table th{
  background: var(--cr-primary);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: .1em;
  padding: 16px 18px;
  text-align: left;
}
.cr-table td{
  padding: 18px;
  font-size: 15.5px;
  line-height: 1.9;
  color: #33455c;
  border-bottom: 1px solid var(--cr-line);
  vertical-align: top;
}
.cr-table tbody tr:last-child td{ border-bottom: none; }
.cr-table tbody tr:nth-child(even){ background: #f7fafd; }
.cr-table td:first-child{
  font-weight: 700;
  color: var(--cr-primary);
  white-space: nowrap;
}
.cr-table-note{
  margin: 14px 4px 0;
  padding: 0;
  font-size: 13.5px;
  line-height: 1.8;
  color: #7288a0;
}
.sr-only{
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip: rect(0 0 0 0); overflow: hidden;
}
@media screen and (max-width: 800px){
  .cr-table thead{ display: none; }
  .cr-table, .cr-table tbody, .cr-table tr, .cr-table td{ display: block; width: 100%; box-sizing: border-box; }
  .cr-table tr{ border-bottom: 6px solid var(--cr-paper); }
  .cr-table td{ border-bottom: 1px dashed var(--cr-line); padding: 14px 16px; }
  .cr-table td:first-child{
    background: var(--cr-primary); color: #fff; white-space: normal;
    font-size: 17px; letter-spacing: .08em;
  }
  .cr-table td[data-th]::before{
    content: attr(data-th);
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--cr-accent);
    letter-spacing: .2em;
    margin-bottom: 4px;
  }
  .cr-table td:first-child::before{ display: none; }
}

/* ---------- 應徵流程（大數字步驟） ---------- */
.cr-steps{ list-style: none; margin: 0 auto; padding: 0; counter-reset: step; max-width: 960px; }
.cr-step{
  position: relative;
  display: flex;
  gap: 28px;
  align-items: center;
  background: var(--cr-white);
  border-radius: var(--cr-radius);
  box-shadow: var(--cr-shadow);
  padding: 30px 30px 30px 110px;
  box-sizing: border-box;
  margin-top: 30px;
}
.cr-step-num{
  position: absolute;
  left: 26px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--cr-serif);
  font-weight: 900;
  font-size: 64px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px var(--cr-accent);
}
.cr-step-body{ flex: 1; min-width: 0; }
.cr-step-body h3{
  font-family: var(--cr-serif);
  font-size: 20px; font-weight: 700;
  color: var(--cr-primary);
  margin: 0 0 10px; line-height: 1.6;
}
.cr-step-body p{
  padding: 0; margin: 0;
  font-size: 15.5px; line-height: 1.95;
  color: #33455c; text-align: justify;
}
.cr-step-img{ flex: 0 0 30%; min-width: 0; }
@media screen and (max-width: 800px){
  .cr-step{ flex-direction: column; padding: 74px 18px 18px; gap: 16px; }
  .cr-step-num{ top: 18px; left: 18px; transform: none; font-size: 48px; }
  .cr-step-img{ width: 100%; flex-basis: auto; }
}

/* ---------- CTA ---------- */
.cr-cta{
  margin-top: 60px;
  text-align: center;
  background: var(--cr-primary);
  border-radius: var(--cr-radius);
  padding: 44px 24px;
  color: #fff;
  box-shadow: 0 14px 34px rgba(31,95,168,.3);
}
.cr-cta p{
  padding: 0; margin: 0 0 22px;
  font-size: 17px; line-height: 1.95; color: #fff;
}
.cr-cta-btn{
  display: inline-block;
  background: #fff;
  color: var(--cr-primary);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: .08em;
  padding: 15px 38px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(0,0,0,.18);
  transition: transform .25s ease, box-shadow .25s ease;
}
.cr-cta-btn:hover{ transform: translateY(-3px); box-shadow: 0 10px 22px rgba(0,0,0,.24); }
.cr-cta-sub{ margin-top: 22px !important; margin-bottom: 0 !important; font-size: 14.5px !important; opacity: .9; }

/* ---------- FAQ ---------- */
.cr-faq{ margin-top: 8px; }
.cr-faq-item{
  background: var(--cr-white);
  border: 1px solid var(--cr-line);
  border-radius: var(--cr-radius);
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(31,95,168,.07);
}
.cr-faq-item summary{
  list-style: none;
  cursor: pointer;
  position: relative;
  padding: 20px 54px 20px 22px;
  font-size: 17.5px;
  font-weight: 700;
  color: var(--cr-ink);
  line-height: 1.7;
}
.cr-faq-item summary::-webkit-details-marker{ display: none; }
.cr-faq-item summary::after{
  content: "+";
  position: absolute; right: 20px; top: 50%;
  transform: translateY(-50%);
  font-size: 26px; font-weight: 400;
  color: var(--cr-accent);
  transition: transform .3s ease;
}
.cr-faq-item[open] summary::after{ content: "−"; color: var(--cr-primary); }
.cr-q{
  display: inline-block;
  font-family: var(--cr-serif);
  font-weight: 900;
  color: var(--cr-accent);
  margin-right: 12px;
  font-size: 1.05em;
}
.cr-faq-item p{
  padding: 0 22px 22px;
  margin: 0;
  font-size: 15.5px;
  line-height: 2;
  color: #4b6b95;
  border-top: 1px dashed var(--cr-line);
  padding-top: 16px;
  text-align: justify;
}

/* ---------- 滾動浮現動畫 ---------- */
.reveal{
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1);
}
.reveal.is-visible{ opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity: 1; transform: none; transition: none; }
  .cr-cta-btn{ transition: none; }
}

/* ---------- 顯示輔助 ---------- */
.sp-only{ display: none; }
.pc-only{ display: inline; }
@media screen and (max-width: 800px){
  .sp-only{ display: inline; }
  .pc-only{ display: none; }
  .cr-section{ padding: 52px 6% 64px; }
  .cr-hero-title{ top: 10%; right: 4%; }
  .cr-hero-vertical{
    writing-mode: horizontal-tb;
    font-size: clamp(20px, 5.5vw, 30px);
    letter-spacing: .2em;
    padding: .35em .6em;
  }
  .cr-hero-en{ letter-spacing: .25em; margin-bottom: 8px; }
  .cr-hero-title{ top: auto; bottom: 10%; right: 4%; }
}