@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #0EA5E9;
  --primary-dark: #0284C7;
  --secondary: #6366F1;
  --accent: #10B981;
  --bg: #F0F4F8;
  --bg-white: #FFFFFF;
  --text: #1E293B;
  --text-light: #64748B;
  --text-white: #F8FAFC;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.10);
  --transition: all 0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Outfit', 'Noto Sans JP', sans-serif;
  line-height: 1.3;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* === ICON SYSTEM === */
.icon {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -0.15em;
  flex-shrink: 0;
}

.icon-lg {
  width: 32px;
  height: 32px;
  stroke-width: 1.75;
}

.icon-xl {
  width: 40px;
  height: 40px;
  stroke-width: 1.5;
}

.icon-sm {
  width: 0.9em;
  height: 0.9em;
  stroke-width: 2.2;
}

.icon-with-text {
  align-items: center;
  gap: 8px;
}

a.icon-with-text,
button.icon-with-text,
span.icon-with-text {
  display: inline-flex;
}

h2.icon-with-text,
h3.icon-with-text,
p.icon-with-text,
div.icon-with-text {
  display: flex;
}

.section-header-center.icon-with-text,
.learn-title.icon-with-text,
.match-col-header.icon-with-text,
.pricing-note.icon-with-text,
.senpai-header h2.icon-with-text {
  justify-content: center;
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 56px;
  gap: 32px;
}

.nav-logo {
  font-family: 'Outfit';
  font-size: 1.25rem;
  font-weight: 800;
  background: linear-gradient(135deg, #0EA5E9, #6366F1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 4px;
  flex: 1;
}

.nav-links>li {
  position: relative;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
  display: block;
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--bg);
  color: var(--primary);
}

.nav-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  min-width: 200px;
  z-index: 100;
}

.dropdown-menu a {
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 0.85rem;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: var(--bg);
}

.nav-actions {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

.btn-nav-outline {
  padding: 7px 16px;
  border: 1.5px solid #E2E8F0;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
  white-space: nowrap;
}

.btn-nav-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-nav-primary {
  padding: 7px 16px;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-nav-primary:hover {
  background: var(--primary-dark);
}

/* === HERO === */
.hero {
  padding: 100px 0 40px;
  text-align: center;
}

.hero-promo {
  margin-bottom: 24px;
}

.promo-banner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 18px;
  background: white;
  border: 1px solid #E2E8F0;
  border-radius: 24px;
  font-size: 0.88rem;
  transition: var(--transition);
}

.promo-banner:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.promo-tag {
  background: var(--primary);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 12px;
  font-family: 'Noto Sans JP';
}

.hero-sub {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 32px;
}

/* Search */
.search-box {
  position: relative;
  max-width: 620px;
  margin: 0 auto 24px;
}

.search-box input {
  width: 100%;
  padding: 16px 20px 16px 48px;
  font-size: 1rem;
  border: 2px solid #E2E8F0;
  border-radius: 14px;
  background: white;
  outline: none;
  transition: var(--transition);
  font-family: 'Noto Sans JP';
}

.search-box input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12);
}

.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
  z-index: 1;
}

.search-suggestions {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  z-index: 200;
}

.search-suggestions.active {
  display: block;
}

.suggestion-item {
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.suggestion-item:hover {
  background: var(--bg);
}

.suggestion-divider {
  padding: 8px 14px 4px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-light);
}

.s-logo {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.s-logo.sm {
  width: 22px;
  height: 22px;
  font-size: 0.7rem;
  border-radius: 6px;
}

/* Quick links */
.hero-quick {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.quick-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: white;
  border: 1px solid #E2E8F0;
  border-radius: 24px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: var(--transition);
}

.quick-link:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}

/* === FILTERS === */
.filters {
  padding: 24px 0 8px;
}

.industry-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.ind-tab {
  padding: 8px 18px;
  border-radius: 24px;
  border: 1.5px solid #E2E8F0;
  background: white;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.ind-tab.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.ind-tab:hover:not(.active) {
  border-color: var(--primary);
  color: var(--primary);
}

.role-tabs {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.role-tab {
  padding: 6px 16px;
  border-radius: 20px;
  border: none;
  background: white;
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-light);
  white-space: nowrap;
}

.role-tab.active {
  background: #1E293B;
  color: white;
}

.role-tab:hover:not(.active) {
  background: #E2E8F0;
}

/* === RECENT SALARIES === */
.recent-salaries {
  padding: 32px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: 1.3rem;
  font-family: 'Noto Sans JP';
}

.see-all {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary);
}

.salary-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
}

.salary-scroll::-webkit-scrollbar {
  height: 6px;
}

.salary-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.salary-scroll::-webkit-scrollbar-thumb {
  background: #CBD5E1;
  border-radius: 3px;
}

.salary-card {
  min-width: 260px;
  background: white;
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid #E2E8F0;
  transition: var(--transition);
  scroll-snap-align: start;
  cursor: pointer;
}

.salary-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.sal-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.sal-top div {
  display: flex;
  flex-direction: column;
}

.sal-top strong {
  font-size: 0.95rem;
}

.sal-level {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 1px;
}

.sal-amount {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: 'Outfit';
  color: var(--accent);
  margin-bottom: 6px;
}

.sal-meta {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* === MATCHING GRID === */
.matching {
  padding: 40px 0 48px;
}

.section-header-center {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 8px;
  font-family: 'Noto Sans JP';
}

.section-sub-center {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 28px;
}

.match-grid {
  display: grid;
  grid-template-columns: 170px 1fr 1fr;
  gap: 0 40px;
  border-radius: var(--radius);
}

.match-col-header {
  padding: 14px 16px;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  border-bottom: 3px solid;
}

.col-company {
  background: #EFF6FF;
  border-color: #3B82F6;
  color: #1E40AF;
}

.col-skill {
  background: #F0FDF4;
  border-color: #10B981;
  color: #065F46;
}

.col-user {
  background: #FEF3C7;
  border-color: #F59E0B;
  color: #92400E;
}

/* Company column */
.match-company {
  background: #F8FAFC;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-bottom: 4px solid #000000;
  /* ★ 구분선: 굵기(4px)와 색상(#000000) 여기서 변경 */
  position: relative;
}

.match-company::after {
  content: '';
  position: absolute;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-top: 4px solid #3B82F6;
  border-right: 4px solid #3B82F6;
  transform: translateY(-50%) rotate(45deg);
  z-index: 5;
}

.match-company::before {
  content: '';
  position: absolute;
  right: -28px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 4px;
  background: #3B82F6;
  z-index: 4;
}

.company-badge {
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  color: white;
}

.company-badge.ntt {
  background: #1E3A5F;
}

.company-badge.rakuten {
  background: #BF0000;
}

.company-badge.softbank {
  background: #2A2A2A;
}

.pjt-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-light);
  white-space: nowrap;
}

/* Skill column */
.match-skill {
  background: #FAFFFE;
  padding: 12px 16px;
  border-bottom: 4px solid #000000;
  /* ★ 구분선: 굵기(4px)와 색상(#000000) 여기서 변경 */
  display: flex;
  align-items: center;
  position: relative;
}

.match-skill::after {
  content: '';
  position: absolute;
  right: -30px;
  top: 50%;
  width: 20px;
  height: 20px;
  border-top: 4px solid #10B981;
  border-right: 4px solid #10B981;
  transform: translateY(-50%) rotate(45deg);
  z-index: 5;
}

.match-skill::before {
  content: '';
  position: absolute;
  right: -28px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 4px;
  background: #10B981;
  z-index: 4;
}

.skill-box {
  background: white;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  width: 100%;
}

.skill-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  padding: 3px 0;
  font-weight: 500;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.dot.done {
  background: #10B981;
}

.dot.progress {
  background: #F59E0B;
}

.dot.fail {
  background: #EF4444;
}

.badge-done {
  margin-left: auto;
  font-size: 0.72rem;
  color: #10B981;
  font-weight: 700;
}

.badge-progress {
  margin-left: auto;
  font-size: 0.72rem;
  color: #F59E0B;
  font-weight: 700;
}

.badge-fail {
  margin-left: auto;
  font-size: 0.72rem;
  color: #EF4444;
  font-weight: 700;
}

/* User column */
.match-users {
  background: #FFFDF5;
  padding: 12px 14px;
  border-bottom: 4px solid #000000;
  /* ★ 구분선: 굵기(4px)와 색상(#000000) 여기서 변경 */
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: stretch;
  align-content: center;
}

.user-chip {
  background: white;
  border: 1.5px solid #E2E8F0;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.82rem;
  line-height: 1.5;
  transition: var(--transition);
  min-width: 120px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.user-chip:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(14, 165, 233, 0.15);
  transform: translateY(-2px);
}

.user-chip .u-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
}

.user-chip .u-name .u-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.user-chip .u-detail {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.user-chip .u-row {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.76rem;
  color: var(--text-light);
}

.user-chip .u-row .u-label {
  color: #94A3B8;
  font-weight: 500;
  min-width: 28px;
}

.user-chip .u-row .u-value {
  font-weight: 600;
  color: var(--text);
}

.user-chip .u-flag {
  font-size: 0.9rem;
  line-height: 1;
}

.user-chip .u-exp {
  display: inline-block;
  padding: 1px 8px;
  background: #EFF6FF;
  color: var(--primary);
  border-radius: 10px;
  font-size: 0.7rem;
  font-weight: 700;
}

/* === EMPLOYERS === */
.employers {
  padding: 48px 0;
}

.section-title-left {
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-family: 'Noto Sans JP';
}

.emp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.emp-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid #E2E8F0;
  transition: var(--transition);
}

.emp-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.emp-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.emp-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.emp-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* === CTA === */
.cta-section {
  padding: 48px 0;
}

.cta-inner {
  background: linear-gradient(135deg, #0EA5E9, #6366F1);
  border-radius: 20px;
  padding: 48px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
  color: white;
}

.cta-inner h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  font-family: 'Noto Sans JP';
}

.cta-inner p {
  opacity: 0.9;
  font-size: 1rem;
  margin-bottom: 24px;
}

.cta-buttons {
  display: flex;
  gap: 12px;
}

.btn-primary {
  padding: 12px 28px;
  background: white;
  color: var(--primary);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  padding: 12px 28px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: white;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
}

.cta-right {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.cta-stat {
  text-align: center;
}

.cta-stat .num {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  font-family: 'Outfit';
}

.cta-stat .lbl {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* === FOOTER === */
.footer {
  background: #0F172A;
  color: rgba(255, 255, 255, 0.6);
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}

.footer-brand {
  font-family: 'Outfit';
  font-size: 1.3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}

.footer h4 {
  color: white;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.footer li {
  margin-bottom: 6px;
}

.footer a {
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  text-align: center;
  font-size: 0.8rem;
}

/* === ROLE TOGGLE === */
.role-toggle {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

.role-btn {
  flex: 0 1 280px;
  padding: 18px 28px;
  background: white;
  border: 2px solid #E2E8F0;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: 'Noto Sans JP';
  color: var(--text);
}

.role-btn:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.role-btn.active {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-color: transparent;
  color: white;
  box-shadow: var(--shadow-lg);
}

.role-icon {
  width: 22px;
  height: 22px;
  stroke-width: 1.75;
}

/* === LEARN === */
.learn-title {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 24px;
  font-family: 'Noto Sans JP';
}

.learn-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.learn-card {
  background: white;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}

.learn-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.learn-icon {
  margin: 0 auto 10px;
  display: block;
  color: var(--primary);
}

.learn-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
  font-family: 'Outfit', 'Noto Sans JP';
}

.learn-card p {
  font-size: 0.82rem;
  color: var(--text-light);
}

/* === FILTER CHIPS + COMPANY RESULTS === */
.filter-title {
  font-size: 1.3rem;
  margin-bottom: 16px;
  font-family: 'Noto Sans JP';
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.filter-chip {
  padding: 8px 18px;
  border-radius: 24px;
  border: 1.5px solid #E2E8F0;
  background: white;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Noto Sans JP';
  color: var(--text);
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.filter-chip:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.chip-chev {
  margin-left: 2px;
  opacity: 0.6;
}

.filter-chip.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.company-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.company-result-card {
  background: white;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}

.company-result-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}

.cr-info {
  display: flex;
  flex-direction: column;
}

.cr-info strong {
  font-size: 0.95rem;
  color: var(--text);
}

.cr-info span {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* === USER SEARCH (未登録企業) === */
.section-sub-left {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-top: -12px;
  margin-bottom: 20px;
}

.user-search-filters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.user-search-select {
  padding: 10px 14px;
  border: 1.5px solid #E2E8F0;
  border-radius: var(--radius-sm);
  background: white;
  font-size: 0.88rem;
  font-family: 'Noto Sans JP';
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
}

.user-search-select:hover,
.user-search-select:focus {
  border-color: var(--primary);
  outline: none;
}

.user-search-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.user-search-card {
  background: white;
  border: 1.5px solid #E2E8F0;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition);
}

.user-search-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.user-search-card:has(.user-check:checked) {
  border-color: var(--primary);
  background: #F0F9FF;
}

.user-check {
  width: 18px;
  height: 18px;
  accent-color: var(--primary);
  cursor: pointer;
  flex-shrink: 0;
}

.usc-body {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.usc-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.usc-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.usc-meta strong {
  font-size: 0.9rem;
}

.usc-meta span {
  font-size: 0.75rem;
  color: var(--text-light);
}

.scout-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
  padding: 16px 20px;
  background: white;
  border: 1px solid #E2E8F0;
  border-radius: var(--radius);
}

.scout-counter {
  margin-right: auto;
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 500;
}

.scout-counter #scout-count {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.05rem;
}

.btn-scout,
.btn-interview {
  padding: 10px 22px;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Noto Sans JP';
}

.btn-scout {
  background: var(--primary);
  color: white;
}

.btn-scout:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-interview {
  background: var(--accent);
  color: white;
}

.btn-interview:hover {
  background: #059669;
  transform: translateY(-1px);
}

.btn-scout:disabled,
.btn-interview:disabled {
  background: #CBD5E1;
  cursor: not-allowed;
  transform: none;
}

/* === 卒業生相談員 (CTA override) === */
.cta-section .cta-inner {
  display: block;
  text-align: center;
}

.senpai-header {
  margin-bottom: 28px;
}

.senpai-header h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
  color: white;
}

.senpai-header p {
  font-size: 0.95rem;
  opacity: 0.9;
  margin: 0;
}

.senpai-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.senpai-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  padding: 20px 16px;
  color: white;
  transition: var(--transition);
}

.senpai-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.senpai-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: white;
  color: var(--primary);
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-family: 'Outfit';
}

.senpai-card h3 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.senpai-card p {
  font-size: 0.82rem;
  opacity: 0.9;
  margin: 0;
}

.pricing-note {
  font-size: 0.9rem;
  font-weight: 500;
  opacity: 0.95;
  margin: 0;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {

  .nav-links,
  .nav-actions {
    display: none;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .match-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .match-company::after,
  .match-skill::after,
  .match-company::before,
  .match-skill::before {
    display: none;
  }

  .emp-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }

  .cta-right {
    justify-content: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .role-toggle {
    flex-direction: column;
  }

  .learn-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .company-results {
    grid-template-columns: 1fr;
  }

  .user-search-filters {
    grid-template-columns: repeat(2, 1fr);
  }

  .user-search-results {
    grid-template-columns: 1fr;
  }

  .senpai-grid {
    grid-template-columns: 1fr;
  }

  .scout-actions {
    flex-wrap: wrap;
  }
}