@charset "UTF-8";

/* ==========================================================================
   1. ブランドカラー・カスタム変数の定義
   ========================================================================== */
:root {
  --ink: #1b4383;
  --ink-2: #0f1d33;
  --ink-3: #16294a;
  --paper: #f6f4ee;
  --paper-2: #ffffff;
  --line-soft: #e2ddd0;
  --blue: #1773d4;
  --blue-bright: #3d9bff;
  --cyan: #37c3d8;
  --text-soft: #5a6573;
  --text-onink: #c8d4e6;
  --text-onink-soft: #7d90af;
  --text-yellow: #ffcd4f;
  --blueprint: rgba(255, 255, 255, .045);
}

/* ==========================================================================
   2. 全般・基本スタイル
   ========================================================================== */
body {
  /* スマホでの横スクロール・横揺れ防止 ＆ ヘッダー固定維持 */
  overflow-x: clip;
  width: 100%;
  position: relative;
  
  font-family: "Noto Sans JP", sans-serif;
  background-color: var(--paper);
  color: #24303f;
}

.latin, 
.num {
  font-family: "Archivo", sans-serif;
}

/* ブループリント背景テクスチャ */
.blueprint {
  background-image:
    linear-gradient(var(--blueprint) 1px, transparent 1px),
    linear-gradient(90deg, var(--blueprint) 1px, transparent 1px);
  background-size: 34px 34px;
}

/* ==========================================================================
   3. ヘッダー（ナビゲーション ＆ 正式ロゴ画像最適化）
   ========================================================================== */
header.nav {
  background: rgba(246, 244, 238, .82);
  backdrop-filter: blur(14px);
}

header.nav .nav-inner-height {
  height: 64px;
}

.logo-img {
  height: 24px;
  width: auto;
  object-fit: contain;
  display: block;
}

.header-logo-wrapper {
  gap: 2px !important;
  padding: 4px 0;
}

header.nav .logo-sub-text {
  font-size: 9px;
  letter-spacing: .18em;
  line-height: 1;
  margin-left: 2px;
  margin-top: 5px;
}

header.nav .nav-cta-custom {
  background-color: var(--ink);
  font-size: 13.5px;
}

header.nav nav a {
  transition: color 0.2s ease !important;
}

header.nav nav a:hover {
  color: var(--blue-bright) !important;
}

#burger {
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  gap: 5px !important;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  padding: 0;
  z-index: 1070;
}

#burger span {
  width: 24px;
  height: 2px;
  background-color: var(--ink) !important;
  display: block;
  transition: 0.3s;
  margin: 0 0 0 auto;
}

/* モバイルメニュー */
@media (max-width: 991px) {
  #mobileMenu {
    display: block !important;
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    width: 280px !important;
    height: 100vh !important;
    background-color: var(--ink-2) !important;
    z-index: 1060 !important;
    padding: 80px 0 24px 0 !important;
    overflow-y: auto !important;
    
    /* 閉じている時の影のチラ見えを完全に防ぐ */
    box-shadow: none !important;
    visibility: hidden;

    /* 完全に右の画面外へ押し出す */
    transform: translateX(120%);
    
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.3s !important;
  }

  #mobileMenu.show {
    /* 開いた時だけ可視化し、元の位置に戻す */
    visibility: visible;
    transform: translateX(0) !important;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.25) !important;
  }

  #mobileMenu.show ~ div #burger span,
  header.nav:has(#mobileMenu.show) #burger span {
    background-color: #ffffff !important;
  }

  #mobileMenu .d-flex.flex-column a {
    color: #ffffff !important;
    padding: 16px 28px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
    font-size: 15px !important;
    display: block !important;
    transition: color 0.2s ease, background-color 0.2s ease !important;
  }

  #mobileMenu .d-flex.flex-column a:hover {
    color: var(--blue-bright) !important;
    background-color: rgba(255, 255, 255, 0.03) !important;
  }
}

@media (min-width: 992px) {
  #mobileMenu,
  #burger {
    display: none !important;
  }
}

/* ==========================================================================
   4. 各セクション固有スタイル
   ========================================================================== */

/* eyebrowの共通スタイル */
.eyebrow {
  font-family: "Archivo", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  font-size: 12px;
}

.eyebrow .idx {
  color: var(--blue);
}

.eyebrow .rule {
  width: 30px;
  height: 1px;
  background-color: var(--blue);
}

.eyebrow .lbl {
  color: var(--text-soft);
}

/* On Ink（紺背景）用のeyebrowスタイル */
.eyebrow.on-ink .idx {
  color: var(--blue-bright);
}

.eyebrow.on-ink .rule {
  background-color: var(--blue-bright);
}

.eyebrow.on-ink .lbl {
  color: var(--text-onink-soft);
}


/* --- HERO セクション --- */
.hero-section-padding {
  background-color: var(--ink);
  padding-top: 118px !important;
  padding-bottom: 130px !important;
}

@media (max-width: 576px) {
  .hero-section-padding {
    padding-top: 50px !important;
    padding-bottom: 70px !important;
  }
}

.hero-glow-1 {
  width: 760px;
  height: 760px;
  background: radial-gradient(circle, rgba(61,155,255,.18), transparent 62%);
  top: -280px;
  right: -200px;
  pointer-events: none;
}

.hero-glow-2 {
  width: 760px;
  height: 760px;
  background: radial-gradient(circle, rgba(55,195,216,.12), transparent 62%);
  bottom: -340px;
  left: -220px;
  pointer-events: none;
}

.hero-badge-container {
  border-color: rgba(61,155,255,.40) !important;
  background: rgba(61,155,255,.10);
}

.hero-badge-text {
  font-size: 12px;
  letter-spacing: .18em;
  color: #bfe0ff;
}

.hero-title-weight {
  font-weight: 900;
}

.hero-title-em {
  color: var(--blue-bright);
}

.hero-lede-text {
  max-width: 640px;
  color: var(--text-onink);
  font-size: clamp(15px, 2vw, 19px);
}

.hero-btn-primary {
  background-color: #e3b322;
  font-size: 14.5px;
}
.hero-btn-primary:hover {
  background-color: #b78a04 !important;
}

.hero-btn-ghost {
  border-color: rgba(255,255,255,.25);
  font-size: 14.5px;
}

.hero-meta-num {
  font-weight: 900;
}

.hero-meta-unit {
  color: var(--blue-bright);
  margin-left: 2px;
}

.hero-meta-label {
  color: var(--paper);
  letter-spacing: .04em;
}

.hero-meta-label a:hover {
  color: var(--blue-bright) !important;
  
}


/* --- CEO MESSAGE セクション --- */
.ceo-section-padding {
  padding-top: 96px !important;
  padding-bottom: 96px !important;
}

.ceo-portrait-container {
  aspect-ratio: 4/5;
  border-radius: 4px;
  max-height: 520px; 
  margin: 0 auto;
}

@media (max-width: 576px) {
  .ceo-portrait-container {
    max-height: 420px;
  }
}

.ceo-portrait-img {
  object-position: center 22%;
}

.ceo-portrait-scrim {
  background: linear-gradient(to top, rgba(7,13,24,.92) 0%, rgba(7,13,24,.45) 22%, rgba(7,13,24,0) 48%);
}

.ceo-portrait-seal {
  left: 24px;
  bottom: 24px;
  z-index: 2;
}

.ceo-role-text {
  font-size: 11px;
  letter-spacing: .2em;
  color: var(--text-onink-soft);
}

.ceo-name-text {
  font-weight: 900;
}

.ceo-name-sub {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-onink);
  margin-left: 8px;
}

.ceo-title-weight {
  font-weight: 900;
}

.ceo-lead-text {
  font-size: clamp(19px, 2.4vw, 26px);
}

.ceo-body-text {
  font-size: 16px;
  line-height: 1.85;
}

.ceo-body-strong {
  border-color: var(--blue) !important;
}

.ceo-sign-line {
  height: 1px;
  background-color: #e2ddd0;
}

.ceo-sign-who b {
  font-weight: 800;
}


/* --- VISION セクション --- */
.vision-section-padding {
  padding-top: 96px !important;
  padding-bottom: 96px !important;
}

.vision-title-weight {
  font-weight: 900;
}

.vision-lead-text {
  font-size: 15.5px;
}

.vision-card-bg {
  background-color: var(--paper);
}

.vision-card-num {
  color: var(--blue) !important;
  font-weight: 900 !important;
  letter-spacing: .1em;
}

.vision-card-title {
  font-weight: 700;
}

.vision-card-text {
  font-size: 13.5px;
}

.vision-statement-padding {
  background-color: var(--ink);
  padding: clamp(36px, 5vw, 60px) !important;
}

.vision-statement-quote {
  color: var(--blue) !important;
  font-weight: 900;
}

.vision-statement-title {
  font-weight: 900;
  font-size: clamp(22px, 3vw, 32px);
}

.vision-statement-em {
  color: var(--text-yellow);
}

.vision-statement-text {
  color: var(--text-onink);
  font-size: 15.5px;
}


/* --- STRATEGY セクション --- */
.strategy-section-padding {
  padding-top: 96px !important;
  padding-bottom: 96px !important;
}

.strategy-title-weight {
  font-weight: 900;
}

.strategy-lead-text {
  font-size: 15.5px;
}

.flagship-border {
  background-color: var(--ink);
  border-color: #1f3357 !important;
}

.flagship-glow {
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(61,155,255,.22), transparent 62%);
  top: -220px;
  right: -160px;
  pointer-events: none;
}

.flagship-ribbon {
  background-color: var(--text-yellow);
  font-size: 12px;
  letter-spacing: .12em;
}

.flagship-knum {
  color: #fff;
  letter-spacing: .16em;
  font-weight: 800;
}

.flagship-title {
  font-weight: 900;
  font-size: clamp(24px, 3.2vw, 32px);
}

.flagship-em {
  color: var(--text-yellow);
}

.flagship-sub {
  color: var(--blue-bright);
  font-size: 15px;
}

.flagship-text {
  color: var(--text-onink);
  font-size: 14.5px;
  line-height: 1.85;
}

.flagship-point-box {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .1) !important;
}

.flagship-point-title {
  font-size: 14px;
}

.flagship-point-text {
  font-size: 12.5px;
  color: #fff;
  line-height: 1.6;
}

/* --- 新しい事業戦略カード（PILLAR 02 & 03）のデザイン --- */
.custom-tech-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #ffffff;
}
.custom-tech-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1) !important;
}

/* 左上の角丸アイコン枠 */
.custom-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-card-icon {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

/* グラデーションのボーダーライン */
.custom-card-header {
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 1.25rem;
}
.custom-card-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
}
.custom-card-header.border-brand::after {
  background: linear-gradient(to right, var(--blue) 0%, rgba(23, 115, 212, 0) 100%);
}
.custom-card-header.border-accent::after {
  background: linear-gradient(to right, #f59e0b 0%, rgba(245, 158, 11, 0) 100%);
}

/* ブランドカラー（青系）とアクセントカラー（オレンジ系） */
.text-brand-main { color: var(--blue) !important; }
.bg-brand-light { background-color: rgba(23, 115, 212, 0.08) !important; }
.text-accent-main { color: #f59e0b !important; }
.bg-accent-light { background-color: rgba(245, 158, 11, 0.1) !important; }

/* 右下にはみ出す巨大背景アイコン */
.custom-card-bg-icon {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 240px;
  height: 240px;
  stroke-width: 1.5;
  opacity: 0.04; 
  z-index: 0;    
  pointer-events: none; 
}
.custom-card-bg-icon.text-brand-main { color: var(--blue) !important; }
.custom-card-bg-icon.text-accent-main { color: #f59e0b !important; }


/* --- TALENT セクション --- */
.talent-section-padding {
  background-color: var(--ink);
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.talent-title-weight {
  font-weight: 900;
}

.talent-lead-text {
  color: var(--text-onink-soft);
  font-size: 15.5px;
}

.philosophy-box {
  max-width: 840px;
  background: #15376d !important;
  border-color: rgba(255, 255, 255, .1) !important;
}

.philosophy-tag {
  color: var(--blue-bright);
  letter-spacing: .18em;
}

.philosophy-title {
  font-weight: 900;
  letter-spacing: -.01em;
}

.philosophy-sub {
  font-size: clamp(16px, 2vw, 20px);
}

.philosophy-text {
  color: var(--text-onink);
  max-width: 640px;
  font-size: 14.5px;
  line-height: 1.85;
}

.philosophy-strong {
  border-color: var(--blue) !important;
}

/* 新しい人材フェーズカードのデザイン */
.phase-card {
  border-top-style: solid;
  border-top-width: 8px !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
}

.phase-card:hover {
  transform: translateY(-4px);
}

.phase-desc {
  font-size: 13.5px;
  color: #475569;
  line-height: 1.85;
}

/* Phase 1: 鍛錬期 */
.phase-1 { border-top-color: #0284c7 !important; }
.phase-1 .phase-inner { background-color: #f0f8ff; }
.phase-1 .badge-custom {
  background-color: #0284c7;
  color: #ffffff;
  font-size: 11px;
  letter-spacing: .08em;
}
.phase-1 .alert-custom {
  background-color: #fef2f2;
  color: #dc2626;
  border: 1px solid #fee2e2;
}

/* Phase 2: 覚醒期 */
.phase-2 { border-top-color: #f59e0b !important; }
.phase-2 .phase-inner { background-color: #fff7ed; }
.phase-2 .badge-custom {
  background-color: #f59e0b;
  color: #ffffff;
  font-size: 11px;
  letter-spacing: .08em;
}
.phase-2 .alert-custom {
  background-color: #f0fdf4;
  color: #16a34a;
  border: 1px solid #dcfce7;
}

/* Phase 3: 完成期 */
.phase-3 {
  border-top-color: #475569 !important;
  background-color: #0f172a !important;
}
.phase-3 .phase-inner { background-color: #0f172a; }
.phase-3 .badge-custom {
  background-color: #475569;
  color: #ffffff;
  font-size: 11px;
  letter-spacing: .08em;
}
.phase-3 .alert-custom {
  background-color: rgba(30, 58, 138, 0.3);
  color: #93c5fd;
  border: 1px solid rgba(30, 58, 138, 0.5);
}
.phase-3 .phase-desc { color: #ffffff; }
.phase-3 .text-muted { color: #94a3b8 !important; }


/* --- KPI セクション用スタイル --- */

.kdom-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* カード左側の青いアクセントライン */
.kdom-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
}

.kdom-ix {
  color: var(--blue);
  letter-spacing: .14em;
}

/* 注釈テキストボックス */
.kpi-note {
  background-color: rgba(23, 115, 212, 0.05); /* 薄いブルー背景 */
  border: 1px solid rgba(23, 115, 212, 0.2);
  line-height: 1.6;
}


/* --- GOVERNANCE セクション --- */
.gov-section-padding {
  background-color: var(--paper-2); 
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

.gov-title-weight {
  font-weight: 900;
  color: var(--ink); 
}

.gov-lead-text {
  color: var(--text-soft);
  font-size: 15.5px;
}

.org-box {
  background: var(--ink); 
  border-color: rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 12px 32px -12px rgba(10,20,36,.2);
}

.org-title {
  font-weight: 900;
  color: #ffffff;
}

.org-text {
  color: var(--paper);
  font-size: 14px;
}

.flow-node-title {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}

.flow-node-sub {
  font-size: 12.5px;
  color: var(--paper);
}

.panel-box {
  background: var(--paper);
  border: 1px solid var(--line-soft) !important;
  box-shadow: 0 4px 18px -4px rgba(10,20,36,.08);
}

.panel-ptag {
  color: var(--blue);
  letter-spacing: .2em;
  font-weight: 700;
}

.panel-title {
  font-weight: 800;
  color: var(--ink);
}

.panel-list {
  font-size: 13px;
  color: var(--text-soft);
}

.panel-list-dot {
  width: 6px;
  height: 6px;
  background: var(--blue);
}

.panel-text-small {
  font-size: 13px;
  color: var(--text-soft);
}

.panel-stars {
  color: var(--blue) !important;
  letter-spacing: 2px;
  font-size: 18px;
}

.panel-security-bold {
  font-size: 14px;
  color: var(--ink);
}


/* --- FOOTER セクション --- */
.footer-bg {
  background-color: #f1f1f1 !important; 
  color: #5a6573 !important;            
  border-top: 4px solid #0066cc !important; 
  padding-top: 50px !important;
  padding-bottom: 30px !important;
}

.footer-bg .logo-img {
  height: 24px;
  filter: none !important; 
}

.footer-desc {
  font-size: 13px;
  line-height: 1.7;
  color: #5a6573 !important;
}

.footer-headline {
  color: #004494 !important; 
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .05em;
  margin-bottom: 12px;
}

.footer-link {
  color: #5a6573 !important;
  font-size: 13.5px;
  transition: color 0.2s ease;
}
.footer-link:hover {
  color: #0066cc !important;
  text-decoration: underline !important;
}

.footer-contact-text {
  font-size: 13px;
  line-height: 1.7;
  color: #24303f !important;
}

.footer-btn {
  background-color: #0088cc !important; 
  color: #ffffff !important;
  font-size: 13.5px;
  font-weight: 700;
  border: none !important;
  border-radius: 4px !important; 
  padding: 8px 20px !important;
  box-shadow: 0 2px 4px rgba(0, 136, 204, 0.15);
  transition: background-color 0.2s ease;
}
.footer-btn:hover {
  background-color: #006699 !important;
}

.footer-bottom-text {
  font-size: 12px;
  color: #94a3b8 !important;
  border-top: 1px solid #e2e8f0 !important;
  margin-top: 30px;
  padding-top: 15px;
}

/* ==========================================================================
   5. コンポーネントおよびレイアウト補正
   ========================================================================== */
.kpi-card {
  display: grid;
  grid-template-columns: 46px 1.1fr 1.6fr;
  gap: 26px;
  align-items: center;
}

@media (max-width: 760px) {
  .kpi-card {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

.step {
  flex: 1;
  min-width: 96px;
  text-align: center;
  position: relative;
  padding: 0 6px;
}

.step:not(:last-child):after {
  content: "";
  position: absolute;
  right: -1px;
  top: 26px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright));
  opacity: .35;
  z-index: 0;
}

.step .val {
  position: relative;
  z-index: 1;
  display: inline-grid;
  place-items: center;
  min-width: 54px;
  height: 54px;
  padding: 0 12px;
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
  font-size: 20px;
}

.step.peak .val {
  background: var(--blue);
  color: #fff;
}

/* 体制図のフローライン */
.flow .node {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 14px 0;
  position: relative;
}

.flow .node:not(:last-child):after {
  content: "";
  position: absolute;
  left: 17px;
  top: 46px;
  bottom: -14px;
  width: 2px;
  background: rgba(255, 255, 255, .14);
}

.flow .badge-n {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-weight: 900;
  z-index: 1;
}

.flow .badge-n.alt {
  background: rgba(255, 255, 255, .1);
  color: #fff;
}

/* ==========================================================================
   6. アニメーション（スクロール連動用）
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.show {
  opacity: 1;
  transform: none;
}

/* ==========================================================================
   ★ステータスタグのスタイル（幅を110pxに統一）
   ========================================================================== */
.status-tag {
    display: inline-block;
    width: 110px;        
    padding: 0.4em 0;    
    font-size: 11.5px; 
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 50rem; 
    border: 1px solid transparent;
}

/* 導入・運用済み (緑) */
.status-done {
    color: #166534;
    background-color: #eaf8f1;
    border-color: #a7f3d0;
}

/* テスト運用中 (黄) */
.status-testing {
    color: #854d0e;
    background-color: #fefce8;
    border-color: #fef08a;
}

/* 計画 (灰) */
.status-planned {
    color: #475569;
    background-color: #f1f5f9;
    border-color: #e2e8f0;
}
/* ==========================================================================
    BPOリストのラベル幅統一
   ========================================================================== */
.bpo-list-label {
    width: 72px;         
    flex-shrink: 0;      
}

  
  .doc-title-en{
    font-family:"Archivo";
    font-weight:900;
    font-size:clamp(21px,3.2vw,33px);
    letter-spacing:.01em;
    color:#fff;
    line-height:1.12
  }

  .doc-title-ja{
    font-size: 15px;
    letter-spacing: .06em;
    margin-top:9px
  }

.sa-link:hover {
    color: var(--blue-bright) !important;
    text-decoration: none !important;
  }