@charset "utf-8";
:root {
  /* ==========================================================================
     タイポグラフィ体系 (3系統のシステムフォント設計)
     ========================================================================== */
  /* [Level 1] 基本本文・UI用 サンセリフ (高可読性・ニュートラル) */
  --font-sans: "Segoe UI", -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "BIZ UDPGothic", Meiryo, sans-serif;

  /* [Level 2] 見出し・品格用 セリフ (クラシック・格調高い和文明朝 & ローマン) */
  --font-serif: "Georgia", "Palatino Linotype", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "BIZ UDPMincho", serif;

  /* [Level 3] 欧文ラベル・数値用 ジオメトリック (洗練された幾何学英数) */
  --font-english: "Century Gothic", "Avenir Next", "Avenir", "Segoe UI", sans-serif;

  /* --- 互換用エイリアス（既存の参照先を3系統へ集約） --- */
  --font-heading: var(--font-serif);
  --font-editorial: var(--font-serif);
  --font-outfit: var(--font-english);
  --font-japanese: var(--font-sans);

  /* プライマリカラー: 既存ロゴと親和性のある鮮やかなシアンブルー */
  --primary-color: #00a6e6;
  --primary-hover: #40c4f7;
  --primary-light: rgba(0, 166, 230, 0.08);
  --primary-inverse-color: #ffffff;

  /* セカンダリカラー: 知的なディープブルー */
  --secondary-color: #006699;
  --secondary-hover: #004d73;
  --secondary-light: rgba(0, 102, 153, 0.08);
  --secondary-inverse-color: #ffffff;

  /* テーマカラー: クリーンホワイト（全体背景） */
  --color-paper: #ffffff;
  --color-paper-subtle: #f8fafc;
  --color-paper-card: #ffffff;
  --color-ink: #111823;
  --color-ink-muted: #4b5563;
  --color-ink-light: #7b8794;

  /* ディープオーシャン＆ティール */
  --color-ocean-dark: #002236;
  --color-ocean-mid: #004266;
  --color-ocean-bright: #0077b6;
  --color-teal: #1e828a;
  --color-teal-light: #4ebdc1;

  /* 博物館ゴールド＆ブロンズアクセント */
  --color-gold: #c5a880;
  --color-gold-light: #e8d7be;
  --color-gold-dark: #9e7d47;
  --color-gold-glow: rgba(197, 168, 128, 0.25);

  /* ==========================================================================
     各ページ専用テーマカラー (Page-Specific Theme Color System)
     ========================================================================== */
  /* WORK: brand-hero テーマ (シアンブルー & スカイ) */
  --theme-work-primary: #0284c7;
  --theme-work-accent: #38bdf8;
  --theme-work-dark: #0f172a;
  --theme-work-light: #f0f9ff;
  --theme-work-border: #bae6fd;

  /* ABOUT: trust-history テーマ (トラストネイビー & コバルト) */
  --theme-about-primary: #104887;
  --theme-about-accent: #2563eb;
  --theme-about-dark: #0a2d59;
  --theme-about-light: #eff6ff;
  --theme-about-border: #bfdbfe;

  /* WORKSTYLE: top-workstyle テーマ (ウォームペーパー & ティール/ゴールド) */
  --theme-workstyle-primary: #1e828a;
  --theme-workstyle-accent: #c5a880;
  --theme-workstyle-dark: #0f4c5c;
  --theme-workstyle-light: #f0fdfa;
  --theme-workstyle-border: #ccfbf1;
  --theme-workstyle-paper: #ffffff;

  /* RECRUIT: top-recruit テーマ (フォレストグリーン & エメラルド) */
  --theme-recruit-primary: #14724b;
  --theme-recruit-accent: #10b981;
  --theme-recruit-dark: #0d5235;
  --theme-recruit-light: #ecfdf5;
  --theme-recruit-border: #a7f3d0;

  /* INFO: sec_portal_info テーマ (エディトリアルインク & チャコール) */
  --theme-info-primary: #111823;
  --theme-info-accent: #4b5563;
  --theme-info-dark: #000000;
  --theme-info-light: #f8fafc;
  --theme-info-border: #cbd5e1;
  --theme-info-paper: #ffffff;

  /* 基本トークン */
  --text-color: var(--color-ink);
  --text-color-muted: var(--color-ink-muted);
  --border-color: #dcd6cb;
  --bg-light: var(--color-paper);
  --global-space: 5vw;

  /* --- 共通レイアウト幅・左右余白（変更を容易にするため一元管理） --- */
  --layout-max-width: 1480px;
  --layout-content-width: 1100px;
  --layout-padding-x: 16px;
  --layout-padding-x-sp: 12px;
  --container-gutter: var(--layout-padding-x);

  /* --- 共通余白スケール（8px基準） --- */
  --space-2xs: 4px;
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;
  --space-2xl: 64px;
  --space-3xl: 96px;

  /* --- 用途別セマンティック余白 --- */
  --space-section: var(--space-3xl);
  --space-heading-bottom: var(--space-lg);
  --space-card-gap: var(--space-lg);
  --space-paragraph: var(--space-sm);

  /* フォーム専用余白 */
  --space-form-group: var(--space-lg);
  --space-form-label: var(--space-xs);
  --space-form-control-padding-y: 10px;
  --space-form-control-padding-x: 14px;
}

@media screen and (max-width: 768px) {
  :root {
    --container-gutter: var(--layout-padding-x-sp);
    --space-section: var(--space-xl);
    --space-heading-bottom: var(--space-md);
    --space-card-gap: var(--space-md);
  }
}

body * {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-size: 13px;
}

@media screen and (min-width: 900px) {
  html,
  body {
    font-size: 16px;
  }
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  font-optical-sizing: auto;
  -webkit-text-size-adjust: none;
  background-color: var(--color-paper, #ffffff);
  color: var(--text-color);
  line-height: 1.85;
}

figure {
  margin: 0;
}

dd {
  margin: 0;
}

nav,
ul,
li,
ol {
  margin: 0;
  padding: 0;
}

nav ul {
  list-style: none;
}

section li {
  margin-left: 1rem;
}

table {
  border-collapse: collapse;
}

img {
  border: none;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

video {
  max-width: 100%;
}

iframe {
  width: 100%;
}

input {
  font-size: 1rem;
}

section + section,
.left-page-section + .left-page-section {
  margin-top: var(--space-section);
}

a {
  color: var(--text-color);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

a:hover {
  text-decoration: none;
  color: var(--primary-color);
}

#contents {
  flex: 1;
  padding: var(--global-space);
}

@media screen and (max-width: 600px) {
  #contents {
    padding-top: 80px;
  }
}

/* --- エディトリアル＆ミュージアム セクション見出し --- */
.section-header-block {
  text-align: center;
  margin-bottom: var(--space-heading-bottom);
  position: relative;
}

.section-num-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold-dark);
  margin-bottom: 6px;
  position: relative;
  padding: 0 12px;
}

.section-num-badge::before,
.section-num-badge::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 1px;
  background: var(--color-gold);
  margin: 0 8px;
  opacity: 0.7;
}

.editorial-title {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-ink);
  margin: 0;
  line-height: 1.35;
}

.editorial-sub {
  font-family: var(--font-english);
  font-size: 0.95rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-ink-light);
  margin-top: 6px;
  font-weight: 500;
}

.theme-ocean .section-num-badge {
  color: var(--color-gold-light);
}
.theme-ocean .section-num-badge::before,
.theme-ocean .section-num-badge::after {
  background: var(--color-gold-light);
  opacity: 0.6;
}
.theme-ocean .editorial-title {
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
.theme-ocean .editorial-sub {
  color: rgba(255, 255, 255, 0.7);
}

.section-title {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  letter-spacing: 0.06em;
  color: var(--color-ink);
  position: relative;
  padding-bottom: 12px;
  margin-bottom: var(--space-heading-bottom);
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
  border-bottom: 2px solid var(--color-gold);
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--color-gold);
  opacity: 0.4;
}

/* --- セクションテーマ（カラー切り替え） --- */
.section-theme-wrapper {
  width: 100%;
  position: relative;
  box-sizing: border-box;
}

.theme-paper {
  background-color: var(--color-paper);
  padding: 80px 0 100px;
}

.theme-ocean {
  background: linear-gradient(175deg, #002236 0%, #003e61 45%, #002236 100%);
  color: #ffffff;
  padding: 100px 0 130px;
  position: relative;
  overflow: hidden;
}

.theme-ocean::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(78, 189, 193, 0.15), transparent 45%),
              radial-gradient(circle at 20% 80%, rgba(0, 166, 230, 0.12), transparent 50%);
  pointer-events: none;
}

/* --- 波型SVGディバイダー --- */
.wave-divider-top {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 5;
}

.wave-divider-top svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 65px;
}

.wave-divider-top .shape-fill {
  fill: var(--color-paper);
}

.wave-divider-bottom {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 5;
}

.wave-divider-bottom svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 65px;
}

.wave-divider-bottom .shape-fill {
  fill: #0d1b2a;
}

.pagetop-show {
  display: block;
}

.pagetop a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-align: center;
  z-index: 99;
  position: fixed;
  right: 20px;
  bottom: 20px;
  color: #fff;
  background: rgba(0, 0, 0, 0.2);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.pagetop a:hover {
  background: rgba(0, 0, 0, 0.4);
}

.pagetop a img {
  width: 14px;
  height: 14px;
  display: block;
}

.section-title a,
.requirements-title a,
.entry-cta-title a,
.process-title a {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.section-title a:hover,
.requirements-title a:hover,
.entry-cta-title a:hover,
.process-title a:hover {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.heading-anchor-icon {
  display: none;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid #e2e8f0;
  margin-bottom: 2rem;
  width: 100%;
}

.info-item {
  display: flex;
  align-items: center;
  padding: 1.25rem 1rem;
  border-bottom: 1px solid #e2e8f0;
  transition: background-color 0.2s ease;
  gap: 2rem;
  text-decoration: none;
  color: inherit;
}

.info-item:hover {
  background-color: #f8fafc;
  text-decoration: none;
}

.info-item__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.info-item__date {
  font-family: var(--font-english);
  font-weight: 600;
  color: #334155;
  font-size: 0.95rem;
}

.info-item__badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 4px;
  color: #fff;
  text-align: center;
  min-width: 4.5rem;
  letter-spacing: 0.05em;
}

.info-item__badge.type-info {
  background-color: var(--primary-color);
}

.info-item__badge.type-new {
  background-color: #ffab00;
}

.info-item__badge.type-other {
  background-color: #64748b;
}

.info-item__title {
  font-size: 1rem;
  font-weight: 500;
  color: #0f172a;
  transition: color 0.2s ease;
  flex-grow: 1;
  line-height: 1.5;
}

.info-item:hover .info-item__title {
  color: var(--secondary-color);
}

.info-page-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1rem 4rem;
  width: 100%;
}

.info-article {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 2px 4px -1px rgba(0, 0, 0, 0.02);
  padding: 3rem 2.5rem;
  width: 100%;
}

.info-article__header {
  border-bottom: 2px solid #f1f5f9;
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
}

.info-article__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.info-article__date {
  font-family: var(--font-english);
  font-weight: 600;
  color: #334155;
  font-size: 1rem;
}

.info-article__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 10px;
  font-family: var(--font-outfit, "Outfit", sans-serif);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  border-radius: 2px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}

.info-article__badge.type-info {
  background-color: var(--primary-color);
}

.info-article__badge.type-new {
  background-color: #e11d48;
}

.info-article__title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.4;
  margin: 0;
}

.info-article__content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #111827;
}

.info-article__content p {
  margin-bottom: 1.5rem;
}

.info-article__highlight-box {
  background-color: #f8fafc;
  border-left: 4px solid var(--secondary-color);
  padding: 1.5rem;
  border-radius: 0 8px 8px 0;
  margin: 2rem 0;
}

.info-article__highlight-box p {
  margin-bottom: 0;
}

.info-article__notes {
  background-color: #fffbf2;
  border: 1px solid #ffeeba;
  padding: 1.25rem;
  border-radius: 8px;
  margin: 2rem 0 0;
  font-size: 0.95rem;
  color: #7a5f13;
}

.info-article__notes p {
  margin-bottom: 0.5rem;
  display: flex;
  gap: 0.5rem;
}

.info-article__notes p:last-child {
  margin-bottom: 0;
}

.info-article__notes .red {
  color: #dc3545;
  font-weight: 700;
}

/* 派遣事業PDFリンクリスト（共通スタイル） */
.about-pdf-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 4px;
}

.about-pdf-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #111827;
  text-decoration: underline;
  font-weight: 500;
  font-size: 14px;
  padding: 4px 0;
  background: transparent;
  border: none;
  border-radius: 0;
  transition: color 0.2s ease;
  width: fit-content;
}

.about-pdf-link i,
.about-pdf-link svg,
.about-pdf-link .about-pdf-icon {
  color: #dc2626;
  font-size: 14px;
  flex-shrink: 0;
}

.about-pdf-link:hover {
  color: #104887;
  background: transparent;
  box-shadow: none;
}

.about-pdf-link:hover i {
  color: #dc2626;
}

.info-article__footer {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid #f1f5f9;
  display: flex;
  justify-content: center;
}

.info-article__back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
  background-color: #fff;
  border: 1px solid #cbd5e1;
  border-radius: 2px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.info-article__back-btn:hover {
  background-color: #f1f5f9;
  color: #0f172a;
  border-color: #94a3b8;
  text-decoration: none;
}

@media screen and (max-width: 600px) {
  .info-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1rem 0.5rem;
  }

  .info-item__meta {
    gap: 0.75rem;
  }

  .info-article {
    padding: 2rem 1.5rem;
  }

  .info-article__title {
    font-size: 1.4rem;
  }
}

.lead-box {
  background-color: #f8fafc;
  border-left: 4px solid var(--secondary-color);
  padding: var(--space-md) var(--space-lg);
  margin-bottom: var(--space-lg);
  border-radius: 4px;
}

.lead-text {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  line-height: 1.65;
  margin: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-card-gap);
  margin-bottom: var(--space-lg);
}

@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: var(--space-lg);
  box-shadow: 0 4px 12px rgba(24, 34, 51, 0.03);
}

.feature-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--secondary-color);
  margin: 0 0 var(--space-sm) 0;
  padding-bottom: 12px;
  border-bottom: 2px solid #e2e8f0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-list {
  padding-left: 20px;
  margin: 0;
  color: #1e293b;
  font-weight: 500;
  font-size: 14.5px;
  line-height: 1.8;
}

.feature-list li {
  margin-bottom: 10px;
}

.feature-list li:last-child {
  margin-bottom: 0;
}

.signature-box {
  text-align: right;
  font-size: 15.5px;
  font-weight: 700;
  color: #0f172a;
  margin-top: var(--space-sm);
  letter-spacing: 0.05em;
}

.spec-table-wrapper {
  margin-bottom: var(--space-xl);
  border-top: 2px solid #0f172a;
  border-bottom: 1px solid #cbd5e1;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  line-height: 1.7;
}

.spec-table tr {
  border-bottom: 1px solid #e2e8f0;
}

.spec-table th {
  width: 220px;
  padding: 18px 20px;
  background-color: #f8fafc;
  color: #0f172a;
  font-weight: 700;
  text-align: left;
  vertical-align: top;
  border-right: 1px solid #e2e8f0;
  box-sizing: border-box;
}

.spec-table td {
  padding: 18px 24px;
  color: #0f172a;
  font-weight: 500;
  vertical-align: top;
  background-color: #ffffff;
  box-sizing: border-box;
}

.spec-table td a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.spec-table td a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .spec-table th,
  .spec-table td {
    display: block;
    width: 100%;
  }

  .spec-table th {
    border-right: none;
    padding: 12px 16px;
    background-color: #f1f5f9;
  }

  .spec-table td {
    padding: 12px 16px 18px 16px;
  }
}

.timeline-table-wrapper {
  margin-bottom: var(--space-xl);
  border-top: 2px solid #0f172a;
  border-bottom: 1px solid #cbd5e1;
}

.timeline-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14.5px;
  line-height: 1.7;
}

.timeline-table tr {
  border-bottom: 1px solid #e2e8f0;
}

.timeline-table th {
  width: 140px;
  padding: 18px 20px;
  background-color: #f8fafc;
  color: var(--secondary-color);
  font-weight: 700;
  text-align: left;
  vertical-align: top;
  border-right: 1px solid #e2e8f0;
  white-space: nowrap;
}

.timeline-table td {
  padding: 18px 24px;
  color: #0f172a;
  font-weight: 500;
  vertical-align: top;
  background-color: #ffffff;
}

@media (max-width: 768px) {
  .timeline-table th,
  .timeline-table td {
    display: block;
    width: 100%;
  }

  .timeline-table th {
    border-right: none;
    padding: 12px 16px 4px 16px;
    background-color: #f8fafc;
  }

  .timeline-table td {
    padding: 4px 16px 16px 16px;
  }
}

.map-frame {
  width: 100%;
  height: 400px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(24, 34, 51, 0.05);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================================
   フォーム確認・完了画面共通スタイル (Confirm & Thanks Layouts)
   ========================================================================== */
.confirm-table {
	width: 100%;
	border-collapse: collapse;
	margin: var(--space-lg) 0;
	background: #ffffff;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid #e2e8f0;
}

.confirm-table th,
.confirm-table td {
	padding: var(--space-md);
	border-bottom: 1px solid #e2e8f0;
	font-size: 0.95rem;
	line-height: 1.6;
}

.confirm-table tr:last-child th,
.confirm-table tr:last-child td {
	border-bottom: none;
}

.confirm-table th {
	width: 28%;
	background-color: #f8fafc;
	color: #334155;
	font-weight: 600;
	text-align: left;
	vertical-align: top;
}

.confirm-table td {
	color: #0f172a;
	word-break: break-word;
	white-space: pre-wrap;
}

.confirm-lead {
	color: #475569;
	font-size: 0.95rem;
	line-height: 1.7;
	margin-bottom: var(--space-lg);
	text-align: center;
}

@media (max-width: 768px) {
	.confirm-table th,
	.confirm-table td {
		display: block;
		width: 100%;
		box-sizing: border-box;
	}

	.confirm-table th {
		border-bottom: none;
		padding-bottom: var(--space-xs);
		background-color: #f1f5f9;
	}

	.confirm-table td {
		padding-top: var(--space-xs);
	}
}

.thanks-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: var(--space-2xl) var(--space-lg);
	margin: var(--space-lg) 0;
	text-align: center;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.thanks-icon {
	font-size: 3.5rem;
	color: #10b981;
	margin-bottom: var(--space-md);
}

.thanks-title {
	font-size: 1.5rem;
	font-weight: 700;
	color: #0f172a;
	margin-bottom: var(--space-md);
}

.thanks-text {
	font-size: 1rem;
	line-height: 1.8;
	color: #475569;
	margin-bottom: var(--space-xl);
}

.thanks-actions {
	display: flex;
	justify-content: center;
}

/* ==========================================================================
   Page-Scoped Theme Color Bindings
   ========================================================================== */

/* --- WORK PAGE (brand-hero: Cyan / Sky) --- */
body.page-work {
  --page-theme-primary: var(--theme-work-primary);
  --page-theme-accent: var(--theme-work-accent);
  --page-theme-dark: var(--theme-work-dark);
  --page-theme-light: var(--theme-work-light);
  --page-theme-border: var(--theme-work-border);
}

/* --- ABOUT PAGE (trust-history: Trust Navy / Cobalt) --- */
body.page-about {
  --page-theme-primary: var(--theme-about-primary);
  --page-theme-accent: var(--theme-about-accent);
  --page-theme-dark: var(--theme-about-dark);
  --page-theme-light: var(--theme-about-light);
  --page-theme-border: var(--theme-about-border);
}

/* --- WORKSTYLE PAGE (top-workstyle: Warm Paper / Teal / Gold) --- */
body.page-workstyle {
  --page-theme-primary: var(--theme-workstyle-primary);
  --page-theme-accent: var(--theme-workstyle-accent);
  --page-theme-dark: var(--theme-workstyle-dark);
  --page-theme-light: var(--theme-workstyle-light);
  --page-theme-border: var(--theme-workstyle-border);
}

/* --- RECRUIT PAGE (top-recruit: Forest Green / Emerald) --- */
body.page-recruit {
  --page-theme-primary: var(--theme-recruit-primary);
  --page-theme-accent: var(--theme-recruit-accent);
  --page-theme-dark: var(--theme-recruit-dark);
  --page-theme-light: var(--theme-recruit-light);
  --page-theme-border: var(--theme-recruit-border);
}

/* --- INFO PAGE (sec_portal_info: Editorial Ink / Charcoal) --- */
body.page-info {
  --page-theme-primary: var(--theme-info-primary);
  --page-theme-accent: var(--theme-info-accent);
  --page-theme-dark: var(--theme-info-dark);
  --page-theme-light: var(--theme-info-light);
  --page-theme-border: var(--theme-info-border);
}

/* ==========================================================================
   Single Column Layout Container (Common)
   ========================================================================== */
.single-column-layout-container {
  max-width: var(--layout-max-width, 1480px);
  margin: 0 auto;
  padding: 0 var(--container-gutter, 16px) var(--space-3xl);
  box-sizing: border-box;
}

.single-column-main-content {
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .single-column-layout-container {
    padding: 0 var(--container-gutter, 16px) var(--space-2xl);
  }
}

/* ==========================================================================
   Subbar & Breadcrumb Component (Common) - Gold Warm Theme
   ========================================================================== */
.subbar {
  position: relative;
  background: #fbf9f5;
  border-bottom: 1px solid #e9e3d8;
  z-index: 10;
  margin-bottom: var(--space-2xl, 48px);
  box-shadow: 0 1px 4px rgba(197, 168, 128, 0.08);
  transition: all 0.3s ease;
}

.subbar__container {
  max-width: var(--layout-max-width, 1480px);
  margin: 0 auto;
  padding: 0 var(--container-gutter, 16px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  box-sizing: border-box;
}

.subbar .breadcrumb {
  background: transparent !important;
  border: none;
  padding: 14px 0;
  width: auto;
  margin-bottom: 0 !important;
}

.subbar .breadcrumb__container {
  padding: 0;
  max-width: none;
}

.subbar .breadcrumb__link {
  color: #475569;
  text-decoration: none;
  font-weight: 500;
  font-size: 13.5px;
  transition: color 0.2s ease;
}

.subbar .breadcrumb__link:hover {
  color: #8c6323;
  text-decoration: none;
}

.subbar .breadcrumb__separator {
  color: #c5a880;
  margin: 0 8px;
  font-size: 11px;
}

.subbar .breadcrumb__current {
  color: #0f172a !important;
  font-weight: 700;
  font-size: 13.5px;
}

@media (max-width: 960px) {
  .subbar {
    margin-bottom: var(--space-xl, 36px);
  }

  .subbar__container {
    padding: 0 var(--container-gutter, 16px);
  }

  .subbar .breadcrumb {
    padding: 10px 0;
  }
}

.breadcrumb {
  width: 100%;
  background-color: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.8125rem;
  color: #64748b;
  position: relative;
  z-index: 10;
  line-height: 1.5;
}

.breadcrumb__container {
  max-width: var(--layout-max-width, 1480px);
  margin: 0 auto;
  padding: 10px var(--container-gutter, 16px);
  display: flex;
  align-items: center;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 6px 8px;
}

.breadcrumb__item {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}

.breadcrumb__link {
  color: #475569;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.breadcrumb__link:hover {
  color: var(--secondary-color);
  text-decoration: underline;
}

.breadcrumb__icon {
  font-size: 0.85em;
  color: var(--primary-color);
}

.breadcrumb__separator {
  color: #94a3b8;
  font-size: 0.65rem;
  display: inline-flex;
  align-items: center;
  user-select: none;
}

.breadcrumb__item[aria-current="page"] .breadcrumb__current {
  color: #0f172a;
  font-weight: 600;
}

@media (max-width: 768px) {
  .breadcrumb__container {
    padding: 8px var(--container-gutter, 12px);
  }
  .breadcrumb__list {
    font-size: 0.75rem;
    gap: 4px 6px;
  }
}

/* ==========================================================================
   Shared Mask-based Icons (for CTA mail/phone/award)
   ========================================================================== */
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  background-color: currentColor;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-type: alpha;
  mask-type: alpha;
  vertical-align: -0.15em;
  flex-shrink: 0;
}

.icon-mail {
  -webkit-mask-image: url("../images/icons/icon-mail.svg");
  mask-image: url("../images/icons/icon-mail.svg");
}

.icon-phone {
  -webkit-mask-image: url("../images/icons/icon-phone.svg");
  mask-image: url("../images/icons/icon-phone.svg");
}

.icon-award {
  -webkit-mask-image: url("../images/icons/icon-award.svg");
  mask-image: url("../images/icons/icon-award.svg");
}




