:root {
  --ink: #17272d;
  --muted: #5d7179;
  --brand: #078aa6;
  --brand-dark: #08657a;
  --brand-soft: #eaf7fa;
  --aqua: #18b6bf;
  --blue: #3974d8;
  --violet: #745ac8;
  --paper: #ffffff;
  --canvas: #f4f7f8;
  --line: #d9e3e6;
  --line-strong: #c3d1d5;
  --success: #1f7453;
  --success-soft: #e9f6ef;
  --warning: #8a5b00;
  --warning-soft: #fff7e4;
  --radius: 14px;
  --shadow: 0 18px 50px rgba(20, 56, 66, 0.1);
  --width: 1160px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic UI", "Yu Gothic", Meiryo, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--brand-dark); text-underline-offset: 3px; }
a:hover { color: var(--brand); }
img { display: block; max-width: 100%; }
button, input, select { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 8px;
  padding: 8px 12px;
  color: #fff;
  background: var(--brand-dark);
  border-radius: 6px;
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 30;
  top: 0;
  height: 68px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(195, 209, 213, 0.85);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--width);
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: var(--ink);
  text-decoration: none;
}

.brand img { width: 126px; height: auto; }
.brand:hover { color: var(--ink); }

.social-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  max-width: var(--width);
  margin: 0 auto;
  padding: 10px 24px;
  font-size: 14px;
}
.social-links-label { color: var(--muted); margin-right: 4px; }
.social-links img { width: 20px; height: 20px; flex-shrink: 0; }
.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--brand-dark);
  font-weight: 700;
  text-decoration: none;
}
.social-links a:hover { background: #edf9fa; border-color: var(--brand); }
.social-links a:focus-visible { outline: 2px solid var(--brand-dark); outline-offset: 3px; }

.header-nav { display: flex; align-items: center; gap: 6px; }
.header-nav a {
  padding: 8px 12px;
  color: #385058;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
  border-radius: 8px;
}
.header-nav a:hover, .header-nav a[aria-current="page"] { color: var(--brand-dark); background: var(--brand-soft); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 10px 18px;
  color: #fff;
  background: var(--brand-dark);
  border: 1px solid var(--brand-dark);
  border-radius: 10px;
  font-weight: 700;
  line-height: 1.4;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(8, 101, 122, 0.16);
}
.button:hover { color: #fff; background: var(--brand); border-color: var(--brand); }
.button.secondary { color: var(--brand-dark); background: #fff; box-shadow: none; }
.button.secondary:hover { background: var(--brand-soft); }
.button.small { min-height: 38px; padding: 7px 13px; font-size: 14px; }

.eyebrow {
  margin: 0 0 10px;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 14%, rgba(24,182,191,.18), transparent 28%),
    radial-gradient(circle at 8% 92%, rgba(57,116,216,.12), transparent 30%),
    linear-gradient(135deg, #fff 15%, #edf9fa 100%);
  border-bottom: 1px solid var(--line);
}
.hero::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -130px;
  width: 440px;
  height: 250px;
  border: 2px solid rgba(7,138,166,.15);
  border-radius: 50%;
  transform: rotate(-12deg);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 32px;
  max-width: var(--width);
  min-height: 550px;
  margin: 0 auto;
  padding: 72px 24px 78px;
}
.hero-copy h1 {
  max-width: 730px;
  margin: 0;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.18;
  letter-spacing: -.035em;
}
.hero-copy h1 span { color: var(--brand); }
.hero-copy > p:not(.eyebrow) { max-width: 650px; margin: 22px 0 28px; color: #486069; font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-quicklinks { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 16px; }
.hero-quicklinks a { color: var(--brand-dark); font-size: 14px; font-weight: 700; }

.hero-visual {
  min-width: 0;
}
.hero-screenshot {
  display: block;
  width: 100%;
  height: auto;
}

.section { padding: 84px 24px; }
.section.white { background: #fff; }
.section-inner { max-width: var(--width); margin: 0 auto; }
.section-heading { max-width: 760px; margin-bottom: 36px; }
.section-heading.center { margin-right: auto; margin-left: auto; text-align: center; }
.section-heading h2 { margin: 0; font-size: clamp(30px, 4.4vw, 46px); line-height: 1.3; letter-spacing: -.02em; }
.section-heading p:last-child { margin: 13px 0 0; color: var(--muted); font-size: 17px; }
.about-title { display: flex; align-items: center; justify-content: center; gap: 16px; }
.about-title img { width: clamp(48px, 6vw, 64px); height: auto; flex-shrink: 0; border-radius: 22%; }

.purpose-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
.purpose-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 28px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-top: 5px solid var(--card-color, var(--brand));
  border-radius: var(--radius);
  text-decoration: none;
  box-shadow: 0 10px 32px rgba(27,67,77,.06);
  transition: transform .18s ease, box-shadow .18s ease;
}
.purpose-card:hover { color: var(--ink); transform: translateY(-4px); box-shadow: var(--shadow); }
.purpose-card-top { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.purpose-card .number { color: var(--card-color, var(--brand)); font-size: 13px; font-weight: 850; letter-spacing: .12em; }
.purpose-icon { display: grid; place-items: center; flex: 0 0 auto; width: 54px; height: 54px; background: var(--brand-soft); border-radius: 14px; }
.purpose-icon img { width: 29px; height: 29px; opacity: .78; }
.purpose-card.caption .purpose-icon { background: #edf3fd; }
.purpose-card.media .purpose-icon { background: #f1eefb; }
.purpose-card h3 { margin: 20px 0 12px; font-size: 25px; line-height: 1.45; }
.purpose-card p { margin: 0 0 20px; color: var(--muted); }
.purpose-card ul { margin: auto 0 22px; padding: 0; list-style: none; }
.purpose-card li { position: relative; padding-left: 19px; font-size: 14px; }
.purpose-card li::before { content: ""; position: absolute; top: .8em; left: 0; width: 7px; height: 7px; background: var(--card-color, var(--brand)); border-radius: 50%; }
.purpose-card .card-link { color: var(--card-color, var(--brand)); font-weight: 750; }
.purpose-card.record { --card-color: var(--brand); }
.purpose-card.caption { --card-color: var(--blue); }
.purpose-card.media { --card-color: var(--violet); }

.persona-section { border-top: 1px solid var(--line); }
.persona-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.persona-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 18px;
  min-height: 190px;
  padding: 27px;
  background: #f8fcfc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 26px rgba(20,56,66,.05);
}
.persona-icon { display: grid; place-items: center; width: 58px; height: 58px; background: var(--brand-soft); border-radius: 16px; }
.persona-icon img { width: 29px; height: 29px; opacity: .78; }
.persona-card:nth-child(2) .persona-icon { background: #edf3fd; }
.persona-card:nth-child(3) .persona-icon { background: #fff3e8; }
.persona-card:nth-child(4) .persona-icon { background: #f1eefb; }
.persona-label { margin: 1px 0 8px; color: var(--brand-dark); font-size: 12px; font-weight: 850; letter-spacing: .08em; }
.persona-card h3 { margin: 0 0 9px; font-size: 21px; line-height: 1.45; }
.persona-card p:last-child { margin: 0; color: var(--muted); font-size: 15px; }
.persona-pricing-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 22px;
  padding: 24px 26px;
  color: #fff;
  background: linear-gradient(135deg, #173f49 0%, #08657a 100%);
  border-radius: var(--radius);
}
.persona-pricing-link strong { display: block; margin-bottom: 4px; font-size: 18px; }
.persona-pricing-link span { color: rgba(255,255,255,.78); font-size: 14px; }
.persona-pricing-link .button { flex: 0 0 auto; }

.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 16px; }
.feature-card { min-height: 220px; padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 8px 26px rgba(20,56,66,.055); }
.feature-icon { display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 20px; background: var(--brand-soft); border-radius: 14px; }
.feature-icon img { width: 28px; height: 28px; opacity: .78; }
.feature-card:nth-child(2) .feature-icon { background: #edf3fd; }
.feature-card:nth-child(3) .feature-icon { background: #f1eefb; }
.feature-card:nth-child(4) .feature-icon { background: #eef8f2; }
.feature-card:nth-child(5) .feature-icon { background: #fff3e8; }
.feature-card h3 { margin: 0 0 8px; font-size: 18px; line-height: 1.5; }
.feature-card p { margin: 0; color: var(--muted); font-size: 14px; }
.contact-options .feature-card .button { margin-top: 16px; }

.data-storage {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
  gap: 42px;
  align-items: center;
  padding: 44px;
  color: #eaf8fa;
  background: linear-gradient(135deg, #173f49 0%, #08657a 100%);
  border-radius: 22px;
  box-shadow: var(--shadow);
}
.data-storage h2 { margin: 0 0 12px; color: #fff; font-size: clamp(29px, 4vw, 43px); line-height: 1.3; }
.data-storage p { margin: 0; color: rgba(234,248,250,.82); }
.data-storage p strong { color: #fff; font-weight: 850; }
.storage-points { display: grid; gap: 11px; }
.storage-points > div { padding: 17px 18px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.13); border-radius: 11px; }
.storage-points strong { display: block; color: #fff; }
.storage-points span { color: rgba(234,248,250,.78); font-size: 14px; }
.service-disclosure { margin-top: 24px; padding: 24px; background: var(--canvas); border: 1px solid var(--line); border-radius: 14px; }
.service-disclosure h3 { margin: 0 0 8px; font-size: 18px; }
.service-disclosure p { margin: 0; color: var(--muted); font-size: 14px; }
.service-disclosure p + p { margin-top: 10px; }
.service-disclosure a { color: var(--brand-dark); text-decoration: underline; text-underline-offset: 3px; }

.steps-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.steps-row > div { position: relative; padding: 25px 25px 25px 72px; background: var(--canvas); border-radius: var(--radius); }
.steps-row > div::before { counter-increment: step; content: counter(step); position: absolute; top: 25px; left: 24px; display: grid; place-items: center; width: 32px; height: 32px; color: #fff; background: var(--brand); border-radius: 50%; font-weight: 800; }
.steps-row strong { display: block; margin-bottom: 7px; }
.steps-row p { margin: 0; color: var(--muted); font-size: 14px; }

.download-panel { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.download-card { padding: 30px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.download-card h3 { margin: 0 0 4px; font-size: 24px; }
.download-card p { margin: 0 0 20px; color: var(--muted); }
.download-card .button { width: 100%; }
.release-notes { margin-top: 32px; }
.release-notes h4 { margin: 0 0 12px; font-size: 20px; }
.release-notes .release-message { white-space: pre-wrap; overflow-wrap: anywhere; margin: 0; }
.release-notes [hidden] { display: none; }
.download-note { margin: 18px 0 0; color: var(--muted); font-size: 13px; text-align: center; }

.pricing-hero {
  padding: 72px 24px 54px;
  text-align: center;
  background: linear-gradient(180deg, #fff 0%, #eef9fa 100%);
  border-bottom: 1px solid var(--line);
}
.pricing-hero-inner { max-width: 780px; margin: 0 auto; }
.pricing-hero h1 { margin: 0; font-size: clamp(38px, 6vw, 58px); line-height: 1.25; letter-spacing: -.03em; }
.pricing-hero p:last-child { margin: 18px auto 0; color: var(--muted); font-size: 18px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; align-items: stretch; }
.price-card { position: relative; display: flex; flex-direction: column; padding: 30px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 10px 30px rgba(20,56,66,.06); }
.price-card.featured { border: 2px solid var(--brand); box-shadow: 0 18px 45px rgba(7,138,166,.14); }
.price-badge { align-self: flex-start; margin: -8px 0 18px; padding: 4px 9px; color: #fff; background: var(--brand); border-radius: 999px; font-size: 12px; font-weight: 800; }
.price-card h2 { margin: 0; font-size: 23px; }
.price-card .price { margin: 14px 0 3px; color: var(--ink); font-size: 42px; font-weight: 850; letter-spacing: -.035em; line-height: 1.2; }
.price-card .price small { margin-left: 4px; color: var(--muted); font-size: 14px; font-weight: 650; letter-spacing: 0; }
.price-card > p:not(.price) { margin: 0 0 18px; color: var(--muted); }
.price-card ul { margin: 10px 0 24px; padding-left: 1.25em; }
.price-card li { margin: 6px 0; }
.price-card .button { margin-top: auto; width: 100%; }
.pricing-comparison { margin-top: 72px; }
.comparison-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.comparison-column { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 10px 30px rgba(20,56,66,.06); }
.comparison-column h3 { margin: 0; padding: 18px 22px; color: #fff; background: #1d4651; font-size: 18px; }
.comparison-column.mojidas-column h3 { background: var(--brand-dark); }
.comparison-column ul { margin: 0; padding: 0; list-style: none; }
.comparison-column li { position: relative; min-height: 88px; padding: 18px 22px 18px 54px; border-bottom: 1px solid var(--line); }
.comparison-column li:last-child { border-bottom: 0; }
.comparison-column li::before { position: absolute; top: 20px; left: 23px; color: var(--muted); content: "—"; font-weight: 850; }
.mojidas-column li { background: #f2fbfc; }
.mojidas-column li::before { color: var(--brand); content: "✓"; }
.comparison-column strong, .comparison-column span { display: block; }
.comparison-column strong { margin-bottom: 3px; color: var(--ink); }
.comparison-column span { color: var(--muted); font-size: 14px; }
.comparison-note { margin: 12px 4px 0; color: var(--muted); font-size: 12px; }
.pricing-summary { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pricing-summary > div { padding: 27px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.pricing-summary h3 { margin: 0 0 10px; font-size: 20px; }
.pricing-summary p { margin: 0; color: var(--muted); }
.pricing-faq { margin: 0; }
.pricing-faq > div { padding: 20px 0; border-bottom: 1px solid var(--line); }
.pricing-faq > div:first-child { padding-top: 0; }
.pricing-faq > div:last-child { padding-bottom: 0; border-bottom: 0; }
.pricing-faq dt { margin: 0 0 5px; font-weight: 800; }
.pricing-faq dd { margin: 0; color: var(--muted); }

.cta { padding: 48px; color: #fff; background: linear-gradient(135deg, #08657a, #078aa6); border-radius: 22px; box-shadow: var(--shadow); }
.cta h2 { margin: 0 0 8px; font-size: 32px; }
.cta p { max-width: 720px; margin: 0 0 22px; color: rgba(255,255,255,.85); }
.cta .button { color: var(--brand-dark); background: #fff; border-color: #fff; box-shadow: none; }

.site-footer { color: #dcecef; background: #183138; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; max-width: var(--width); margin: 0 auto; padding: 30px 24px; font-size: 13px; }
.footer-inner strong { color: #fff; }
.footer-links { display: flex; flex-wrap: wrap; gap: 14px; }
.footer-links a { color: #dcecef; }

/* Manual */
.manual-shell {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 42px;
  max-width: var(--width);
  margin: 0 auto;
  padding: 40px 24px 80px;
}
.manual-sidebar { position: sticky; top: 96px; align-self: start; }
.sidebar-label { margin: 0 0 9px; color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: .1em; }
.manual-sidebar nav { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 10px; }
.manual-sidebar a { display: block; padding: 9px 12px; color: var(--ink); font-size: 14px; line-height: 1.45; text-decoration: none; border-bottom: 1px solid var(--line); }
.manual-sidebar a:last-child { border-bottom: 0; }
.manual-sidebar a:hover, .manual-sidebar a:focus-visible { color: var(--brand-dark); background: var(--brand-soft); }
.manual-sidebar a[aria-current="page"] { color: #fff; background: var(--brand-dark); border-color: var(--brand-dark); font-weight: 750; }
.manual-sidebar .nav-group { padding: 7px 10px 3px; color: var(--muted); background: #f8fafb; font-size: 11px; font-weight: 800; letter-spacing: .08em; border-bottom: 1px solid var(--line); }
.manual-sidebar .nav-sub { padding-left: 25px; color: var(--muted); font-size: 12px; background: #fbfcfc; }
.manual-main { min-width: 0; }

.manual-title {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 22px;
  padding: 28px 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.manual-title img { width: 76px; height: 76px; flex: 0 0 auto; border-radius: 18px; box-shadow: 0 8px 24px rgba(22,56,64,.14); }
.manual-title h1 { margin: 0; font-size: clamp(28px, 4vw, 38px); line-height: 1.35; }
.manual-title p:last-child { margin: 6px 0 0; color: var(--muted); }
.manual-kicker { margin: 0 0 2px; color: var(--brand-dark); font-size: 12px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }

.notice { margin: 0 0 22px; padding: 14px 18px; color: #40575e; background: var(--brand-soft); border: 1px solid #c5e5ea; border-radius: 10px; }
.notice.warning { color: #654b17; background: var(--warning-soft); border-color: #edd496; }
.notice.success { color: #2d5e48; background: var(--success-soft); border-color: #bfe0ce; }
.notice > :first-child { margin-top: 0; }
.notice > :last-child { margin-bottom: 0; }

.manual-section {
  margin-bottom: 22px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.manual-section[id], .manual-section h2[id], .manual-section h3[id], .step-block[id] { scroll-margin-top: 88px; }
.manual-section h2 { margin: 0 0 18px; padding-bottom: 11px; font-size: 25px; line-height: 1.45; border-bottom: 2px solid var(--brand); }
.manual-section > h2:not(:first-child) { margin-top: 44px; }
.manual-section h3 { margin: 28px 0 10px; font-size: 19px; line-height: 1.5; }
.manual-section h4 { margin: 24px 0 8px; font-size: 16px; }
.manual-section p { margin: 0 0 15px; }
.manual-section > :last-child { margin-bottom: 0; }

.route-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.route-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.route-card { display: flex; flex-direction: column; padding: 22px; color: var(--ink); background: #fff; border: 1px solid var(--line); border-top: 4px solid var(--route, var(--brand)); border-radius: 11px; text-decoration: none; }
.route-card:hover { color: var(--ink); box-shadow: 0 10px 28px rgba(22,56,64,.08); }
.route-card.record { --route: var(--brand); }
.route-card.caption { --route: var(--blue); }
.route-card.media { --route: var(--violet); }
.route-card small { color: var(--route); font-weight: 800; letter-spacing: .08em; }
.route-card strong { margin: 11px 0 7px; font-size: 19px; line-height: 1.5; }
.route-card span { margin-bottom: 16px; color: var(--muted); font-size: 14px; }
.route-card b { margin-top: auto; color: var(--route); font-size: 14px; }

.outcome { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: start; margin: 18px 0; padding: 16px 18px; background: var(--success-soft); border-left: 4px solid var(--success); border-radius: 8px; }
.outcome::before { content: "✓"; display: grid; place-items: center; width: 24px; height: 24px; color: #fff; background: var(--success); border-radius: 50%; font-size: 13px; font-weight: 850; }
.outcome strong { display: block; color: var(--success); }
.outcome p { margin: 2px 0 0; color: #3d5b4d; }

.manual-steps { margin: 22px 0; padding: 0; list-style: none; counter-reset: manual-step; }
.manual-steps > li { position: relative; margin: 0 0 14px; padding: 18px 20px 18px 66px; background: #f8fafb; border: 1px solid var(--line); border-radius: 10px; }
.manual-steps > li::before { counter-increment: manual-step; content: counter(manual-step); position: absolute; top: 18px; left: 20px; display: grid; place-items: center; width: 30px; height: 30px; color: #fff; background: var(--brand); border-radius: 50%; font-weight: 800; }
.manual-steps strong { display: block; margin-bottom: 4px; font-size: 17px; }
.manual-steps p { margin: 0; color: var(--muted); }
.manual-steps .detail-link { display: inline-block; margin-top: 7px; font-size: 14px; font-weight: 700; }

.manual-steps.icon-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.manual-steps.icon-steps > li {
  min-height: 210px;
  margin: 0;
  padding: 76px 22px 22px;
  background: linear-gradient(145deg, #fff 0%, #f6fafb 100%);
  box-shadow: 0 8px 24px rgba(20,56,66,.055);
}
.manual-steps.icon-steps > li::before {
  top: 21px;
  left: 22px;
  width: 34px;
  height: 34px;
}
.step-icon {
  position: absolute;
  top: 18px;
  right: 20px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--brand-soft);
  border-radius: 11px;
}
.step-icon img { width: 23px; height: 23px; opacity: .72; }
.manual-steps.icon-steps > li:nth-child(3n+2) .step-icon { background: #edf3fd; }
.manual-steps.icon-steps > li:nth-child(3n) .step-icon { background: #f1eefb; }

/* 目的別ガイドの最短手順。番号と縦線で、上から下へ進む流れを示す。 */
.manual-steps.compact-steps {
  display: block;
  margin: 16px 0 20px;
}
.manual-steps.compact-steps > li {
  min-height: 0;
  margin: 0;
  padding: 0 0 22px 58px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.manual-steps.compact-steps > li:not(:last-child) {
  background-image: linear-gradient(#dbe6e9, #dbe6e9);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: calc(100% - 58px) 1px;
}
.manual-steps.compact-steps > li + li { padding-top: 16px; }
.manual-steps.compact-steps > li:last-child { padding-bottom: 0; }
.manual-steps.compact-steps > li::before {
  top: 0;
  left: 14px;
  z-index: 1;
  width: 29px;
  height: 29px;
  font-size: 13px;
  box-shadow: 0 0 0 5px #fff;
}
.manual-steps.compact-steps > li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 32px;
  bottom: -16px;
  left: 28px;
  width: 2px;
  background: #c8dce1;
}
.manual-steps.compact-steps > li + li::before { top: 16px; }
.manual-steps.compact-steps > li + li:not(:last-child)::after { top: 48px; }
.manual-steps.compact-steps strong {
  margin-bottom: 3px;
  font-size: 16px;
  line-height: 1.45;
}
.manual-steps.compact-steps p {
  font-size: 14px;
  line-height: 1.65;
}
.manual-steps.compact-steps .detail-link {
  margin-top: 4px;
  font-size: 13px;
}
.manual-steps.icon-steps.compact-steps > li {
  padding-right: 46px;
}
.manual-steps.icon-steps.compact-steps .step-icon {
  top: -1px;
  right: 0;
  width: 30px;
  height: 30px;
  border-radius: 8px;
}
.manual-steps.icon-steps.compact-steps > li + li .step-icon { top: 15px; }
.manual-steps.icon-steps.compact-steps .step-icon img {
  width: 17px;
  height: 17px;
}

.checklist { margin: 16px 0; padding: 0; list-style: none; }
.checklist li { position: relative; margin: 8px 0; padding-left: 29px; }
.checklist li::before {
  content: "✓";
  position: absolute;
  top: .42em;
  left: 0;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  color: #fff;
  background: var(--brand);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}
.plain-list { margin: 12px 0; padding-left: 1.35em; }
.plain-list li { margin: 5px 0; }

.detail-list { margin: 0; border: 1px solid var(--line); border-radius: 9px; overflow: hidden; }
.detail-list > div { display: grid; grid-template-columns: 180px minmax(0, 1fr); border-bottom: 1px solid var(--line); }
.detail-list > div:last-child { border-bottom: 0; }
.detail-list dt, .detail-list dd { margin: 0; padding: 15px 17px; }
.detail-list dt { background: #f6f9fa; font-weight: 750; }
.detail-list dd { color: #40555c; }
.manual-section .detail-list + * { margin-top: 20px; }
.manual-section .download-panel + * { margin-top: 20px; }

.platform-table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 14px; }
.platform-table th, .platform-table td { padding: 12px 14px; text-align: left; vertical-align: top; border: 1px solid var(--line); }
.platform-table th { background: #f3f7f8; }

.flow-links { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 20px; }
.flow-links a { padding: 7px 11px; color: var(--brand-dark); background: var(--brand-soft); border-radius: 8px; font-size: 13px; font-weight: 700; text-decoration: none; }

.legal-page { max-width: 940px; min-height: calc(100vh - 178px); margin: 0 auto; padding: 64px 24px 90px; }
.legal-page article { overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: 20px; box-shadow: 0 12px 40px rgba(20,56,66,.055); }
.legal-header {
  position: relative;
  padding: 42px 44px 36px;
  background:
    radial-gradient(circle at 92% 0, rgba(24,182,191,.14), transparent 34%),
    linear-gradient(145deg, #fff 20%, #f1fafb 100%);
  border-bottom: 1px solid var(--line);
}
.legal-header::after { content: ""; position: absolute; top: 32px; right: 42px; width: 54px; height: 5px; background: var(--brand); border-radius: 999px; opacity: .72; }
.legal-page h1 { margin: 0; font-size: clamp(32px, 5vw, 46px); line-height: 1.3; letter-spacing: -.025em; }
.legal-lead { max-width: 690px; margin: 15px 0 0; color: var(--muted); font-size: 16px; }
.legal-meta { display: flex; flex-wrap: wrap; gap: 8px 18px; margin: 22px 0 0; color: #536970; font-size: 13px; }
.legal-meta span { display: inline-flex; align-items: center; gap: 7px; }
.legal-meta span::before { content: ""; width: 7px; height: 7px; background: var(--brand); border-radius: 50%; }
.legal-body { padding: 42px 44px 48px; }
.legal-intro { margin: 0 0 32px; padding: 20px 22px; color: #40575e; background: var(--brand-soft); border-left: 4px solid var(--brand); border-radius: 4px 10px 10px 4px; }
.legal-intro > :first-child { margin-top: 0; }
.legal-intro > :last-child { margin-bottom: 0; }
.legal-section { margin-top: 38px; }
.legal-section:first-child { margin-top: 0; }
.legal-section h2 { margin: 0 0 14px; padding-bottom: 10px; font-size: 22px; line-height: 1.5; border-bottom: 1px solid var(--line); }
.legal-section h3 { margin: 25px 0 8px; font-size: 17px; line-height: 1.6; }
.legal-section p { margin: 0 0 12px; }
.legal-section ol, .legal-section ul { margin: 10px 0 14px; padding-left: 1.5em; }
.legal-section li { margin: 7px 0; padding-left: .2em; }
.legal-section > :last-child { margin-bottom: 0; }
.legal-note { margin-top: 30px; padding: 16px 18px; color: var(--muted); background: #f7f9fa; border: 1px solid var(--line); border-radius: 10px; font-size: 13px; }
.legal-contact { padding: 22px 24px; background: #f7fafb; border: 1px solid var(--line); border-radius: 11px; }
.legal-contact strong { display: block; margin-bottom: 3px; color: var(--ink); }
.legal-table-wrap { overflow-x: auto; margin: 4px 0 12px; border: 1px solid var(--line); border-radius: 11px; }
.legal-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.legal-table th, .legal-table td { padding: 16px 18px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
.legal-table tr:last-child th, .legal-table tr:last-child td { border-bottom: 0; }
.legal-table th { width: 210px; color: #31494f; background: #f5f8f9; font-weight: 750; }
.legal-table td { color: #40555c; }
.legal-table td p { margin: 0 0 7px; }
.legal-table td p:last-child { margin-bottom: 0; }
.legal-page .company-name { font-size: 17px; font-weight: 800; }

.contact-page { max-width: 880px; }
.contact-action { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 28px 30px; color: #eaf8fa; background: linear-gradient(135deg, #173f49 0%, #08657a 100%); border-radius: 15px; box-shadow: var(--shadow); }
.contact-action .eyebrow { color: #8fe8ed; }
.contact-action h2 { margin: 0 0 7px; color: #fff; font-size: 25px; line-height: 1.45; }
.contact-action p:not(.eyebrow) { max-width: 480px; margin: 0; color: rgba(234,248,250,.82); }
.contact-button { flex: 0 0 auto; color: var(--brand-dark); background: #fff; border-color: #fff; box-shadow: none; white-space: nowrap; }
.contact-button:hover { color: var(--brand-dark); background: var(--brand-soft); border-color: var(--brand-soft); }
.contact-button span { font-size: 1.15em; }
.contact-checklist { padding: 0; list-style: none; }
.contact-checklist li { position: relative; padding-left: 27px; }
.contact-checklist li::before { content: "✓"; position: absolute; top: .2em; left: 0; color: var(--brand); font-weight: 900; }
.contact-warning { margin: 34px 0 0; }
.contact-warning strong { display: block; margin-bottom: 3px; }
.contact-warning p { margin: 0; }

.page-navigation { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 24px; }
.page-navigation a { display: block; padding: 16px 18px; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: 10px; text-decoration: none; }
.page-navigation a:last-child { text-align: right; }
.page-navigation small { display: block; color: var(--muted); font-size: 11px; font-weight: 750; letter-spacing: .06em; }
.page-navigation a:hover { color: var(--brand-dark); background: var(--brand-soft); }

.manual-mobile-nav { display: none; margin-bottom: 18px; background: #fff; border: 1px solid var(--line); border-radius: 10px; }
.manual-mobile-nav summary { padding: 12px 15px; cursor: pointer; font-weight: 750; }
.manual-mobile-nav nav { display: grid; padding: 0 12px 12px; }
.manual-mobile-nav a { padding: 7px 4px; text-decoration: none; border-top: 1px solid var(--line); }

code { padding: 2px 5px; background: #eef3f4; border-radius: 4px; font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: .9em; }

@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; min-height: auto; }
  .purpose-grid, .route-grid, .route-grid.two { grid-template-columns: 1fr; }
  .persona-grid { grid-template-columns: 1fr; }
  .purpose-card { min-height: 0; }
  .steps-row { grid-template-columns: 1fr; }
  .manual-shell { display: block; padding-top: 24px; }
  .manual-sidebar { display: none; }
  .manual-mobile-nav { display: block; }
  .data-storage { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-summary { grid-template-columns: 1fr; }
  .manual-steps.icon-steps { grid-template-columns: 1fr; }
  .manual-steps.compact-steps { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .social-links { justify-content: center; padding: 8px 16px; gap: 6px; }
  .social-links-label { flex-basis: 100%; text-align: center; margin: 0; }
  body { font-size: 15px; }
  .site-header { height: auto; min-height: 62px; }
  .header-inner { padding: 10px 16px; flex-wrap: wrap; gap: 6px; }
  .header-nav { flex-wrap: wrap; }
  .brand img { width: 108px; }
  .header-nav a:not(.always) { display: none; }
  .header-nav a { padding: 7px 9px; }
  .hero-inner { padding: 54px 18px 58px; }
  .hero-copy h1 { font-size: 40px; }
  .hero-copy > p:not(.eyebrow) { font-size: 16px; }
  .hero-actions .button { width: 100%; }
  .hero-quicklinks { justify-content: center; }
  .section { padding: 58px 18px; }
  .section-heading { margin-bottom: 26px; }
  .purpose-card, .download-card { padding: 23px; }
  .persona-card { grid-template-columns: 48px minmax(0, 1fr); gap: 14px; min-height: 0; padding: 22px; }
  .persona-icon { width: 48px; height: 48px; border-radius: 13px; }
  .persona-icon img { width: 25px; height: 25px; }
  .persona-card h3 { font-size: 19px; }
  .persona-pricing-link { align-items: stretch; flex-direction: column; padding: 22px; }
  .persona-pricing-link .button { width: 100%; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 0; }
  .download-panel { grid-template-columns: 1fr; }
  .pricing-hero { padding: 54px 18px 42px; }
  .pricing-comparison { margin-top: 52px; }
  .comparison-columns { gap: 10px; }
  .comparison-column { border-radius: 14px; }
  .comparison-column h3 { min-height: 66px; padding: 14px 12px; font-size: 14px; }
  .comparison-column li { min-height: 126px; padding: 15px 12px 15px 34px; }
  .comparison-column li::before { top: 16px; left: 13px; }
  .comparison-column strong { font-size: 14px; }
  .comparison-column span { font-size: 12px; line-height: 1.65; }
  .cta { padding: 30px 24px; }
  .data-storage { padding: 30px 24px; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
  .manual-shell { padding: 18px 14px 56px; }
  .manual-title { align-items: flex-start; padding: 22px; }
  .manual-title img { width: 58px; height: 58px; border-radius: 14px; }
  .manual-section { padding: 22px; }
  .manual-steps > li { padding: 62px 17px 17px; }
  .manual-steps > li::before { top: 16px; left: 17px; }
  .manual-steps.icon-steps > li { min-height: 0; padding: 68px 18px 20px; }
  .manual-steps.icon-steps > li::before { top: 17px; left: 18px; }
  .step-icon { top: 13px; right: 16px; }
  .manual-steps.compact-steps > li { padding: 0 0 20px 48px; }
  .manual-steps.compact-steps > li:not(:last-child) { background-size: calc(100% - 48px) 1px; }
  .manual-steps.compact-steps > li + li { padding-top: 14px; }
  .manual-steps.compact-steps > li::before { top: 0; left: 8px; width: 25px; height: 25px; }
  .manual-steps.compact-steps > li:not(:last-child)::after { top: 29px; bottom: -14px; left: 20px; }
  .manual-steps.compact-steps > li + li::before { top: 14px; }
  .manual-steps.compact-steps > li + li:not(:last-child)::after { top: 43px; }
  .manual-steps.icon-steps.compact-steps > li { padding-right: 40px; padding-left: 48px; }
  .manual-steps.icon-steps.compact-steps > li:last-child { padding-bottom: 0; }
  .manual-steps.icon-steps.compact-steps .step-icon { top: -2px; right: 0; }
  .manual-steps.icon-steps.compact-steps > li + li .step-icon { top: 12px; }
  .detail-list > div { display: block; }
  .detail-list dt { padding-bottom: 8px; }
  .detail-list dd { padding-top: 7px; }
  .platform-table { display: block; overflow-x: auto; }
  .legal-page { padding: 28px 14px 56px; }
  .legal-header { padding: 30px 24px 26px; }
  .legal-header::after { top: 23px; right: 24px; width: 36px; }
  .legal-body { padding: 30px 24px 36px; }
  .legal-section { margin-top: 32px; }
  .legal-section h2 { font-size: 20px; }
  .legal-table th, .legal-table td { display: block; width: auto; padding: 12px 15px; }
  .legal-table th { padding-bottom: 7px; border-bottom: 0; }
  .legal-table td { padding-top: 5px; }
  .contact-action { align-items: stretch; flex-direction: column; padding: 24px; }
  .contact-button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .purpose-card { transition: none; }
}

/* 発話時間の案内 */
.speech-promise { color: var(--brand-dark); }
.speech-promise strong { font-size: clamp(20px, 2.2vw, 28px); }
.speech-conditions { color: var(--muted); font-size: 14px; line-height: 1.8; }
