/* ==========================================================================
   Smart Labo Works — Homepage
   Brand: Enterprise AI Platform (PROJECT_BIBLE/00_Foundation/07_Brand_Identity.md)
   正式カラーパレット(BRAND/colors/palette.md 準拠)
   Brand Color: Smart Blue #2563EB のみ。Light Blue/Accent BlueはSmart Blue Family(階調)
   ========================================================================== */

:root {
  /* Primary Navy #0A1B3D の階調(セクション背景用) */
  --navy-900: #0A1B3D;
  --navy-800: #0F2A56;
  --navy-700: #163B72;
  --navy-600: #1D4E93;

  /* Smart Blue Family(唯一のブランドカラー Smart Blue #2563EB とその階調) */
  --smart-blue: #2563EB;
  --smart-blue-light: #60A5FA;
  --smart-blue-accent: #00D4FF;
  --smart-blue-dark: #1D4ED8;

  --white: #FFFFFF;
  --light-gray: #F3F6FA;
  --gray: #64748B;
  --dark-gray: #1E293B;
  --border-light: #E4E8F0;
  --text-primary: #1E293B;
  --text-secondary: #64748B;
  --text-on-navy: #FFFFFF;
  --text-on-navy-secondary: #C3D2F0;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.35s;

  --font-sans: "Hiragino Sans", "Noto Sans JP", "Yu Gothic", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ---------------------------------- Buttons ---------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-sm);
  padding: 14px 28px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background-color var(--dur) var(--ease), border-color var(--dur) var(--ease);
  white-space: nowrap;
}

.btn--lg { padding: 16px 32px; font-size: 16px; border-radius: var(--radius-md); }
.btn--sm { padding: 10px 18px; font-size: 13px; border-radius: var(--radius-sm); }

.btn--primary {
  background: var(--smart-blue);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(47, 107, 255, 0.28);
}
.btn--primary:hover {
  background: var(--smart-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(47, 107, 255, 0.38);
}

.btn--secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

.btn--ghost-light {
  background: transparent;
  color: var(--text-on-navy);
  border-color: rgba(255, 255, 255, 0.3);
}
.btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--text {
  padding: 8px 0;
  color: var(--text-on-navy);
  font-weight: 600;
  border: none;
  opacity: 0.85;
}
.btn--text:hover { opacity: 1; gap: 12px; }
.btn--text-light { color: var(--white); }

.btn__tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--smart-blue-light);
  background: rgba(96, 165, 250, 0.14);
  border: 1px solid rgba(96, 165, 250, 0.35);
  border-radius: 100px;
  padding: 2px 8px;
  margin-left: 2px;
}
.btn--ghost-light .btn__tag { color: rgba(255,255,255,0.75); background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.25); }
.btn__tag--footer { color: var(--smart-blue); background: rgba(37,99,235,0.08); border-color: rgba(37,99,235,0.25); }

/* ---------------------------------- Header ---------------------------------- */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 26, 60, 0.85);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo { display: flex; align-items: center; gap: 14px; }
.logo__text { color: var(--white); font-weight: 700; font-size: 17px; letter-spacing: -0.01em; }
.logo__text em { font-style: normal; font-weight: 400; opacity: 0.75; margin-left: 2px; }

.nav { display: flex; gap: 36px; }
.nav a { color: var(--text-on-navy-secondary); font-size: 14.5px; font-weight: 500; transition: color var(--dur) var(--ease); }
.nav a:hover { color: var(--white); }

.header__actions { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--white); border-radius: 2px; }

/* ---------------------------------- Hero ---------------------------------- */

.hero {
  position: relative;
  padding: 84px 0 200px;
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
  overflow: hidden;
}

.hero__bg { position: absolute; inset: 0; }

.hero__grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(96, 165, 250, 0.16) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: linear-gradient(180deg, transparent, black 15%, black 70%, transparent);
  mask-image: linear-gradient(180deg, transparent, black 15%, black 70%, transparent);
}

.hero__glow {
  position: absolute;
  top: -160px;
  right: -120px;
  width: 680px;
  height: 680px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.32) 0%, rgba(37, 99, 235, 0) 68%);
  filter: blur(4px);
  animation: hero-glow-drift 14s ease-in-out infinite;
}
@keyframes hero-glow-drift {
  0%, 100% { transform: translate(0, 0); opacity: 1; }
  50% { transform: translate(-24px, 18px); opacity: 0.8; }
}

.hero__particles { position: absolute; inset: 0; overflow: hidden; }
.hero__particles span {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--smart-blue-light);
  opacity: 0.5;
  animation: hero-particle-float 9s ease-in-out infinite;
}
.hero__particles span:nth-child(1) { top: 18%; left: 8%;  animation-delay: 0s;    }
.hero__particles span:nth-child(2) { top: 32%; left: 22%; animation-delay: 1.2s;  }
.hero__particles span:nth-child(3) { top: 12%; left: 40%; animation-delay: 2.4s;  }
.hero__particles span:nth-child(4) { top: 55%; left: 12%; animation-delay: 3.6s;  }
.hero__particles span:nth-child(5) { top: 40%; left: 33%; animation-delay: 4.8s;  }
.hero__particles span:nth-child(6) { top: 24%; left: 48%; animation-delay: 6s;    }
@keyframes hero-particle-float {
  0%, 100% { transform: translateY(0); opacity: 0.15; }
  50% { transform: translateY(-16px); opacity: 0.6; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__glow, .hero__particles span, .cc-node--core, .cc-node--core::before,
  .cc-providers::before, .cc-providers .cc-node::before, .control-center__live-dot,
  .cc-status-dot, .hero__scroll-cue svg, .cc-processing__dots span { animation: none !important; }
}

.hero__city {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 260px;
  background-image: linear-gradient(180deg, rgba(10, 27, 61, 0.18) 0%, rgba(10, 27, 61, 0.3) 45%, rgba(10, 27, 61, 0.68) 100%), url('../img/hero/hero_background_02_city_network.webp');
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
}
.hero__city-fade {
  position: absolute;
  bottom: 200px;
  left: 0;
  width: 100%;
  height: 90px;
  background: linear-gradient(180deg, var(--navy-800) 0%, rgba(15, 42, 86, 0) 100%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero__logo {
  display: block;
  width: 240px;
  height: auto;
  margin: 0 0 28px;
}
@media (max-width: 640px) {
  .hero__logo { width: 180px; margin-bottom: 20px; }
}

.badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--smart-blue-light);
  background: rgba(47, 107, 255, 0.12);
  border: 1px solid rgba(91, 140, 255, 0.35);
  border-radius: 100px;
  padding: 7px 16px;
  margin: 0 0 22px;
}

.hero__title { margin: 0 0 22px; display: flex; flex-direction: column; gap: 4px; }
.hero__title--main {
  font-size: clamp(38px, 5vw, 54px);
  line-height: 1.25;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.hero__title--sub {
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.4;
  font-weight: 500;
  color: var(--smart-blue-light);
}
.hero__title--accent { color: var(--smart-blue-light); }

.hero__lead {
  font-size: 16px;
  line-height: 1.9;
  color: var(--text-on-navy-secondary);
  margin: 0 0 38px;
  max-width: 480px;
}

.hero__cta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-bottom: 22px; }

.hero__status { font-size: 13px; color: rgba(255,255,255,0.5); margin: 0; }

/* Hero device mockup */
.hero__visual { position: relative; }
.device { position: relative; }
.device__screen {
  background: #0B1730;
  border: 1px solid rgba(124, 166, 255, 0.28);
  border-radius: 14px 14px 4px 4px;
  padding: 18px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.45);
}
.device__base {
  height: 14px;
  background: linear-gradient(180deg, #2A3B5C, #16203A);
  border-radius: 0 0 10px 10px;
  margin: 0 -6px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.35);
}
.hero__visual-note {
  font-size: 11.5px;
  color: rgba(255,255,255,0.4);
  text-align: center;
  margin: 14px 0 0;
}

.dash { background: #0F1E3D; border-radius: 10px; padding: 20px; }
.dash__topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.dash__title { color: var(--white); font-size: 13px; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.dash__demo-badge {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--smart-blue-light);
  background: rgba(96, 165, 250, 0.16);
  border: 1px solid rgba(96, 165, 250, 0.4);
  border-radius: 4px;
  padding: 2px 6px;
}
.dash__avatar { width: 24px; height: 24px; border-radius: 50%; background: var(--smart-blue); color: var(--white); font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.dash__subtitle { color: #7C8CB5; font-size: 11.5px; margin: 0 0 16px; }

.dash__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 18px; }
.dash__stat { background: #152A56; border-radius: 8px; padding: 12px 10px; display: flex; flex-direction: column; gap: 6px; }
.dash__stat--accent { background: rgba(47,107,255,0.18); }
.dash__stat-label { font-size: 10px; color: #8FA6D6; }
.dash__stat-value { font-size: 17px; color: var(--white); font-weight: 700; }
.dash__stat-value small { font-size: 10px; font-weight: 500; color: #8FA6D6; margin-left: 1px; }

.dash__chart { display: flex; align-items: flex-end; gap: 8px; height: 64px; }
.bar { flex: 1; background: rgba(47, 107, 255, 0.35); border-radius: 3px 3px 0 0; }
.bar--accent { background: var(--smart-blue-light); }

/* ---------------------------------- Sections (generic) ---------------------------------- */

.section { padding: 96px 0; }
.section--white { background: var(--white); }
.section--gray { background: var(--light-gray); }
.section--navy { background: var(--navy-900); }
.section--navy-deep {
  background: linear-gradient(180deg, #071630 0%, var(--navy-900) 100%);
  padding: 88px 0;
}
.section--cta {
  background: linear-gradient(135deg, var(--navy-800) 0%, var(--navy-600) 100%);
  padding: 88px 0;
}

.eyebrow { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; color: var(--smart-blue); text-transform: uppercase; margin: 0 0 12px; }
.eyebrow--light { color: var(--smart-blue-light); }
.eyebrow--center { text-align: center; }

.section__title { font-size: clamp(26px, 3vw, 34px); color: var(--text-primary); margin: 0 0 16px; }
.section__title--light { color: var(--white); }
.section__title--center { text-align: center; }

.section__lead { font-size: 16px; color: var(--text-secondary); max-width: 560px; margin: 0 0 56px; line-height: 1.9; }
.section__lead--center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------------------------------- Timeline ---------------------------------- */

.timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.timeline__item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 26px 18px;
  text-align: center;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.timeline__item:hover { background: rgba(255,255,255,0.06); transform: translateY(-4px); }
.timeline__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--smart-blue), var(--smart-blue-dark));
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.32);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.timeline__time { display: block; font-size: 12px; color: var(--smart-blue-light); font-weight: 700; margin-bottom: 6px; }
.timeline__label { color: var(--white); font-size: 15px; margin: 0 0 8px; }
.timeline__desc { color: var(--text-on-navy-secondary); font-size: 13px; line-height: 1.7; margin: 0; }

/* ---------------------------------- Value grid (主要機能) ---------------------------------- */

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.value-card:hover {
  box-shadow: 0 16px 40px rgba(16, 24, 40, 0.08);
  transform: translateY(-4px);
  border-color: rgba(47,107,255,0.25);
}
.value-card__icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--smart-blue), var(--smart-blue-dark));
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.28);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.value-card__title { font-size: 17px; margin: 0 0 10px; }
.value-card__desc { font-size: 14px; color: var(--text-secondary); margin: 0; line-height: 1.8; }

/* ---------------------------------- Company Brain ---------------------------------- */

.brain-section { position: relative; overflow: hidden; }
.brain-glow {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(37,99,235,0.28) 0%, rgba(37,99,235,0) 70%);
  filter: blur(10px);
  pointer-events: none;
}

.brain {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.brain__icon-badge {
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--smart-blue), var(--smart-blue-dark));
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.35);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.brain__subtitle {
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  color: var(--white);
  margin: -8px 0 8px;
}
.brain__catch {
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 600;
  color: var(--smart-blue-light);
  margin: 0 0 22px;
}
.brain__desc {
  font-size: 15.5px;
  line-height: 1.9;
  color: var(--text-on-navy-secondary);
  max-width: 480px;
  margin: 0 0 28px;
}
.brain__desc strong { color: var(--smart-blue-light); font-weight: 700; }

.brain__examples { display: flex; flex-wrap: wrap; gap: 10px; }
.brain__examples li {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  color: var(--text-on-navy-secondary);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: 100px;
}

.brain__chat {
  position: relative;
  background: rgba(255,255,255,0.045);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.06);
}
.brain__chat-top { display: flex; align-items: center; gap: 6px; margin-bottom: 18px; }
.brain__chat-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.brain__chat-title { color: var(--text-on-navy-secondary); font-size: 12px; font-weight: 600; margin-left: 8px; }

.brain__msg { font-size: 13.5px; line-height: 1.75; border-radius: 14px; padding: 12px 16px; margin-bottom: 12px; max-width: 88%; }
.brain__msg--user {
  background: rgba(255,255,255,0.07);
  color: var(--white);
  border-radius: 14px 14px 4px 14px;
  margin-left: auto;
  max-width: 70%;
}
.brain__msg--ai {
  background: linear-gradient(135deg, var(--smart-blue), var(--smart-blue-dark));
  color: var(--white);
  border-radius: 14px 14px 14px 4px;
  box-shadow: 0 10px 24px rgba(37,99,235,0.3);
}
.brain__ai-label { display: block; font-size: 11px; font-weight: 700; opacity: 0.75; margin-bottom: 4px; letter-spacing: 0.02em; }
.brain__msg-next {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.brain__msg-next span {
  background: rgba(255,255,255,0.14);
  border-radius: 100px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
}

.brain-scenarios { margin-top: 56px; }
.brain-scenarios__label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--smart-blue-light);
  margin: 0 0 20px;
}
.brain-scenarios__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.brain-scenario {
  background: rgba(255,255,255,0.045);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: 22px;
}
.brain-scenario__q {
  color: var(--white);
  font-size: 14.5px;
  font-weight: 700;
  margin: 0 0 14px;
}
.brain-scenario__flow { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.brain-scenario__flow span:not(.brain-scenario__arrow) {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--text-on-navy-secondary);
  font-size: 12px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 100px;
}
.brain-scenario__arrow { color: var(--smart-blue-light); font-size: 13px; }

/* ---------------------------------- Stats (導入メリット) ---------------------------------- */

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border-light);
}
.stat-card__value { display: block; font-size: 30px; font-weight: 700; color: var(--smart-blue-dark); margin-bottom: 8px; }
.stat-card__value small { font-size: 14px; font-weight: 500; color: var(--text-secondary); margin-left: 2px; }
.stat-card__label { font-size: 13.5px; color: var(--text-secondary); }
.stat-card--text { display: flex; flex-direction: column; justify-content: center; }
.stat-card__phrase { display: block; font-size: 19px; font-weight: 700; color: var(--smart-blue-dark); margin-bottom: 10px; line-height: 1.5; }

.check-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}
.check-list li { display: flex; align-items: center; gap: 8px; font-size: 14.5px; font-weight: 600; color: var(--text-primary); }

/* ---------------------------------- Industries ---------------------------------- */

.industry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.industry-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border-light);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.industry-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(16,24,40,0.1); }
.industry-card__icon {
  height: 96px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-800));
}
.industry-card h3 { font-size: 15px; margin: 20px 20px 8px; }
.industry-card p { font-size: 13px; color: var(--text-secondary); margin: 0 20px 20px; line-height: 1.7; }

/* ---------------------------------- Mission ---------------------------------- */

.mission { text-align: center; max-width: 720px; }
.mission__quote {
  margin: 0 0 24px;
  font-size: clamp(24px, 3.4vw, 36px);
  line-height: 1.5;
  color: var(--text-primary);
  font-weight: 700;
}
.mission__sub { font-size: 15px; color: var(--text-secondary); margin: 0; }

/* ---------------------------------- CTA ---------------------------------- */

.cta { text-align: center; }
.cta__title { font-size: clamp(24px, 3vw, 32px); color: var(--white); margin: 0 0 16px; line-height: 1.5; }
.cta__lead { font-size: 14.5px; color: var(--text-on-navy-secondary); margin: 0 0 36px; }
.cta__actions { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.cta__note { font-size: 12.5px; color: rgba(255,255,255,0.4); margin: 28px 0 0; }
.only-mobile { display: none; }

/* ---------------------------------- Footer ---------------------------------- */

.footer { background: #071630; padding: 72px 0 0; }
.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand .logo { margin-bottom: 14px; }
.footer__tagline { color: var(--text-on-navy-secondary); font-size: 13.5px; margin: 0; }
.footer__col h4 { color: var(--white); font-size: 13px; margin: 0 0 16px; }
.footer__col a { display: block; color: var(--text-on-navy-secondary); font-size: 13.5px; margin-bottom: 12px; transition: color var(--dur) var(--ease); }
.footer__col a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 12.5px;
  color: rgba(255,255,255,0.4);
}
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { color: rgba(255,255,255,0.4); }
.footer__legal a:hover { color: rgba(255,255,255,0.75); }

/* ---------------------------------- Scroll reveal ---------------------------------- */

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------------------------------- Responsive ---------------------------------- */

@media (max-width: 1080px) {
  .timeline { grid-template-columns: repeat(3, 1fr); }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr 1fr; }
}

/* ナビゲーション項目が5つに増えたため(Company Brain追加)、860pxより広い1100px以下でハンバーガーメニューへ切り替える */
@media (max-width: 1100px) {
  .nav, .header__actions { display: none; }
  .nav-toggle { display: flex; }
  .nav.is-open {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--navy-900);
    padding: 12px 32px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav.is-open a { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
}

@media (max-width: 860px) {
  .hero { padding-bottom: 170px; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { order: -1; }
  .hero__lead { max-width: none; }
  .hero__city { height: 170px; }
  .hero__city-fade { bottom: 130px; }

  .timeline { grid-template-columns: 1fr 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .brain { grid-template-columns: 1fr; gap: 40px; }
  .brain__desc { max-width: none; }
  .brain-scenarios__grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .only-mobile { display: inline; }
}

@media (max-width: 520px) {
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .hero { padding: 56px 0 190px; }
  .hero__city { height: 150px; }
  .hero__city-fade { bottom: 115px; }
  .timeline { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; }
  .cta__actions { flex-direction: column; width: 100%; }
  .cta__actions .btn { width: 100%; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .hero__cta .btn--text { align-self: center; width: auto; }
}

/* ==========================================================================
   Homepage V2 追加分(2026-07-12 CEO承認「ホームページVersion2リニューアル」)
   既存のブランドカラー変数(--navy-*, --smart-blue*)以外は追加しない。
   ========================================================================== */

/* ---------------------------------- Smart AI Router 図解 ---------------------------------- */

.router-diagram {
  max-width: 620px;
  margin: 56px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.router-node {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  color: var(--text-on-navy-secondary);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 100px;
}
.router-node--core {
  position: relative;
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  padding: 20px 40px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--smart-blue), var(--smart-blue-dark));
  box-shadow: 0 18px 40px rgba(37,99,235,0.4);
}
.router-node--core::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: inherit;
  border: 1px solid rgba(96,165,250,0.5);
  animation: router-pulse 2.4s var(--ease) infinite;
}
@keyframes router-pulse {
  0%   { transform: scale(0.96); opacity: 0.7; }
  70%  { transform: scale(1.12); opacity: 0; }
  100% { transform: scale(1.12); opacity: 0; }
}
.router-arrow { color: rgba(255,255,255,0.3); font-size: 15px; line-height: 1; margin: 10px 0; }

.router-providers {
  display: flex;
  gap: 14px;
  margin: 10px 0;
  flex-wrap: wrap;
  justify-content: center;
}
.router-providers .router-node { font-size: 13px; padding: 10px 22px; }

.router-result {
  margin-top: 22px;
  text-align: center;
}
.router-result__title { color: var(--white); font-size: 17px; font-weight: 700; margin: 0 0 6px; }
.router-result__desc { color: var(--text-on-navy-secondary); font-size: 13.5px; margin: 0; }

/* ---------------------------------- AI社員カード ---------------------------------- */

.employee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.employee-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.employee-card:hover { box-shadow: 0 16px 40px rgba(16,24,40,0.08); transform: translateY(-4px); border-color: rgba(47,107,255,0.25); }
.employee-card__icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--smart-blue), var(--smart-blue-dark));
  box-shadow: 0 8px 18px rgba(37,99,235,0.28);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.employee-card__role { font-size: 11.5px; font-weight: 700; letter-spacing: 0.04em; color: var(--smart-blue); text-transform: uppercase; margin: 0 0 6px; }
.employee-card__title { font-size: 16.5px; margin: 0 0 10px; }
.employee-card__desc { font-size: 13.5px; color: var(--text-secondary); margin: 0; line-height: 1.8; }

/* ---------------------------------- Smart Labo Works 画面ショーケース ---------------------------------- */

.screens-showcase {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  padding: 8px 4px 20px;
  margin: 8px -4px 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.screens-showcase::-webkit-scrollbar { height: 6px; }
.screens-showcase::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.16); border-radius: 100px; }

.screen-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  background: #0F1E3D;
  border: 1px solid rgba(124,166,255,0.22);
  border-radius: var(--radius-lg);
  padding: 18px;
  box-shadow: 0 24px 54px rgba(0,0,0,0.35);
}
.screen-card__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.screen-card__title { color: var(--white); font-size: 13px; font-weight: 700; }
.screen-card__badge {
  font-size: 9.5px; font-weight: 700; letter-spacing: 0.04em;
  color: var(--smart-blue-light);
  background: rgba(96,165,250,0.16);
  border: 1px solid rgba(96,165,250,0.4);
  border-radius: 4px; padding: 2px 6px;
}
.screen-card__body { background: #152A56; border-radius: 10px; padding: 16px; min-height: 220px; }
.screen-card__caption { color: var(--text-on-navy-secondary); font-size: 12.5px; margin: 14px 2px 0; line-height: 1.7; }

.screen-row { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.screen-row:last-child { border-bottom: none; }
.screen-row__name { color: var(--white); font-size: 12.5px; font-weight: 600; }
.screen-row__meta { color: #8FA6D6; font-size: 11px; }
.screen-tag { font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 100px; background: rgba(96,165,250,0.16); color: var(--smart-blue-light); }
.screen-tag--done { background: rgba(74,222,128,0.16); color: #4ADE80; }
.screen-tag--warn { background: rgba(251,191,36,0.16); color: #FBBF24; }

.screen-msg { font-size: 12px; line-height: 1.7; border-radius: 10px; padding: 9px 12px; margin-bottom: 8px; max-width: 92%; }
.screen-msg--user { background: rgba(255,255,255,0.07); color: var(--white); margin-left: auto; border-radius: 10px 10px 3px 10px; max-width: 78%; }
.screen-msg--ai { background: linear-gradient(135deg, var(--smart-blue), var(--smart-blue-dark)); color: var(--white); border-radius: 10px 10px 10px 3px; }

.screen-showcase-hint { color: rgba(255,255,255,0.4); font-size: 12px; text-align: center; margin: 4px 0 0; }

/* ---------------------------------- 業種展開 v2 ---------------------------------- */

.industry-grid2 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.industry-card2 {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 22px 18px;
  text-align: center;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.industry-card2:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(16,24,40,0.1); }
.industry-card2__icon {
  width: 44px; height: 44px; margin: 0 auto 14px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--navy-700), var(--navy-800));
  display: flex; align-items: center; justify-content: center;
}
.industry-card2 h3 { font-size: 14px; margin: 0 0 10px; }
.industry-card2__badge {
  display: inline-block;
  font-size: 10.5px; font-weight: 700;
  border-radius: 100px; padding: 4px 12px;
  background: rgba(100,116,139,0.12); color: var(--text-secondary);
}
.industry-card2__badge--active {
  background: rgba(37,99,235,0.1); color: var(--smart-blue);
}

/* ---------------------------------- 導入効果ストーリー ---------------------------------- */

.flow-story {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0 0 48px;
}
.flow-step {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
}
.flow-step--accent { background: var(--smart-blue); color: var(--white); border-color: transparent; box-shadow: 0 8px 20px rgba(37,99,235,0.28); }
.flow-arrow { color: var(--smart-blue); font-size: 16px; margin: 0 6px; }

/* ---------------------------------- 料金 ---------------------------------- */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px rgba(16,24,40,0.1); }
.pricing-card--featured { border-color: var(--smart-blue); box-shadow: 0 20px 48px rgba(37,99,235,0.16); position: relative; }
.pricing-card__badge {
  position: absolute; top: -12px; left: 30px;
  background: var(--smart-blue); color: var(--white);
  font-size: 11px; font-weight: 700; padding: 5px 14px; border-radius: 100px;
}
.pricing-card__plan { font-size: 13px; font-weight: 700; letter-spacing: 0.04em; color: var(--smart-blue); margin: 0 0 10px; }
.pricing-card__price { font-size: 22px; font-weight: 700; color: var(--text-primary); margin: 0 0 6px; }
.pricing-card__price small { font-size: 13px; font-weight: 500; color: var(--text-secondary); }
.pricing-card__desc { font-size: 13.5px; color: var(--text-secondary); margin: 0 0 24px; line-height: 1.8; }
.pricing-card__list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.pricing-card__list li { display: flex; align-items: flex-start; gap: 8px; font-size: 13.5px; color: var(--text-primary); }
.pricing-card__list svg { flex-shrink: 0; margin-top: 2px; }
.pricing-card .btn { width: 100%; }

/* ---------------------------------- Responsive (V2追加分) ---------------------------------- */

@media (max-width: 1080px) {
  .employee-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-grid2 { grid-template-columns: repeat(3, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
}
@media (max-width: 860px) {
  .employee-grid { grid-template-columns: 1fr; }
  .industry-grid2 { grid-template-columns: repeat(2, 1fr); }
  .flow-story { justify-content: flex-start; }
  .router-providers { gap: 10px; }
}

/* ==========================================================================
   Smart Labo AI — ホームページAIチャット(2026-07-12 CEO承認「Smart Labo AI Demo」)
   Apple / Linear / OpenAI レベルのシンプルさ。余白を多く、アニメーションは控えめ。
   ========================================================================== */

.ai-chat { position: fixed; right: 24px; bottom: 24px; z-index: 200; }

.ai-chat__toggle {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--smart-blue);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px rgba(37,99,235,0.4);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
}
.ai-chat__toggle:hover { transform: translateY(-2px) scale(1.04); box-shadow: 0 14px 34px rgba(37,99,235,0.48); }
.ai-chat__toggle svg { transition: opacity 0.2s var(--ease), transform 0.2s var(--ease); }
.ai-chat__toggle .ai-chat__icon-close { display: none; }
.ai-chat.is-open .ai-chat__icon-open { display: none; }
.ai-chat.is-open .ai-chat__icon-close { display: block; }

.ai-chat__badge {
  position: absolute;
  top: -4px; right: -4px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #4ADE80;
  border: 2px solid var(--white);
}

.ai-chat__window {
  position: absolute;
  right: 0;
  bottom: 74px;
  width: 380px;
  max-height: min(620px, 76vh);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 70px rgba(10,26,60,0.28);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}
.ai-chat.is-open .ai-chat__window { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }

.ai-chat__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  flex-shrink: 0;
}
.ai-chat__header-info { display: flex; align-items: center; gap: 12px; }
.ai-chat__avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--smart-blue);
  color: var(--white);
  font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.ai-chat__title { color: var(--white); font-size: 14px; font-weight: 700; margin: 0; }
.ai-chat__status { color: var(--text-on-navy-secondary); font-size: 11.5px; margin: 2px 0 0; }
.ai-chat__close {
  background: none; border: none; color: rgba(255,255,255,0.6);
  font-size: 20px; line-height: 1; cursor: pointer; padding: 4px;
  transition: color var(--dur) var(--ease);
}
.ai-chat__close:hover { color: var(--white); }

.ai-chat__messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--light-gray);
}

.ai-msg { max-width: 88%; font-size: 13.5px; line-height: 1.75; }
.ai-msg--user { align-self: flex-end; }
.ai-msg--user .ai-msg__bubble { background: var(--smart-blue); color: var(--white); border-radius: 14px 14px 4px 14px; }
.ai-msg--bot { align-self: flex-start; }
.ai-msg--bot .ai-msg__bubble { background: var(--white); color: var(--text-primary); border: 1px solid var(--border-light); border-radius: 14px 14px 14px 4px; }
.ai-msg__bubble { padding: 12px 15px; white-space: pre-wrap; }
.ai-msg__bubble p { margin: 0 0 8px; }
.ai-msg__bubble p:last-child { margin-bottom: 0; }

.ai-msg__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.ai-chip {
  background: var(--white);
  border: 1px solid rgba(37,99,235,0.3);
  color: var(--smart-blue);
  font-size: 12.5px; font-weight: 600;
  padding: 8px 14px;
  border-radius: 100px;
  cursor: pointer;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.ai-chip:hover { background: rgba(37,99,235,0.06); border-color: var(--smart-blue); }

.ai-agent-list { display: flex; flex-direction: column; gap: 6px; margin-top: 12px; }
.ai-agent-row { display: flex; align-items: center; justify-content: space-between; background: var(--light-gray); border-radius: 8px; padding: 8px 12px; }
.ai-agent-row__name { font-size: 12.5px; font-weight: 600; color: var(--text-primary); }
.ai-agent-row__tag { font-size: 10px; font-weight: 700; color: var(--smart-blue); background: rgba(37,99,235,0.1); border-radius: 100px; padding: 2px 9px; }
.ai-agent-row__tag--soon { color: var(--text-secondary); background: rgba(100,116,139,0.12); }

.ai-msg--typing .ai-msg__bubble { display: flex; gap: 4px; align-items: center; padding: 14px 16px; }
.ai-typing-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gray); opacity: 0.5; animation: ai-typing 1.2s ease-in-out infinite; }
.ai-typing-dot:nth-child(2) { animation-delay: 0.15s; }
.ai-typing-dot:nth-child(3) { animation-delay: 0.3s; }
@keyframes ai-typing { 0%, 60%, 100% { opacity: 0.35; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }

.ai-chat__footer-cta {
  flex-shrink: 0;
  padding: 10px 20px;
  background: var(--white);
  border-top: 1px solid var(--border-light);
  font-size: 11.5px;
  color: var(--text-secondary);
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.ai-chat__footer-cta a { color: var(--smart-blue); font-weight: 700; }
.ai-chat__footer-cta a:hover { text-decoration: underline; }

.ai-chat__input-row {
  flex-shrink: 0;
  display: flex;
  gap: 8px;
  padding: 14px;
  background: var(--white);
  border-top: 1px solid var(--border-light);
}
.ai-chat__input-row input {
  flex: 1;
  border: 1px solid var(--border-light);
  border-radius: 100px;
  padding: 11px 16px;
  font-size: 13.5px;
  font-family: inherit;
  outline: none;
  transition: border-color var(--dur) var(--ease);
}
.ai-chat__input-row input:focus { border-color: var(--smart-blue); }
.ai-chat__send {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--smart-blue);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.ai-chat__send:hover { background: var(--smart-blue-dark); transform: scale(1.05); }
.ai-chat__send:disabled { opacity: 0.5; cursor: default; transform: none; }

@media (max-width: 520px) {
  .ai-chat { right: 16px; bottom: 16px; }
  .ai-chat__window {
    position: fixed;
    right: 12px; left: 12px; bottom: 88px;
    width: auto;
    max-height: min(72vh, 640px);
  }
}

/* ==========================================================================
   ページ整理(2026-07-12 CEO承認「情報量整理・製品画面主役化」)
   セクション統合・削減に伴う追加分。新規ブランドカラーは追加しない。
   ========================================================================== */

/* AI社員カードの時間帯タグ(社長の1日タイムラインを統合したことによる追加) */
.employee-card__role { display: flex; align-items: center; gap: 8px; }
.employee-card__time {
  font-size: 10px; font-weight: 700;
  color: var(--text-secondary);
  background: var(--light-gray);
  border-radius: 100px;
  padding: 2px 9px;
  text-transform: none;
  letter-spacing: 0;
}

/* Company Brain 利用イメージ: 1件のみになったため中央寄せ・幅を制限 */
.brain-scenarios .brain-scenario { max-width: 560px; margin: 0 auto; }

/* 製品画面ショーケース(大型2枚構成) */
.big-screens { display: flex; flex-direction: column; gap: 72px; margin-top: 16px; }
.big-screen { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.big-screen--reverse .big-screen__visual { order: 2; }
.big-screen--reverse .big-screen__info { order: 1; }
.big-screen__eyebrow { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; color: var(--smart-blue); text-transform: uppercase; margin: 0 0 12px; }
.big-screen__title { font-size: clamp(20px, 2.4vw, 27px); margin: 0 0 16px; line-height: 1.4; }
.big-screen__desc { font-size: 14.5px; color: var(--text-secondary); line-height: 1.9; margin: 0; max-width: 440px; }
.big-screen__visual .screen-card--lg { max-width: 460px; margin: 0 auto; padding: 26px; }
.big-screen__visual .screen-card--lg .screen-card__body { min-height: 260px; padding: 22px; }
.big-screen__visual .screen-card--lg .screen-card__title { font-size: 14px; }

@media (max-width: 860px) {
  .big-screen, .big-screen--reverse { grid-template-columns: 1fr; }
  .big-screen--reverse .big-screen__visual, .big-screen--reverse .big-screen__info { order: initial; }
  .big-screen__desc { max-width: none; }
  .big-screens { gap: 48px; }
}

/* ==========================================================================
   AI Control Center(2026-07-12 CEO承認「Hero AI Control Center新設」)
   通常の管理画面の縮小表示ではなく、複数AIが連携して動いていることを
   示す状態パネル。Dark Navy / Smart Blue / 半透明パネル / 細い発光ラインのみ。
   新規ブランドカラーは追加しない。
   ========================================================================== */

.control-center {
  background: rgba(255,255,255,0.045);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.06);
}

.control-center__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.control-center__title { color: var(--white); font-size: 13.5px; font-weight: 700; }
.control-center__live { display: flex; align-items: center; gap: 6px; font-size: 10.5px; font-weight: 700; letter-spacing: 0.04em; color: #4ADE80; }
.control-center__live-dot { width: 6px; height: 6px; border-radius: 50%; background: #4ADE80; animation: cc-blink 1.8s ease-in-out infinite; }
@keyframes cc-blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

/* ノードグラフ(Router → 3 Provider)。Routerはゆっくり呼吸するように発光 */
.cc-graph { position: relative; padding-top: 4px; margin-bottom: 16px; }
.cc-node {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  color: var(--text-on-navy-secondary);
  font-size: 11.5px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 100px;
  text-align: center;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.cc-node--core {
  display: block;
  margin: 0 auto 18px;
  width: fit-content;
  color: var(--white);
  font-size: 12.5px;
  font-weight: 700;
  padding: 10px 20px;
  background: linear-gradient(135deg, var(--smart-blue), var(--smart-blue-dark));
  position: relative;
  animation: cc-breathe 3.6s ease-in-out infinite;
}
@keyframes cc-breathe {
  0%, 100% { box-shadow: 0 10px 24px rgba(37,99,235,0.35); }
  50%      { box-shadow: 0 10px 32px rgba(37,99,235,0.55), 0 0 22px rgba(96,165,250,0.35); }
}
.cc-node--core::before {
  content: "";
  position: absolute;
  bottom: -14px; left: 50%;
  width: 1px; height: 14px;
  background: linear-gradient(180deg, rgba(96,165,250,0) 0%, var(--smart-blue-light) 50%, rgba(96,165,250,0) 100%);
  background-size: 100% 300%;
  transform: translateX(-50%);
  animation: cc-flow-y 2s linear infinite;
}
.cc-providers { position: relative; display: flex; justify-content: space-between; gap: 8px; padding-top: 14px; }
.cc-providers::before {
  content: "";
  position: absolute;
  top: 0; left: 16.6%; right: 16.6%;
  height: 1px;
  background: linear-gradient(90deg, rgba(96,165,250,0) 0%, var(--smart-blue-light) 50%, rgba(96,165,250,0) 100%);
  background-size: 300% 100%;
  animation: cc-flow-x 2.6s linear infinite;
}
.cc-providers .cc-node { position: relative; flex: 1; display: flex; align-items: center; justify-content: center; gap: 6px; }
.cc-providers .cc-node::before {
  content: "";
  position: absolute;
  top: -14px; left: 50%;
  width: 1px; height: 14px;
  background: linear-gradient(180deg, rgba(96,165,250,0) 0%, var(--smart-blue-light) 50%, rgba(96,165,250,0) 100%);
  background-size: 100% 300%;
  transform: translateX(-50%);
  animation: cc-flow-y 2s linear infinite;
}
@keyframes cc-flow-y { 0% { background-position: 0 200%; } 100% { background-position: 0 -200%; } }
@keyframes cc-flow-x { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* 処理中のProviderノードは強調表示(JS: hero.jsが数秒ごとに切り替え) */
.cc-providers .cc-node.is-active {
  background: rgba(96,165,250,0.18);
  border-color: rgba(96,165,250,0.6);
  box-shadow: 0 0 16px rgba(96,165,250,0.35);
  color: var(--white);
}

.cc-status-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 6px rgba(74,222,128,0.7);
  animation: cc-blink 2.4s ease-in-out infinite;
}

/* 処理中ステータス行(問い合わせ返信中… など、数秒ごとにJSでローテーション) */
.cc-processing {
  display: flex; align-items: center; gap: 8px;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 12px 0;
  margin-bottom: 16px;
  font-size: 11.5px;
  color: var(--smart-blue-light);
  font-weight: 600;
}
.cc-processing__dots { display: inline-flex; gap: 3px; }
.cc-processing__dots span {
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--smart-blue-light);
  animation: ai-typing 1.2s ease-in-out infinite;
}
.cc-processing__dots span:nth-child(2) { animation-delay: 0.15s; }
.cc-processing__dots span:nth-child(3) { animation-delay: 0.3s; }

.cc-brain-badge {
  display: flex; align-items: center; gap: 8px;
  font-size: 11.5px; font-weight: 600;
  color: var(--text-on-navy-secondary);
  margin-bottom: 18px;
}

/* KPIカード(2x2) */
.cc-kpi-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 18px; }
.cc-kpi {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 10px 12px;
  display: flex; flex-direction: column; gap: 3px;
}
.cc-kpi__value { font-size: 17px; font-weight: 700; color: var(--white); }
.cc-kpi__value small { font-size: 10px; font-weight: 500; color: var(--text-on-navy-secondary); margin-left: 1px; }
.cc-kpi__label { font-size: 10px; color: var(--text-on-navy-secondary); line-height: 1.4; }

.cc-log__label { font-size: 10.5px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin: 0 0 10px; }
.cc-log__item { display: flex; align-items: center; gap: 7px; font-size: 11.5px; color: var(--text-on-navy-secondary); margin-bottom: 8px; }
.cc-log__check { color: #4ADE80; font-weight: 700; }
.cc-log__tag { margin-left: auto; font-size: 10px; font-weight: 700; color: var(--smart-blue-light); background: rgba(96,165,250,0.14); border-radius: 100px; padding: 2px 9px; }

/* Company Brain セクション内の業務フロー図(brain-flowはrouter-node/router-arrowを再利用) */
.brain-flow { display: flex; flex-direction: column; align-items: center; gap: 0; }
.brain-flow__row { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; margin-top: 4px; }

/* Heroスクロール誘導 */
.hero__scroll-cue {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.45);
  font-size: 11.5px;
  font-weight: 500;
  z-index: 2;
  transition: color var(--dur) var(--ease);
}
.hero__scroll-cue:hover { color: rgba(255,255,255,0.8); }
.hero__scroll-cue svg { animation: hero-scroll-bounce 2s ease-in-out infinite; }
@keyframes hero-scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50%      { transform: translateY(5px); opacity: 1; }
}

@media (max-width: 520px) {
  .control-center { padding: 20px; }
  .cc-node--core { font-size: 11.5px; padding: 9px 16px; }
  .cc-providers { flex-wrap: wrap; }
  .hero__scroll-cue { display: none; }
}

/* ==========================================================================
   詳細ページ 共通コンポーネント(2026-07-12 CEO承認「Smart Labo Works 詳細ページ構築」)
   product.html / features.html / real-estate.html / pricing.html / contact.html
   新規ブランドカラーは追加しない。既存のセクション/カードパターンを最大限再利用する。
   ========================================================================== */

/* ページHero(トップページのHeroより簡潔。AI Control Centerは持たない) */
.page-hero {
  position: relative;
  padding: 148px 0 64px;
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 100%);
  text-align: center;
  overflow: hidden;
}
.page-hero__title { font-size: clamp(28px, 3.6vw, 42px); color: var(--white); margin: 0 0 16px; line-height: 1.35; }
.page-hero__lead { font-size: 15px; color: var(--text-on-navy-secondary); max-width: 640px; margin: 0 auto; line-height: 1.9; }
.page-hero__cta { margin-top: 30px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* 実装状況バッジ */
.status-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 3px 10px;
  border-radius: 100px;
  margin-left: 8px;
  vertical-align: middle;
  white-space: nowrap;
}
.status-badge--soon { background: rgba(251,191,36,0.14); color: #B45309; border: 1px solid rgba(251,191,36,0.4); }
.section--navy .status-badge--soon, .section--navy-deep .status-badge--soon, .page-hero .status-badge--soon { color: #FBBF24; }

/* Steps(導入までの流れ)。flow-step/flow-arrowを再利用し、番号バッジを追加 */
.steps-flow { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 4px; margin: 40px 0 0; }
.flow-step__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(255,255,255,0.18); color: inherit;
  font-size: 10px; font-weight: 700; margin-right: 8px;
}
.flow-step--accent .flow-step__num { background: rgba(255,255,255,0.28); }

/* FAQアコーディオン */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1px solid var(--border-light); border-radius: var(--radius-md); overflow: hidden; background: var(--white); }
.faq-item__q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px; cursor: pointer; font-size: 14.5px; font-weight: 600;
  background: none; border: none; width: 100%; text-align: left; font-family: inherit; color: var(--text-primary);
}
.faq-item__q svg { flex-shrink: 0; transition: transform 0.25s var(--ease); color: var(--text-secondary); }
.faq-item.is-open .faq-item__q svg { transform: rotate(180deg); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height 0.3s var(--ease); }
.faq-item.is-open .faq-item__a { max-height: 320px; }
.faq-item__a-inner { padding: 0 22px 18px; font-size: 13.5px; color: var(--text-secondary); line-height: 1.85; }

/* features.html: 機能詳細ブロック */
.feature-layout { display: grid; grid-template-columns: 220px 1fr; gap: 56px; align-items: start; }
.feature-sidebar { position: sticky; top: 96px; display: flex; flex-direction: column; gap: 2px; }
.feature-sidebar a { font-size: 13px; color: var(--text-secondary); padding: 9px 14px; border-radius: 8px; font-weight: 500; }
.feature-sidebar a:hover { background: var(--light-gray); color: var(--smart-blue); }

.feature-block { padding: 52px 0; border-bottom: 1px solid var(--border-light); scroll-margin-top: 96px; }
.feature-block:first-child { padding-top: 0; }
.feature-block:last-child { border-bottom: none; }
.feature-block__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.feature-block__icon {
  width: 46px; height: 46px; border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--smart-blue), var(--smart-blue-dark));
  box-shadow: 0 8px 18px rgba(37,99,235,0.28);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature-block__title { font-size: 22px; margin: 0 0 24px; }
.feature-block__label { font-size: 11px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--smart-blue); margin: 20px 0 8px; }
.feature-block__label:first-of-type { margin-top: 0; }
.feature-block__text { font-size: 14px; color: var(--text-secondary); line-height: 1.85; margin: 0; }
.feature-block__related { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.feature-block__related a { font-size: 12px; padding: 5px 12px; border-radius: 100px; background: var(--light-gray); color: var(--smart-blue); font-weight: 600; }
.feature-block__cta { margin-top: 22px; }

@media (max-width: 960px) {
  .feature-layout { grid-template-columns: 1fr; }
  .feature-sidebar { position: static; flex-direction: row; flex-wrap: wrap; }
  .feature-block__grid { grid-template-columns: 1fr; }
}

/* real-estate.html: よくある課題 */
.problem-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.problem-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-md); padding: 22px; }
.problem-card__q { color: var(--white); font-size: 14.5px; font-weight: 700; margin: 0 0 8px; }
.problem-card__a { color: var(--text-on-navy-secondary); font-size: 13px; line-height: 1.8; margin: 0; }

/* pricing.html: 機能比較表 */
.compare-table-wrap { overflow-x: auto; border: 1px solid var(--border-light); border-radius: var(--radius-md); }
.compare-table { width: 100%; border-collapse: collapse; font-size: 13px; min-width: 560px; }
.compare-table th, .compare-table td { padding: 14px 16px; text-align: center; border-bottom: 1px solid var(--border-light); }
.compare-table th:first-child, .compare-table td:first-child { text-align: left; color: var(--text-primary); font-weight: 500; }
.compare-table thead th { font-weight: 700; color: var(--text-primary); background: var(--light-gray); }
.compare-table tbody tr:last-child td { border-bottom: none; }

/* contact.html: フォーム */
.contact-form { max-width: 640px; margin: 0 auto; background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 40px; }
.form-note { font-size: 12.5px; color: #92400E; background: rgba(251,191,36,0.12); border: 1px solid rgba(251,191,36,0.35); border-radius: var(--radius-sm); padding: 14px 16px; margin-bottom: 28px; line-height: 1.7; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 8px; color: var(--text-primary); }
.form-group .req { color: #DC2626; margin-left: 2px; }
.form-group input[type="text"], .form-group input[type="email"], .form-group input[type="tel"],
.form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px; border: 1px solid var(--border-light); border-radius: var(--radius-sm);
  font-size: 14px; font-family: inherit; outline: none; color: var(--text-primary);
  transition: border-color var(--dur) var(--ease); background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--smart-blue); }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; color: var(--text-secondary); line-height: 1.6; }
.form-checkbox input { margin-top: 3px; flex-shrink: 0; }
.form-error { color: #DC2626; font-size: 12px; margin-top: 6px; display: none; }
.form-group.has-error input, .form-group.has-error select, .form-group.has-error textarea { border-color: #DC2626; }
.form-group.has-error .form-error { display: block; }
.form-submit-note { font-size: 12px; color: var(--text-secondary); text-align: center; margin-top: 16px; }

/* 送信完了画面(contact.html)。送信成功時にフォームと入れ替わりで表示する */
.contact-complete {
  display: none;
  max-width: 560px; margin: 0 auto; text-align: center;
  background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-lg);
  padding: 56px 40px;
}
.contact-complete.is-visible { display: block; }
.contact-complete__icon {
  width: 56px; height: 56px; margin: 0 auto 20px; border-radius: 50%;
  background: rgba(74,222,128,0.14); color: #166534;
  display: flex; align-items: center; justify-content: center; font-size: 26px; font-weight: 700;
}
.contact-complete__title { font-size: 20px; font-weight: 700; color: var(--text-primary); margin: 0 0 12px; }
.contact-complete__receipt { font-size: 13.5px; font-weight: 600; color: var(--smart-blue); margin: 0 0 12px; }
.contact-complete__desc { font-size: 13.5px; color: var(--text-secondary); line-height: 1.8; margin: 0 0 28px; }

.form-error-banner {
  display: none;
  background: rgba(220,38,38,0.08); border: 1px solid rgba(220,38,38,0.3); border-radius: var(--radius-md);
  padding: 18px 20px; font-size: 13.5px; color: #991B1B; margin-bottom: 24px; line-height: 1.8;
}
.form-error-banner.is-visible { display: block; }

/* honeypot(bot対策)。人間には見えない位置へ配置し、display:noneより検知回避されにくい実装にする */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

@media (max-width: 860px) {
  .problem-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .page-hero { padding: 120px 0 48px; }
  .contact-form { padding: 26px; }
  .contact-complete { padding: 40px 24px; }
}

/* ==========================================================================
   ブランド露出強化(2026-07-12 CEO追加指示「ロゴの露出を増やす」)
   派手な演出は禁止。巨大透かしロゴは5〜8%の透明度に限定し、主張しすぎない。
   ========================================================================== */

/* Hero巨大透かしロゴ(index.htmlのみ。奥行きのある高級感を狙う) */
.hero__watermark {
  position: absolute;
  top: 50%;
  right: -160px;
  width: 820px;
  height: 820px;
  transform: translateY(-50%);
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}
.hero__watermark img { width: 100%; height: 100%; object-fit: contain; }

/* page-hero用の控えめな透かしロゴ(詳細ページ共通) */
.page-hero__watermark {
  position: absolute;
  top: 50%;
  right: -80px;
  width: 420px;
  height: 420px;
  transform: translateY(-50%);
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}
.page-hero__watermark img { width: 100%; height: 100%; object-fit: contain; }
.page-hero .container { position: relative; z-index: 1; }

/* AI Control Center: Powered by */
.cc-powered {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  margin-top: 4px; padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 10.5px; color: rgba(255,255,255,0.38); letter-spacing: 0.02em;
}
.cc-powered img { width: 13px; height: 13px; opacity: 0.75; }

@media (max-width: 860px) {
  .hero__watermark { width: 560px; height: 560px; right: -120px; }
}
@media (max-width: 520px) {
  .hero__watermark, .page-hero__watermark { display: none; }
}

/* ==========================================================================
   導入プラン(Pricing Philosophy、2026-07-12 CEO指示、2026-07-13改訂)
   ①利用規模 × ②基本プラン × ③利用モジュール × ④追加オプション の4要素構造。金額は個別相談。
   ========================================================================== */

.plan-step-label { text-align: center; margin-bottom: 40px; }
.plan-step-label__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--smart-blue); color: var(--white);
  font-size: 12px; font-weight: 700; margin-right: 8px;
}

/* ①利用規模 */
.scale-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.scale-card {
  background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-md);
  padding: 26px 22px; text-align: center;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.scale-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(16,24,40,0.08); }
.scale-card__name { font-size: 17px; font-weight: 700; margin: 0 0 8px; }
.scale-card__desc { font-size: 12.5px; color: var(--text-secondary); margin: 0; line-height: 1.7; }

/* ③利用モジュール／④追加オプション */
.option-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.option-item {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-sm);
  padding: 14px 18px;
}
.option-item__name { font-size: 13.5px; font-weight: 600; color: var(--text-primary); display: flex; align-items: center; gap: 10px; }
.status-badge--ready { background: rgba(37,99,235,0.1); color: var(--smart-blue); border: 1px solid rgba(37,99,235,0.25); }
.status-badge--consult { background: var(--light-gray); color: var(--text-secondary); border: 1px solid var(--border-light); }

@media (max-width: 860px) {
  .scale-grid { grid-template-columns: 1fr; }
  .option-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Smart Labo Configurator(2026-07-13 CEO指示)
   Step1〜Step5のシミュレーターUI。既存の.scale-card/.pricing-card/.option-itemを
   選択式に拡張し、新規ブランドカラーは追加しない。
   ========================================================================== */

.cf-step-note { font-size: 13.5px; color: var(--text-secondary); text-align: center; max-width: 560px; margin: -20px auto 32px; line-height: 1.8; }
.cf-placeholder { font-size: 13.5px; color: var(--text-secondary); text-align: center; padding: 24px; border: 1px dashed var(--border-light); border-radius: var(--radius-sm); }

/* 進捗ステップバー */
.cf-progress { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 6px; padding: 28px 0 8px; }
.cf-progress__step { display: flex; align-items: center; gap: 8px; opacity: 0.5; }
.cf-progress__step.is-done { opacity: 1; }
.cf-progress__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%; font-size: 11px; font-weight: 700;
  background: var(--light-gray); color: var(--text-secondary);
}
.cf-progress__step.is-done .cf-progress__num { background: var(--smart-blue); color: var(--white); }
.cf-progress__label { font-size: 12px; font-weight: 600; color: var(--text-secondary); }
.cf-progress__step.is-done .cf-progress__label { color: var(--text-primary); }
.cf-progress__sep { width: 20px; height: 1px; background: var(--border-light); }
.cf-mini-status { text-align: center; font-size: 12.5px; color: var(--text-secondary); margin: 0 0 8px; }

/* 選択式カード(Step1利用規模・Step2基本プラン) */
.cf-selectable { cursor: pointer; position: relative; text-align: center; width: 100%; font: inherit; }
.cf-selectable.is-selected { border-color: var(--smart-blue) !important; box-shadow: 0 12px 28px rgba(37,99,235,0.16); }
.cf-check {
  position: absolute; top: 14px; right: 14px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--smart-blue); color: var(--white);
  font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center;
}

/* Step3 利用モジュール(選択不可・プラン連動表示) */
.module-item.is-excluded { opacity: 0.45; }
.module-item__check { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; border-radius: 5px; background: var(--light-gray); color: var(--text-secondary); font-size: 11px; font-weight: 700; flex-shrink: 0; }
.module-item.is-included .module-item__check { background: rgba(37,99,235,0.14); color: var(--smart-blue); }
.cf-highlights { margin: 18px 0 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.cf-highlights li { font-size: 12px; font-weight: 600; color: var(--smart-blue); background: rgba(37,99,235,0.08); border-radius: 100px; padding: 5px 14px; }

/* Step4 追加オプション(チェックボックス) */
.cf-option-item { cursor: pointer; }
.cf-option-checkbox { width: 16px; height: 16px; accent-color: var(--smart-blue); flex-shrink: 0; }

/* Step5 おすすめ構成サマリー */
.cf-summary { max-width: 640px; margin: 0 auto; background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 32px; }
.cf-summary__list { display: grid; grid-template-columns: 140px 1fr; row-gap: 14px; column-gap: 12px; margin: 0; }
.cf-summary__list dt { font-size: 12.5px; font-weight: 700; color: var(--text-secondary); }
.cf-summary__list dd { font-size: 14px; font-weight: 600; color: var(--text-primary); margin: 0; }
.cf-summary__price { font-size: 13px; color: var(--smart-blue); font-weight: 600; text-align: center; margin: 24px 0 0; padding-top: 20px; border-top: 1px solid var(--border-light); }
.cf-summary__cta { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 22px; }
.cf-summary__cta .btn { flex: 1 1 auto; min-width: 140px; }

@media (max-width: 860px) {
  .cf-progress { gap: 4px; }
  .cf-progress__sep { width: 10px; }
  .cf-summary { padding: 24px 20px; }
  .cf-summary__list { grid-template-columns: 110px 1fr; }
}

/* ==========================================================================
   会社概要ページ(company.html、2026-07-14 CEO指示「正式リリース前 最終整備」)
   ========================================================================== */

.company-info-table-wrap { max-width: 760px; margin: 0 auto; border: 1px solid var(--border-light); border-radius: var(--radius-lg); overflow: hidden; }
.company-info-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.company-info-table th, .company-info-table td { padding: 18px 24px; text-align: left; border-bottom: 1px solid var(--border-light); vertical-align: top; }
.company-info-table tbody tr:last-child th, .company-info-table tbody tr:last-child td { border-bottom: none; }
.company-info-table th { width: 180px; font-weight: 700; color: var(--text-primary); background: var(--light-gray); }
.company-info-table td { color: var(--text-primary); }
.company-info-table__note { font-size: 12px; color: var(--text-secondary); margin: 6px 0 0; line-height: 1.7; }
.company-info__pending { color: var(--text-secondary); font-style: italic; }
.company-info-disclaimer { max-width: 760px; margin: 20px auto 0; font-size: 12.5px; color: var(--text-secondary); line-height: 1.8; text-align: center; }

@media (max-width: 640px) {
  .company-info-table th { width: 120px; padding: 14px 16px; font-size: 13px; }
  .company-info-table td { padding: 14px 16px; font-size: 13px; }
}

/* ==========================================================================
   法務ページ(privacy.html / terms.html、2026-07-14 CEO指示 Task2)
   ========================================================================== */

.legal-doc { max-width: 720px; margin: 0 auto; }
.legal-doc__notice {
  font-size: 13px; color: #92400E; background: rgba(251,191,36,0.12); border: 1px solid rgba(251,191,36,0.35);
  border-radius: var(--radius-sm); padding: 16px 18px; margin-bottom: 40px; line-height: 1.8;
}
.legal-doc__notice strong { display: block; margin-bottom: 4px; }
.legal-doc section { margin-bottom: 36px; }
.legal-doc h2 { font-size: 17px; font-weight: 700; color: var(--text-primary); margin: 0 0 14px; }
.legal-doc p { font-size: 14px; color: var(--text-secondary); line-height: 1.9; margin: 0 0 12px; }
.legal-doc ul { margin: 0 0 12px; padding-left: 20px; }
.legal-doc li { font-size: 14px; color: var(--text-secondary); line-height: 1.9; margin-bottom: 6px; }
.legal-doc a { color: var(--smart-blue); font-weight: 600; }
.legal-doc__meta { font-size: 12.5px; color: var(--text-secondary); border-top: 1px solid var(--border-light); padding-top: 20px; margin-top: 40px; }
