/*
 * ManualPress デモ用プロトタイプ
 * 対象の slug ページだけで読み込み、ManualPress 固有 prefix と root reset で既存テーマから分離する。
 */

.mpc-lp,
.mpc-form-page {
  --mpc-navy: #14276f;
  --mpc-navy-dark: #0e1d58;
  --mpc-blue: #078bc4;
  --mpc-blue-bright: #00a2dc;
  --mpc-blue-light: #e4f5fb;
  --mpc-red: #ef3827;
  --mpc-orange: #f28d22;
  --mpc-ink: #292929;
  --mpc-muted: #666;
  --mpc-line: #d7d7d7;
  --mpc-surface: #f1f1f1;
  --mpc-white: #fff;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  color: var(--mpc-ink);
  font-family: neue-haas-grotesk-display, source-han-sans-japanese, sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: .02em;
  line-height: 1.75;
  overflow: hidden;
}

.mpc-lp *,
.mpc-lp *::before,
.mpc-lp *::after,
.mpc-form-page *,
.mpc-form-page *::before,
.mpc-form-page *::after {
  box-sizing: border-box;
}

.mpc-lp h1,
.mpc-lp h2,
.mpc-lp h3,
.mpc-lp p,
.mpc-lp ul,
.mpc-lp ol,
.mpc-lp dl,
.mpc-form-page h1,
.mpc-form-page h2,
.mpc-form-page p,
.mpc-form-page ul,
.mpc-form-page fieldset {
  margin-top: 0;
}

.mpc-lp h2,
.mpc-form-page h2 {
  min-width: 0 !important;
  padding-top: 0;
}

.mpc-lp h2::before,
.mpc-lp h2::after,
.mpc-form-page h2::before,
.mpc-form-page h2::after {
  content: none;
}

.mpc-lp a,
.mpc-form-page a {
  text-decoration: none;
}

.mpc-container {
  width: min(100% - 64px, 1200px);
  margin-inline: auto;
}

.mpc-container--narrow {
  width: min(100% - 64px, 1040px);
}

.mpc-container--form {
  width: min(100% - 64px, 1080px);
}

.mpc-section {
  padding: 92px 0;
  background: var(--mpc-white);
}

.mpc-section--muted {
  background: var(--mpc-surface);
}

.mpc-section--navy {
  color: var(--mpc-white);
  background: var(--mpc-navy-dark);
}

.mpc-section--blue-light {
  background: var(--mpc-blue-light);
}

.mpc-heading,
.mpc-lp h2.mpc-heading {
  margin-bottom: 22px;
  color: var(--mpc-navy);
  font-size: clamp(28px, 2.35vw, 40px);
  font-weight: 700;
  letter-spacing: .015em;
  line-height: 1.45;
  text-align: center;
}

.mpc-heading--light,
.mpc-lp h2.mpc-heading--light {
  color: var(--mpc-white);
}

.mpc-kicker {
  margin-bottom: 6px;
  color: var(--mpc-navy);
  font-size: clamp(24px, 2.1vw, 34px);
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}

.mpc-subheading {
  margin-bottom: 30px;
  color: var(--mpc-blue);
  font-size: clamp(19px, 1.55vw, 26px);
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
}

.mpc-subheading--light {
  color: #9fe5ff;
}

.mpc-copy,
.mpc-lp p.mpc-copy {
  max-width: 980px;
  margin: 0 auto 22px;
  color: var(--mpc-ink);
  font-size: 17px;
  line-height: 2;
  text-align: center;
}

.mpc-copy--small,
.mpc-lp p.mpc-copy--small {
  font-size: 15px;
  text-align: left;
}

.mpc-copy--light,
.mpc-lp p.mpc-copy--light {
  color: #eef4ff;
}

.mpc-copy-group {
  max-width: 1080px;
  margin: 0 auto 26px;
  color: var(--mpc-ink);
  font-size: 16px;
  line-height: 1.9;
}

.mpc-copy-group p,
.mpc-lp .mpc-copy-group p {
  margin: 0 0 5px;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  text-align: left;
}

.mpc-copy-group--center p,
.mpc-lp .mpc-copy-group--center p {
  text-align: center;
}

.mpc-copy-group--light {
  color: #eef4ff;
}

.mpc-marker {
  padding: 0 .12em;
  background: linear-gradient(transparent 63%, rgba(40, 200, 236, .34) 63% 91%, transparent 91%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  font-weight: 800;
}

.mpc-diagram-label {
  margin: 38px 0 18px;
  color: var(--mpc-navy);
  font-size: 17px;
  font-weight: 800;
  text-align: center;
}

.mpc-center {
  margin: 42px 0 0;
  text-align: center;
}

.mpc-lp p.mpc-center {
  margin-top: 42px;
}

.mpc-mobile-only {
  display: none;
}

.mpc-nowrap {
  white-space: nowrap;
}

.mpc-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ヒーロー */
.mpc-hero {
  position: relative;
  min-height: 520px;
  padding: 170px 0 100px;
  isolation: isolate;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(4, 13, 43, .93) 0%, rgba(10, 31, 82, .82) 47%, rgba(0, 126, 176, .30) 100%),
    radial-gradient(circle at 78% 32%, rgba(0, 215, 255, .65), transparent 20%),
    radial-gradient(circle at 67% 70%, rgba(238, 56, 39, .42), transparent 18%),
    linear-gradient(135deg, #071331 0%, #173f69 55%, #082139 100%);
}

.mpc-hero::before,
.mpc-hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: '';
  pointer-events: none;
}

.mpc-hero::before {
  opacity: .42;
  background-image:
    linear-gradient(rgba(105, 218, 255, .25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(105, 218, 255, .25) 1px, transparent 1px);
  background-size: 54px 54px;
  transform: perspective(600px) rotateX(64deg) translateY(27%) scale(1.4);
  transform-origin: center bottom;
}

.mpc-hero::after {
  background: linear-gradient(115deg, transparent 60%, rgba(0, 191, 255, .16) 60%, transparent 61%);
}

.mpc-hero__inner {
  position: relative;
  z-index: 2;
}

.mpc-hero h1,
.mpc-lp .mpc-hero h1 {
  max-width: 1260px;
  margin: 0 0 24px;
  color: var(--mpc-white);
  font-size: clamp(40px, 3.55vw, 60px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.3;
  text-align: left;
  text-shadow: 0 3px 18px rgba(0, 0, 0, .42);
}

.mpc-hero h1 span {
  white-space: nowrap;
}

.mpc-hero__lead,
.mpc-lp p.mpc-hero__lead {
  margin: 0 0 22px;
  color: var(--mpc-white);
  font-size: clamp(18px, 1.55vw, 25px);
  font-weight: 700;
  line-height: 1.6;
  text-align: left;
}

.mpc-hero__visual {
  position: absolute;
  right: 4%;
  top: 22%;
  width: min(37vw, 560px);
  aspect-ratio: 1.5;
  opacity: .9;
  transform: perspective(800px) rotateY(-12deg) rotateX(4deg);
}

.mpc-hero__visual span {
  position: absolute;
  display: block;
  width: 30%;
  height: 32%;
  border: 2px solid rgba(110, 231, 255, .72);
  background: linear-gradient(135deg, rgba(0, 172, 225, .42), rgba(10, 24, 68, .75));
  box-shadow: 0 0 22px rgba(0, 210, 255, .44), inset 0 0 24px rgba(255, 255, 255, .12);
}

.mpc-hero__visual span::before,
.mpc-hero__visual span::after {
  position: absolute;
  content: '';
  background: rgba(114, 226, 255, .65);
}

.mpc-hero__visual span::before {
  top: 24%;
  left: 12%;
  width: 76%;
  height: 2px;
  box-shadow: 0 18px rgba(114, 226, 255, .45), 0 36px rgba(114, 226, 255, .35);
}

.mpc-hero__visual span::after {
  right: -58%;
  top: 50%;
  width: 58%;
  height: 2px;
}

.mpc-hero__visual span:nth-child(1) { top: 0; left: 0; }
.mpc-hero__visual span:nth-child(2) { top: 0; right: 0; }
.mpc-hero__visual span:nth-child(3) { bottom: 0; left: 19%; }
.mpc-hero__visual span:nth-child(4) { right: 3%; bottom: 2%; }

/* 変換図 */
.mpc-intro__lead {
  margin-bottom: 36px;
  color: var(--mpc-navy);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.65;
  text-align: center;
}

.mpc-conversion {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) auto minmax(180px, 1fr) auto minmax(180px, 1fr);
  gap: 18px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto 42px;
}

.mpc-conversion__item {
  display: flex;
  min-height: 150px;
  padding: 18px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--mpc-navy);
  background: var(--mpc-white);
  border: 1px solid #d6dfeb;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(20, 39, 111, .08);
  font-size: 14px;
  text-align: center;
}

.mpc-conversion__item small {
  color: var(--mpc-muted);
  font-size: 11px;
}

.mpc-arrow {
  color: var(--mpc-blue);
  font-size: 46px;
  font-weight: 900;
  line-height: 1;
}

.mpc-file-icon {
  position: relative;
  display: grid;
  width: 72px;
  height: 88px;
  margin-bottom: 12px;
  place-items: center;
  color: var(--mpc-white);
  background: linear-gradient(145deg, #eee 0 38%, #fff 39%);
  border: 1px solid #ccd2da;
  font-size: 18px;
  font-weight: 900;
}

.mpc-file-icon::after {
  position: absolute;
  left: -8px;
  top: 32px;
  width: 86px;
  padding: 3px 0;
  content: 'PDF';
  color: var(--mpc-white);
  background: var(--mpc-red);
  font-size: 17px;
  line-height: 1.2;
  text-align: center;
}

.mpc-brand-mark {
  width: 72px;
  height: 72px;
  margin-bottom: 10px;
  border-radius: 50%;
  background: repeating-linear-gradient(135deg, var(--mpc-blue) 0 5px, transparent 5px 10px);
  transform: rotate(-8deg);
}

.mpc-browser-icon {
  position: relative;
  width: 118px;
  height: 76px;
  margin-bottom: 12px;
  background: linear-gradient(#333 0 15px, #eaf3fa 15px 100%);
  border: 7px solid #d3d9de;
  border-radius: 5px;
  box-shadow: 0 8px 0 -2px #aeb6be;
}

.mpc-browser-icon::after {
  position: absolute;
  left: 13px;
  top: 24px;
  width: 78px;
  height: 7px;
  content: '';
  background: var(--mpc-blue);
  box-shadow: 0 14px 0 #b8c9d7, 0 28px 0 #b8c9d7;
}

.mpc-conversion--compact {
  max-width: 760px;
  margin-top: 0;
}

.mpc-conversion--compact .mpc-conversion__item {
  min-height: 130px;
}

/* CTA */
.mpc-cta-band {
  padding: 30px 0 16px;
  background: var(--mpc-blue-light);
}

.mpc-cta-band__inner {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.mpc-cta-band__title,
.mpc-lp p.mpc-cta-band__title {
  margin: 0 0 14px;
  color: var(--mpc-navy);
  font-size: clamp(22px, 2.1vw, 34px);
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
}

.mpc-cta-band__note,
.mpc-lp p.mpc-cta-band__note {
  margin: 13px 20px 0;
  color: var(--mpc-muted);
  font-size: 12px;
  text-align: center;
}

.mpc-button,
.mpc-lp a.mpc-button {
  display: inline-flex;
  min-width: 310px;
  min-height: 60px;
  padding: 14px 34px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  box-shadow: 0 7px 18px rgba(0, 0, 0, .12);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .03em;
  line-height: 1.4;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.mpc-button:hover,
.mpc-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, .20);
  filter: brightness(1.04);
}

.mpc-button:focus-visible,
.mpc-lp a:focus-visible,
.mpc-form-page a:focus-visible,
.mpc-form-page button:focus-visible {
  outline: 3px solid #ffd24a;
  outline-offset: 3px;
}

.mpc-button--red,
.mpc-lp a.mpc-button--red,
.mpc-lp a.mpc-button--red:visited {
  color: var(--mpc-white);
  background: var(--mpc-red);
}

.mpc-burst {
  display: grid;
  width: 112px;
  aspect-ratio: 1;
  flex: 0 0 auto;
  place-items: center;
  clip-path: polygon(50% 0, 61% 10%, 75% 6%, 82% 20%, 97% 23%, 94% 39%, 100% 50%, 90% 61%, 94% 77%, 78% 81%, 72% 96%, 57% 91%, 46% 100%, 36% 89%, 20% 94%, 16% 79%, 1% 72%, 7% 57%, 0 44%, 12% 34%, 9% 18%, 25% 15%, 34% 2%);
  color: var(--mpc-white);
  font-size: 13px;
  line-height: 1.25;
  text-align: center;
}

.mpc-burst strong {
  font-size: 19px;
}

.mpc-burst--navy { background: var(--mpc-navy); }
.mpc-burst--blue { background: var(--mpc-blue); }

/* 悩み・適合企業 */
.mpc-problem-grid,
.mpc-fit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, .8fr);
  gap: 58px;
  align-items: center;
  max-width: 1080px;
  margin: 40px auto 46px;
}

.mpc-check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mpc-check-list li {
  position: relative;
  margin-bottom: 13px;
  padding-left: 30px;
  font-size: 16px;
  line-height: 1.7;
}

.mpc-check-list li::before {
  position: absolute;
  left: 2px;
  top: .45em;
  width: 13px;
  height: 7px;
  content: '';
  border-left: 3px solid var(--mpc-blue);
  border-bottom: 3px solid var(--mpc-blue);
  transform: rotate(-45deg);
}

.mpc-person-illustration {
  position: relative;
  min-height: 260px;
}

.mpc-person-illustration__head {
  position: absolute;
  left: 50%;
  top: 22px;
  width: 58px;
  height: 58px;
  background: #f2b27d;
  border: 12px solid #152c54;
  border-bottom-width: 4px;
  border-radius: 50%;
  transform: translateX(-50%);
}

.mpc-person-illustration__body {
  position: absolute;
  left: 50%;
  top: 84px;
  width: 130px;
  height: 112px;
  background: var(--mpc-navy);
  border-radius: 58px 58px 10px 10px;
  transform: translateX(-50%);
}

.mpc-person-illustration__desk {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 45px;
  height: 16px;
  background: #233143;
  box-shadow: 30px 50px 0 -5px #233143, 200px 50px 0 -5px #233143;
}

.mpc-person-illustration__screen {
  position: absolute;
  right: 10%;
  bottom: 64px;
  width: 90px;
  height: 62px;
  background: #eaf3f8;
  border: 8px solid #3b4e5f;
}

/* 調査データ */
.mpc-survey-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 70px;
  align-items: center;
  margin: 46px auto;
}

.mpc-donut-wrap {
  position: relative;
  width: 380px;
  min-height: 340px;
}

.mpc-donut {
  position: relative;
  display: grid;
  width: 280px;
  margin: 30px auto;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--mpc-red) 0 5.5%, #7ca7d6 5.5% 6%, var(--mpc-blue) 6% 32%, var(--mpc-navy) 32% 100%);
  box-shadow: 0 13px 30px rgba(9, 30, 82, .15);
}

.mpc-donut-label {
  position: absolute;
  z-index: 2;
  padding: 2px 5px;
  color: var(--mpc-navy);
  background: rgba(241, 241, 241, .9);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
  white-space: nowrap;
}

.mpc-donut-label::after {
  position: absolute;
  top: 50%;
  width: 28px;
  height: 1px;
  content: '';
  background: currentColor;
}

.mpc-donut-label--html { left: 0; top: 50px; color: var(--mpc-red); }
.mpc-donut-label--html::after { left: 100%; }
.mpc-donut-label--ebook { right: 0; top: 54px; }
.mpc-donut-label--ebook::after,
.mpc-donut-label--pdf::after { right: 100%; }
.mpc-donut-label--pdf { right: 0; top: 138px; color: var(--mpc-blue); }
.mpc-donut-label--private { left: 0; bottom: 18px; }
.mpc-donut-label--private::after { left: 100%; }

.mpc-donut::before {
  position: absolute;
  width: 54%;
  aspect-ratio: 1;
  content: '';
  background: var(--mpc-white);
  border-radius: 50%;
}

.mpc-donut__center {
  position: relative;
  z-index: 1;
  font-size: 15px;
  line-height: 1.45;
  text-align: center;
}

.mpc-data-card {
  overflow: hidden;
  background: var(--mpc-white);
  border-radius: 5px;
  box-shadow: 0 12px 35px rgba(18, 39, 101, .12);
}

.mpc-data-card > div {
  display: grid;
  grid-template-columns: minmax(230px, 1.5fr) .5fr .5fr;
  gap: 12px;
  padding: 13px 20px;
  border-bottom: 1px solid #e0e4ea;
  font-size: 14px;
}

.mpc-data-card > div:last-child { border-bottom: 0; }

.mpc-data-card .mpc-data-card__head {
  color: var(--mpc-white);
  background: var(--mpc-navy);
  font-weight: 700;
}

.mpc-data-card strong { color: var(--mpc-red); }

/* PDF / Web 使い分け */
.mpc-dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}

.mpc-dual-conclusion {
  margin-top: 30px !important;
}

.mpc-usage-card {
  overflow: hidden;
  color: var(--mpc-ink);
  background: var(--mpc-white);
  border-radius: 4px;
}

.mpc-usage-card h3 {
  margin: 0;
  padding: 12px 18px;
  color: var(--mpc-white);
  background: var(--mpc-navy);
  font-size: 18px;
  text-align: left;
}

.mpc-usage-card--web h3 { background: var(--mpc-red); }

.mpc-usage-card ul {
  margin: 0;
  padding: 20px 24px 22px 48px;
  columns: 2;
}

.mpc-usage-card li {
  margin-bottom: 7px;
  break-inside: avoid;
}

/* 運用フロー */
.mpc-operation-comparison {
  max-width: 920px;
  margin: 44px auto 0;
}

.mpc-operation-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 38px;
  align-items: stretch;
}

.mpc-process-card {
  overflow: hidden;
  border: 1px solid #d8dce4;
  border-radius: 5px;
}

.mpc-process-card h3 {
  margin: 0;
  padding: 14px 20px;
  color: var(--mpc-white);
  background: var(--mpc-navy);
  font-size: 18px;
}

.mpc-process-card--new h3 { background: var(--mpc-red); }

.mpc-process-card ol {
  margin: 0;
  padding: 24px 24px 24px 52px;
  counter-reset: process;
}

.mpc-process-card li {
  margin-bottom: 10px;
  padding-left: 4px;
  line-height: 1.6;
}

.mpc-process-card:not(.mpc-process-card--new) li::marker {
  color: var(--mpc-navy);
  font-weight: 800;
}

.mpc-process-card--new li::marker { color: var(--mpc-red); font-weight: 800; }

.mpc-process-summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  isolation: isolate;
}

.mpc-process-summary span {
  --mpc-process-step-color: var(--mpc-navy);
  position: relative;
  display: grid;
  min-height: 52px;
  padding: 8px 10px;
  place-items: center;
  color: var(--mpc-white);
  background: var(--mpc-process-step-color);
  border-bottom: 0;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.mpc-process-summary span:nth-child(even) {
  --mpc-process-step-color: var(--mpc-blue);
}

.mpc-process-summary span:not(:last-child)::after {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: -9px;
  width: 0;
  height: 0;
  content: '';
  border-top: 9px solid var(--mpc-process-step-color);
  border-right: 12px solid transparent;
  border-left: 12px solid transparent;
  transform: translateX(-50%);
  pointer-events: none;
}

.mpc-operation-note {
  margin: 28px 0;
  color: var(--mpc-ink);
  font-size: 15px;
  line-height: 1.8;
  text-align: center;
}

.mpc-operation-result {
  display: grid;
  overflow: hidden;
  color: #fff;
  background: var(--mpc-red);
  border-radius: 4px;
  text-align: center;
}

.mpc-operation-result strong {
  display: grid;
  padding: 22px 18px;
  place-items: center;
  font-size: 16px;
  line-height: 1.7;
}

.mpc-operation-result span {
  display: grid;
  min-height: 62px;
  padding: 12px 18px;
  place-items: center;
  background: var(--mpc-orange);
  font-size: 16px;
  font-weight: 800;
}

.mpc-marker-line {
  margin: 32px 0 0;
  color: var(--mpc-ink);
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
}

/* WordPress 管理画面 */
.mpc-feature-list {
  display: grid;
  grid-template-columns: max-content max-content;
  grid-template-rows: repeat(4, auto);
  grid-auto-flow: column;
  gap: 8px 96px;
  max-width: 720px;
  margin: 32px auto 38px;
  padding: 0;
  justify-content: center;
  list-style: none;
}

.mpc-feature-list li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  line-height: 1.45;
}

.mpc-feature-list li::before {
  position: absolute;
  left: 0;
  content: '✓';
  color: var(--mpc-blue);
  font-weight: 900;
}

.mpc-screen-pair {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 20px;
  align-items: center;
  margin-top: 38px;
}

.mpc-screen-mock {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #adb5bf;
  border-radius: 4px;
  box-shadow: 0 14px 32px rgba(31, 40, 52, .12);
}

.mpc-screen-mock__bar {
  display: block;
  padding: 9px 14px;
  color: var(--mpc-white);
  background: #23282d;
  font-size: 13px;
  font-weight: 700;
}

.mpc-screen-mock--manual .mpc-screen-mock__bar { background: var(--mpc-blue); }

.mpc-screen-mock__side {
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 0;
  width: 22%;
  background: #2f363d;
}

.mpc-screen-mock__lines,
.mpc-screen-mock__manual-lines {
  position: absolute;
  left: 28%;
  right: 7%;
  top: 80px;
  height: 10px;
  background: #cfd8e0;
  box-shadow: 0 30px 0 #e0e5ea, 0 60px 0 #e0e5ea, 0 90px 0 #cfd8e0, 0 135px 0 18px #f2f3f5, 0 210px 0 #d5dde4;
}

.mpc-screen-mock__manual-title {
  position: absolute;
  left: 12%;
  right: 12%;
  top: 74px;
  height: 26px;
  background: var(--mpc-navy);
}

.mpc-screen-mock__manual-lines {
  left: 12%;
  top: 128px;
}

.mpc-screen-pair__arrow {
  color: var(--mpc-blue);
  font-size: 48px;
  font-weight: 900;
  text-align: center;
}

.mpc-admin-result {
  margin-top: 26px;
}

/* 比較表 */
.mpc-table-wrap {
  margin-top: 42px;
  overflow-x: auto;
  border: 1px solid #d7dce4;
}

.mpc-compare-table {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
  font-size: 14px;
}

.mpc-compare-table th,
.mpc-compare-table td {
  padding: 14px 18px;
  border: 1px solid #d7dce4;
  line-height: 1.6;
  text-align: left;
}

.mpc-compare-table thead th {
  color: var(--mpc-white);
  background: #262626;
  font-size: 15px;
}

.mpc-compare-table thead th:nth-child(2) { background: var(--mpc-navy); }
.mpc-compare-table thead th:nth-child(3) { background: var(--mpc-red); }
.mpc-compare-table tbody th { width: 20%; background: #f3f4f6; }

.mpc-compare-copy {
  margin-top: 32px;
}

.mpc-result-comparison {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.mpc-result-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.mpc-result-card h3 {
  margin: 0;
  padding: 12px 16px;
  color: #fff;
  background: #2b2b2b;
  font-size: 16px;
  line-height: 1.4;
}

.mpc-result-card--generic h3 { background: var(--mpc-navy); }
.mpc-result-card--manualpress h3 { background: var(--mpc-red); }

.mpc-result-card__preview {
  position: relative;
  display: flex;
  min-height: 280px;
  padding: 34px 26px;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: #fff;
  border: 1px solid #cfd5dd;
  border-top: 0;
}

.mpc-result-card__preview span {
  display: block;
  margin: 5px 0;
  color: var(--mpc-navy);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
  text-align: right;
}

.mpc-result-card--source .mpc-result-card__preview {
  padding: 26px;
  justify-content: flex-start;
  background: #fafafa;
}

.mpc-result-card--source .mpc-result-card__preview span {
  width: 100%;
  height: 18px;
  margin: 0 0 15px;
  background: #d9dde2;
  border: 1px solid #c6cbd1;
}

.mpc-result-card--source .mpc-result-card__preview span:first-child { height: 42px; background: #eef1f4; }
.mpc-result-card--source .mpc-result-card__preview span:nth-child(3) { height: 78px; }

.mpc-result-card--generic .mpc-result-card__preview::before {
  position: absolute;
  left: 18px;
  top: 18px;
  bottom: 18px;
  width: 34%;
  content: '';
  background: repeating-linear-gradient(#d8dce1 0 8px, transparent 8px 15px);
  opacity: .8;
}

.mpc-result-card--manualpress .mpc-result-card__preview {
  background: linear-gradient(90deg, #fff 0 62%, #edf6fb 62% 100%);
}

.mpc-result-card--manualpress .mpc-result-card__preview span {
  color: var(--mpc-red);
}

.mpc-compare-action {
  display: grid;
  min-height: 58px;
  margin-top: 12px;
  padding: 10px 16px;
  place-items: center;
  color: var(--mpc-ink);
  background: #fff;
  border: 1px solid #939aa3;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
}

.mpc-result-card--generic .mpc-compare-action { color: var(--mpc-navy); border-color: var(--mpc-navy); }
.mpc-result-card--manualpress .mpc-compare-action { color: var(--mpc-red); border-color: var(--mpc-red); }

.mpc-comparison-document {
  display: inline-grid;
  min-width: 360px;
  min-height: 68px;
  padding: 14px 28px;
  place-items: center;
  color: #fff;
  background: #036db7;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .08em;
}

/* コードベースのハンドシェイク図 */
.mpc-handshake {
  position: relative;
  min-height: 230px;
}

.mpc-handshake span {
  position: absolute;
  top: 74px;
  width: 145px;
  height: 72px;
  background: var(--mpc-blue);
  border-radius: 12px 38px 12px 12px;
}

.mpc-handshake span:first-child { left: 2%; transform: rotate(20deg); }
.mpc-handshake span:nth-child(2) { right: 2%; background: var(--mpc-navy); transform: scaleX(-1) rotate(20deg); }

.mpc-handshake i {
  position: absolute;
  left: 50%;
  top: 94px;
  width: 80px;
  height: 52px;
  background: #f3b37a;
  border: 7px solid #fff;
  border-radius: 20px;
  transform: translateX(-50%) rotate(-8deg);
}

.mpc-support-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 32px;
  max-width: 980px;
  margin: 38px auto 0;
  padding: 0;
  list-style: none;
}

.mpc-support-grid li {
  position: relative;
  padding: 0 0 0 24px;
  background: transparent;
  border-left: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
}

.mpc-support-grid li::before {
  position: absolute;
  left: 0;
  content: '✓';
  color: var(--mpc-blue);
}

.mpc-support-conclusion {
  margin-top: 30px !important;
}

/* モニター詳細 */
.mpc-monitor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-top: 42px;
}

.mpc-detail-list {
  margin: 0;
  overflow: visible;
  background: transparent;
  border: 0;
}

.mpc-detail-list > div {
  display: grid;
  grid-template-columns: 167px 1fr;
  background: #fff;
  border-bottom: 1px dotted #c8c8c8;
}

.mpc-detail-list > div:last-child { border-bottom: 1px solid #bebebe; }

.mpc-detail-list dt,
.mpc-detail-list dd {
  margin: 0;
  padding: 9px 18px;
  font-size: 14px;
}

.mpc-detail-list dt {
  background: #fff;
  font-weight: 700;
}

/* 表本体とは列幅を分け、原稿どおりの2色ヘッダーを再現する。 */
.mpc-detail-list > .mpc-detail-list__head {
  grid-template-columns: 158px minmax(0, 1fr);
  gap: 5px;
  min-height: 43px;
  background: transparent;
  border-bottom: 0;
}

.mpc-detail-list__head dt,
.mpc-detail-list__head dd {
  display: flex;
  padding: 0 18px;
  align-items: center;
  color: #fff;
  background: #323232;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.mpc-detail-list__head dd {
  padding-left: 22px;
  background: #132265;
}

.mpc-condition-card {
  align-self: start;
  background: #fff;
  border: 2px solid var(--mpc-red);
}

.mpc-condition-card h3 {
  margin: 0;
  padding: 13px 18px;
  color: #fff;
  background: var(--mpc-red);
  font-size: 18px;
}

.mpc-condition-card .mpc-check-list { padding: 22px 24px 12px; }
.mpc-condition-card .mpc-check-list li::before { border-color: var(--mpc-red); }

/* モニターフロー */
.mpc-step-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 3px;
  margin: 44px 0 0;
  padding: 0;
  list-style: none;
}

.mpc-step-flow li {
  position: relative;
  min-height: 170px;
  padding: 24px 26px 20px 30px;
  color: #fff;
  background: var(--mpc-navy);
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 50%, calc(100% - 22px) 100%, 0 100%, 22px 50%);
}

.mpc-step-flow li:first-child { clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 50%, calc(100% - 22px) 100%, 0 100%); }
.mpc-step-flow li:nth-child(even) { background: var(--mpc-blue); }
.mpc-step-flow li strong { display: block; margin-bottom: 12px; font-size: 18px; }
.mpc-step-flow li span { display: block; font-size: 13px; line-height: 1.65; }

/* FAQ */
.mpc-faq {
  margin-top: 36px;
  border-top: 1px solid #cdd2d8;
}

.mpc-faq__item {
  margin: 0;
  border-bottom: 1px solid #cdd2d8;
}

.mpc-faq__item summary {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  margin: 0;
  padding: 21px 12px;
  align-items: center;
  color: var(--mpc-ink);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  list-style: none;
  text-align: left;
  cursor: pointer;
}

.mpc-faq__item summary::-webkit-details-marker {
  display: none;
}

.mpc-faq__item[open] summary {
  padding-bottom: 12px;
}

.mpc-faq__item summary span {
  color: var(--mpc-navy);
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
}

.mpc-faq__item p,
.mpc-lp .mpc-faq__item p {
  margin: 0;
  padding: 0 12px 21px 54px;
  color: var(--mpc-muted);
  font-size: 14px;
  line-height: 1.8;
  text-align: left;
}

.mpc-faq__item p strong {
  display: inline-block;
  width: 42px;
  margin-left: -42px;
  color: var(--mpc-red);
  font-size: 24px;
  line-height: 1;
}

.mpc-final-cta {
  padding: 72px 0 0;
  background: #fff;
  text-align: center;
}

.mpc-final-cta h2 {
  margin: 0 0 12px;
  color: var(--mpc-navy);
  font-size: clamp(25px, 2.1vw, 34px);
  font-weight: 800;
  line-height: 1.45;
}

.mpc-final-cta__copy {
  margin: 0 0 42px;
}

.mpc-final-cta__copy p,
.mpc-lp .mpc-final-cta__copy p {
  margin: 0 0 4px;
  color: var(--mpc-muted);
  font-size: 15px;
  line-height: 1.8;
  text-align: center;
}

/* モニター応募フォーム */
.mpc-form-page {
  padding-top: 88px;
  background: #fff;
}

.mpc-form-page__title {
  padding: 34px 0 30px;
  border-top: 1px solid var(--mpc-navy);
  border-bottom: 1px solid var(--mpc-navy);
  text-align: center;
}

.mpc-form-page__title h1,
.mpc-form-page h1 {
  margin: 0;
  color: var(--mpc-navy);
  font-size: clamp(30px, 2vw, 34px);
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1.35;
  text-align: center;
}

.mpc-form-page__body { padding: 34px 0 46px; }

.mpc-form-guide {
  max-width: 760px;
  margin: 0 auto 34px;
  padding: 0;
  list-style: none;
}

.mpc-form-guide li {
  position: relative;
  margin-bottom: 5px;
  padding-left: 29px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
}

.mpc-form-guide li:last-child { margin-bottom: 0; }

.mpc-form-guide li::before {
  position: absolute;
  left: 0;
  top: 1px;
  width: 23px;
  height: 23px;
  content: '';
  background: var(--mpc-blue);
  border-radius: 50%;
}

.mpc-form-host {
  max-width: 1040px;
  margin: 0 auto;
}

.mpc-form-page .mpc-form,
.mpc-form-page .wpcf7-form {
  color: var(--mpc-ink);
  font-size: 16px;
}

.mpc-form-page .mpc-field {
  display: block;
  min-width: 0;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
}

.mpc-form-page .mpc-field > label,
.mpc-form-page .mpc-field > legend {
  display: block;
  width: 100%;
  margin: 0 0 11px;
  padding: 0;
  color: var(--mpc-ink);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.mpc-form-page .mpc-required {
  display: inline-flex;
  min-height: 23px;
  margin-left: 8px;
  padding: 1px 8px;
  align-items: center;
  color: #fff;
  background: var(--mpc-red);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  vertical-align: 4px;
}

.mpc-form-page .mpc-field input[type='text'],
.mpc-form-page .mpc-field input[type='email'],
.mpc-form-page .mpc-field input[type='tel'],
.mpc-form-page .mpc-field input[type='url'],
.mpc-form-page .mpc-field textarea {
  display: block;
  width: 100%;
  min-height: 54px;
  margin: 0;
  padding: 12px 15px;
  color: var(--mpc-ink);
  background: #fff;
  border: 1px solid #9b9b9b;
  border-radius: 4px;
  font: inherit;
  line-height: 1.6;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.mpc-form-page .mpc-field textarea { min-height: 140px; resize: vertical; }

.mpc-form-divider {
  height: 1px;
  margin: 50px 0 46px;
  border-top: 1px dotted #bfc4ca;
}

.mpc-choice-row,
.mpc-form-page .wpcf7-radio,
.mpc-form-page .mpc-field--optional-single .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px 64px;
  margin-top: 18px;
}

/* 任意の単一選択は CF7 上では exclusive checkbox として出力される。 */
.mpc-form-page .mpc-field--optional-single .wpcf7-checkbox,
.mpc-choice-row--five { column-gap: 42px; }

.mpc-choice-row label,
.mpc-form-page .wpcf7-list-item,
.mpc-form-page .wpcf7-list-item label {
  display: inline-flex !important;
  margin: 0 !important;
  align-items: flex-start;
  gap: 9px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  cursor: pointer;
}

.mpc-form-page input[type='radio'],
.mpc-form-page input[type='checkbox'] {
  position: relative;
  display: inline-grid;
  width: 22px;
  height: 22px;
  min-width: 22px;
  margin: 1px 0 0;
  padding: 0;
  place-content: center;
  appearance: none;
  background: #fff;
  border: 1px solid #8c939a;
  cursor: pointer;
}

.mpc-form-page input[type='radio'] { border-radius: 50%; }
.mpc-form-page input[type='checkbox'] { border-radius: 2px; }

/* CF7 の radio は常に必須のため、任意の単一選択は exclusive checkbox で表現する。 */
.mpc-form-page .mpc-field--optional-single input[type='checkbox'],
.mpc-form-page .mpc-field--optional-single input[type='checkbox']::before {
  border-radius: 50%;
}

.mpc-form-page input[type='radio']::before,
.mpc-form-page input[type='checkbox']::before {
  position: static;
  top: auto;
  left: auto;
  width: 12px;
  height: 12px;
  content: '';
  background: var(--mpc-blue);
  transform: scale(0);
  transition: transform .12s ease-in-out;
}

.mpc-form-page input[type='radio']::before { border-radius: 50%; }
.mpc-form-page input[type='checkbox']::before { border-radius: 1px; }
.mpc-form-page input[type='radio']:checked::before,
.mpc-form-page input[type='checkbox']:checked::before { transform: scale(1); }

/* 個人情報の同意 checkbox は既存のお問い合わせ form と同じ表示にする。 */
.mpc-form-page .mpc-consent input[type='checkbox'] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin: 0;
  border-color: #898989;
}

.mpc-form-page .mpc-consent input[type='checkbox']::before {
  width: 9px;
  height: 9px;
  background: #305a92;
  border-radius: 0;
  transition: none;
}

.mpc-consent {
  display: flex;
  justify-content: center;
  margin: 26px 0 28px;
  padding: 22px 24px;
  background: #e9e9e9;
  text-align: center;
}

.mpc-consent label,
.mpc-form-page .mpc-consent .wpcf7-list-item label {
  display: inline-flex !important;
  width: auto;
  margin-inline: auto !important;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 700;
}

.mpc-consent a,
.mpc-form-page .mpc-consent a {
  color: var(--mpc-navy);
  text-decoration: underline;
}

.mpc-submit,
.mpc-form-page input[type='submit'].mpc-submit {
  display: block;
  width: min(100%, 310px);
  min-height: 72px;
  margin: 0 auto;
  padding: 16px 30px;
  appearance: none;
  color: #fff;
  background: var(--mpc-red);
  border: 0;
  border-radius: 7px;
  box-shadow: 0 4px 10px rgba(239, 56, 39, .12);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.4;
  cursor: pointer;
  transition: transform .2s ease, filter .2s ease;
}

.mpc-submit:hover,
.mpc-submit:focus-visible { transform: translateY(-2px); filter: brightness(1.04); }

.mpc-form-response {
  min-height: 28px;
  margin: 18px 0 0;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.mpc-form-response[data-status='invalid'] { color: #b52920; }
.mpc-form-response[data-status='valid'] { color: #087342; }
.mpc-form-response:empty { display: none; }

.mpc-form-page .wpcf7-not-valid-tip {
  display: block;
  margin-top: 5px;
  color: #b52920;
  font-size: 13px !important;
}

.mpc-form-page .wpcf7 form .wpcf7-response-output,
.mpc-form-page .wpcf7-form .wpcf7-response-output {
  display: block !important;
  max-width: 760px;
  margin: 22px auto 0;
  padding: 12px 16px;
  border-width: 2px;
  font-size: 14px;
  text-align: center;
}

/* CF7 の初期状態では空の応答領域を表示しない。送信結果が入ると aria-hidden が解除される。 */
.mpc-form-page .wpcf7 form .wpcf7-response-output[aria-hidden='true'],
.mpc-form-page .wpcf7-form .wpcf7-response-output[aria-hidden='true'] {
  display: none !important;
}

/* タブレット */
@media (max-width: 1000px) {
  .mpc-container,
  .mpc-container--narrow,
  .mpc-container--form { width: min(100% - 48px, 900px); }

  .mpc-section { padding: 72px 0; }
  .mpc-hero { min-height: 500px; padding: 145px 0 82px; }
  .mpc-hero__visual { right: -8%; width: 52vw; opacity: .52; }
  .mpc-hero h1 span { white-space: normal; }

  .mpc-conversion { grid-template-columns: 1fr auto 1fr auto 1fr; gap: 12px; }
  .mpc-conversion__item { min-height: 132px; padding: 14px; }
  .mpc-arrow { font-size: 34px; }

  .mpc-problem-grid,
  .mpc-fit-grid { grid-template-columns: 1fr 270px; gap: 28px; }
  .mpc-survey-grid { grid-template-columns: 300px 1fr; gap: 34px; }
  .mpc-donut-wrap { width: 300px; min-height: 300px; }
  .mpc-donut { width: 230px; }
  .mpc-donut-label { font-size: 11px; }

  .mpc-operation-row { grid-template-columns: 1fr 210px; gap: 20px; }
  .mpc-process-card ol { padding-left: 40px; }
  .mpc-feature-list { grid-template-columns: max-content max-content; }
  .mpc-screen-mock { min-height: 300px; }
  .mpc-support-grid { grid-template-columns: repeat(2, 1fr); }
  .mpc-result-card__preview { min-height: 240px; padding: 24px 18px; }
  .mpc-result-card__preview span { font-size: 13px; }
  .mpc-step-flow { grid-template-columns: 1fr; gap: 6px; }
  .mpc-step-flow li,
  .mpc-step-flow li:first-child { min-height: auto; padding: 18px 24px; clip-path: none; border-radius: 4px; }

  .mpc-choice-row,
  .mpc-form-page .wpcf7-radio,
  .mpc-form-page .mpc-field--optional-single .wpcf7-checkbox,
  .mpc-choice-row--five { column-gap: 32px; }
}

/* スマートフォン */
@media (max-width: 640px) {
  .mpc-lp,
  .mpc-form-page { font-size: 14px; }

  .mpc-container,
  .mpc-container--narrow,
  .mpc-container--form { width: min(100% - 32px, 560px); }

  .mpc-section { padding: 54px 0; }
  .mpc-mobile-only { display: initial; }
  .mpc-desktop-only { display: none; }

  .mpc-heading,
  .mpc-lp h2.mpc-heading { margin-bottom: 16px; font-size: 25px; line-height: 1.45; }
  .mpc-kicker { font-size: 22px; }
  .mpc-subheading { margin-bottom: 22px; font-size: 17px; }
  .mpc-copy,
  .mpc-lp p.mpc-copy { font-size: 14px; line-height: 1.85; text-align: left; }
  .mpc-copy-group { font-size: 14px; line-height: 1.85; }
  .mpc-copy-group--center p,
  .mpc-lp .mpc-copy-group--center p { text-align: left; }

  .mpc-hero { min-height: 510px; padding: 140px 0 58px; }
  .mpc-hero h1,
  .mpc-lp .mpc-hero h1 { font-size: 28px; line-height: 1.35; }
  .mpc-hero__lead,
  .mpc-lp p.mpc-hero__lead { font-size: 16px; }
  .mpc-hero__visual { right: -45%; top: 36%; width: 96vw; opacity: .35; }

  .mpc-intro__lead { font-size: 17px; }
  .mpc-conversion,
  .mpc-conversion--compact { grid-template-columns: 1fr; gap: 8px; margin-bottom: 30px; }
  .mpc-conversion__item,
  .mpc-conversion--compact .mpc-conversion__item { min-height: 118px; }
  .mpc-arrow { transform: rotate(90deg); text-align: center; }

  .mpc-cta-band__inner { gap: 12px; }
  .mpc-burst { width: 72px; font-size: 9px; }
  .mpc-burst strong { font-size: 12px; }
  .mpc-cta-band__title,
  .mpc-lp p.mpc-cta-band__title { font-size: 17px; }
  .mpc-button,
  .mpc-lp a.mpc-button { min-width: 0; width: 100%; min-height: 54px; padding: 12px 16px; font-size: 14px; }

  .mpc-problem-grid,
  .mpc-fit-grid { grid-template-columns: 1fr; margin: 28px auto; }
  .mpc-check-list li { padding-left: 26px; font-size: 14px; }
  .mpc-person-illustration,
  .mpc-handshake { min-height: 210px; }

  .mpc-survey-grid { grid-template-columns: 1fr; gap: 26px; }
  .mpc-donut-wrap { width: min(100%, 330px); min-height: 300px; margin-inline: auto; }
  .mpc-donut { width: min(220px, 65vw); margin-inline: auto; }
  .mpc-data-card { overflow-x: auto; }
  .mpc-data-card > div { min-width: 560px; padding: 11px 14px; }

  .mpc-dual-grid,
  .mpc-monitor-grid { grid-template-columns: 1fr; }
  .mpc-usage-card ul { columns: 1; }

  .mpc-operation-row { grid-template-columns: 1fr; }
  .mpc-process-summary { flex-direction: row; justify-content: flex-start; overflow-x: auto; }
  .mpc-process-summary span { min-width: 110px; border-right: 1px solid rgba(255, 255, 255, .4); border-bottom: 0; }

  .mpc-feature-list,
  .mpc-support-grid { grid-template-columns: 1fr; }
  .mpc-screen-pair { grid-template-columns: 1fr; }
  .mpc-screen-pair__arrow { transform: rotate(90deg); }
  .mpc-screen-mock { min-height: 270px; }

  .mpc-result-comparison { grid-template-columns: 1fr; gap: 28px; }
  .mpc-result-card__preview { min-height: 220px; }
  .mpc-comparison-document { min-width: 0; width: 100%; min-height: 60px; font-size: 15px; }

  .mpc-detail-list > div { grid-template-columns: 105px 1fr; }
  .mpc-detail-list > .mpc-detail-list__head { grid-template-columns: 105px minmax(0, 1fr); }
  .mpc-detail-list dt,
  .mpc-detail-list dd { padding: 9px 10px; font-size: 12px; }

  .mpc-faq__item { padding: 0; }
  .mpc-faq__item summary { grid-template-columns: 34px minmax(0, 1fr); padding: 16px 4px; font-size: 14px; }
  .mpc-faq__item[open] summary { padding-bottom: 10px; }
  .mpc-faq__item p,
  .mpc-lp .mpc-faq__item p { padding: 0 4px 18px 38px; font-size: 13px; }
  .mpc-faq__item p strong { width: 34px; margin-left: -34px; }

  .mpc-lp p.mpc-center { margin-top: 28px; }

  .mpc-final-cta { padding-top: 54px; }
  .mpc-final-cta h2 { font-size: 24px; }

  .mpc-form-page { padding-top: 72px; }
  .mpc-form-page__title { padding: 26px 0 24px; }
  .mpc-form-page__title h1,
  .mpc-form-page h1 { font-size: 28px; }
  .mpc-form-page__body { padding: 32px 0 44px; }
  .mpc-form-guide { margin-bottom: 28px; }
  .mpc-form-guide li { padding-left: 24px; font-size: 14px; }
  .mpc-form-guide li::before { width: 14px; height: 14px; }

  .mpc-form-page .mpc-field { margin-bottom: 18px; }
  .mpc-form-page .mpc-field > label,
  .mpc-form-page .mpc-field > legend { font-size: 16px; }
  .mpc-form-page .mpc-field input[type='text'],
  .mpc-form-page .mpc-field input[type='email'],
  .mpc-form-page .mpc-field input[type='tel'],
  .mpc-form-page .mpc-field input[type='url'],
  .mpc-form-page .mpc-field textarea { min-height: 48px; padding: 10px 12px; font-size: 16px; }
  .mpc-form-page .mpc-field textarea { min-height: 140px; }

  .mpc-choice-row,
  .mpc-form-page .wpcf7-radio,
  .mpc-form-page .mpc-field--optional-single .wpcf7-checkbox,
  .mpc-choice-row--five {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .mpc-choice-row label,
  .mpc-form-page .wpcf7-list-item,
  .mpc-form-page .wpcf7-list-item label { font-size: 14px; }
  .mpc-consent { margin-top: 24px; padding: 22px 16px; }
  .mpc-consent label,
  .mpc-form-page .mpc-consent .wpcf7-list-item label { align-items: flex-start; font-size: 14px; }
  .mpc-submit,
  .mpc-form-page input[type='submit'].mpc-submit { min-height: 62px; font-size: 18px; }
}

/*
 * 原稿画像に合わせた LP の最終調整。
 * 素材は後日差し替えられるため、画像自体へ文字や装飾を追加せず表示寸法だけを管理する。
 */
.mpc-lp {
  --mpc-blue-light: #e2eff7;
  --mpc-surface: #ebebeb;
  color: #333;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.75;
}

.mpc-lp .mpc-container {
  width: min(100% - 48px, 1200px);
}

.mpc-lp .mpc-container--narrow {
  width: min(100% - 48px, 1080px);
}

.mpc-lp .mpc-heading,
.mpc-lp h2.mpc-heading {
  margin-bottom: 17px;
  color: #14266a;
  font-size: 30px;
  line-height: 1.35;
}

.mpc-lp .mpc-heading--light,
.mpc-lp h2.mpc-heading--light {
  color: #fff;
}

.mpc-lp .mpc-kicker {
  margin-bottom: 10px;
  color: #14266a;
  font-size: 30px;
  line-height: 1.35;
}

.mpc-lp .mpc-subheading {
  margin-bottom: 24px;
  color: #087abb;
  font-size: 24px;
  line-height: 1.4;
}

.mpc-lp .mpc-subheading--light {
  color: #9edcff;
}

.mpc-lp .mpc-copy,
.mpc-lp p.mpc-copy,
.mpc-lp .mpc-copy-group {
  font-size: 15px;
  line-height: 1.75;
}

.mpc-lp .mpc-copy,
.mpc-lp p.mpc-copy {
  max-width: 1080px;
}

/* AI 原稿から抽出した背景と HTML テキストを分離して表示する。 */
.mpc-lp .mpc-hero {
  position: relative;
  min-height: 0;
  padding: 0;
  aspect-ratio: 3329 / 654;
  isolation: isolate;
  background: #111;
}

.mpc-lp .mpc-hero::before,
.mpc-lp .mpc-hero__visual {
  content: none;
  display: none;
}

.mpc-lp .mpc-hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  content: '';
  background: linear-gradient(90deg, rgba(0, 8, 31, .52) 0%, rgba(0, 8, 31, .24) 52%, rgba(0, 8, 31, .08) 100%);
  pointer-events: none;
}

.mpc-lp .mpc-hero__image {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mpc-lp .mpc-hero__copy {
  position: absolute !important;
  z-index: 2;
  inset: 0 !important;
  display: flex;
  width: min(100% - 48px, 1200px) !important;
  height: auto !important;
  padding: 0 !important;
  margin: 0 auto !important;
  flex-direction: column;
  justify-content: center;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
}

.mpc-lp .mpc-hero h1 .mpc-hero__particle {
  display: inline-block;
  font-size: .64em;
  line-height: 1;
  vertical-align: .08em;
  white-space: nowrap;
}

.mpc-lp .mpc-hero__lead,
.mpc-lp p.mpc-hero__lead {
  font-size: clamp(17px, 1.75vw, 28px);
}

/* サービス概要 */
.mpc-lp .mpc-intro {
  min-height: 590px;
  padding: 50px 0 44px;
  text-align: center;
}

.mpc-lp .mpc-intro__lead {
  margin-bottom: 26px;
  color: #172d6d;
  font-size: 20px;
  line-height: 1.55;
}

.mpc-reference-flow {
  display: block;
  width: min(100%, 783px);
  height: auto;
  margin: 0 auto 28px;
}

.mpc-reference-flow--compact {
  width: min(100%, 780px);
  margin-bottom: 0;
}

.mpc-reference-flow-mobile {
  display: none;
}

.mpc-lp .mpc-intro .mpc-copy {
  margin-bottom: 13px;
  font-size: 17px;
  line-height: 1.8;
}

.mpc-lp .mpc-intro .mpc-copy strong {
  font-size: 23px;
  line-height: 2;
}

.mpc-lp .mpc-intro .mpc-copy--small {
  margin-bottom: 0;
  font-size: 15px;
  text-align: center;
}

/* モニター CTA */
.mpc-lp .mpc-cta-band {
  min-height: 245px;
  padding: 35px 0 18px;
  overflow: hidden;
  background: #e2eff7;
}

.mpc-lp .mpc-cta-band__inner {
  gap: 0;
  align-items: flex-start;
}

.mpc-cta-badge {
  display: block;
  width: 139px;
  height: auto;
  flex: 0 0 auto;
}

.mpc-cta-badge--free {
  width: 143px;
}

.mpc-lp .mpc-cta-band__inner > div {
  width: 517px;
  padding-top: 4px;
  text-align: center;
}

.mpc-lp .mpc-cta-band__title,
.mpc-lp p.mpc-cta-band__title {
  margin-bottom: 22px;
  color: #132168;
  font-size: 34px;
  line-height: 1.1;
}

.mpc-lp .mpc-button,
.mpc-lp a.mpc-button {
  min-width: 347px;
  min-height: 75px;
  padding: 17px 30px;
  border-radius: 7px;
  box-shadow: none;
  font-size: 18px;
}

.mpc-lp .mpc-cta-band__note,
.mpc-lp p.mpc-cta-band__note {
  margin: 5px 20px 0;
  color: #4e4e4e;
  font-size: 12px;
  line-height: 1.5;
}

/* 悩み */
.mpc-lp section[aria-labelledby='mpc-problem-title'] {
  min-height: 592px;
  padding: 74px 0 60px;
}

.mpc-lp #mpc-problem-title {
  font-size: 34px;
}

.mpc-lp .mpc-problem-grid {
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 32px;
  max-width: 900px;
  margin: 34px auto 30px;
}

.mpc-problem-illustration {
  display: block;
  width: 250px;
  height: auto;
}

.mpc-lp .mpc-check-list,
.mpc-lp .mpc-feature-list,
.mpc-lp .mpc-support-grid {
  --mpc-check-mark-color: #087fbe;
}

.mpc-lp .mpc-condition-card .mpc-check-list {
  --mpc-check-mark-color: var(--mpc-red);
}

.mpc-lp .mpc-check-list li,
.mpc-lp .mpc-feature-list li,
.mpc-lp .mpc-support-grid li {
  font-weight: 700;
}

.mpc-lp .mpc-check-list li::before,
.mpc-lp .mpc-feature-list li::before,
.mpc-lp .mpc-support-grid li::before {
  left: 0;
  top: .28em;
  width: 13px;
  height: 7px;
  content: '';
  color: transparent;
  border: 0;
  border-left: 3px solid var(--mpc-check-mark-color);
  border-bottom: 3px solid var(--mpc-check-mark-color);
  font-size: inherit;
  line-height: 1;
  transform: rotate(-45deg);
}

.mpc-lp .mpc-check-list li {
  margin-bottom: 13px;
  padding-left: 33px;
  font-size: 16px;
  line-height: 1.35;
}

.mpc-lp section[aria-labelledby='mpc-problem-title'] .mpc-copy-group {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.85;
}

/* 独自調査 */
.mpc-lp section[aria-labelledby='mpc-survey-title'] {
  min-height: 845px;
  padding: 76px 0 70px;
}

.mpc-lp section[aria-labelledby='mpc-survey-title'] .mpc-copy-group--center {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.8;
}

.mpc-lp .mpc-survey-grid {
  grid-template-columns: 380px 520px;
  gap: 60px;
  max-width: 960px;
  margin: 42px auto;
}

.mpc-survey-chart {
  display: block;
  width: 380px;
  height: auto;
}

.mpc-lp .mpc-data-card {
  border-radius: 0;
  box-shadow: none;
}

.mpc-lp .mpc-data-card > div {
  align-items: center;
  grid-template-columns: 46% 27% 27%;
  gap: 0;
  min-height: 49px;
  padding: 0 18px;
  border-bottom: 1px dotted #b5b5b5;
  font-size: 15px;
  line-height: 1.4;
}

.mpc-lp .mpc-data-card .mpc-data-card__head {
  min-height: 53px;
  color: #fff;
  background: #15276d;
  border-bottom: 0;
  font-size: 16px;
  font-weight: 700;
}

.mpc-lp .mpc-data-card > div:nth-child(2) {
  color: #ef3b2d;
  background: #fbdedb;
  font-weight: 700;
}

.mpc-lp .mpc-data-card > div:nth-child(4) {
  color: #087abb;
}

.mpc-lp .mpc-data-card > div:not(.mpc-data-card__head) > :nth-child(n + 2) {
  text-align: right;
}

.mpc-lp .mpc-data-card > div:last-child {
  border-bottom: 1px solid #aeb3ba;
}

.mpc-lp section[aria-labelledby='mpc-survey-title'] > .mpc-container > .mpc-copy-group:last-child {
  margin-bottom: 0;
}

/* サービス説明・PDF 併用 */
.mpc-lp section[aria-labelledby='mpc-about-title'] {
  min-height: 691px;
  padding: 80px 0 70px;
}

.mpc-lp section[aria-labelledby='mpc-about-title'] .mpc-copy-group {
  margin-top: 28px;
  margin-bottom: 0;
}

.mpc-lp .mpc-diagram-label {
  margin: 34px 0 20px;
  color: #14266a;
  font-size: 20px;
}

.mpc-lp section[aria-labelledby='mpc-dual-title'] {
  min-height: 677px;
  padding: 70px 0 60px;
  background: #132265;
}

.mpc-lp section[aria-labelledby='mpc-dual-title'] .mpc-copy-group {
  margin: 27px auto 0;
  font-size: 14px;
}

.mpc-lp .mpc-dual-grid {
  gap: 44px;
  max-width: 874px;
  margin: 32px auto 0;
}

.mpc-lp .mpc-usage-card {
  border: 1px solid #fff;
  border-radius: 0;
  box-shadow: none;
}

.mpc-lp .mpc-usage-card h3 {
  min-height: 50px;
  padding: 13px 28px;
  font-size: 16px;
  line-height: 1.5;
}

.mpc-lp .mpc-usage-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 16px 29px 19px;
  columns: auto;
  list-style: none;
}

.mpc-lp .mpc-usage-card li {
  position: relative;
  margin: 0;
  padding-left: 20px;
  font-size: 15px;
  line-height: 1.25;
}

.mpc-lp .mpc-usage-card li::before {
  position: absolute;
  left: 0;
  top: .2em;
  width: 13px;
  height: 13px;
  content: '';
  background: #14266a;
  border-radius: 50%;
}

.mpc-lp .mpc-usage-card--web li::before {
  background: #ef3b2d;
}

.mpc-lp .mpc-dual-conclusion {
  margin-top: 28px;
  margin-bottom: 0;
  font-size: 14px;
}

/* 原稿から切り出した管理画面・変換結果・適合企業の素材。 */
.mpc-lp section[aria-labelledby='mpc-admin-title'] > .mpc-container,
.mpc-lp section[aria-labelledby='mpc-compare-title'] > .mpc-container {
  width: min(100% - 48px, 1210px);
}

.mpc-admin-visual-pair {
  display: grid;
  grid-template-columns: 1217fr 1221fr;
  gap: 39px;
  width: min(100%, 1210px);
  margin: 28px auto 0;
}

.mpc-admin-visual-pair img {
  display: block;
  min-width: 0;
  width: 100%;
  height: auto;
}

.mpc-lp .mpc-result-comparison {
  grid-template-columns: 412fr 1008fr 1008fr;
  gap: 18px;
  width: min(100%, 1210px);
  margin: 28px auto 0;
}

.mpc-lp .mpc-result-card h3 {
  display: flex;
  min-height: 42px;
  padding: 8px 18px;
  align-items: center;
  font-size: 16px;
  line-height: 1.3;
}

.mpc-result-card__image {
  display: block;
  width: 100%;
  height: auto;
}

.mpc-lp .mpc-compare-action,
.mpc-lp .mpc-comparison-document {
  font-family: inherit;
  font-weight: 800;
  opacity: 1;
  cursor: default;
}

.mpc-lp .mpc-compare-action {
  width: 100%;
}

.mpc-lp a.mpc-compare-action {
  cursor: pointer;
  text-decoration: none;
}

.mpc-lp a.mpc-comparison-document,
.mpc-lp a.mpc-comparison-document:link,
.mpc-lp a.mpc-comparison-document:visited,
.mpc-lp a.mpc-comparison-document:hover,
.mpc-lp a.mpc-comparison-document:focus-visible,
.mpc-lp a.mpc-comparison-document:active {
  color: #fff;
  cursor: pointer;
  text-decoration: none;
}

.mpc-lp .mpc-comparison-document {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  border: 0;
}

.mpc-lp .mpc-comparison-document__icon {
  display: block;
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  background: url('../../../images/icon_link_wh.svg') center / contain no-repeat;
}

.mpc-lp section[aria-labelledby='mpc-fit-title'] {
  background: #e1eef5;
}

.mpc-lp .mpc-fit-grid {
  grid-template-columns: minmax(0, 1fr) 408px;
  gap: 50px;
  max-width: 1000px;
}

.mpc-fit-illustration {
  display: block;
  width: 408px;
  height: auto;
}

@media (max-width: 1000px) {
  .mpc-lp .mpc-hero {
    min-height: 360px;
    aspect-ratio: auto;
  }

  .mpc-lp .mpc-container,
  .mpc-lp .mpc-container--narrow {
    width: min(100% - 48px, 900px);
  }

  .mpc-lp .mpc-intro,
  .mpc-lp section[aria-labelledby='mpc-problem-title'],
  .mpc-lp section[aria-labelledby='mpc-survey-title'],
  .mpc-lp section[aria-labelledby='mpc-about-title'],
  .mpc-lp section[aria-labelledby='mpc-dual-title'] {
    min-height: 0;
  }

  .mpc-lp .mpc-survey-grid {
    grid-template-columns: minmax(260px, 38%) minmax(0, 1fr);
    gap: 34px;
  }

  .mpc-survey-chart {
    width: 100%;
  }

  .mpc-lp .mpc-fit-grid {
    grid-template-columns: minmax(0, 1fr) 270px;
  }

  .mpc-fit-illustration {
    width: 270px;
  }

  .mpc-lp .mpc-compare-table {
    min-width: 0;
  }
}

@media (max-width: 640px) {
  .mpc-lp .mpc-hero {
    min-height: 410px;
  }

  .mpc-lp .mpc-hero__copy {
    width: min(100% - 32px, 560px) !important;
  }

  .mpc-lp .mpc-hero__image {
    object-position: center;
  }

  .mpc-lp .mpc-container,
  .mpc-lp .mpc-container--narrow {
    width: min(100% - 32px, 560px);
  }

  .mpc-lp .mpc-heading,
  .mpc-lp h2.mpc-heading,
  .mpc-lp #mpc-problem-title,
  .mpc-lp .mpc-kicker {
    font-size: 25px;
  }

  .mpc-lp .mpc-subheading {
    font-size: 17px;
  }

  .mpc-lp .mpc-intro {
    padding: 42px 0;
  }

  .mpc-lp .mpc-intro__lead {
    font-size: 17px;
  }

  .mpc-lp .mpc-intro .mpc-copy,
  .mpc-lp .mpc-intro .mpc-copy strong {
    font-size: 15px;
    line-height: 1.8;
  }

  .mpc-lp .mpc-reference-flow {
    display: block;
    width: 100%;
    margin-bottom: 24px;
  }

  .mpc-reference-flow-mobile {
    display: none;
  }

  .mpc-lp .mpc-reference-flow--compact {
    margin-bottom: 0;
  }

  .mpc-lp .mpc-cta-band {
    min-height: 0;
    padding: 28px 0 18px;
  }

  .mpc-lp .mpc-cta-band__inner {
    gap: 4px;
    align-items: center;
  }

  .mpc-cta-badge {
    width: 70px;
  }

  .mpc-cta-badge--free {
    width: 72px;
  }

  .mpc-lp .mpc-cta-band__inner > div {
    width: min(100%, 260px);
    padding-top: 0;
  }

  .mpc-lp .mpc-cta-band__title,
  .mpc-lp p.mpc-cta-band__title {
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 1.3;
  }

  .mpc-lp .mpc-button,
  .mpc-lp a.mpc-button {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    padding: 12px 14px;
    font-size: 14px;
  }

  .mpc-lp section[aria-labelledby='mpc-problem-title'],
  .mpc-lp section[aria-labelledby='mpc-survey-title'],
  .mpc-lp section[aria-labelledby='mpc-about-title'],
  .mpc-lp section[aria-labelledby='mpc-dual-title'] {
    padding: 54px 0;
  }

  .mpc-lp .mpc-problem-grid,
  .mpc-lp .mpc-fit-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .mpc-problem-illustration,
  .mpc-fit-illustration {
    width: min(100%, 250px);
    margin-inline: auto;
  }

  .mpc-lp .mpc-check-list li {
    font-size: 14px;
  }

  .mpc-lp .mpc-process-summary {
    width: 100%;
    flex-direction: column;
    overflow: visible;
  }

  .mpc-lp .mpc-process-summary span {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    border-right: 0;
    border-bottom: 0;
  }

  .mpc-lp .mpc-feature-list {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-flow: row;
    gap: 8px;
    max-width: none;
  }

  .mpc-lp .mpc-survey-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .mpc-survey-chart {
    width: min(100%, 380px);
    margin-inline: auto;
  }

  .mpc-lp .mpc-data-card {
    overflow: visible;
  }

  .mpc-lp .mpc-data-card > div {
    grid-template-columns: minmax(0, 1.7fr) 62px 62px;
    min-width: 0;
    min-height: 0;
    padding: 11px 10px;
    font-size: 12px;
  }

  .mpc-lp .mpc-data-card .mpc-data-card__head {
    min-height: 46px;
    padding-block: 8px;
    font-size: 12px;
  }

  .mpc-lp .mpc-data-card > div > :nth-child(n + 2) {
    text-align: center;
  }

  .mpc-lp .mpc-admin-visual-pair {
    display: grid;
    grid-template-columns: 1217fr 1221fr;
    gap: 11px;
    width: 100%;
    margin: 28px auto 0;
  }

  .mpc-admin-visual-pair img {
    display: block;
    width: 100%;
    height: auto;
  }

  .mpc-lp .mpc-table-wrap {
    overflow: visible;
    border: 0;
  }

  .mpc-lp .mpc-compare-table,
  .mpc-lp .mpc-compare-table tbody,
  .mpc-lp .mpc-compare-table tr,
  .mpc-lp .mpc-compare-table th,
  .mpc-lp .mpc-compare-table td {
    display: block;
    width: 100%;
    min-width: 0;
  }

  .mpc-lp .mpc-compare-table thead {
    position: absolute;
    overflow: hidden;
    width: 1px;
    height: 1px;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  .mpc-lp .mpc-compare-table tbody tr {
    overflow: hidden;
    margin-bottom: 16px;
    border: 1px solid #d7dce4;
    border-radius: 4px;
  }

  .mpc-lp .mpc-compare-table tbody th {
    padding: 10px 12px;
    color: #fff;
    background: #303030;
    border: 0;
    font-size: 14px;
  }

  .mpc-lp .mpc-compare-table tbody td {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 10px;
    padding: 10px 12px;
    align-items: center;
    border: 0;
    border-top: 1px solid #d7dce4;
    font-size: 12px;
  }

  .mpc-lp .mpc-compare-table tbody td::before {
    content: attr(data-label);
    color: var(--mpc-navy);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.35;
  }

  .mpc-lp .mpc-compare-table tbody td:nth-of-type(2)::before {
    color: var(--mpc-red);
  }

  .mpc-lp .mpc-result-comparison {
    grid-template-columns: 1fr;
    gap: 24px;
    margin: 28px auto 0;
  }

  .mpc-lp .mpc-result-card h3 {
    padding-inline: 12px;
    font-size: 14px;
  }

  /* SP では縦長の元 PDF を比較画像と同じ比率で上端から切り抜く。 */
  .mpc-lp .mpc-result-card--source .mpc-result-card__image {
    aspect-ratio: 1008 / 580;
    height: auto;
    object-fit: cover;
    object-position: top center;
  }
}

/*
 * 150dpi の原稿 JPG と共通ヘッダーのロゴ寸法から、
 * デザインの基準ビューポートは 1600px として測定する。
 */
@media (min-width: 1001px) {
  .mpc-lp .mpc-intro {
    min-height: 518px;
  }

  .mpc-lp .mpc-intro .mpc-container {
    width: min(100% - 48px, 1080px);
  }

  .mpc-reference-flow {
    width: min(100%, 783px);
  }

  .mpc-reference-flow--compact {
    width: min(100%, 780px);
  }

  .mpc-lp .mpc-cta-band {
    min-height: 245px;
  }

  .mpc-cta-badge {
    width: 139px;
  }

  .mpc-cta-badge--free {
    width: 143px;
  }

  .mpc-lp .mpc-cta-band__inner > div {
    width: 517px;
  }

  .mpc-lp section[aria-labelledby='mpc-problem-title'] {
    min-height: 592px;
  }

  .mpc-lp .mpc-problem-grid {
    grid-template-columns: minmax(0, 1fr) 250px;
    gap: 32px;
    max-width: 900px;
  }

  .mpc-problem-illustration {
    width: 250px;
  }

  .mpc-lp section[aria-labelledby='mpc-survey-title'] {
    min-height: 845px;
  }

  .mpc-lp section[aria-labelledby='mpc-survey-title'] > .mpc-container {
    width: min(100% - 48px, 1080px);
  }

  .mpc-lp .mpc-survey-grid {
    grid-template-columns: 380px 520px;
    gap: 60px;
    max-width: 960px;
    margin-block: 32px;
  }

  .mpc-survey-chart {
    width: 380px;
  }

  .mpc-lp section[aria-labelledby='mpc-about-title'] {
    min-height: 691px;
  }

  .mpc-lp section[aria-labelledby='mpc-about-title'] > .mpc-container,
  .mpc-lp section[aria-labelledby='mpc-dual-title'] > .mpc-container {
    width: min(100% - 48px, 1080px);
  }

  .mpc-lp section[aria-labelledby='mpc-dual-title'] {
    min-height: 677px;
  }

  .mpc-lp .mpc-dual-grid {
    max-width: 874px;
  }

  .mpc-lp .mpc-usage-card ul {
    columns: 1;
  }

  .mpc-lp section[aria-labelledby='mpc-operation-title'] {
    min-height: 904px;
    padding: 81px 0 64px;
  }

  .mpc-lp .mpc-operation-comparison {
    max-width: 920px;
    margin-top: 24px;
  }

  .mpc-lp #mpc-operation-title {
    font-size: 34px;
  }

  .mpc-lp section[aria-labelledby='mpc-operation-title'] > .mpc-container > .mpc-subheading {
    font-size: 26px;
  }

  .mpc-lp .mpc-operation-row {
    width: 100%;
    max-width: 706px;
    margin-inline: auto;
    grid-template-columns: minmax(0, 1fr) 250px;
    gap: 42px;
  }

  .mpc-lp .mpc-process-card h3 {
    padding: 7px 16px;
    font-size: 18px;
  }

  .mpc-lp .mpc-process-card ol {
    padding: 18px 18px 18px 42px;
  }

  .mpc-lp .mpc-process-card li {
    margin-bottom: 8px;
    font-size: 15px;
    line-height: 1.45;
  }

  .mpc-lp .mpc-process-summary span {
    min-height: 45px;
    padding: 4px 8px;
    font-size: 15px;
  }

  .mpc-lp .mpc-operation-note {
    margin: 19px 0 44px !important;
    font-size: 16px;
  }

  .mpc-lp .mpc-operation-result {
    align-self: start;
  }

  .mpc-lp .mpc-operation-result strong {
    padding: 10px 14px;
    font-size: 16px;
    line-height: 1.4;
  }

  .mpc-lp .mpc-operation-result span {
    min-height: 46px;
    padding: 4px 14px;
    font-size: 16px;
    line-height: 1.4;
  }

  .mpc-lp .mpc-marker-line {
    margin-top: 27px;
    font-size: 18px;
  }

  .mpc-lp section[aria-labelledby='mpc-admin-title'] {
    min-height: 1627px;
    padding: 76px 0;
  }

  .mpc-lp .mpc-admin-visual-pair {
    margin-top: 57px;
  }

  .mpc-lp .mpc-comparison-document {
    min-width: 388px;
  }

  .mpc-lp .mpc-step-flow {
    gap: 0;
    margin-top: 50px;
  }

  /* 原稿の文字比率とパネル高に合わせ、各ステップの可読性を揃える。 */
  .mpc-lp .mpc-step-flow li {
    min-height: 202px;
  }

  .mpc-lp .mpc-step-flow li:not(:first-child) {
    margin-left: -14px;
    padding-left: 50px;
  }

  .mpc-lp .mpc-step-flow li strong {
    font-size: 24px;
  }

  .mpc-lp .mpc-step-flow li span {
    font-size: 16px;
    line-height: 1.5;
  }

  .mpc-lp section[aria-labelledby='mpc-compare-title'] {
    min-height: 1270px;
    padding: 76px 0;
  }

  .mpc-lp .mpc-compare-table {
    font-size: 12px;
  }

  .mpc-lp .mpc-compare-table th,
  .mpc-lp .mpc-compare-table td {
    padding: 12px 15px;
  }

  .mpc-lp .mpc-compare-table thead th {
    font-size: 13px;
  }

  .mpc-lp .mpc-table-wrap {
    width: min(100%, 900px);
    margin-inline: auto;
  }

  .mpc-lp section[aria-labelledby='mpc-fit-title'] {
    min-height: 523px;
    padding: 75px 0;
  }

  .mpc-lp .mpc-fit-grid {
    margin: 20px auto 0;
  }

  /* 原稿の左右コンテンツ間隔に合わせ、リストだけを内側へ寄せる。 */
  .mpc-lp section[aria-labelledby='mpc-fit-title'] .mpc-check-list {
    padding-left: 60px;
  }

  .mpc-lp section[aria-labelledby='mpc-support-title'] {
    padding: 75px 0;
  }

  /* 原稿の3列位置に合わせ、左右の余白と列間隔を均等に見せる。 */
  .mpc-lp .mpc-support-grid {
    width: 100%;
    max-width: 870px;
    grid-template-columns: 247px 253px 284px;
    grid-template-rows: repeat(3, auto);
    grid-auto-flow: column;
    column-gap: 43px;
  }

  .mpc-lp .mpc-support-grid li {
    padding-left: 44px;
  }

  .mpc-lp section[aria-labelledby='mpc-monitor-title'] {
    min-height: 951px;
  }

  .mpc-lp section[aria-labelledby='mpc-flow-title'] {
    min-height: 462px;
    padding: 72px 0;
  }

  .mpc-lp section[aria-labelledby='mpc-faq-title'] {
    min-height: 1154px;
    padding: 76px 0;
  }

  .mpc-lp section[aria-labelledby='mpc-faq-title'] > .mpc-container {
    width: min(100% - 48px, 1210px);
  }

  .mpc-lp .mpc-faq__item {
    padding: 0;
  }

  .mpc-lp .mpc-faq__item summary {
    padding-block: 28px;
  }

  .mpc-lp .mpc-faq__item[open] summary {
    padding-bottom: 12px;
  }

  .mpc-lp .mpc-faq__item[open] p {
    padding-bottom: 35px;
  }

  .mpc-lp .mpc-final-cta {
    padding-top: 0;
  }

  .mpc-lp .mpc-final-cta > .mpc-container {
    min-height: 233px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .mpc-lp .mpc-final-cta__copy {
    margin-bottom: 0;
  }
}
