/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Primary: midnight navy */
  --primary:     #1A2B4B;
  --primary-dk:  #0F1A30;
  --primary-lt:  #EEF2F7;
  --primary-bd:  #C5D3E8;

  /* Accent: coral orange — CTA only */
  --accent:      #ea580c;
  --accent-lt:   #FFF7ED;

  /* Gradient (logo only) */
  --grad-main: linear-gradient(135deg, #1A2B4B 0%, #3E54AC 100%);

  /* Neutrals */
  --blue:        #1A2B4B;
  --blue-soft:   #EEF2F7;
  --coral:       #ea580c;
  --coral-soft:  #FFF7ED;

  --text:        #0D1117;
  --text-sec:    #4b5563;
  --text-muted:  #9ca3af;
  --bg:          #F8FAFC;
  --surface:     #ffffff;
  --border:      #EAEDF0;
  --border-light:#F3F5F7;

  --radius:    12px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.02);
  --shadow-md: 0 10px 25px -5px rgba(0,0,0,0.06), 0 8px 10px -6px rgba(0,0,0,0.04);
  --shadow-lg: 0 20px 40px -10px rgba(0,0,0,0.08), 0 10px 20px -6px rgba(0,0,0,0.04);
  --shadow-xl: 0 32px 64px -16px rgba(0,0,0,0.10), 0 16px 32px -8px rgba(0,0,0,0.06);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', 'Inter', sans-serif;
  background: var(--bg); color: var(--text);
  line-height: 1.8; letter-spacing: -0.025em;
  -webkit-font-smoothing: antialiased;
}
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ===== Gradient Text Utility ===== */
.grad-text {
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== HEADER ===== */
.header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header::after {
  content: '';
  display: block;
  height: 1px;
  background: var(--border);
}
.header-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  height: 56px; display: flex; align-items: center; gap: 24px;
}
.site-logo {
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; font-weight: 900;
  color: var(--text); letter-spacing: -0.5px; flex-shrink: 0;
  white-space: nowrap;
}
.site-logo-icon { font-size: 18px; }
.logo-sub {
  background: var(--grad-main);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; font-weight: 900;
}
.logo-name-main {
  font-weight: 900; font-family: 'Inter', sans-serif;
  font-size: 18px; letter-spacing: -0.5px;
  background: linear-gradient(135deg, #ea580c, #f59e0b);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-name-sub {
  font-weight: 700; color: var(--text-muted);
  font-size: 11px; letter-spacing: 0;
  margin-left: 2px;
}
.header-nav { display: flex; gap: 4px; flex: 1; align-items: center; justify-content: center; }
.header-nav > a, .hdr-nav-dd-trigger { white-space: nowrap; }
.header-nav > a {
  padding: 7px 11px; font-size: 13px; font-weight: 500;
  color: var(--text-sec); text-decoration: none;
  border-radius: var(--radius-sm); transition: all 0.15s;
  white-space: nowrap;
}
.header-nav > a:hover { color: var(--blue); background: var(--blue-soft); }

/* ===== Header dropdown ===== */
.hdr-nav-dd { position: relative; display: inline-block; }
.hdr-nav-dd-trigger {
  background: none; border: none;
  padding: 7px 9px 7px 11px; font-size: 13px; font-weight: 500;
  color: var(--text-sec);
  border-radius: var(--radius-sm); transition: all 0.15s;
  cursor: pointer; font-family: inherit;
  display: inline-flex; align-items: center; gap: 4px;
  white-space: nowrap;
}
.hdr-nav-dd-trigger:hover { color: var(--blue); background: var(--blue-soft); }
.hdr-dd-caret { font-size: 9px; transition: transform 0.2s; }
.hdr-nav-dd:hover .hdr-nav-dd-trigger { color: var(--blue); background: var(--blue-soft); }
.hdr-nav-dd:hover .hdr-dd-caret { transform: rotate(180deg); }
.hdr-nav-dd-menu {
  display: none; position: absolute; top: 100%; left: 0;
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  box-shadow: var(--shadow-lg);
  min-width: 260px; padding: 10px 6px;
  z-index: 300; margin-top: 8px;
}
/* Invisible bridge between trigger and menu to prevent hover-out */
.hdr-nav-dd-menu::before {
  content: ''; position: absolute;
  top: -10px; left: 0; right: 0; height: 10px;
}
.hdr-nav-dd:hover .hdr-nav-dd-menu,
.hdr-nav-dd:focus-within .hdr-nav-dd-menu { display: block; }
.hdr-dd-section + .hdr-dd-section {
  margin-top: 6px; padding-top: 8px;
  border-top: 1px solid var(--border-light);
}
.hdr-dd-label {
  font-size: 10px; font-weight: 800;
  color: var(--accent); letter-spacing: 1.2px;
  padding: 4px 12px 6px;
}
.hdr-nav-dd-menu a {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 12px; font-size: 13px; color: var(--text);
  border-radius: 6px; text-decoration: none;
  transition: all 0.15s;
}
.hdr-nav-dd-menu a:hover { background: var(--primary-lt); color: var(--primary); }
.hdr-dd-icon {
  width: 22px; text-align: center; font-size: 14px;
}
.hdr-nav-event { color: var(--accent) !important; font-weight: 700 !important; }
.hdr-nav-event:hover { color: var(--accent) !important; background: var(--coral-soft) !important; }
.hdr-nav-cs { cursor: default; opacity: 0.7; }
.hdr-nav-cs:hover { color: var(--text-sec) !important; background: transparent !important; cursor: default; }
.nav-soon-badge {
  display: inline-block; font-size: 9px; font-weight: 800; letter-spacing: 0.04em;
  padding: 2px 5px; border-radius: 4px; line-height: 1.5;
  background: linear-gradient(135deg, #f84f65, #c44dff);
  color: white; margin-left: 4px; vertical-align: middle;
}
.header-actions { display: flex; gap: 8px; flex-shrink: 0; }

.hdr-btn {
  padding: 7px 18px; border-radius: 100px; font-size: 13px;
  font-weight: 600; cursor: pointer; transition: all 0.15s;
  text-decoration: none; font-family: inherit; border: none;
  display: inline-block;
}
.hdr-btn-ghost {
  border: 1.5px solid var(--border); color: var(--text-sec); background: transparent;
}
.hdr-btn-ghost:hover { border-color: var(--blue); color: var(--blue); }
.hdr-btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 2px 8px rgba(234,88,12,0.2);
}
.hdr-btn-primary:hover { background: #c84e0a; transform: translateY(-1px); }

/* ===== HERO — white background, gradient accent ===== */
.hero-search {
  background: var(--surface);
  padding: 56px 0 52px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.hero-search::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(248,79,101,0.06) 0%, rgba(196,77,255,0.04) 45%, rgba(0,124,255,0.06) 100%);
  pointer-events: none;
}
.hero-search-inner { max-width: 680px; position: relative; z-index: 1; }
.hero-kw { margin-bottom: 28px; }
.hero-kw-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 14px; border-radius: 100px; font-size: 12px; font-weight: 600;
  border: 1.5px solid rgba(248,79,101,0.2);
  color: var(--coral); background: var(--coral-soft); margin-bottom: 16px;
}
.hero-kw h1 {
  font-size: clamp(26px, 3.8vw, 42px); font-weight: 900;
  color: var(--text); letter-spacing: -1.5px; line-height: 1.15; margin-bottom: 14px;
}
.h1-rainbow {
  background: var(--grad-main);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-kw p { font-size: 15px; color: var(--text-sec); line-height: 1.8; }

.search-form { margin-bottom: 14px; }
.search-box {
  display: flex; align-items: center;
  background: #fff; border-radius: 100px; overflow: hidden;
  border: 2px solid var(--border);
  box-shadow: var(--shadow-md);
  transition: border-color 0.2s;
}
.search-box:focus-within { border-color: var(--blue); }
.search-icon { padding: 0 16px; font-size: 16px; color: var(--text-muted); }
.search-box input {
  flex: 1; padding: 13px 4px; font-size: 14px; font-family: inherit;
  border: none; outline: none; color: var(--text); background: transparent;
}
.search-btn {
  margin: 4px 4px 4px 0; padding: 10px 24px;
  background: var(--primary); color: #fff;
  font-size: 13px; font-weight: 700; font-family: inherit;
  border: none; cursor: pointer; border-radius: 100px; transition: opacity 0.15s;
}
.search-btn:hover { opacity: 0.85; }

.search-tags { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.search-tag-label { font-size: 12px; color: var(--text-muted); flex-shrink: 0; }
.stag {
  padding: 4px 12px; background: var(--bg);
  border: 1.5px solid var(--border); border-radius: 100px;
  font-size: 12px; color: var(--text-sec); cursor: pointer;
  font-family: inherit; transition: all 0.15s;
}
.stag:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-soft); }

.hero-counts {
  display: flex; align-items: center; gap: 12px;
  font-size: 13px; color: var(--text-muted); margin-top: 18px;
}
.hero-counts strong { color: var(--text); font-size: 15px; font-weight: 800; }
.hc-divider { color: var(--border); }

/* ===== Section Common ===== */
section { padding: 96px 0; }
.sec-header-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 42px; gap: 16px;
}
.sec-title {
  font-size: 21px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 4px;
}
.sec-title-underline {
  width: 24px; height: 2px; border-radius: 2px;
  background: var(--border); margin-top: 8px;
}
.sec-sub { font-size: 13px; color: var(--text-muted); margin-top: 2px; }
.sec-more {
  font-size: 13px; font-weight: 600; color: var(--blue);
  text-decoration: none; white-space: nowrap; flex-shrink: 0;
}
.sec-more:hover { text-decoration: underline; }

/* ===== FEATURED COMPANIES ===== */
.featured { background: var(--surface); border-bottom: 1px solid var(--border); }
.featured-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.fc-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px; display: flex; flex-direction: column; gap: 12px;
  transition: box-shadow 0.22s, transform 0.18s;
  box-shadow: var(--shadow-sm);
}
.fc-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: #D8DCE4; }

.fc-header { display: flex; align-items: flex-start; gap: 10px; }
.fc-logo {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800; color: #fff; flex-shrink: 0;
}
.fc-logo-blue   { background: #1e40af; }
.fc-logo-teal   { background: #0d9488; }
.fc-logo-purple { background: #6d28d9; }
.fc-logo-orange { background: linear-gradient(135deg, #f84f65, #ff7b54); }

.fc-info { flex: 1; min-width: 0; }
.fc-name { font-size: 13px; font-weight: 700; line-height: 1.4; }
.fc-meta { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

.fc-badge { padding: 3px 9px; border-radius: 100px; font-size: 10px; font-weight: 700; }
.fc-badge        { background: #FFF7ED; color: #92400E; }
.fc-badge-new    { background: #F0FDF4; color: #166534; }
.fc-badge-ai     { background: var(--blue-soft); color: var(--blue); }

.fc-desc { font-size: 12px; color: var(--text-sec); line-height: 1.75; flex: 1; }
.fc-tags { display: flex; gap: 4px; flex-wrap: wrap; }
.ftag { padding: 3px 8px; background: var(--bg); border: 1px solid var(--border); border-radius: 4px; font-size: 11px; color: var(--text-sec); }
.fc-footer { display: flex; align-items: center; justify-content: space-between; }
.fc-jobs { font-size: 12px; color: var(--text-sec); }
.fc-jobs strong { color: var(--coral); font-weight: 700; }
.fc-link { font-size: 12px; font-weight: 600; color: var(--blue); text-decoration: none; }
.fc-link:hover { text-decoration: underline; }

/* ===== JOBS ===== */
.jobs-section { background: var(--bg); }
.jobs-filter-row { display: flex; gap: 6px; flex-wrap: wrap; }
.jf-btn {
  padding: 6px 14px; border: 1.5px solid var(--border); border-radius: 100px;
  background: #fff; font-size: 12px; font-weight: 500; color: var(--text-sec);
  cursor: pointer; font-family: inherit; transition: all 0.15s;
}
.jf-btn:hover { border-color: var(--blue); color: var(--blue); }
.jf-btn.active {
  background: var(--primary); border-color: transparent; color: #fff;
  box-shadow: 0 2px 8px rgba(26,43,75,0.25);
}

.jobs-list { display: flex; flex-direction: column; gap: 10px; }
.job-item {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px 28px; display: flex; gap: 18px; align-items: flex-start;
  transition: box-shadow 0.22s, transform 0.18s; cursor: pointer;
  text-decoration: none; color: inherit;
  box-shadow: var(--shadow-sm);
}
.job-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: #D8DCE4;
}

.job-item-logo {
  width: 52px; height: 52px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800; flex-shrink: 0;
}
.job-item-body { flex: 1; min-width: 0; }
.job-item-top { display: flex; align-items: center; gap: 8px; margin-bottom: 4px; flex-wrap: wrap; }
.job-item-title { font-size: 15px; font-weight: 700; }
.job-item-tags { display: flex; gap: 4px; flex-wrap: wrap; }
.jt { padding: 2px 8px; border-radius: 4px; font-size: 10.5px; font-weight: 600; letter-spacing: 0; }
.jt-blue   { background: #F0F4FA; color: #3E54AC; }
.jt-green  { background: #F0FDF4; color: #166534; }
.jt-purple { background: #F5F3FF; color: #5B21B6; }
.jt-orange { background: #FFF7ED; color: #9A3412; }
.jt-teal   { background: #F0FDFA; color: #0D9488; }
.jt-new    { background: #ECFDF5; color: #065F46; }
.jt-hot    { background: #FFF1EE; color: #9A3412; }

.job-item-company { font-size: 12px; color: #666; font-weight: 400; margin-bottom: 6px; }
.job-item-desc {
  font-size: 13px; color: var(--text-sec); line-height: 1.7;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.job-item-meta { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
.jim { font-size: 12px; color: var(--text-muted); }
.job-item-skills { display: flex; gap: 4px; flex-wrap: wrap; margin-top: 8px; }
.jsk { padding: 3px 9px; background: #F5F7F9; border-radius: 4px; font-size: 10.5px; color: #888; font-weight: 500; }
.job-item-right { flex-shrink: 0; text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.job-salary { font-size: 15px; font-weight: 800; color: var(--accent); font-family: 'Inter', sans-serif; letter-spacing: -0.5px; }
.job-apply-btn {
  padding: 8px 18px; background: var(--blue-soft); color: var(--blue);
  border: 1.5px solid rgba(0,124,255,0.15); border-radius: 100px;
  font-size: 12px; font-weight: 600; cursor: pointer; font-family: inherit; transition: all 0.15s;
}
.job-apply-btn:hover { background: var(--blue); color: #fff; border-color: transparent; }
.job-item-date { font-size: 11px; color: var(--text-muted); }

.jobs-empty { text-align: center; padding: 48px; color: var(--text-muted); font-size: 14px; }
.jobs-more-wrap { margin-top: 24px; text-align: center; }
.jobs-more-btn {
  padding: 11px 44px; border: 1.5px solid var(--border); border-radius: 100px;
  background: #fff; font-size: 13px; font-weight: 600; color: var(--text-sec);
  cursor: pointer; font-family: inherit; transition: all 0.15s;
}
.jobs-more-btn:hover { border-color: var(--blue); color: var(--blue); }

/* ===== MEDIA ===== */
.media-section { background: var(--surface); border-top: 1px solid var(--border); }
.media-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 20px; }
.media-card {
  text-decoration: none; color: inherit; display: flex; flex-direction: column;
  border-radius: var(--radius); overflow: hidden; border: 1.5px solid var(--border);
  transition: all 0.2s; background: #fff;
}
.media-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: #d1d5db; }
.media-card-img { height: 200px; }
.media-card-img-bg { width: 100%; height: 100%; display: flex; align-items: flex-end; padding: 24px; }
/* Pastel gradients for media cards — light, fading to white */
.bg-gradient-1 { background: linear-gradient(135deg, #fce7ea 0%, #ede9fe 55%, #dbeafe 100%); }
.bg-gradient-2 { background: linear-gradient(135deg, #fce7ea 0%, #f3d8ff 100%); }
.bg-gradient-3 { background: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 100%); }
.bg-gradient-4 { background: linear-gradient(135deg, #ccfbf1 0%, #dbeafe 100%); }
.media-img-text { }
.media-img-tag {
  display: inline-block; padding: 3px 10px;
  background: rgba(0,0,0,0.07); border: 1px solid rgba(0,0,0,0.10);
  border-radius: 4px; font-size: 11px; font-weight: 700;
  color: var(--text-sec); margin-bottom: 8px;
}
.media-img-title { font-size: 19px; font-weight: 800; color: var(--text); line-height: 1.4; letter-spacing: -0.5px; }
.media-card-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.media-meta { display: flex; align-items: center; gap: 8px; }
.media-cat { padding: 2px 8px; border-radius: 3px; font-size: 10px; font-weight: 700; }
.cat-insight { background: var(--blue-soft); color: var(--blue); }
.cat-case    { background: #F0FDF4; color: #166534; }
.cat-skill   { background: var(--coral-soft); color: var(--coral); }
.media-date { font-size: 11px; color: var(--text-muted); }
.media-card-body h3 { font-size: 15px; font-weight: 700; line-height: 1.4; }
.media-card-body p { font-size: 13px; color: var(--text-sec); line-height: 1.7; flex: 1; }
.media-author { display: flex; align-items: center; gap: 8px; padding-top: 10px; border-top: 1px solid var(--border-light); }
.author-av { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; color: #fff; }
.av-yamane { background: var(--primary); }
.media-author span { font-size: 12px; color: var(--text-sec); }
.media-sub-col { display: flex; flex-direction: column; gap: 14px; }
.media-card-sm { display: flex; flex-direction: row; }
.media-sm-img { width: 88px; flex-shrink: 0; display: flex; align-items: flex-start; padding: 10px; }
.media-sm-tag { padding: 2px 6px; background: rgba(0,0,0,0.07); border-radius: 3px; font-size: 10px; font-weight: 700; color: var(--text-sec); }
.media-sm-body { padding: 14px; display: flex; flex-direction: column; gap: 6px; }
.media-sm-body h4 { font-size: 13px; font-weight: 700; line-height: 1.4; }
.media-sm-body p { font-size: 12px; color: var(--text-sec); line-height: 1.6; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ===== ROLE MAP ===== */
.rolemap-section { background: var(--bg); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* Rolemap Banner */
.rolemap-banner {
  background: linear-gradient(135deg, #1e3a8a 0%, #0d9488 100%);
  padding: 20px 0; margin-bottom: 32px;
}
.rmb-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.rmb-left { display: flex; align-items: center; gap: 14px; color: #fff; }
.rmb-icon { width: 32px; height: 32px; flex-shrink: 0; opacity: 0.9; }
.rmb-title { font-size: 20px; font-weight: 900; color: #fff; letter-spacing: -0.5px; }
.rmb-sub { font-size: 12px; color: rgba(255,255,255,0.75); margin-top: 2px; }
.rmb-date { font-size: 13px; color: rgba(255,255,255,0.8); font-weight: 600; white-space: nowrap; }

/* Rolemap Map Header */
.rolemap-map-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 16px; }
.rmh-title { font-size: 18px; font-weight: 900; letter-spacing: -0.4px; margin-bottom: 4px; }
.rmh-sub { font-size: 13px; color: var(--text-muted); }
.rmh-legend { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

/* Rolemap Direction Row */
.rolemap-direction-row { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.rdr-label { font-size: 14px; font-weight: 700; color: var(--primary); }
.rdr-phase-legend { display: flex; gap: 10px; }
.rpl-item { font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 4px; }
.rpl-upstream   { background: #dbeafe; color: #1e40af; }
.rpl-midstream  { background: #ccfbf1; color: #0d4f45; }
.rpl-downstream { background: #dcfce7; color: #14532d; }

.rolemap-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 8px; gap: 16px; flex-wrap: wrap; }
.rolemap-header-left .rolemap-tag {
  display: inline-block; padding: 3px 12px;
  background: var(--primary-lt); color: var(--primary);
  border-radius: 4px; font-size: 11px; font-weight: 700; letter-spacing: 0.3px; margin-bottom: 8px;
}
.rolemap-header-left h2 { font-size: 22px; font-weight: 900; letter-spacing: -0.5px; margin-bottom: 4px; }
.rolemap-header-left p { font-size: 13px; color: var(--text-sec); }
.rolemap-legend { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.rl-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--text-sec); }
.rl-dot { width: 10px; height: 10px; border-radius: 50%; }
.rl-blue   { background: #4f8cff; }
.rl-teal   { background: #0d9488; }
.rl-green  { background: #16a34a; }
.rl-orange { background: #f84f65; }
.rolemap-date { font-size: 12px; color: var(--text-muted); margin-bottom: 20px; text-align: right; }

.rolemap-table-wrap { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius); overflow: auto; margin-bottom: 24px; }
.rolemap-phase-header { display: flex; background: #f9fafb; border-bottom: 2px solid var(--border); }
.rph-role { width: 180px; min-width: 180px; padding: 8px 14px; font-size: 11px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; border-right: 1px solid var(--border); display: flex; align-items: center; }
.rph-phases { display: flex; }
.rph-group { display: flex; flex-direction: column; border-right: 1.5px solid var(--border); }
.rph-group:last-child { border-right: none; }
.rph-label { text-align: center; font-size: 11px; font-weight: 700; padding: 4px 8px; border-bottom: 1px solid var(--border); }
.rph-upstream   .rph-label { color: var(--coral); background: var(--coral-soft); }
.rph-midstream  .rph-label { color: var(--blue);  background: var(--blue-soft); }
.rph-downstream .rph-label { color: #166534; background: #F0FDF4; }
.rph-cols { display: flex; }
.rph-cols div { width: 80px; min-width: 80px; padding: 6px 4px; font-size: 11px; color: var(--text-muted); text-align: center; line-height: 1.3; border-right: 1px solid var(--border-light); }
.rph-cols div:last-child { border-right: none; }

.rm-row { display: flex; border-bottom: 1px solid var(--border-light); align-items: stretch; }
.rm-row:last-child { border-bottom: none; }
.rm-row-highlight { background: #fafafa; }
.rm-row-orange { background: #fff9f5; }
.rm-role { width: 180px; min-width: 180px; padding: 12px 14px; font-size: 12px; font-weight: 600; color: var(--text); border-right: 1px solid var(--border); display: flex; align-items: center; gap: 8px; line-height: 1.4; }
.rm-role-link { display: flex; align-items: center; gap: 8px; color: var(--text); text-decoration: none; width: 100%; transition: color 0.15s; }
.rm-role-link:hover { color: #6c3ce1; text-decoration: underline; }
.rm-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.rm-dot-navy   { background: #334155; }
.rm-dot-indigo { background: #1e3a8a; }
.rm-dot-blue   { background: #2563eb; }
.rm-dot-teal   { background: #0d9488; }
.rm-dot-teal2  { background: var(--blue); }
.rm-dot-green  { background: #16a34a; }
.rm-dot-purple { background: #7c3aed; }
.rm-dot-orange { background: var(--coral); }
.rm-sub { font-size: 11px; color: var(--text-muted); font-weight: 400; display: block; }
.rm-cells { display: flex; align-items: center; }
.rm-cell { width: 80px; min-width: 80px; height: 100%; min-height: 52px; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 600; text-align: center; line-height: 1.3; padding: 8px 4px; border-right: 1px solid var(--border-light); }
.rm-cell:last-child { border-right: none; }
.rm-empty { }
.rm-fill { color: #fff; }
.rm-start { border-radius: 6px 0 0 6px; }
.rm-end   { border-radius: 0 6px 6px 0; }
/* Pastel role map colors — light backgrounds with dark text */
.rm-navy   { background: #e2e8f0; }
.rm-fill.rm-navy   { color: #334155; }
.rm-indigo { background: #c7d2fe; }
.rm-fill.rm-indigo { color: #1e3a8a; font-weight: 700; }
.rm-blue   { background: #bfdbfe; }
.rm-fill.rm-blue   { color: #1d4ed8; font-weight: 700; }
.rm-teal   { background: #ccfbf1; }
.rm-fill.rm-teal   { color: #0d4f45; }
.rm-teal2  { background: #dbeafe; }
.rm-fill.rm-teal2  { color: #1e40af; }
.rm-green  { background: #dcfce7; }
.rm-fill.rm-green  { color: #14532d; }
.rm-purple { background: #ede9fe; }
.rm-fill.rm-purple { color: #4c1d95; }
/* フルサイクルPM — very soft rainbow gradient */
.rm-orange { background: linear-gradient(135deg, rgba(248,79,101,0.13) 0%, rgba(196,77,255,0.10) 50%, rgba(0,124,255,0.13) 100%); }
.rm-fill.rm-orange { color: var(--text); }

.rolemap-takeaways { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.kt-header { padding: 14px 20px; background: #f9fafb; border-bottom: 1px solid var(--border); font-size: 15px; font-weight: 700; }
.kt-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.kt-card { padding: 20px; border-right: 1px solid var(--border); }
.kt-card:last-child { border-right: none; }
.kt-card-highlight { background: #fff9f5; }
.kt-num { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 6px; font-size: 12px; font-weight: 800; margin-bottom: 8px; color: #fff; }
.kt-num-1 { background: var(--coral); }
.kt-num-2 { background: #c44dff; }
.kt-num-3 { background: var(--blue); }
.kt-num-4 { background: #0d9488; }
.kt-card h4 { font-size: 13px; font-weight: 700; margin-bottom: 6px; }
.kt-card p  { font-size: 12px; color: var(--text-sec); line-height: 1.6; }

/* ===== WHY ===== */
.why-section { background: var(--surface); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 32px; }
.why-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 32px 28px; box-shadow: var(--shadow-sm); }
.why-num { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 10px; }
.why-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 10px; }
.why-card p  { font-size: 13px; color: var(--text-sec); line-height: 1.7; margin-bottom: 16px; }
.why-stat { font-size: 36px; font-weight: 900; letter-spacing: -1.5px; }
.why-red    .why-stat { color: var(--accent); }
.why-amber  .why-stat { color: #c2410c; }
.why-purple .why-stat { color: var(--primary); }
.why-stat span { display: block; font-size: 11px; font-weight: 500; color: var(--text-muted); letter-spacing: 0; margin-top: 2px; }

.why-quote {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 40px;
  box-shadow: var(--shadow-sm);
}
.wq-mark { font-size: 52px; font-family: Georgia,serif; line-height: 0.6; margin-bottom: 10px; display: block; color: var(--border); }
.why-quote p { font-size: clamp(15px, 1.8vw, 17px); color: var(--text); line-height: 1.9; margin-bottom: 16px; }
.why-quote p strong { color: var(--primary); }
.why-quote cite { font-size: 12px; color: var(--text-muted); font-style: normal; display: block; }

/* ===== REGISTER (dark glassmorphism) ===== */
.register-section {
  background: #0A0F1E; border-top: none;
  position: relative; overflow: hidden;
}
.register-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 60% at 85% 40%, rgba(62,84,172,0.22) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(234,88,12,0.1) 0%, transparent 55%);
  pointer-events: none;
}
.register-inner {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: start;
  position: relative;
}
.register-left h2 {
  font-size: clamp(22px, 3vw, 30px); font-weight: 900;
  letter-spacing: -0.04em; margin-bottom: 14px;
  color: white; line-height: 1.28;
}
.register-left p { font-size: 14px; color: rgba(255,255,255,0.48); margin-bottom: 28px; line-height: 1.85; }
.reg-benefits { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.reg-benefits li { font-size: 14px; font-weight: 400; display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.72); }
.reg-benefits li::before { content: '✓'; color: #34d399; font-weight: 700; font-size: 13px; flex-shrink: 0; }
.reg-company-note { font-size: 13px; color: rgba(255,255,255,0.28); }
.reg-company-note a { color: rgba(255,255,255,0.55); text-decoration: none; font-weight: 600; }
.reg-company-note a:hover { color: white; }

/* Register card */
.reg-card {
  background: white;
  border: 1px solid #EAEDF0;
  border-radius: 20px; padding: 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}
.register-form {
  background: transparent; border: none; border-radius: 0; padding: 0;
  display: flex; flex-direction: column; gap: 0; box-shadow: none;
}
.rf-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.rf-group label {
  font-size: 12px; font-weight: 700; color: #374151;
  letter-spacing: 0;
}
.rf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.rf-group input, .rf-group select {
  padding: 10px 12px;
  border: 1.5px solid #EAEDF0;
  border-radius: 8px;
  background: #f9fafb;
  font-size: 14px; font-family: inherit;
  color: #0D1117;
  -webkit-text-fill-color: #0D1117;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none; appearance: none;
  outline: none;
}
.rf-group input::placeholder {
  color: #9ca3af;
  -webkit-text-fill-color: #9ca3af;
}
.rf-group select option { background: white; color: #0D1117; }
.rf-group input:focus, .rf-group select:focus {
  border-color: #6c3ce1;
  box-shadow: 0 0 0 3px rgba(108,60,225,0.1);
  background: white;
}
.rf-group input:-webkit-autofill,
.rf-group input:-webkit-autofill:focus {
  -webkit-text-fill-color: #0D1117;
  -webkit-box-shadow: 0 0 0 40px #f9fafb inset;
}
.rf-submit-row { display: flex; justify-content: flex-end; margin-top: 8px; }
.rf-submit {
  padding: 12px 28px; background: var(--accent); color: #fff; border: none;
  border-radius: 8px; font-size: 14px; font-weight: 700;
  cursor: pointer; font-family: inherit; transition: background 0.15s, transform 0.12s;
  box-shadow: 0 4px 20px rgba(234,88,12,0.3);
  width: auto; display: inline-flex; align-items: center; gap: 6px;
}
.rf-submit:hover { background: #c84e0a; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(234,88,12,0.4); }
.rf-note { font-size: 11px; color: #9ca3af; text-align: right; margin-top: 10px; }

/* ===== FOOTER ===== */
.footer {
  background: #0D1117;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 64px 0 32px;
}
.footer-inner { display: grid; grid-template-columns: 1.2fr 2fr; gap: 64px; margin-bottom: 40px; }
.footer-brand .footer-logo { color: #fff; margin-bottom: 12px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.7; }
.footer-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.fl-col h4 { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.fl-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.fl-col ul a { font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.15s; }
.fl-col ul a:hover { color: rgba(255,255,255,0.85); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: rgba(255,255,255,0.3); text-decoration: none; }
.footer-legal a:hover { color: rgba(255,255,255,0.65); }

/* ===== TOAST ===== */
.toast { position: fixed; bottom: 24px; right: 24px; background: var(--text); color: #fff; padding: 14px 20px; border-radius: 10px; font-size: 14px; font-weight: 500; z-index: 1000; transform: translateY(80px); opacity: 0; transition: all 0.35s cubic-bezier(0.34,1.56,0.64,1); box-shadow: var(--shadow-lg); max-width: 300px; }
.toast.show { transform: translateY(0); opacity: 1; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .featured-grid { grid-template-columns: repeat(2, 1fr); }
  .media-grid { grid-template-columns: 1fr; }
  .media-sub-col { display: grid; grid-template-columns: repeat(3, 1fr); }
  .kt-grid { grid-template-columns: repeat(2, 1fr); }
  .kt-card:nth-child(2) { border-right: none; }
  .kt-card:nth-child(3) { border-top: 1px solid var(--border); }
  .register-inner { grid-template-columns: 1fr; gap: 36px; }
  .why-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .header-nav { display: none; }
  .hdr-btn-ghost { display: none; }
  .featured-grid { grid-template-columns: 1fr; }
  .sec-header-row { flex-direction: column; align-items: flex-start; }
  .jobs-filter-row { overflow-x: auto; padding-bottom: 4px; }
  .job-item { flex-direction: column; }
  .job-item-right { flex-direction: row; align-items: center; width: 100%; justify-content: space-between; }
  .media-sub-col { grid-template-columns: 1fr; }
  .rolemap-table-wrap { font-size: 11px; }
  .kt-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; gap: 12px; }
  .rph-cols div, .rm-cell { width: 68px; min-width: 68px; }
  .rm-role, .rph-role { width: 140px; min-width: 140px; }
  .why-quote { padding: 24px; }
}

/* ===== NEW HERO ===== */
.hero-new {
  position: relative;
  padding: 72px 0 64px;
  overflow: hidden;
}
.hero-new-bg {
  position: absolute; inset: 0;
  background: #1A2B4B;
  z-index: 0;
}
.hero-new-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 100% 50%, rgba(62,84,172,0.35) 0%, transparent 70%);
}
.hero-new .container { position: relative; z-index: 1; }
.hero-new-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  width: 100%;
}
.hero-new-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.hero-logo-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 28px 32px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(12px);
}
.hero-logo-card img {
  max-height: 56px;
  max-width: 180px;
  object-fit: contain;
}
.hero-logo-label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero-pmquest-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.hero-pmquest-logo {
  font-size: 28px;
  font-weight: 900;
  color: white;
  letter-spacing: -1px;
  line-height: 1;
}
.hero-pmquest-logo span {
  color: #a5b4fc;
}
.hero-pmquest-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.05em;
}
.hero-powered-by {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-powered-by::before,
.hero-powered-by::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.15);
  display: inline-block;
  width: 24px;
}

/* Hero right side — platform card (white bg) */
.hero-platform-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 24px 28px;
  width: 100%;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07), 0 1px 4px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.hero-platform-top { display: flex; align-items: center; }
.hero-platform-badge {
  display: inline-flex; align-items: center;
  background: linear-gradient(135deg, #f0edff, #e8f4ff);
  color: #4f46e5;
  border: 1px solid #c7d2fe;
  border-radius: 100px;
  font-size: 11px; font-weight: 800;
  padding: 4px 12px;
  letter-spacing: 0.04em;
}
.hero-platform-stats {
  display: flex;
  align-items: center;
  background: #f8f9fa;
  border-radius: 12px;
  padding: 16px 12px;
}
.hero-pstat { flex: 1; text-align: center; }
.hero-pstat-num {
  font-size: 24px; font-weight: 900;
  color: #111827; line-height: 1; margin-bottom: 4px;
  letter-spacing: -0.5px;
}
.hero-pstat-num small { font-size: 13px; font-weight: 700; color: #6b7280; }
.hero-pstat-label { font-size: 11px; color: #9ca3af; font-weight: 600; }
.hero-pstat-sep { width: 1px; height: 36px; background: #e5e7eb; flex-shrink: 0; }

.hero-job-preview {
  display: flex; flex-direction: column; gap: 10px;
}
.hero-jp-label {
  font-size: 11px; font-weight: 800; color: #f84f65;
  letter-spacing: 0.04em; margin-bottom: 2px;
}
.hero-jp-item {
  background: #fafafa; border: 1px solid #f0f0f0;
  border-radius: 10px; padding: 12px 14px;
}
.hero-jp-co { font-size: 10px; color: #9ca3af; font-weight: 600; margin-bottom: 3px; }
.hero-jp-title { font-size: 13px; font-weight: 700; color: #111827; margin-bottom: 5px; line-height: 1.4; }
.hero-jp-sal {
  display: inline-block;
  font-size: 11px; font-weight: 800; color: #059669;
  background: #ecfdf5; border-radius: 100px;
  padding: 2px 8px;
}

.hero-platform-footer {
  display: flex; align-items: center; gap: 12px;
  padding-top: 4px; border-top: 1px solid #f0f0f0;
}
.hero-pf-label { font-size: 11px; color: #9ca3af; font-weight: 600; white-space: nowrap; }
.hero-platform-footer img,
.hero-pf-logo {
  height: 22px; max-width: 80px;
  object-fit: contain; opacity: 0.6;
  filter: grayscale(1);
}

.hero-new-tag {
  display: inline-flex; align-items: center;
  padding: 5px 13px; border-radius: 100px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.82); font-size: 12px; font-weight: 600;
  margin-bottom: 18px; letter-spacing: 0;
}
.hero-new-h1 {
  font-size: clamp(24px, 3.8vw, 40px);
  font-weight: 900; line-height: 1.28;
  letter-spacing: -0.5px; color: white;
  margin-bottom: 18px;
}
.hero-grad-text {
  color: #a5b4fc;
  -webkit-text-fill-color: #a5b4fc;
}
.hero-new-sub {
  font-size: 14px; line-height: 1.85; color: rgba(255,255,255,0.55);
  margin-bottom: 32px;
}
.hero-new-cta { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 10px; }
.btn-google-reg {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 22px; border-radius: 8px;
  background: white; color: #111827;
  font-size: 14px; font-weight: 700;
  text-decoration: none; border: none; cursor: pointer;
  font-family: inherit; transition: all 0.18s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.btn-google-reg:hover { background: #f1f5f9; box-shadow: 0 4px 14px rgba(0,0,0,0.22); }
.btn-email-reg {
  display: inline-flex; align-items: center;
  padding: 12px 22px; border-radius: 8px;
  background: transparent; color: rgba(255,255,255,0.8);
  font-size: 14px; font-weight: 600;
  text-decoration: none; border: 1px solid rgba(255,255,255,0.18);
  transition: all 0.18s;
}
.btn-email-reg:hover { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.32); }
.hero-new-note { font-size: 11px; color: rgba(255,255,255,0.28); margin-bottom: 28px; }
.hero-new-stats { display: flex; align-items: center; gap: 14px; }
.hns-item { display: flex; flex-direction: column; }
.hns-val { font-size: 22px; font-weight: 900; color: white; letter-spacing: -0.5px; }
.hns-label { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 1px; }
.hns-sep { color: rgba(255,255,255,0.15); font-size: 18px; }

/* Hero Visual Card */
.hero-vis-card {
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 16px; padding: 24px;
  position: relative;
}
.hvc-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.hvc-header-left { display: flex; align-items: center; gap: 8px; }
.hvc-icon { font-size: 16px; }
.hvc-title { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.85); }
.hvc-new {
  padding: 2px 9px; border-radius: 100px;
  background: var(--primary);
  color: white; font-size: 10px; font-weight: 700;
}
.hvc-body { margin-bottom: 20px; }
.hvc-body-label { font-size: 11px; color: rgba(255,255,255,0.35); margin-bottom: 14px; }
.hvc-roles { display: flex; flex-direction: column; gap: 10px; }
.hvc-role { display: flex; align-items: center; gap: 8px; }
.hvc-role-left { display: flex; align-items: center; gap: 6px; width: 165px; flex-shrink: 0; }
.hvc-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.hvc-role-name { font-size: 11.5px; color: rgba(255,255,255,0.65); }
.hvc-bar-wrap { flex: 1; height: 5px; background: rgba(255,255,255,0.07); border-radius: 100px; overflow: hidden; }
.hvc-bar { height: 100%; border-radius: 100px; }
.hvc-pct { font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.8); width: 30px; text-align: right; flex-shrink: 0; }
.hvc-role-active .hvc-role-name { color: white; font-weight: 600; }

.hvc-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.08);
}
.hvc-match-label { font-size: 11px; color: rgba(255,255,255,0.35); }
.hvc-match-count { font-size: 17px; font-weight: 900; color: white; }
.hvc-cta {
  display: inline-flex; align-items: center;
  padding: 9px 16px; border-radius: 7px;
  background: var(--primary);
  color: white; font-size: 12px; font-weight: 700;
  text-decoration: none; transition: background 0.15s;
}
.hvc-cta:hover { background: var(--primary-dk); }

.hvc-float {
  position: absolute;
  background: white;
  border: 1px solid var(--border);
  color: var(--text); font-size: 12px; font-weight: 700;
  padding: 6px 12px; border-radius: 100px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  animation: float 3s ease-in-out infinite;
}
.hvc-float-1 { top: -14px; right: 20px; animation-delay: 0s; color: #16a34a; }
.hvc-float-2 { bottom: -14px; left: 20px; animation-delay: 1.5s; color: var(--primary); }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@media (max-width: 960px) {
  .hero-new-inner { grid-template-columns: 1fr; }
  .hero-new-right { display: none; }
  .hero-new { padding: 56px 0 52px; }
}

/* ===== PARTNER BANNER ===== */
.partner-banner {
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.partner-label {
  font-size: 11px; font-weight: 700; color: var(--text-muted);
  letter-spacing: 1.5px; text-transform: uppercase;
  text-align: center; margin-bottom: 16px;
}
.partner-logos {
  display: flex; align-items: center; justify-content: center; gap: 40px;
}
.partner-logo-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 700; color: var(--text-sec);
}
.partner-logo-mark {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 14px; font-weight: 900; flex-shrink: 0;
}
.partner-logo-img {
  height: 36px; max-width: 120px; object-fit: contain; flex-shrink: 0;
}
.partner-divider { width: 1px; height: 32px; background: var(--border); }

/* ===== BENTO GRID (About Section) ===== */
.about-section {
  padding: 96px 0;
  background: #F4F7FB;
  position: relative; overflow: hidden;
}
.about-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, #CBD5E1 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.4; pointer-events: none;
}
.bento-header { text-align: center; margin-bottom: 52px; position: relative; }
.bento-label {
  display: inline-block; padding: 5px 16px; border-radius: 100px;
  background: white; border: 1px solid #E2E8F0;
  font-size: 10.5px; font-weight: 700; color: var(--text-muted);
  letter-spacing: 0.8px; text-transform: uppercase; margin-bottom: 14px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.bento-title {
  font-size: clamp(22px, 3vw, 30px); font-weight: 900;
  color: var(--text); letter-spacing: -0.04em; line-height: 1.25; margin-bottom: 10px;
}
.bento-sub { font-size: 14px; color: var(--text-muted); line-height: 1.75; }

.bento-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 14px; position: relative;
}
.bento-card {
  background: white; border-radius: 28px;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04), 0 1px 3px rgba(0,0,0,0.02);
  padding: 36px;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.22s;
}
.bento-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -8px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.04);
}
/* Main tall card */
.bento-main {
  grid-column: 1; grid-row: 1/3;
  background: linear-gradient(155deg, #1A2B4B 0%, #2E4580 55%, #1f3770 100%);
  padding: 44px; display: flex; flex-direction: column;
  border: none; color: white;
}
.bento-main:hover { transform: translateY(-3px); }
.bento-main-num {
  font-size: 10px; font-weight: 800; color: rgba(255,255,255,0.28);
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 32px;
}
.bento-main-badge {
  display: inline-block; font-size: 10px; font-weight: 800;
  color: rgba(255,255,255,0.6); letter-spacing: 1.5px; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.18); border-radius: 4px;
  padding: 3px 10px; margin-bottom: 24px;
}
/* Card accent line */
.bento-card-accent {
  width: 32px; height: 3px; border-radius: 2px; margin-bottom: 20px;
}
.bca-teal   { background: #0d9488; }
.bca-orange { background: var(--accent); }
.bento-main h3 {
  font-size: 22px; font-weight: 900; line-height: 1.3;
  margin-bottom: 16px; color: white; letter-spacing: -0.03em;
}
.bento-main p { font-size: 13.5px; color: rgba(255,255,255,0.65); line-height: 1.9; flex: 1; }
.bento-main-stat {
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: baseline; gap: 10px;
}
.bms-val {
  font-size: 38px; font-weight: 900; color: white;
  font-family: 'Inter', sans-serif; letter-spacing: -2px;
}
.bms-label { font-size: 12px; color: rgba(255,255,255,0.4); }
/* Wide card (top-right) */
.bento-wide {
  grid-column: 2/4; grid-row: 1;
  display: flex; flex-direction: column; gap: 12px;
}
.bento-num-sm {
  font-size: 10px; font-weight: 800; color: var(--text-muted);
  letter-spacing: 1.2px; text-transform: uppercase;
}
.bento-wide h3 {
  font-size: 18px; font-weight: 900; letter-spacing: -0.03em;
  line-height: 1.35; margin: 4px 0 8px;
}
.bento-wide p { font-size: 13px; color: var(--text-sec); line-height: 1.8; flex: 1; }
/* Small card (bottom-left of right half) */
.bento-sm {
  grid-column: 2; grid-row: 2;
  display: flex; flex-direction: column;
}
.bento-sm h3 { font-size: 16px; font-weight: 800; line-height: 1.35; margin: 6px 0 10px; letter-spacing: -0.03em; }
.bento-sm p { font-size: 12.5px; color: var(--text-sec); line-height: 1.8; flex: 1; }
/* Stats card (dark accent) */
.bento-stat-card {
  grid-column: 3; grid-row: 2;
  background: #0D1117;
  border: none; display: flex; align-items: center; justify-content: center;
  padding: 32px 28px;
}
.bento-stat-card:hover { transform: translateY(-3px); box-shadow: 0 16px 40px -8px rgba(0,0,0,0.3); }
.bento-stats-list { display: flex; flex-direction: column; gap: 14px; width: 100%; }
.bento-stat-item { display: flex; flex-direction: column; }
.bsi-val {
  font-size: 30px; font-weight: 900; color: white;
  font-family: 'Inter', sans-serif; letter-spacing: -1px; line-height: 1;
}
.bsi-label { font-size: 11px; color: rgba(255,255,255,0.38); margin-top: 2px; }
.bento-link {
  font-size: 12px; font-weight: 700; color: var(--primary);
  text-decoration: none; display: inline-flex; align-items: center; gap: 4px;
  margin-top: 16px; opacity: 0.8;
}
.bento-link:hover { opacity: 1; }

@media (max-width: 900px) {
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-main { grid-column: 1/3; grid-row: auto; min-height: 280px; }
  .bento-wide { grid-column: 1/3; }
  .bento-sm  { grid-column: 1; }
  .bento-stat-card { grid-column: 2; }
}
@media (max-width: 560px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-main, .bento-wide, .bento-sm, .bento-stat-card { grid-column: 1; grid-row: auto; }
}

/* ===== ROLE BADGES ===== */
.roles-section {
  padding: 72px 0;
  background: white;
}
.roles-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px;
}
.role-badge {
  display: flex; flex-direction: column; align-items: center;
  padding: 24px 16px; border-radius: 16px;
  text-align: center; cursor: default;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid transparent;
}
.role-badge:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.role-badge-icon { font-size: 28px; margin-bottom: 10px; }
.role-badge-name { font-size: 12px; font-weight: 800; line-height: 1.4; margin-bottom: 6px; }
.role-badge-sub { font-size: 10px; opacity: 0.7; line-height: 1.4; }

.role-teal   { background: #f0fdfa; color: #0d9488; border-color: #99f6e4; }
.role-purple { background: #faf5ff; color: #6c3ce1; border-color: #e9d5ff; }
.role-orange { background: #fff7ed; color: #ea580c; border-color: #fed7aa; }
.role-green  { background: #f0fdf4; color: #16a34a; border-color: #bbf7d0; }
.role-blue   { background: #eff6ff; color: #1d4ed8; border-color: #bfdbfe; }
.role-pink   { background: #fdf2f8; color: #be185d; border-color: #fbcfe8; }

@media (max-width: 900px) { .roles-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .roles-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== SEARCH SECTION ===== */
.search-section {
  padding: 32px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.search-section-inner { max-width: 760px; margin: 0 auto; }
.search-form-new {}
.sfn-box {
  display: flex; align-items: center;
  background: white; border: 1.5px solid var(--border);
  border-radius: 12px; padding: 6px 6px 6px 16px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.sfn-box:focus-within { border-color: #6c3ce1; box-shadow: 0 0 0 3px rgba(108,60,225,0.08); }
.sfn-icon { font-size: 16px; color: var(--text-muted); flex-shrink: 0; margin-right: 8px; }
.sfn-box input {
  flex: 1; border: none; outline: none; font-size: 14px;
  font-family: inherit; color: var(--text); background: transparent;
}
.sfn-btn {
  padding: 10px 20px; border-radius: 8px;
  background: var(--primary);
  color: white; border: none; cursor: pointer;
  font-size: 14px; font-weight: 700; font-family: inherit;
  transition: opacity 0.15s;
  white-space: nowrap;
}
.sfn-btn:hover { opacity: 0.9; }
.sfn-tags { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.sfn-tag-label { font-size: 12px; color: var(--text-muted); font-weight: 600; }

/* ===== FEATURED GRID 2 columns ===== */
.featured-grid-2 { grid-template-columns: repeat(2, 1fr) !important; }
@media (max-width: 700px) { .featured-grid-2 { grid-template-columns: 1fr !important; } }

/* ===== JOB ITEM (new style with 2 buttons) ===== */
.job-item {
  display: flex; gap: 18px; align-items: flex-start;
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px 28px;
  margin-bottom: 12px;
  transition: box-shadow 0.22s, transform 0.18s, border-color 0.18s;
  cursor: default;
  box-shadow: var(--shadow-sm);
}
.job-item:hover { box-shadow: var(--shadow-md); border-color: #D8DCE4; transform: translateY(-2px); }

.job-item-title {
  font-size: 15px; font-weight: 700; color: var(--text);
  text-decoration: none; line-height: 1.45;
  display: block; margin-bottom: 3px;
}
.job-item-title:hover { color: var(--primary); }

.job-action-row {
  display: flex; gap: 8px; margin-top: 14px;
}
.job-btn-interest {
  padding: 8px 18px; border-radius: 8px;
  background: white; color: var(--text-sec);
  border: 1px solid var(--border);
  font-size: 13px; font-weight: 500; cursor: pointer;
  font-family: inherit; transition: all 0.15s;
}
.job-btn-interest:hover { border-color: #C5D3E8; color: var(--primary); background: var(--primary-lt); }
.job-btn-detail {
  padding: 8px 18px; border-radius: 8px;
  background: var(--accent); color: white;
  border: none;
  font-size: 13px; font-weight: 600;
  text-decoration: none; transition: all 0.15s;
}
.job-btn-detail:hover { background: #c84e0a; }

/* ===== REGISTER CARD STYLE ===== */
.register-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: start;
}
.register-right {}
.reg-card {
  background: white; border: 1px solid var(--border);
  border-radius: 20px; padding: 32px;
  box-shadow: var(--shadow-lg);
}
.btn-google-reg-lg {
  width: 100%; justify-content: center;
  font-size: 15px; padding: 15px 24px;
  margin-bottom: 0;
}
.reg-or {
  display: flex; align-items: center; gap: 12px;
  margin: 18px 0;
  font-size: 12px; color: var(--text-muted); font-weight: 600;
}
.reg-or::before, .reg-or::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}


@media (max-width: 800px) {
  .register-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ===== PM採用ブログ メディアセクション ===== */

/* Featured card */
.pmb-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: var(--text);
  margin-bottom: 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.pmb-featured:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }

.pmb-featured-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.pmb-featured-img img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; transition: transform 0.3s;
}
.pmb-featured:hover .pmb-featured-img img { transform: scale(1.03); }

.pmb-no-badge {
  position: absolute; top: 12px; left: 12px;
  background: rgba(0,0,0,0.6);
  color: white; font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 100px;
  backdrop-filter: blur(4px);
}

.pmb-featured-body {
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 12px;
}
.pmb-label {
  font-size: 11px; font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 1px;
}
.pmb-featured-title {
  font-size: 20px; font-weight: 900; line-height: 1.4;
  letter-spacing: -0.3px; color: var(--text);
}
.pmb-featured-title span { color: var(--text-sec); font-size: 16px; font-weight: 600; }
.pmb-featured-desc {
  font-size: 13px; line-height: 1.8; color: var(--text-sec);
  flex: 1;
}
.pmb-author {
  display: flex; align-items: center; gap: 10px;
  margin-top: auto; padding-top: 16px;
  border-top: 1px solid var(--border-light);
}
.pmb-av {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: 14px; flex-shrink: 0;
}
.pmb-author-name { font-size: 13px; font-weight: 700; }
.pmb-author-role { font-size: 11px; color: var(--text-muted); }
.pmb-read {
  margin-left: auto;
  font-size: 13px; font-weight: 700; color: var(--blue);
}

/* Grid */
.pmb-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.pmb-card {
  display: flex; flex-direction: column;
  background: white; border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
  text-decoration: none; color: var(--text);
  transition: box-shadow 0.2s, transform 0.15s;
}
.pmb-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.pmb-card-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg);
}
.pmb-card-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.3s;
}
.pmb-card:hover .pmb-card-img img { transform: scale(1.04); }

.pmb-no {
  position: absolute; top: 8px; left: 8px;
  background: rgba(0,0,0,0.55);
  color: white; font-size: 10px; font-weight: 700;
  padding: 2px 8px; border-radius: 100px;
  backdrop-filter: blur(4px);
}
.pmb-no-new {
  background: var(--primary);
}

.pmb-card-body {
  padding: 12px 14px 16px;
  display: flex; flex-direction: column; gap: 6px;
  flex: 1;
}
.pmb-card-tag {
  font-size: 10px; font-weight: 700; color: var(--blue);
  text-transform: uppercase; letter-spacing: 0.5px;
}
.pmb-card-body h4 {
  font-size: 13px; font-weight: 700; line-height: 1.5;
  color: var(--text);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* More button */
/* ===== PMB Persona Tabs ===== */
.pmb-persona-bar {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin-bottom: 16px;
}
.pmb-tab {
  padding: 8px 18px; border-radius: 100px;
  border: 1.5px solid var(--border);
  background: white; font-size: 13px; font-weight: 700;
  color: var(--text-muted); cursor: pointer;
  transition: all 0.18s;
}
.pmb-tab:hover { border-color: var(--primary); color: var(--primary); }
.pmb-tab.active {
  background: var(--primary); color: white; border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(26,43,75,0.2);
}
.pmb-context {
  display: flex; align-items: center; gap: 10px;
  background: #F5F7FA; border-radius: 10px;
  padding: 12px 18px; margin-bottom: 28px;
  font-size: 13px; color: var(--text-sec); line-height: 1.6;
}
.pmb-ctx-hidden { display: none !important; }
.pmb-ctx-icon { font-size: 16px; flex-shrink: 0; }

/* Persona tags on cards */
.pmb-dual-tags { display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 8px; }
.pmb-cats-row { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.pmb-persona-tag {
  font-size: 10px; font-weight: 800; padding: 2px 8px;
  border-radius: 4px; letter-spacing: 0.2px;
}
.ppt-employer  { background: #dbeafe; color: #1e40af; }
.ppt-seeker    { background: #ccfbf1; color: #0d4f45; }
.ppt-industry  { background: #fef3c7; color: #92400e; }
.ppt-both      { background: #ede9fe; color: #4c1d95; }
.ppt-base      { background: #f3f4f6; color: #6b7280; }

/* Empty state */
.pmb-empty-msg {
  text-align: center; padding: 40px; color: var(--text-muted);
  font-size: 14px;
}

.pmb-more-wrap { text-align: center; }
.pmb-more-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 36px;
  background: white; color: var(--text);
  border: 1.5px solid var(--border);
  border-radius: 100px; font-size: 14px; font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}
.pmb-more-btn:hover {
  border-color: var(--blue); color: var(--blue);
  box-shadow: 0 4px 12px rgba(0,124,255,0.12);
}

/* Responsive */
@media (max-width: 1100px) {
  .pmb-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
  .pmb-featured { grid-template-columns: 1fr; }
  .pmb-featured-img { aspect-ratio: 16/7; }
  .pmb-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .pmb-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .pmb-featured-body { padding: 20px 18px; }
  .pmb-featured-title { font-size: 16px; }
}

/* ===== HERO WHITE OVERRIDE ===== */
.hero-new { padding: 44px 0 40px; }
.hero-new-bg { background: #ffffff; }
.hero-new-bg::after { background: none; }

.hero-new-tag {
  background: var(--primary-lt);
  border: 1px solid var(--primary-bd);
  color: var(--primary);
}
.hero-new-h1 { color: var(--text); }
.hero-grad-text { color: var(--primary); -webkit-text-fill-color: var(--primary); }
.hero-new-sub { color: var(--text-sec); }
.hero-new-note { color: var(--text-muted); margin-bottom: 24px; }
.hns-val { color: var(--text); }
.hns-label { color: var(--text-muted); }
.hns-sep { color: var(--border); }

.hero-vis-card {
  background: #fff;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-xl);
}
.hvc-title { color: var(--text); }
.hvc-body-label { color: var(--text-muted); }
.hvc-role-name { color: var(--text-sec); }
.hvc-role-active .hvc-role-name { color: var(--text); font-weight: 700; }
.hvc-match-label { color: var(--text-muted); }
.hvc-match-count { color: var(--text); }
.hvc-footer { border-top: 1px solid var(--border); }
.hero-or-divider { color: var(--text-muted); }
.hero-login-link { color: var(--primary); text-decoration: underline; }

/* ===== ABOUT CARD LINK ===== */
.about-card-link {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 14px; font-size: 13px; font-weight: 700;
  color: var(--primary); text-decoration: none;
}
.about-card-link:hover { text-decoration: underline; }

/* ===== ORANGE CTA BUTTON ===== */
.btn-cta-orange {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 36px; border-radius: 8px;
  background: var(--accent); color: white;
  font-size: 15px; font-weight: 700;
  text-decoration: none; border: none; cursor: pointer;
  font-family: inherit; letter-spacing: 0;
  transition: background 0.15s, transform 0.12s;
  box-shadow: 0 4px 14px rgba(234,88,12,0.25);
}
.btn-cta-orange:hover { background: #c84e0a; transform: translateY(-2px); }
.btn-cta-orange-wide { width: 100%; max-width: 360px; }

.btn-cta-teal {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 28px; border-radius: 8px;
  background: #0d9488; color: white;
  font-size: 15px; font-weight: 700;
  text-decoration: none; border: none; cursor: pointer;
  font-family: inherit; letter-spacing: 0;
  transition: background 0.15s, transform 0.12s;
  box-shadow: 0 4px 14px rgba(13,148,136,0.25);
}
.btn-cta-teal:hover { background: #0b7a70; transform: translateY(-2px); }

.hero-cta-pair {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.hero-cta-pair .btn-cta-orange,
.hero-cta-pair .btn-cta-teal {
  padding: 13px 20px;
  font-size: 14px;
}
.hero-cta-badge {
  display: inline-block;
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.5px;
  padding: 3px 7px; border-radius: 3px;
  margin-left: 8px;
  background: rgba(255,255,255,0.22);
}
.hero-cta-badge.teal { background: rgba(255,255,255,0.22); }
.hero-cta-helper {
  font-size: 12px; color: rgba(255,255,255,0.72);
  line-height: 1.7; max-width: 540px;
  margin: 4px 0 0;
}
.hero-cta-helper strong { color: #fff; font-weight: 700; }
@media (max-width: 720px) {
  .hero-cta-pair { flex-direction: column; align-items: stretch; }
  .hero-cta-pair .btn-cta-orange,
  .hero-cta-pair .btn-cta-teal { width: 100%; }
}

/* ===== HERO CTA COLUMN LAYOUT ===== */
.hero-new-cta-col {
  display: flex; flex-direction: column; gap: 12px;
  align-items: flex-start; margin-bottom: 10px;
}
.hero-or-divider {
  font-size: 13px; color: rgba(255,255,255,0.55); font-weight: 600;
  padding: 0 8px;
}
.hero-login-link {
  font-size: 12px; color: rgba(255,255,255,0.65);
  text-decoration: underline; text-underline-offset: 2px;
  transition: color 0.15s;
}
.hero-login-link:hover { color: rgba(255,255,255,0.9); }

/* ===== SECTION DOT DECORATION (pm-career.jp style) ===== */
.sec-dot-deco {
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.sec-dot-wrap {
  position: relative; width: 52px; height: 52px;
}
.sec-dot-outer {
  width: 52px; height: 52px; border-radius: 50%;
  background: #dbeafe;
  position: absolute; top: 0; left: 0;
}
.sec-dot-inner {
  width: 26px; height: 26px; border-radius: 50%;
  background: #2563eb;
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

/* ===== SECTION HEADER CENTERED ===== */
.sec-header-center {
  text-align: center; margin-bottom: 40px;
}
.sec-header-center .sec-title { font-size: 24px; }
.sec-header-center .sec-sub { font-size: 14px; margin-top: 6px; }

/* ===== ROLES SECTION v2 (pm-career.jp style) ===== */
/* ===== ROLES SECTION NEW ===== */
.roles-section-new {
  padding: 80px 0 72px;
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.rsn-header {
  text-align: center; margin-bottom: 48px;
}
.rsn-label {
  display: inline-block; padding: 5px 14px; border-radius: 100px;
  background: #ede9fe; color: var(--primary);
  font-size: 11px; font-weight: 800; letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.rsn-title {
  font-size: clamp(22px, 3vw, 32px); font-weight: 900;
  color: var(--text); line-height: 1.3; letter-spacing: -0.5px;
  margin-bottom: 12px;
}
.rsn-sub {
  font-size: 14px; color: var(--text-muted); line-height: 1.7;
}
.rsn-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-bottom: 36px;
}
.rsn-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: 16px; padding: 24px 24px 20px;
  position: relative; overflow: hidden;
  transition: transform 0.18s, box-shadow 0.18s;
}
.rsn-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}
.rsn-card-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.rsn-num {
  font-size: 28px; font-weight: 900; color: var(--rc);
  opacity: 0.18; line-height: 1; letter-spacing: -1px;
}
.rsn-badge {
  font-size: 10px; font-weight: 800; padding: 3px 10px;
  border-radius: 100px; letter-spacing: 0.3px;
}
.rsn-name {
  font-size: 16px; font-weight: 900; color: var(--text);
  line-height: 1.35; margin-bottom: 10px;
  display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap;
}
.rsn-ver {
  font-size: 12px; font-weight: 800; color: var(--rc);
  background: rgba(0,0,0,0.05); padding: 2px 8px; border-radius: 4px;
}
.rsn-desc {
  font-size: 12.5px; color: var(--text-muted); line-height: 1.75;
  margin-bottom: 14px;
}
.rsn-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.rsn-tag {
  font-size: 10.5px; font-weight: 700;
  color: var(--rc); background: color-mix(in srgb, var(--rc) 10%, transparent);
  padding: 3px 9px; border-radius: 4px;
}
.rsn-cta-row {
  display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap;
}
.rsn-link {
  font-size: 13px; font-weight: 700; color: var(--primary);
  text-decoration: none; border-bottom: 1.5px solid rgba(108,60,225,0.3);
  padding-bottom: 1px; transition: border-color 0.15s;
}
.rsn-link:hover { border-color: var(--primary); }

@media (max-width: 900px) { .rsn-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .rsn-grid { grid-template-columns: 1fr; } }

/* ===== HEADER PRIMARY BUTTON ORANGE ===== */
.hdr-btn-orange {
  background: #f97316; color: #fff;
  box-shadow: 0 2px 8px rgba(249,115,22,0.3);
}
.hdr-btn-orange:hover { background: #ea6c00; transform: translateY(-1px); }

/* ===== HERO SLIDER ===== */
.hero-slider-wrap {
  position: relative;
  overflow: hidden;
  background: #0f1929;
  width: 100%;
}
.hs-track {
  display: flex;
  width: 400%;
  transition: transform 0.55s cubic-bezier(0.77,0,0.175,1);
  will-change: transform;
}
.hs-slide {
  width: 25%;
  flex-shrink: 0;
  min-height: 520px;
  display: flex;
  align-items: center;
  position: relative;
  padding: 64px 0 80px;
}
.hs-slide-1 { background: linear-gradient(135deg, #0f1929 0%, #1a2b4b 50%, #1e3a6e 100%); }
.hs-slide-2 { background: linear-gradient(135deg, #150f25 0%, #1f1435 50%, #2a1a45 100%); }
.hs-slide-3 { background: linear-gradient(135deg, #0d1f2d 0%, #0f2a3a 50%, #0d3050 100%); }
.hs-slide-4 { background: linear-gradient(135deg, #0f2018 0%, #0e2820 50%, #0f3028 100%); }

.hs-slide-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}

/* Left text side */
.hs-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9); border-radius: 100px;
  font-size: 12px; font-weight: 700; padding: 5px 14px;
  margin-bottom: 20px; letter-spacing: 0.02em;
}
.hs-tag-amber { background: rgba(251,191,36,0.15); border-color: rgba(251,191,36,0.3); color: #fbbf24; }
.hs-tag-teal  { background: rgba(20,184,166,0.15); border-color: rgba(20,184,166,0.3); color: #2dd4bf; }
.hs-tag-green { background: rgba(34,197,94,0.15);  border-color: rgba(34,197,94,0.3);  color: #4ade80; }

.hs-h1 {
  font-size: clamp(26px, 3.2vw, 44px); font-weight: 900;
  color: #fff; line-height: 1.25; letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hs-grad {
  background: linear-gradient(90deg, #60a5fa, #a78bfa);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hs-sub {
  font-size: 14.5px; color: rgba(255,255,255,0.65);
  line-height: 1.85; margin-bottom: 28px;
}
.hs-cta-row {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  margin-bottom: 28px;
}
.hs-btn-google {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: #374151;
  border-radius: 100px; padding: 10px 20px;
  font-size: 13px; font-weight: 700; text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.hs-btn-google:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.2); }
.hs-link-btn {
  color: rgba(255,255,255,0.75); font-size: 14px; font-weight: 600;
  text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 2px; transition: color 0.15s;
}
.hs-link-btn:hover { color: #fff; }

.hs-stats {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.hs-stat { display: flex; flex-direction: column; gap: 2px; }
.hs-stat-val { font-size: 22px; font-weight: 900; color: #fff; letter-spacing: -0.5px; line-height: 1; }
.hs-stat-lbl { font-size: 11px; color: rgba(255,255,255,0.45); }
.hs-stat-sep { width: 1px; height: 28px; background: rgba(255,255,255,0.15); }

/* Slide 1 right — vis card */
.hs-vis-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 20px; padding: 28px 28px 20px;
  backdrop-filter: blur(12px);
}
.hs-vis-label {
  font-size: 10px; font-weight: 800; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45); text-transform: uppercase;
  margin-bottom: 20px;
}
.hs-vis-roles { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.hs-role-item {
  font-size: 13px; color: rgba(255,255,255,0.55); font-weight: 500;
  padding: 8px 14px; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.2s;
}
.hs-role-active {
  background: rgba(96,165,250,0.15); border-color: rgba(96,165,250,0.3);
  color: #93c5fd; font-weight: 700;
}
.hs-vis-footer {
  display: flex; align-items: center; gap: 8px;
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 16px;
  font-size: 12px; color: rgba(255,255,255,0.4);
}
.hs-vis-p { height: 20px; width: auto; border-radius: 3px; }
.hs-vis-footer strong { color: rgba(255,255,255,0.7); font-weight: 700; }

/* Slide 2 right — why cards */
.hs-why-cards { display: flex; flex-direction: column; gap: 12px; }
.hs-why-card {
  border-radius: 14px; padding: 18px 20px;
  display: flex; align-items: center; gap: 16px;
  border: 1px solid transparent;
}
.hs-why-red    { background: rgba(239,68,68,0.12);   border-color: rgba(239,68,68,0.2); }
.hs-why-amber  { background: rgba(245,158,11,0.12);  border-color: rgba(245,158,11,0.2); }
.hs-why-purple { background: rgba(139,92,246,0.12);  border-color: rgba(139,92,246,0.2); }
.hs-why-num { font-size: 10px; font-weight: 800; color: rgba(255,255,255,0.35); letter-spacing: 0.05em; white-space: nowrap; }
.hs-why-title { flex: 1; font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.8); line-height: 1.5; }
.hs-why-title span { color: #fff; }
.hs-why-stat { font-size: 18px; font-weight: 900; color: rgba(255,255,255,0.9); white-space: nowrap; }

/* Slide 3 right — jobs preview */
.hs-jobs-preview {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px; padding: 24px;
}
.hs-jp-head {
  font-size: 11px; font-weight: 800; color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em; margin-bottom: 16px;
}
.hs-jp-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 16px;
  margin-bottom: 10px;
}
.hs-jp-card:last-child { margin-bottom: 0; }
.hs-jp-co { font-size: 11px; color: rgba(255,255,255,0.45); margin-bottom: 4px; }
.hs-jp-title { font-size: 13px; font-weight: 700; color: #fff; margin-bottom: 8px; line-height: 1.4; }
.hs-jp-tags { display: flex; gap: 6px; margin-bottom: 8px; }
.hs-jp-tags span {
  font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: 4px;
  background: rgba(96,165,250,0.2); color: #93c5fd;
}
.hs-jp-sal { font-size: 14px; font-weight: 800; color: #fbbf24; }

/* Slide 4 right — PM Quest card */
.hs-pq-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px; padding: 32px 28px;
  backdrop-filter: blur(12px);
}
.hs-pq-logo { height: 32px; width: auto; margin-bottom: 16px; display: block; }
.hs-pq-sep { height: 1px; background: rgba(255,255,255,0.1); margin: 16px 0; }
.hs-pq-by {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}
.hs-pq-p { height: 22px; width: auto; border-radius: 3px; }
.hs-pq-benefits { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.hs-pq-benefits li { font-size: 13px; color: rgba(255,255,255,0.75); font-weight: 500; }

/* Arrow buttons */
.hs-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; z-index: 10;
}
.hs-arrow:hover { background: rgba(255,255,255,0.22); }
.hs-arrow-prev { left: 20px; }
.hs-arrow-next { right: 20px; }

/* Dot indicators */
.hs-dots {
  position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 10;
}
.hs-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.3); border: none; cursor: pointer;
  padding: 0; transition: all 0.25s;
}
.hs-dot.active { background: #fff; width: 24px; border-radius: 4px; }

/* Responsive */
@media (max-width: 768px) {
  .hs-slide-inner { grid-template-columns: 1fr; gap: 28px; }
  .hs-right { display: none; }
  .hs-slide { min-height: 420px; padding: 48px 0 72px; }
  .hs-h1 { font-size: 26px; }
}

/* ===== FDPM DEFINITION SECTION ===== */
.fdpm-def-section {
  background: #fff; padding: 64px 0 72px;
  border-bottom: 1px solid var(--border);
}
.fdpm-def-inner {
  display: grid; grid-template-columns: 1fr 420px; gap: 56px; align-items: start;
}
.fdpm-def-label {
  font-size: 10px; font-weight: 800; letter-spacing: 0.12em;
  color: var(--primary); text-transform: uppercase; margin-bottom: 12px;
}
.fdpm-def-h2 {
  font-size: clamp(20px, 2.4vw, 28px); font-weight: 900;
  color: var(--text); line-height: 1.35; letter-spacing: -0.5px; margin-bottom: 16px;
}
.fdpm-def-lead {
  font-size: 14.5px; color: var(--text-sec); line-height: 1.85;
  margin-bottom: 24px;
}
.fdpm-def-lead strong { color: var(--text); }
.fdpm-def-compare { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.fdpm-def-row {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.fdpm-def-badge {
  font-size: 11px; font-weight: 800; padding: 4px 12px; border-radius: 100px;
  white-space: nowrap;
}
.fdpm-badge-old  { background: #f3f4f6; color: #6b7280; }
.fdpm-badge-new  { background: #ede9fe; color: #5b21b6; }
.fdpm-badge-full { background: #fef3c7; color: #92400e; }
.fdpm-def-arrow  { color: var(--text-muted); font-size: 14px; }
.fdpm-def-text   { font-size: 13px; color: var(--text-sec); }
.fdpm-def-link {
  font-size: 13px; font-weight: 700; color: var(--primary);
  text-decoration: none; border-bottom: 1.5px solid rgba(26,43,75,0.25); padding-bottom: 2px;
  transition: border-color 0.15s;
}
.fdpm-def-link:hover { border-color: var(--primary); }
.fdpm-def-card {
  background: var(--primary); border-radius: 20px; padding: 32px 28px; color: white;
}
.fdpm-def-card-title {
  font-size: 11px; font-weight: 800; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5); text-transform: uppercase; margin-bottom: 24px;
}
.fdpm-def-stats { display: flex; flex-direction: column; gap: 20px; margin-bottom: 20px; }
.fdpm-ds-item { display: flex; align-items: baseline; gap: 16px; }
.fdpm-ds-num {
  font-size: 36px; font-weight: 900; color: #fff; letter-spacing: -1px; line-height: 1;
  white-space: nowrap;
}
.fdpm-ds-num span { font-size: 16px; font-weight: 700; color: rgba(255,255,255,0.7); }
.fdpm-ds-label { font-size: 12px; color: rgba(255,255,255,0.6); line-height: 1.5; }
.fdpm-def-cite { font-size: 11px; color: rgba(255,255,255,0.35); border-top: 1px solid rgba(255,255,255,0.1); padding-top: 14px; }
@media (max-width: 900px) { .fdpm-def-inner { grid-template-columns: 1fr; } }

/* ===== FAQ SECTION ===== */
.faq-section { background: var(--bg); padding: 72px 0 80px; }
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item[open] {
  border-color: var(--primary-bd);
  box-shadow: 0 4px 16px rgba(26,43,75,0.07);
}
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px;
  font-size: 15px; font-weight: 700; color: var(--text);
  cursor: pointer; list-style: none; user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: '+';
  font-size: 20px; font-weight: 300; color: var(--primary);
  flex-shrink: 0; transition: transform 0.25s;
  line-height: 1;
}
.faq-item[open] .faq-q::after { transform: rotate(45deg); }
.faq-a {
  padding: 0 22px 20px;
  font-size: 14px; color: var(--text-sec); line-height: 1.85;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
}
.faq-a p { margin: 0; }
.faq-a strong { color: var(--text); font-weight: 700; }

/* ===== BRAND BAR (ポテンシャライト × PM Quest) ===== */
.brand-bar {
  background: #1A2B4B;
  color: rgba(255,255,255,0.82);
  padding: 5px 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.brand-bar-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.bb-p-logo {
  height: 18px;
  width: auto;
  border-radius: 3px;
  vertical-align: middle;
}
.bb-pmq-logo {
  height: 15px;
  width: auto;
  vertical-align: middle;
  background: white;
  padding: 1px 5px;
  border-radius: 3px;
}
.brand-bar strong { color: #fff; font-weight: 700; }
.brand-bar .bb-sep { opacity: 0.3; margin: 0 2px; }

/* ===== HEADER LOGO — PM Quest + ポテンシャライト ===== */
.site-logo-pmq {
  height: 26px;
  width: auto;
  display: block;
}
.header-by-pote {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}
.hbp-sep {
  color: var(--border);
  font-size: 18px;
  font-weight: 300;
  margin: 0 4px;
}
.header-pote-logo {
  height: 22px;
  width: auto;
  border-radius: 3px;
}
.hbp-text {
  font-size: 12px;
  color: var(--text-sec);
  white-space: nowrap;
  font-weight: 500;
}
.hbp-text strong { color: var(--text); font-weight: 700; }

/* ===== FOOTER BRAND LOGOS ===== */
.footer-brand-logos {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}
.footer-pmq-logo {
  height: 28px;
  width: auto;
}
.footer-brand-pote {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-pote-logo {
  height: 28px;
  width: auto;
  border-radius: 4px;
}
.footer-pote-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-sec);
}
.footer-brand-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 4px;
}

/* ===== Floating Diagnosis Button (FAB) ===== */
.fab-diagnosis {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 200;
  display: flex; align-items: center; gap: 10px;
  background: var(--accent); color: #fff;
  padding: 14px 22px 14px 18px; border-radius: 100px;
  text-decoration: none; font-weight: 700; font-size: 14px;
  box-shadow: 0 8px 28px rgba(234,88,12,0.4), 0 4px 12px rgba(234,88,12,0.2);
  transform: translateY(120px); opacity: 0; pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
}
.fab-diagnosis.visible {
  transform: translateY(0); opacity: 1; pointer-events: auto;
}
.fab-diagnosis:hover {
  background: #d04c07;
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(234,88,12,0.5);
}
.fab-icon { font-size: 18px; }
.fab-close {
  position: absolute; top: -6px; right: -6px;
  width: 22px; height: 22px; border-radius: 50%;
  background: #fff; color: var(--text-sec);
  border: 1px solid var(--border);
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; line-height: 1;
  font-family: inherit;
}
.fab-close:hover { background: var(--text-sec); color: #fff; }
@media (max-width: 540px) {
  .fab-diagnosis { bottom: 16px; right: 16px; padding: 12px 18px 12px 14px; font-size: 13px; }
  .fab-text-full { display: none; }
}
