/* ============================================================
   Office Career Next — Soft & Warm Stylesheet
   ============================================================ */

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

:root {
  /* ─ Soft Color Palette ─ */
  --primary:       #6C8EF5;      /* 柔らかいコーラルブルー */
  --primary-light: #EEF2FF;
  --primary-mid:   #9DB4F9;
  --secondary:     #F78FA7;      /* ソフトピンク */
  --secondary-light:#FFF0F4;
  --accent:        #72C8B0;      /* ミントグリーン */
  --accent-light:  #E6F9F4;
  --warm:          #F9A86C;      /* ウォームオレンジ */
  --warm-light:    #FFF5EE;
  --lavender:      #B8A9F0;      /* ラベンダー */

  /* ─ Neutrals ─ */
  --dark:          #2C3552;      /* ダークネイビー（柔らか） */
  --dark-2:        #3D4A6A;
  --dark-soft:     #4A5568;
  --text:          #3D4A6A;
  --text-sub:      #7B8BA5;
  --text-muted:    #A0AABE;
  --border:        #E8ECF6;
  --bg-light:      #F8F9FF;
  --bg-cream:      #FDF8F5;
  --white:         #FFFFFF;

  /* ─ Gradients ─ */
  --grad-main:  linear-gradient(135deg, #6C8EF5 0%, #B8A9F0 60%, #F78FA7 100%);
  --grad-soft:  linear-gradient(135deg, #EEF2FF 0%, #FFF0F4 100%);
  --grad-warm:  linear-gradient(135deg, #F9A86C, #F78FA7);
  --grad-cool:  linear-gradient(135deg, #6C8EF5, #72C8B0);
  --grad-hero:  linear-gradient(160deg, #2C3552 0%, #3D4A6A 50%, #4A3F6B 100%);

  /* ─ Shadows ─ */
  --shadow-xs:  0 2px 8px rgba(108,142,245,.08);
  --shadow-sm:  0 4px 16px rgba(108,142,245,.10);
  --shadow-md:  0 8px 32px rgba(108,142,245,.13);
  --shadow-lg:  0 16px 48px rgba(108,142,245,.16);
  --shadow-card:0 4px 24px rgba(60,72,100,.08);

  /* ─ Shape ─ */
  --radius-sm:  10px;
  --radius:     16px;
  --radius-lg:  24px;
  --radius-xl:  32px;
  --radius-pill:9999px;

  --transition: 0.3s cubic-bezier(.4,0,.2,1);
  --font-jp:    'Noto Sans JP', sans-serif;
  --font-en:    'Inter', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-jp);
  color: var(--text);
  background: var(--white);
  line-height: 1.75;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-gradient {
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-gradient-warm {
  background: var(--grad-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-white    { color: #fff !important; }
.text-white-70 { color: rgba(255,255,255,.72) !important; }
.text-muted    { color: var(--text-muted); }
.mt-2          { margin-top: 2rem; }
.hidden        { display: none !important; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .8rem 1.9rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  letter-spacing: .02em;
  white-space: nowrap;
  font-family: var(--font-jp);
}
.btn--primary {
  background: var(--grad-main);
  color: #fff;
  box-shadow: 0 6px 24px rgba(108,142,245,.35);
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(108,142,245,.45);
  filter: brightness(1.05);
}
.btn--outline {
  border-color: rgba(255,255,255,.6);
  color: #fff;
  backdrop-filter: blur(6px);
  background: rgba(255,255,255,.08);
}
.btn--outline:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.95);
  transform: translateY(-2px);
}
.btn--soft {
  background: var(--primary-light);
  color: var(--primary);
  border-color: transparent;
}
.btn--soft:hover {
  background: #dee6ff;
  transform: translateY(-2px);
}
.btn--lg  { padding: 1rem 2.4rem; font-size: 1rem; }
.btn--full{ width: 100%; justify-content: center; }

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section       { padding: 96px 0; }
.section--dark { background: var(--grad-hero); }
.section--gray { background: var(--bg-light); }
.section--cream{ background: var(--bg-cream); }

.section-header { text-align: center; margin-bottom: 60px; }

.section-tag {
  display: inline-block;
  font-family: var(--font-en);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  padding: .3rem .95rem;
  border-radius: var(--radius-pill);
  margin-bottom: .9rem;
}
.section-tag--light {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.75);
}

.section-title {
  font-size: clamp(1.65rem, 3.8vw, 2.5rem);
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 1rem;
  color: var(--dark);
}
.section--dark .section-title { color: #fff; }

.section-desc {
  font-size: 1rem;
  color: var(--text-sub);
  line-height: 1.9;
}
.section--dark .section-desc { color: rgba(255,255,255,.62); }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}
.header.scrolled {
  background: rgba(44,53,82,.94);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(44,53,82,.25);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: 70px;
}
.header__logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-shrink: 0;
}
.logo-icon {
  width: 36px; height: 36px;
  background: var(--grad-main);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: .88rem;
  box-shadow: 0 4px 14px rgba(108,142,245,.4);
}
.logo-text {
  font-family: var(--font-en);
  font-size: 1.08rem;
  color: #fff;
  letter-spacing: -.01em;
  font-weight: 600;
}
.logo-text strong {
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}
.header__nav { margin-left: auto; }
.header__nav ul { display: flex; gap: .2rem; }
.header__nav a {
  display: block;
  padding: .5rem .85rem;
  font-size: .875rem;
  color: rgba(255,255,255,.78);
  border-radius: 10px;
  transition: var(--transition);
  font-weight: 500;
}
.header__nav a:hover {
  color: #fff;
  background: rgba(255,255,255,.1);
}
.header__cta { margin-left: .75rem; padding: .58rem 1.35rem; font-size: .875rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 4px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2){ opacity: 0; }
.hamburger.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: rgba(44,53,82,.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  transform: translateY(-120%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav ul   { display: flex; flex-direction: column; gap: .45rem; }
.mobile-nav__link {
  display: block;
  padding: .85rem 1rem;
  color: rgba(255,255,255,.8);
  font-size: .95rem;
  font-weight: 500;
  border-radius: 12px;
  transition: var(--transition);
}
.mobile-nav__link:hover  { background: rgba(255,255,255,.08); color: #fff; }
.mobile-nav__cta {
  background: var(--grad-main);
  color: #fff;
  text-align: center;
  margin-top: .5rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--grad-hero);
  padding: 100px 0 70px;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__gradient {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 65% -5%, rgba(108,142,245,.3) 0%, transparent 60%),
    radial-gradient(ellipse 50% 45% at 0%  85%, rgba(184,169,240,.22) 0%, transparent 55%),
    radial-gradient(ellipse 55% 40% at 100% 90%, rgba(247,143,167,.15) 0%, transparent 55%);
}
.hero__particles { position: absolute; inset: 0; overflow: hidden; }

.particle {
  position: absolute;
  border-radius: 50%;
  animation: float linear infinite;
  opacity: .45;
}
@keyframes float {
  0%   { transform: translateY(105vh) rotate(0deg); opacity: 0; }
  8%   { opacity: .45; }
  92%  { opacity: .45; }
  100% { transform: translateY(-8vh) rotate(720deg); opacity: 0; }
}

.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(108,142,245,.18);
  border: 1px solid rgba(108,142,245,.38);
  color: #c0d0ff;
  padding: .45rem 1.15rem;
  border-radius: var(--radius-pill);
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 1.8rem;
  letter-spacing: .04em;
}
.hero__badge i { font-size: .72rem; color: var(--warm); }

.hero__title {
  font-size: clamp(2.4rem, 6.5vw, 4.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.22;
  margin-bottom: 1.5rem;
  letter-spacing: -.02em;
}
.hero__subtitle {
  font-size: clamp(.96rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.7);
  margin-bottom: 2.5rem;
  line-height: 2.1;
}
.hero__subtitle strong { color: #c0d0ff; font-weight: 700; }

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

/* Hero Stats */
.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 1.75rem 2.75rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat__num {
  font-family: var(--font-en);
  font-size: 2.3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.stat__unit {
  font-family: var(--font-en);
  font-size: 1.15rem;
  font-weight: 700;
  color: #c0d0ff;
}
.stat__label {
  display: block;
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  margin-top: .3rem;
  font-weight: 500;
}
.stat__divider { width: 1px; height: 44px; background: rgba(255,255,255,.14); }

.hero__scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  z-index: 1;
}
.hero__scroll span { font-family: var(--font-en); font-size: .68rem; letter-spacing: .14em; color: rgba(255,255,255,.38); }
.scroll-line {
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100%{ opacity:.38; transform: scaleY(1); }
  50%    { opacity:.9;  transform: scaleY(1.1); }
}

/* ============================================================
   ABOUT / VALUE CARDS
   ============================================================ */
.about { background: var(--white); }

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.value-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.9rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.value-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-main);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.value-card:hover::after { transform: scaleX(1); }
.value-card__icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
  color: #fff;
  margin-bottom: 1.25rem;
}
.value-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: .6rem; color: var(--dark); }
.value-card p  { font-size: .875rem; color: var(--text-sub); line-height: 1.78; }

/* ============================================================
   ANALYSIS
   ============================================================ */
.analysis { background: var(--grad-hero); }

.analysis-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.analysis-visual { display: flex; justify-content: center; }
.analysis-circle {
  position: relative;
  width: 320px; height: 320px;
}
.analysis-circle__inner {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 104px; height: 104px;
  background: var(--grad-main);
  border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  gap: 4px;
  z-index: 2;
  box-shadow: 0 0 40px rgba(108,142,245,.45);
}
.analysis-circle__inner i { font-size: 1.7rem; }

.analysis-orb {
  position: absolute;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-pill);
  padding: .48rem 1rem;
  font-size: .8rem;
  font-weight: 700;
  color: rgba(255,255,255,.9);
  white-space: nowrap;
  transition: var(--transition);
}
.orb--1 { top: 5%;  left: 50%; transform: translateX(-50%); }
.orb--2 { top: 22%; right: 0; }
.orb--3 { bottom: 22%; right: 0; }
.orb--4 { bottom: 5%; left: 50%; transform: translateX(-50%); }
.orb--5 { bottom: 22%; left: 0; }
.orb--6 { top: 22%; left: 0; }

.analysis-item {
  display: flex;
  gap: 1.15rem;
  margin-bottom: 1.65rem;
  align-items: flex-start;
}
.analysis-item__num {
  font-family: var(--font-en);
  font-size: .72rem;
  font-weight: 800;
  color: var(--lavender);
  background: rgba(184,169,240,.15);
  border: 1px solid rgba(184,169,240,.3);
  border-radius: 8px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  letter-spacing: .04em;
}
.analysis-item__body h3 { font-size: .96rem; font-weight: 800; color: #fff; margin-bottom: .32rem; }
.analysis-item__body p  { font-size: .86rem; color: rgba(255,255,255,.58); line-height: 1.72; }

/* ============================================================
   FLOW
   ============================================================ */
.flow { background: var(--bg-light); }

.flow-steps {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.flow-step {
  flex: 1;
  min-width: 200px;
  max-width: 236px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.1rem 1.4rem;
  text-align: center;
  transition: var(--transition);
}
.flow-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(108,142,245,.3);
}
.flow-step__number {
  font-family: var(--font-en);
  font-size: .7rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: .12em;
  margin-bottom: .75rem;
}
.flow-step__icon {
  font-size: 1.95rem;
  margin-bottom: 1rem;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.flow-step h3 { font-size: .93rem; font-weight: 800; margin-bottom: .55rem; color: var(--dark); }
.flow-step p  { font-size: .82rem; color: var(--text-sub); line-height: 1.68; }
.flow-arrow   { color: var(--border); font-size: 1.1rem; flex-shrink: 0; }

/* ============================================================
   CONTENT LIBRARY
   ============================================================ */
.tab-bar {
  display: flex;
  gap: .55rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.25rem;
}
.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .62rem 1.3rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: .865rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--text-sub);
  transition: var(--transition);
  font-family: var(--font-jp);
}
.tab-btn:hover { border-color: var(--primary); color: var(--primary); }
.tab-btn.active {
  background: var(--grad-main);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 16px rgba(108,142,245,.3);
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}
.content-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: var(--transition);
}
.content-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(108,142,245,.22);
}
.content-card__tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  padding: .22rem .68rem;
  border-radius: var(--radius-pill);
  margin-bottom: .72rem;
}
.tag--blue   { background: var(--primary-light);   color: var(--primary); }
.tag--green  { background: var(--accent-light);    color: #3aaa8e; }
.tag--purple { background: rgba(184,169,240,.18);  color: #7C60D6; }
.tag--orange { background: var(--warm-light);      color: #d97706; }
.tag--red    { background: var(--secondary-light); color: #d1406a; }

.content-card h4 { font-size: .93rem; font-weight: 800; margin-bottom: .48rem; color: var(--dark); }
.content-card p  { font-size: .82rem; color: var(--text-sub); line-height: 1.68; margin-bottom: .95rem; }
.content-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .77rem;
  color: var(--text-muted);
}
.content-card__footer i { margin-right: .28rem; }

.badge { font-size: .68rem; font-weight: 700; padding: .18rem .62rem; border-radius: var(--radius-pill); }
.badge--beginner { background: #e6f7f0; color: #1a7a52; }
.badge--middle   { background: #fef3c7; color: #92630a; }
.badge--advanced { background: #fde8f0; color: #b91c5e; }

.contents__more { text-align: center; padding-top: .75rem; }
.contents__more p { margin-bottom: 1.2rem; font-size: .9rem; }

/* ============================================================
   AI TOOLS
   ============================================================ */
.ai-tools { background: var(--white); }

.ai-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.ai-tool-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.9rem 1.75rem;
  transition: var(--transition);
  position: relative;
}
.ai-tool-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(108,142,245,.24);
}
.ai-tool-card--featured {
  background: var(--grad-hero);
  border-color: rgba(108,142,245,.35);
}
.ai-tool-card--featured h3,
.ai-tool-card--featured p { color: rgba(255,255,255,.9); }
.ai-tool-card--featured .ai-tool-card__features li { color: rgba(255,255,255,.68); }
.ai-tool-card--featured .ai-tool-card__features i  { color: var(--accent); }

.ai-tool-card__badge {
  position: absolute; top: -10px; right: 18px;
  background: var(--grad-warm);
  color: #fff;
  font-size: .68rem; font-weight: 800;
  padding: .22rem .72rem;
  border-radius: var(--radius-pill);
  letter-spacing: .04em;
}
.ai-tool-card__icon {
  font-size: 1.9rem;
  margin-bottom: .95rem;
  background: var(--grad-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ai-tool-card--featured .ai-tool-card__icon {
  background: var(--grad-warm);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ai-tool-card h3 { font-size: .97rem; font-weight: 800; margin-bottom: .58rem; color: var(--dark); }
.ai-tool-card p  { font-size: .855rem; color: var(--text-sub); line-height: 1.72; margin-bottom: .95rem; }
.ai-tool-card__features { display: flex; flex-direction: column; gap: .3rem; }
.ai-tool-card__features li {
  font-size: .8rem; color: var(--text-sub);
  display: flex; align-items: center; gap: .45rem;
}
.ai-tool-card__features i { color: var(--accent); font-size: .68rem; }

/* ============================================================
   SKILLS
   ============================================================ */
.skills { background: var(--grad-hero); }

.skills-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.radar-container { max-width: 330px; margin: 0 auto; }
.chart-caption { text-align: center; font-size: .76rem; color: rgba(255,255,255,.38); margin-top: 1rem; }

.skill-item { margin-bottom: 1.45rem; }
.skill-item__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .55rem;
}
.skill-item__name {
  font-size: .88rem; font-weight: 700; color: rgba(255,255,255,.9);
  display: flex; align-items: center; gap: .48rem;
}
.skill-item__name i { color: var(--lavender); }
.skill-item__score { font-family: var(--font-en); font-size: .86rem; font-weight: 700; color: var(--lavender); }
.skill-bar {
  height: 7px;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius-pill);
  overflow: hidden;
}
.skill-bar__fill {
  height: 100%; border-radius: var(--radius-pill);
  width: 0;
  transition: width 1.3s cubic-bezier(.4,0,.2,1);
}

/* ============================================================
   CAREER PATHS
   ============================================================ */
.career-paths { background: var(--bg-light); }

.paths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.path-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: var(--transition);
  position: relative;
}
.path-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(108,142,245,.22);
}
.path-card--highlight {
  background: var(--grad-main);
  border-color: transparent;
  color: #fff;
}
.path-card--highlight h3,
.path-card--highlight p { color: rgba(255,255,255,.92); }
.path-card--highlight .path-card__salary { color: #ffe8b0; }

.path-card__badge {
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--grad-warm);
  color: #fff;
  font-size: .68rem; font-weight: 800;
  padding: .22rem .88rem; border-radius: var(--radius-pill); white-space: nowrap;
}
.path-card__icon { font-size: 2.1rem; margin-bottom: .95rem; }
.path-card h3    { font-size: .97rem; font-weight: 800; margin-bottom: .58rem; color: var(--dark); }
.path-card p     { font-size: .84rem; color: var(--text-sub); line-height: 1.72; margin-bottom: .95rem; }
.path-card__salary { font-size: .86rem; font-weight: 700; color: var(--primary); }
.path-card__salary strong { font-size: .97rem; }

/* ============================================================
   TESTIMONIALS / VOICE
   ============================================================ */
.voice { background: var(--bg-cream); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(108,142,245,.22);
}

/* ─ 星評価 ─ */
.testimonial-card__stars {
  display: flex;
  gap: .18rem;
  margin-bottom: .85rem;
}
.testimonial-card__stars i { color: #FBBF24; font-size: .85rem; }

/* ─ 吹き出しクォート ─ */
.testimonial-card__quote {
  color: var(--primary-mid);
  font-size: 1.4rem;
  margin-bottom: .85rem;
  opacity: .55;
}

.testimonial-card > .testimonial-body {
  font-size: .895rem;
  color: var(--text-sub);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

/* ─ 著者プロフィール ─ */
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.author-photo {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 2.5px solid var(--border);
  flex-shrink: 0;
}
.author-info strong {
  display: block;
  font-size: .88rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: .2rem;
}
.author-info .author-role {
  font-size: .76rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.author-info .author-result {
  display: inline-block;
  margin-top: .3rem;
  font-size: .72rem;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-light);
  padding: .15rem .6rem;
  border-radius: var(--radius-pill);
}

/* Results Banner */
.results-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.5rem;
  background: var(--grad-hero);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  flex-wrap: wrap;
  gap: 2.25rem;
}
.results-banner__item { text-align: center; }
.results-banner__num  { display: block; font-size: .75rem; color: rgba(255,255,255,.48); margin-bottom: .22rem; font-weight: 600; letter-spacing: .06em; }
.results-banner__big  {
  display: block;
  font-family: var(--font-en); font-size: 2.6rem; font-weight: 800;
  color: #fff; line-height: 1; margin-bottom: .3rem;
  background: var(--grad-warm);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.results-banner__label { font-size: .8rem; color: rgba(255,255,255,.5); }
.results-banner__divider { width: 1px; height: 56px; background: rgba(255,255,255,.14); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--bg-light); }

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-info .section-tag { display: block; margin-bottom: .8rem; }
.contact-title {
  font-size: clamp(1.55rem, 2.8vw, 2.2rem);
  font-weight: 900;
  line-height: 1.42;
  margin-bottom: 1.2rem;
  color: var(--dark);
}
.contact-info > p { font-size: .93rem; color: var(--text-sub); line-height: 1.85; margin-bottom: 1.9rem; }
.contact-benefits { display: flex; flex-direction: column; gap: .72rem; }
.contact-benefits li { display: flex; align-items: center; gap: .62rem; font-size: .88rem; font-weight: 600; color: var(--text); }
.contact-benefits i  { color: var(--accent); font-size: .82rem; }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2.25rem;
  box-shadow: var(--shadow-card);
  border: 1.5px solid var(--border);
}
.contact-form h3 {
  font-size: 1.25rem; font-weight: 900;
  margin-bottom: 1.65rem;
  text-align: center;
  color: var(--dark);
}
.form-group { margin-bottom: 1.15rem; }
.form-group label { display: block; font-size: .84rem; font-weight: 700; margin-bottom: .42rem; color: var(--dark); }
.required {
  background: var(--secondary);
  color: #fff;
  font-size: .62rem;
  padding: .1rem .42rem;
  border-radius: 4px;
  margin-left: .32rem;
  vertical-align: middle;
  font-weight: 700;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .78rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-family: var(--font-jp);
  font-size: .9rem;
  color: var(--text);
  background: var(--bg-light);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(108,142,245,.14);
}
.form-group textarea { resize: vertical; }
.form-note { text-align: center; font-size: .76rem; color: var(--text-muted); margin-top: .82rem; }

.contact-success { text-align: center; padding: 3rem 2rem; }
.contact-success i  { font-size: 3.5rem; color: var(--accent); margin-bottom: 1rem; display: block; }
.contact-success h3 { font-size: 1.18rem; font-weight: 900; margin-bottom: .6rem; color: var(--dark); }
.contact-success p  { color: var(--text-sub); font-size: .88rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark); color: rgba(255,255,255,.6); padding-top: 60px; }
.footer__inner {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand .header__logo { margin-bottom: .95rem; }
.footer__brand p { font-size: .86rem; line-height: 1.85; }
.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer__col h4 {
  font-size: .78rem; font-weight: 700; color: #fff;
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: .95rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer__col li,
.footer__col a  { font-size: .84rem; color: rgba(255,255,255,.5); transition: color .2s; display: flex; align-items: center; gap: .45rem; }
.footer__col a:hover { color: #fff; }
.footer__col li i { font-size: .72rem; color: var(--primary-mid); }

.footer__bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 24px;
  max-width: 1140px; margin: 0 auto;
  font-size: .78rem; color: rgba(255,255,255,.28);
  flex-wrap: wrap; gap: .7rem;
}
.footer__bottom-links { display: flex; gap: 1.4rem; }
.footer__bottom-links a { color: rgba(255,255,255,.28); transition: color .2s; }
.footer__bottom-links a:hover { color: rgba(255,255,255,.65); }

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 46px; height: 46px;
  background: var(--grad-main);
  color: #fff; border: none; border-radius: 50%;
  font-size: .95rem; cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0; pointer-events: none; z-index: 900;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover   { transform: translateY(-3px) scale(1.06); }

/* ============================================================
   ANIMATIONS
   ============================================================ */
.animate-fade-up,
.animate-slide-up,
.animate-scale {
  opacity: 0;
  transition: opacity .65s ease, transform .65s ease;
}
.animate-fade-up  { transform: translateY(28px); }
.animate-slide-up { transform: translateY(36px); }
.animate-scale    { transform: scale(.96); }

.animate-fade-up.visible,
.animate-slide-up.visible,
.animate-scale.visible { opacity: 1; transform: none; }

.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .44s; }
.delay-5 { transition-delay: .56s; }

/* Hero always visible */
.hero .animate-fade-up             { animation: heroFadeUp .65s 0s   both; opacity: 1 !important; transform: none !important; }
.hero .animate-fade-up.delay-1     { animation: heroFadeUp .65s .1s  both; }
.hero .animate-fade-up.delay-2     { animation: heroFadeUp .65s .22s both; }
.hero .animate-fade-up.delay-3     { animation: heroFadeUp .65s .36s both; }
.hero .animate-fade-up.delay-4     { animation: heroFadeUp .65s .52s both; }

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Card fade in for tab switch */
@keyframes cardFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .ai-tools-grid        { grid-template-columns: repeat(2, 1fr); }
  .paths-grid           { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid    { grid-template-columns: repeat(2, 1fr); }
  .skills-layout        { grid-template-columns: 1fr; gap: 3rem; }
  .analysis-layout      { grid-template-columns: 1fr; gap: 3rem; }
  .analysis-visual      { order: -1; }
  .footer__inner        { grid-template-columns: 1fr; gap: 2.25rem; }
}

@media (max-width: 768px) {
  .section { padding: 68px 0; }
  .header__nav, .header__cta { display: none; }
  .hamburger { display: flex; }

  .flow-steps  { flex-direction: column; }
  .flow-arrow  { transform: rotate(90deg); }
  .flow-step   { max-width: 100%; width: 100%; }

  .ai-tools-grid     { grid-template-columns: 1fr; }
  .paths-grid        { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-wrapper   { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-form-wrap { padding: 1.7rem; }
  .results-banner    { flex-direction: column; gap: 1.75rem; }
  .results-banner__divider { width: 56px; height: 1px; }
  .footer__links     { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom    { flex-direction: column; text-align: center; }
  .footer__bottom-links { flex-direction: column; gap: .45rem; }
  .hero__stats       { gap: 1.15rem; padding: 1.4rem 1.25rem; }
  .stat__divider     { display: none; }
}

@media (max-width: 480px) {
  .hero__title   { font-size: 2.1rem; }
  .hero__actions { flex-direction: column; align-items: center; }
  .btn--lg       { width: 100%; justify-content: center; }
  .hero__stats   { flex-direction: column; gap: .9rem; }
  .analysis-circle { width: 260px; height: 260px; }
  .analysis-circle__inner { width: 80px; height: 80px; font-size: .75rem; }
  .analysis-circle__inner i { font-size: 1.35rem; }
  .footer__links { grid-template-columns: 1fr; }
  .value-grid    { grid-template-columns: 1fr; }
  .content-grid  { grid-template-columns: 1fr; }
}
