/* ============================================================
   disability-pension-prepare.css — consultation checklist
   Integrated from adopted demo: hero=3 / usage=3 / checksheet=5
   ============================================================ */

.p-dp-checksheet {
  --check-navy: #172a54;
  --check-ink: #253043;
  --check-muted: #677283;
  --check-paper: #fffaf1;
  --check-sheet: #fffdf8;
  --check-rose: #e66457;
  --check-rose-deep: #bf4651;
  --check-gold: #d69a2d;
  --check-blue: #4c91c8;
  --check-green: #4aa47f;
  --check-line: rgba(23, 42, 84, 0.13);
  --check-soft-line: rgba(185, 135, 47, 0.26);
  --check-shadow: 0 18px 44px rgba(41, 36, 25, 0.11);
  --check-radius: 8px;
  color: var(--check-ink);
  background:
    radial-gradient(circle at 92% 10%, rgba(230, 100, 87, 0.1), transparent 20%),
    radial-gradient(circle at 8% 54%, rgba(76, 145, 200, 0.09), transparent 22%),
    linear-gradient(rgba(185, 135, 47, 0.035) 1px, transparent 1px) 0 0 / 100% 42px,
    linear-gradient(180deg, #fffaf1 0%, #fff8ef 48%, #f7fbfb 100%);
  overflow: clip;
}

.p-dp-checksheet [id] {
  scroll-margin-top: calc(var(--header-h, 72px) + 24px);
}

.p-dp-checksheet fieldset {
  min-inline-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.p-check__inner {
  width: min(1180px, calc(100% - (var(--gutter, 24px) * 2)));
  margin-inline: auto;
}

.p-check-hero {
  position: relative;
  isolation: isolate;
  padding: clamp(44px, 5.6vw, 70px) 0 clamp(34px, 4.5vw, 52px);
  background:
    radial-gradient(circle at 78% 20%, rgba(215, 239, 246, 0.72), transparent 22%),
    radial-gradient(circle at 93% 26%, rgba(241, 202, 185, 0.36), transparent 13%),
    linear-gradient(115deg, rgba(255, 248, 239, 0.98) 0 58%, rgba(255, 253, 248, 0.78) 58%),
    #fffaf1;
  overflow: clip;
}

.p-check-hero::before {
  content: "";
  position: absolute;
  inset: -110px auto auto -90px;
  z-index: -1;
  width: min(420px, 42vw);
  aspect-ratio: 1;
  background: rgba(241, 216, 200, 0.42);
  border-radius: 50%;
}

.p-check-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
}

.p-check-hero__copy {
  padding-top: 6px;
}

.p-check-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 14px;
  color: var(--check-rose-deep, #bf4651);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.4;
}

.p-check-hero__eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.p-check-hero h1 {
  max-width: 11em;
  margin: 0;
  color: var(--check-navy, #172a54);
  font-family: var(--font-serif, serif);
  font-size: clamp(2.65rem, 5.1vw, 4.8rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.12;
  word-break: keep-all;
}

.p-check-hero__lead,
.p-check-hero__sublead {
  max-width: 43em;
  margin: 0;
  line-height: 1.85;
}

.p-check-hero__lead {
  margin-top: 22px;
  color: var(--check-navy, #172a54);
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  font-weight: 900;
}

.p-check-hero__sublead {
  margin-top: 6px;
  color: var(--check-ink, #253043);
  font-weight: 750;
}

.p-check-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 26px;
}

.p-check-hero__primary,
.p-check-hero__secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  font-weight: 900;
  line-height: 1.2;
  text-decoration: none;
  border-radius: 999px;
}

.p-check-hero__primary {
  color: #fff;
  background: linear-gradient(135deg, #e8665c, #d94a42);
  box-shadow: 0 16px 30px rgba(225, 82, 74, 0.24);
}

.p-check-hero__secondary {
  color: var(--check-navy, #172a54);
}

.p-check-hero__primary .tkg-icon,
.p-check-hero__secondary .tkg-icon {
  width: 19px;
  height: 19px;
}

.p-check-hero__figure {
  justify-self: end;
  width: min(470px, 100%);
  margin: 0;
}

.p-check-hero__figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 28px;
  filter: drop-shadow(0 24px 32px rgba(23, 42, 84, 0.12));
}

.p-check-hero--blend .p-check-hero__figure {
  width: min(520px, 100%);
}

.p-check-hero--blend .p-check-hero__figure img {
  border-radius: 0;
  filter: none;
  mix-blend-mode: multiply;
  opacity: 0.98;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 64%, rgba(0, 0, 0, 0.9) 80%, transparent 100%);
  mask-image: radial-gradient(ellipse at center, #000 64%, rgba(0, 0, 0, 0.9) 80%, transparent 100%);
}

.p-check-hero--blend .p-check-hero__actions {
  margin-top: 28px;
}

@media (max-width: 900px) {
  .p-check-hero__inner {
    grid-template-columns: 1fr;
  }

  .p-check-hero__figure {
    justify-self: center;
    width: min(420px, 86vw);
  }
}

@media (max-width: 640px) {
  .p-check-hero {
    padding-block: 42px 28px;
  }

  .p-check-hero h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 10.4vw, 2.75rem);
    line-height: 1.18;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .p-check-hero h1 span {
    display: block;
  }

  .p-check-hero__actions,
  .p-check-hero__primary,
  .p-check-hero__secondary {
    width: 100%;
  }

  .p-check-hero__figure {
    width: min(360px, 92vw);
  }
}

.p-check-usage {
  --usage-step-gap: clamp(18px, 2.25vw, 30px);
  --usage-image-size: clamp(140px, 12vw, 170px);
  position: relative;
  z-index: 2;
  margin-top: -8px;
  padding: 0 0 clamp(40px, 5vw, 58px);
}

.p-check-usage__card {
  padding: clamp(26px, 3.8vw, 46px) clamp(22px, 4vw, 48px) clamp(22px, 3.2vw, 38px);
  background: rgba(255, 254, 251, 0.97);
  border: 1px solid rgba(210, 129, 116, 0.34);
  border-radius: clamp(22px, 3vw, 32px);
  box-shadow: 0 18px 48px rgba(73, 49, 39, 0.08);
}

.p-check-usage__head {
  display: grid;
  justify-items: center;
  max-width: 760px;
  margin: 0 auto clamp(24px, 3.2vw, 34px);
  text-align: center;
}

.p-check-usage__head > p {
  margin: 0 0 7px;
  color: var(--check-rose, #e66457);
  font-size: 0.8rem;
  font-weight: 900;
}

.p-check-usage__head h2 {
  margin: 0;
  color: var(--check-navy, #172a54);
  font-family: var(--font-serif, serif);
  font-size: clamp(1.5rem, 2.65vw, 2.15rem);
  line-height: 1.42;
}

.p-check-usage__head > strong {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  margin-top: 12px;
  padding: 7px 13px;
  color: #2b6f5d;
  font-size: 0.84rem;
  background: #edf8f2;
  border-radius: 999px;
}

.p-check-usage__head > strong .tkg-icon {
  width: 16px;
  height: 16px;
}

.p-check-usage__journey {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: var(--usage-step-gap);
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-check-usage__journey::before {
  content: "";
  position: absolute;
  top: calc(var(--usage-image-size) / 2 - 1px);
  right: 9%;
  left: 9%;
  height: 3px;
  background: linear-gradient(90deg, #f2b7ae, #b8dcd2 35%, #f2b7ae 70%, #e7c982);
  border-radius: 999px;
}

.p-check-usage__step {
  position: relative;
  display: grid;
  justify-items: center;
  min-width: 0;
  text-align: center;
}

.p-check-usage__visual {
  position: relative;
  z-index: 1;
  display: grid;
  width: var(--usage-image-size);
  max-width: 100%;
  height: var(--usage-image-size);
  place-items: center;
  margin: 0;
  overflow: hidden;
  background: #fffdf8;
  border: 1px solid rgba(23, 42, 84, 0.1);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(41, 36, 25, 0.08);
}

.p-check-usage__step:nth-child(2) .p-check-usage__visual {
  background: #f0faf6;
}

.p-check-usage__step:nth-child(3) .p-check-usage__visual {
  background: #fff2ee;
}

.p-check-usage__step:nth-child(4) .p-check-usage__visual {
  background: #fff9e9;
}

.p-check-usage__visual img {
  width: 84%;
  height: 84%;
  object-fit: contain;
}

.p-check-usage__step:nth-child(4) .p-check-usage__visual img {
  width: 94%;
  height: 94%;
}

.p-check-usage__copy {
  margin-top: 15px;
}

.p-check-usage__number {
  color: var(--check-rose, #e66457);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.p-check-usage__copy h3 {
  margin: 4px 0 0;
  color: var(--check-navy, #172a54);
  font-size: clamp(0.96rem, 1.25vw, 1.08rem);
  line-height: 1.45;
}

.p-check-usage__copy p {
  margin: 5px 0 0;
  color: var(--check-muted, #677283);
  font-size: 0.84rem;
  font-weight: 650;
  line-height: 1.6;
}

.p-check-usage__arrow {
  position: absolute;
  z-index: 2;
  top: calc((var(--usage-image-size) - 28px) / 2);
  right: calc(var(--usage-step-gap) / -2 - 14px);
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #fff;
  font-weight: 900;
  line-height: 1;
  background: var(--check-rose, #e66457);
  border: 3px solid #fffdf8;
  border-radius: 50%;
}

.p-check-usage__support {
  display: flex;
  gap: 14px 24px;
  align-items: center;
  justify-content: center;
  margin-top: clamp(24px, 3vw, 34px);
  padding-top: 17px;
  border-top: 1px solid rgba(23, 42, 84, 0.1);
}

.p-check-usage__support > p {
  margin: 0;
  color: var(--check-muted, #677283);
  font-size: 0.8rem;
  font-weight: 800;
}

.p-check-usage__support ul {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 17px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-check-usage__support li {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  color: var(--check-navy, #172a54);
  font-size: 0.8rem;
  font-weight: 800;
}

.p-check-usage__support .tkg-icon {
  width: 16px;
  height: 16px;
  color: var(--check-rose, #e66457);
}

@media (max-width: 900px) {
  .p-check-usage {
    --usage-image-size: 140px;
  }

  .p-check-usage__journey {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 620px;
    margin-inline: auto;
  }

  .p-check-usage__journey::before {
    top: calc(var(--usage-image-size) / 2);
    right: auto;
    bottom: calc(var(--usage-image-size) / 2);
    left: calc(var(--usage-image-size) / 2 - 1px);
    width: 3px;
    height: auto;
    background: linear-gradient(180deg, #f2b7ae, #b8dcd2 35%, #f2b7ae 70%, #e7c982);
  }

  .p-check-usage__step {
    grid-template-columns: var(--usage-image-size) minmax(0, 1fr);
    justify-items: stretch;
    align-items: center;
    text-align: left;
  }

  .p-check-usage__copy {
    margin: 0 0 0 22px;
  }

  .p-check-usage__arrow {
    top: auto;
    right: auto;
    bottom: -25px;
    left: calc((var(--usage-image-size) - 28px) / 2);
    transform: rotate(90deg);
  }
}

@media (max-width: 560px) {
  .p-check-usage {
    --usage-image-size: 104px;
    padding-bottom: 48px;
  }

  .p-check-usage__card {
    padding: 23px 16px 20px;
    border-radius: 20px;
  }

  .p-check-usage__head {
    justify-items: start;
    margin-bottom: 24px;
    text-align: left;
  }

  .p-check-usage__head > strong {
    border-radius: 9px;
  }

  .p-check-usage__copy {
    margin-left: 16px;
  }

  .p-check-usage__copy h3 {
    font-size: 0.96rem;
  }

  .p-check-usage__copy p {
    font-size: 0.8rem;
  }

  .p-check-usage__support {
    display: grid;
    justify-content: stretch;
  }

  .p-check-usage__support ul {
    gap: 9px 15px;
  }
}

.p-check-main {
  padding: clamp(44px, 5vw, 64px) 0 clamp(72px, 8vw, 96px);
  background:
    radial-gradient(circle at 12% 38%, rgba(255, 232, 221, 0.74), transparent 22%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.3), rgba(232, 246, 248, 0.64));
}

.p-check-main__head {
  max-width: 780px;
  margin: 0 auto 28px;
  text-align: center;
}

.p-check-main__head p {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 10px;
  color: var(--check-rose-deep, #bf4651);
  font-size: 0.88rem;
  font-weight: 900;
}

.p-check-main__head p::before,
.p-check-main__head p::after {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
}

.p-check-main__head h2 {
  margin: 0;
  color: var(--check-navy, #172a54);
  font-family: var(--font-serif, serif);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
}

.p-check-main__head h2 span {
  display: inline;
}

.p-check-main__head span {
  display: block;
  margin-top: 9px;
  color: var(--check-muted, #677283);
  font-weight: 700;
  line-height: 1.75;
}

.p-check-print__head {
  display: none;
}

.p-check-form {
  --tone-coral: #e86157;
  --tone-coral-soft: #fff1ee;
  --tone-gold: #d99b2d;
  --tone-gold-soft: #fff8e8;
  --tone-blue: #5797c7;
  --tone-blue-soft: #eef8fd;
  --tone-green: #4ba47f;
  --tone-green-soft: #eef9f3;
  --tone-paper: #7897ad;
  --tone-paper-soft: #f1f8fb;
}

.p-check-form__mobile-progress {
  display: none;
}

.p-check-form__layout {
  display: grid;
  grid-template-columns: minmax(250px, 292px) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.p-check-form__sidebar {
  position: sticky;
  top: calc(var(--header-h, 72px) + 16px);
  padding: 18px;
  background: rgba(255, 253, 248, 0.94);
  border: 1px solid rgba(23, 42, 84, 0.11);
  border-radius: 10px;
  box-shadow: 0 16px 38px rgba(41, 36, 25, 0.1);
}

.p-check-form__sidebar-title {
  margin: 0 0 13px;
  color: var(--check-navy, #172a54);
  font-size: 0.96rem;
  font-weight: 900;
}

.p-check-form__nav {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-check-form__nav-link {
  --nav-accent: var(--tone-paper);
  --nav-soft: var(--tone-paper-soft);
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 54px;
  padding: 9px 12px;
  color: var(--check-navy, #172a54);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(23, 42, 84, 0.08);
  border-radius: 8px;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.p-check-form__nav-link--coral { --nav-accent: var(--tone-coral); --nav-soft: var(--tone-coral-soft); }
.p-check-form__nav-link--gold { --nav-accent: var(--tone-gold); --nav-soft: var(--tone-gold-soft); }
.p-check-form__nav-link--blue { --nav-accent: var(--tone-blue); --nav-soft: var(--tone-blue-soft); }
.p-check-form__nav-link--green { --nav-accent: var(--tone-green); --nav-soft: var(--tone-green-soft); }
.p-check-form__nav-link--paper { --nav-accent: var(--tone-paper); --nav-soft: var(--tone-paper-soft); }
.p-check-form__nav-link--contact { --nav-accent: var(--check-navy, #172a54); --nav-soft: #eef2f7; }

.p-check-form__nav-link span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--nav-accent);
  font-size: 0.78rem;
  font-weight: 900;
  background: var(--nav-soft);
  border-radius: 50%;
}

.p-check-form__nav-link strong {
  font-size: 0.93rem;
  line-height: 1.42;
}

.p-check-form__nav-link:hover,
.p-check-form__nav-link:focus-visible,
.p-check-form__nav-link.is-active {
  background: var(--nav-soft);
  border-color: color-mix(in srgb, var(--nav-accent) 45%, #ffffff);
}

.p-check-form__nav-link.is-active {
  transform: translateX(3px);
  box-shadow: 0 10px 22px color-mix(in srgb, var(--nav-accent) 16%, transparent);
}

.p-check-form__nav-link.is-active::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 17px solid var(--nav-accent);
  transform: translateY(-50%);
}

.p-check-form__tools {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding-top: 17px;
  border-top: 1px dashed rgba(23, 42, 84, 0.16);
}

.p-check-form__tool {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 12px;
  color: var(--check-navy, #172a54);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1.3;
  background: #fff;
  border: 1px solid rgba(23, 42, 84, 0.14);
  border-radius: 999px;
  cursor: pointer;
}

.p-check-form__tool:hover {
  background: #fff2ee;
  border-color: rgba(230, 100, 87, 0.34);
}

.p-check-form__tool.is-saved {
  color: #18724f;
  background: #effaf4;
  border-color: rgba(63, 151, 113, 0.36);
  box-shadow: 0 10px 22px rgba(63, 151, 113, 0.14);
}

.p-check-form__tool .tkg-icon {
  width: 18px;
  height: 18px;
}

.p-check-form__tool--quiet {
  color: var(--check-muted, #677283);
  font-weight: 760;
}

.p-check-form__privacy,
.p-check-form__status {
  margin: 13px 0 0;
  color: var(--check-muted, #677283);
  font-size: 0.82rem;
  line-height: 1.65;
}

.p-check-form__status {
  color: var(--check-rose-deep, #bf4651);
  font-weight: 900;
}

.p-check-form__status[data-status-tone="success"] {
  color: #18724f;
}

.p-check-form__status[data-status-tone="notice"] {
  color: var(--check-muted, #677283);
}

.p-check-form__status[data-status-tone="error"] {
  color: var(--check-rose-deep, #bf4651);
}

.p-check-toast {
  position: fixed;
  left: 50%;
  bottom: calc(24px + env(safe-area-inset-bottom, 0px));
  z-index: 12000;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  max-width: min(420px, calc(100vw - 32px));
  padding: 12px 20px;
  color: #172a54;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.35;
  text-align: center;
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid rgba(23, 42, 84, 0.12);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(23, 42, 84, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.p-check-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.p-check-toast[data-toast-tone="success"] {
  color: #18724f;
  border-color: rgba(63, 151, 113, 0.28);
}

.p-check-toast[data-toast-tone="error"] {
  color: var(--check-rose-deep, #bf4651);
  border-color: rgba(230, 100, 87, 0.28);
}

.p-check-form__content {
  display: grid;
  gap: 16px;
}

.p-check-form__section {
  --section-accent: var(--tone-paper);
  --section-soft: var(--tone-paper-soft);
  overflow: clip;
  background: rgba(255, 253, 248, 0.98);
  border: 1px solid rgba(23, 42, 84, 0.12);
  border-radius: 10px;
  box-shadow: 0 16px 38px rgba(41, 36, 25, 0.09);
}

.p-check-form__section--coral { --section-accent: var(--tone-coral); --section-soft: var(--tone-coral-soft); }
.p-check-form__section--gold { --section-accent: var(--tone-gold); --section-soft: var(--tone-gold-soft); }
.p-check-form__section--blue { --section-accent: var(--tone-blue); --section-soft: var(--tone-blue-soft); }
.p-check-form__section--green { --section-accent: var(--tone-green); --section-soft: var(--tone-green-soft); }
.p-check-form__section--paper { --section-accent: var(--tone-paper); --section-soft: var(--tone-paper-soft); }

.p-check-form__section[open],
.p-check-form__section.is-active {
  border-color: color-mix(in srgb, var(--section-accent) 48%, #ffffff);
}

.p-check-form__summary {
  display: grid;
  grid-template-columns: 50px 72px minmax(0, 1fr) 38px;
  gap: 18px;
  align-items: center;
  min-height: 118px;
  padding: 22px 24px;
  cursor: pointer;
  list-style: none;
}

.p-check-form__summary::-webkit-details-marker {
  display: none;
}

.p-check-form__num {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 900;
  background: var(--section-accent);
  border-radius: 50%;
  box-shadow: 0 10px 22px color-mix(in srgb, var(--section-accent) 26%, transparent);
}

.p-check-form__icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  background: var(--section-soft);
  border-radius: 50%;
}

.p-check-form__icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.p-check-form__title em {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin: 0 0 8px;
  padding: 0 12px;
  color: var(--section-accent);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 900;
  line-height: 1.2;
  background: color-mix(in srgb, var(--section-soft) 82%, #ffffff);
  border-radius: 999px;
}

.p-check-form__title strong {
  display: block;
  color: var(--check-navy, #172a54);
  font-size: clamp(1.35rem, 2.2vw, 1.78rem);
  line-height: 1.35;
}

.p-check-form__toggle {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--section-accent);
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--section-accent) 28%, #ffffff);
  border-radius: 50%;
}

.p-check-form__toggle .tkg-icon {
  width: 17px;
  height: 17px;
  transition: transform 0.18s ease;
}

.p-check-form__section[open] .p-check-form__toggle .tkg-icon {
  transform: rotate(90deg);
}

.p-check-form__body {
  padding: 0 24px 24px;
}

.p-check-form__lead {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  margin: 0 0 20px;
  padding: 14px 16px;
  color: var(--check-navy, #172a54);
  font-weight: 800;
  line-height: 1.75;
  background: var(--section-soft);
  border-radius: 8px;
}

.p-check-form__lead span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: #fff;
  background: var(--section-accent);
  border-radius: 50%;
}

.p-check-form__lead .tkg-icon {
  width: 15px;
  height: 15px;
}

.p-check-form__fields,
.p-check-contact__fields {
  display: grid;
  gap: 15px;
}

.p-check-field {
  display: grid;
  gap: 8px;
}

.p-check-field__label {
  color: var(--check-navy, #172a54);
  font-size: 0.96rem;
  font-weight: 900;
  line-height: 1.45;
}

.p-check-field__label-text {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  flex-wrap: wrap;
}

.p-check-field input[type="text"],
.p-check-field input[type="email"],
.p-check-field input[type="tel"],
.p-check-field textarea {
  width: 100%;
  color: var(--check-ink, #253043);
  font: inherit;
  line-height: 1.7;
  background: #fff;
  border: 1px solid rgba(23, 42, 84, 0.16);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(23, 42, 84, 0.04);
}

.p-check-field input[type="text"],
.p-check-field input[type="email"],
.p-check-field input[type="tel"] {
  min-height: 52px;
  padding: 0 15px;
}

.p-check-field textarea {
  min-height: 108px;
  padding: 12px 15px;
  resize: vertical;
}

.p-check-field input::placeholder,
.p-check-field textarea::placeholder {
  color: rgba(103, 114, 131, 0.74);
}

.p-check-field__label em {
  flex: 0 0 auto;
  margin-left: 8px;
  padding: 2px 7px;
  color: #fff;
  font-size: .72rem;
  font-style: normal;
  white-space: nowrap;
  writing-mode: horizontal-tb;
  background: var(--check-rose-deep, #bf4651);
  border-radius: 999px;
}

.p-check-field__error {
  display: block;
  margin-top: 7px;
  color: var(--check-rose-deep, #bf4651);
  font-size: .86rem;
  font-weight: 800;
}

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

.p-check-choice {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.p-check-choice__item,
.p-check-unknown {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 12px;
  color: var(--check-navy, #172a54);
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.45;
  background: #fff;
  border: 1px solid rgba(23, 42, 84, 0.14);
  border-radius: 999px;
}

.p-check-choice__item input,
.p-check-unknown input {
  flex: none;
  width: 18px;
  height: 18px;
  accent-color: var(--section-accent, #e66457);
}

.p-check-choice__item:has(input:checked),
.p-check-unknown:has(input:checked) {
  color: var(--section-accent, #e66457);
  background: var(--section-soft, #fff2ee);
  border-color: color-mix(in srgb, var(--section-accent, #e66457) 45%, #ffffff);
}

.p-check-unknown {
  margin-top: -6px;
  color: var(--check-muted, #677283);
  background: rgba(255, 255, 255, 0.74);
  border-style: dashed;
}

.p-check-form__hint,
.p-check-contact__warning {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin-top: 18px;
  padding: 15px 16px;
  color: var(--check-navy, #172a54);
  line-height: 1.78;
  background: rgba(255, 255, 255, 0.76);
  border: 1px dashed rgba(23, 42, 84, 0.17);
  border-radius: 8px;
}

.p-check-form__hint > span,
.p-check-contact__warning > .tkg-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #fff;
  background: var(--section-accent, var(--check-rose, #e66457));
  border-radius: 50%;
}

.p-check-form__hint .tkg-icon,
.p-check-contact__warning .tkg-icon {
  width: 18px;
  height: 18px;
}

.p-check-form__hint strong {
  display: block;
  margin: 0 0 4px;
  font-size: 0.95rem;
}

.p-check-form__hint p,
.p-check-contact__warning p {
  margin: 0;
}

.p-check-form__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(23, 42, 84, 0.08);
}

.p-check-form__footer p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--check-muted, #677283);
  font-size: 0.9rem;
  font-weight: 800;
}

.p-check-form__footer p .tkg-icon {
  width: 18px;
  height: 18px;
  color: var(--section-accent);
}

.p-check-form__next,
.p-check-contact__review,
.p-check-contact__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  font: inherit;
  font-weight: 900;
  line-height: 1.25;
  text-decoration: none;
  border-radius: 999px;
  cursor: pointer;
}

.p-check-form__next {
  color: #fff;
  background: var(--check-navy, #172a54);
  border: 0;
  box-shadow: 0 12px 26px rgba(23, 42, 84, 0.18);
}

.p-check-form__next .tkg-icon,
.p-check-contact__review .tkg-icon,
.p-check-contact__submit .tkg-icon {
  width: 18px;
  height: 18px;
}

.p-check-contact,
.p-check-review {
  padding: 28px;
  background: rgba(255, 253, 248, 0.98);
  border: 1px solid rgba(23, 42, 84, 0.12);
  border-radius: 10px;
  box-shadow: 0 16px 38px rgba(41, 36, 25, 0.09);
}

.p-check-contact header p,
.p-check-review__head p {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  margin: 0 0 10px;
  padding: 0 12px;
  color: var(--check-rose-deep, #bf4651);
  font-size: 0.82rem;
  font-weight: 900;
  background: #fff2ee;
  border-radius: 999px;
}

.p-check-contact h2,
.p-check-review h2 {
  margin: 0;
  color: var(--check-navy, #172a54);
  font-family: var(--font-serif, serif);
  font-size: clamp(1.4rem, 2.2vw, 1.95rem);
  line-height: 1.38;
}

.p-check-contact header span {
  display: block;
  margin: 9px 0 22px;
  color: var(--check-muted, #677283);
  font-weight: 700;
  line-height: 1.75;
}

.p-check-contact__warning {
  margin-top: 20px;
  background: #fff2ee;
  border-style: solid;
  border-color: rgba(230, 100, 87, 0.24);
}

.p-check-contact__warning > .tkg-icon {
  color: #fff;
  background: var(--check-rose, #e66457);
}

.p-check-contact__actions {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.p-check-contact__submit-guide {
  margin-top: 24px;
  padding: 20px 22px;
  background: linear-gradient(110deg, #fff3ef, #fffaf6 72%);
  border-left: 5px solid var(--check-rose, #e66457);
  border-radius: 6px;
}

.p-check-contact__submit-guide p,
.p-check-contact__submit-guide h3,
.p-check-contact__submit-guide span,
.p-check-contact__submit-note {
  margin: 0;
}

.p-check-contact__submit-guide p {
  color: var(--check-rose-deep, #bf4651);
  font-size: 0.82rem;
  font-weight: 900;
}

.p-check-contact__submit-guide h3 {
  margin-top: 5px;
  color: var(--check-navy, #172a54);
  font-size: clamp(1.15rem, 2vw, 1.38rem);
  line-height: 1.45;
}

.p-check-contact__submit-guide span {
  display: block;
  margin-top: 7px;
  color: var(--check-muted, #677283);
  font-weight: 700;
  line-height: 1.75;
}

.p-check-contact__privacy,
.p-check-submit-status {
  margin-top: 22px;
  padding: 18px 20px;
  border: 1px solid rgba(23, 42, 84, .14);
  border-radius: 10px;
  background: #fff;
}

.p-check-contact__privacy h3,
.p-check-contact__privacy p,
.p-check-submit-status h3,
.p-check-submit-status p {
  margin: 0;
}

.p-check-contact__privacy p,
.p-check-submit-status p {
  margin-top: 8px;
  color: var(--check-muted, #677283);
  line-height: 1.75;
}

.p-check-contact__privacy-link {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  margin-top: 12px;
  color: var(--check-navy, #172a54);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(23, 42, 84, 0.32);
  text-underline-offset: 0.25em;
}

.p-check-contact__privacy-link:hover,
.p-check-contact__privacy-link:focus-visible {
  color: var(--check-rose, #e66457);
  text-decoration-color: currentColor;
}

.p-check-contact__privacy label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
  color: var(--check-navy, #172a54);
  font-weight: 800;
}

.p-check-contact__privacy input {
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--check-rose, #e66457);
}

.p-check-submit-status {
  display: none;
}

.p-check-submit-status--success,
.p-check-submit-status--maintenance,
.p-check-submit-status--error {
  display: block;
}

.p-check-submit-status--success {
  border-color: rgba(24, 114, 79, .28);
  background: #f0faf5;
}

.p-check-submit-status--error {
  border-color: rgba(191, 70, 81, .28);
  background: #fff3f2;
}

.p-check-submit-status__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.p-check-submit-status__actions a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(23, 42, 84, .24);
  border-radius: 999px;
  background: #fff;
  color: var(--check-ink, #172a54);
  font-weight: 700;
  text-decoration: none;
}

.p-check-contact__review {
  justify-self: start;
  min-height: 48px;
  color: var(--check-navy, #172a54);
  background: #fff;
  border: 1px solid rgba(23, 42, 84, 0.18);
}

.p-check-contact__submit {
  width: 100%;
  min-height: 64px;
  padding-inline: 28px;
  color: #fff;
  font-size: 1.08rem;
  background: linear-gradient(135deg, #e8665c, #d94a42);
  border: 0;
  box-shadow: 0 16px 30px rgba(225, 82, 74, 0.28);
}

.p-check-contact__submit:hover,
.p-check-contact__submit:focus-visible {
  background: linear-gradient(135deg, #df5a51, #c94039);
  box-shadow: 0 18px 34px rgba(196, 64, 57, 0.32);
}

.p-check-contact__review:hover,
.p-check-contact__review:focus-visible {
  color: var(--check-rose-deep, #bf4651);
  border-color: rgba(191, 70, 81, 0.42);
}

.p-check-contact__submit-note {
  color: var(--check-muted, #677283);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.65;
}

.p-check-contact__submit:disabled {
  cursor: not-allowed;
  opacity: .55;
}

.p-check-review__empty {
  margin: 14px 0 0;
  color: var(--check-muted, #677283);
  line-height: 1.8;
}

.p-check-review__output {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.p-check-review__output .p-check-review__section {
  padding: 16px;
  background: #fff;
  border: 1px solid rgba(23, 42, 84, 0.12);
  border-radius: 8px;
}

.p-check-main--ux .p-check-form__section {
  scroll-margin-top: calc(var(--header-h, 72px) + 28px);
  overflow-anchor: none;
}

.p-check-main--ux .p-check-contact {
  scroll-margin-top: calc(var(--header-h, 72px) + 28px);
}

.p-check-main--ux .p-check-field {
  gap: 10px;
  padding-bottom: 17px;
  border-bottom: 1px solid rgba(23, 42, 84, 0.08);
}

.p-check-main--ux .p-check-field:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.p-check-main--ux .p-check-field__label {
  display: inline-grid;
  grid-template-columns: 6px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.p-check-main--ux .p-check-field__label::before {
  content: "";
  width: 6px;
  height: 1.35em;
  background: var(--section-accent, var(--check-rose, #e66457));
  border-radius: 999px;
}

.p-check-main--ux .p-check-unknown {
  margin-top: -2px;
}

@media (min-width: 1041px) {
  .p-check-main--ux .p-check-form__summary {
    cursor: default;
  }

  .p-check-main--ux .p-check-form__toggle {
    display: none;
  }

  .p-check-main--ux .p-check-form__section {
    overflow: visible;
  }
}

@media (max-width: 1040px) {
  .p-check-form__layout {
    grid-template-columns: 1fr;
  }

  .p-check-form__sidebar {
    position: static;
  }

  .p-check-form__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .p-check-form__nav-link.is-active::after {
    content: none;
  }

  .p-check-form__tools {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .p-check-main--ux .p-check-form__mobile-progress {
    position: sticky;
    top: calc(var(--header-h, 72px) + 8px);
    z-index: 8;
    display: grid;
    gap: 12px;
    margin: 0 0 16px;
    padding: 14px;
    background: rgba(255, 253, 248, 0.96);
    border: 1px solid rgba(23, 42, 84, 0.12);
    border-radius: 12px;
    box-shadow: 0 14px 30px rgba(41, 36, 25, 0.11);
    backdrop-filter: blur(12px);
  }

  .p-check-main--ux .p-check-form__sidebar {
    padding: 14px;
  }

  .p-check-main--ux .p-check-form__sidebar-title,
  .p-check-main--ux .p-check-form__nav {
    display: none;
  }

  .p-check-main--ux .p-check-form__tools {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
  }

  .p-check-main--ux .p-check-form__tool {
    min-height: 40px;
    padding-inline: 10px;
    font-size: 0.84rem;
  }

  .p-check-main--ux .p-check-form__privacy {
    margin-top: 10px;
    font-size: 0.78rem;
  }

  .p-check-form__mobile-current {
    display: flex;
    gap: 9px;
    align-items: baseline;
    min-width: 0;
  }

  .p-check-form__mobile-current span {
    flex: none;
    color: var(--check-rose-deep, #bf4651);
    font-size: 0.78rem;
    font-weight: 900;
  }

  .p-check-form__mobile-current strong {
    min-width: 0;
    color: var(--check-navy, #172a54);
    font-size: 0.98rem;
    line-height: 1.35;
  }

  .p-check-form__mobile-progress ol {
    display: flex;
    gap: 8px;
    margin: 0;
    padding: 0 2px 2px;
    overflow-x: auto;
    list-style: none;
    scrollbar-width: none;
  }

  .p-check-form__mobile-progress ol::-webkit-scrollbar {
    display: none;
  }

  .p-check-form__mobile-chip {
    --chip-accent: var(--tone-paper);
    --chip-soft: var(--tone-paper-soft);
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    color: var(--chip-accent);
    font-size: 0.78rem;
    font-weight: 900;
    text-decoration: none;
    background: var(--chip-soft);
    border: 1px solid color-mix(in srgb, var(--chip-accent) 18%, #ffffff);
    border-radius: 50%;
  }

  .p-check-form__mobile-chip--coral { --chip-accent: var(--tone-coral); --chip-soft: var(--tone-coral-soft); }
  .p-check-form__mobile-chip--gold { --chip-accent: var(--tone-gold); --chip-soft: var(--tone-gold-soft); }
  .p-check-form__mobile-chip--blue { --chip-accent: var(--tone-blue); --chip-soft: var(--tone-blue-soft); }
  .p-check-form__mobile-chip--green { --chip-accent: var(--tone-green); --chip-soft: var(--tone-green-soft); }
  .p-check-form__mobile-chip--paper { --chip-accent: var(--tone-paper); --chip-soft: var(--tone-paper-soft); }
  .p-check-form__mobile-chip--contact { --chip-accent: var(--check-navy, #172a54); --chip-soft: #eef2f7; }

  .p-check-form__mobile-chip.is-active {
    color: #fff;
    background: var(--chip-accent);
    border-color: var(--chip-accent);
    box-shadow: 0 8px 16px color-mix(in srgb, var(--chip-accent) 24%, transparent);
  }
}

@media (max-width: 720px) {
  .p-check-main {
    padding-block: 42px 64px;
  }

  .p-check-main__head {
    text-align: left;
  }

  .p-check-main__head h2 span {
    display: block;
  }

  .p-check-main__head p::after {
    content: none;
  }

  .p-check-form__nav,
  .p-check-form__tools {
    grid-template-columns: 1fr;
  }

  .p-check-main--ux .p-check-form__tools {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .p-check-main--ux .p-check-form__section,
  .p-check-main--ux .p-check-contact {
    scroll-margin-top: calc(var(--header-h, 72px) + 118px);
  }

  .p-check-form__summary {
    grid-template-columns: 42px 58px minmax(0, 1fr) 32px;
    min-height: 98px;
    gap: 12px;
    padding: 18px;
  }

  .p-check-form__num {
    width: 40px;
    height: 40px;
  }

  .p-check-form__icon {
    width: 58px;
    height: 58px;
  }

  .p-check-form__icon img {
    width: 40px;
    height: 40px;
  }

  .p-check-form__title strong {
    font-size: 1.12rem;
  }

  .p-check-form__body,
  .p-check-contact,
  .p-check-review {
    padding: 20px;
  }

  .p-check-contact__submit-guide {
    padding: 18px;
  }

  .p-check-main--ux .p-check-field {
    padding-bottom: 15px;
  }

  .p-check-choice {
    display: grid;
  }

  .p-check-choice__item,
  .p-check-unknown,
  .p-check-form__next,
  .p-check-contact__review,
  .p-check-contact__submit {
    width: 100%;
  }

  .p-check-contact__submit {
    min-height: 60px;
    padding: 14px 18px;
  }
}

@media print {
  @page {
    size: A4;
    margin: 12mm 10mm;
  }

  html,
  body {
    width: auto !important;
    min-width: 0 !important;
    color: #172033 !important;
    background: #ffffff !important;
    font-size: 10pt !important;
  }

  body {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .skip-link,
  .site-header,
  .site-footer,
  .s-home-external-collaboration,
  .s-home-contact-cta,
  .p-check-toast,
  #tkg-demo-nav,
  [data-client-review-root] {
    display: none !important;
  }

  .site-main {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .site-main > * {
    display: block !important;
  }

  .p-check-hero,
  .p-check-usage,
  .p-check-assurance {
    display: none !important;
  }

  .p-check-main,
  .p-dp-checksheet,
  .p-check-main--print,
  .p-check-main .p-check__inner,
  .p-check-main .p-check-form,
  .p-check-main .p-check-form__layout,
  .p-check-main .p-check-form__content {
    display: block !important;
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #172033 !important;
    background: #ffffff !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  .p-check-main * {
    box-shadow: none !important;
    text-shadow: none !important;
  }

  .p-check-main .p-check-print__head {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 66mm;
    gap: 8mm;
    align-items: end;
    margin: 0 0 5mm;
    padding: 0 0 5mm;
    border-bottom: 1.4pt solid #172a54;
    break-after: avoid;
    page-break-after: avoid;
  }

  .p-check-main .p-check-print__head p,
  .p-check-main .p-check-print__head .p-check-print__title,
  .p-check-main .p-check-print__head span,
  .p-check-main .p-check-print__head dl,
  .p-check-main .p-check-print__head dt,
  .p-check-main .p-check-print__head dd {
    margin: 0;
  }

  .p-check-main .p-check-print__head p {
    color: #bf4651;
    font-size: 8.5pt;
    font-weight: 800;
  }

  .p-check-main .p-check-print__head .p-check-print__title {
    color: #172a54;
    font-family: var(--font-serif, "Noto Serif JP", serif);
    font-size: 20pt;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0;
  }

  .p-check-main .p-check-print__head span {
    display: block;
    margin-top: 1.5mm;
    color: #4e596c;
    font-size: 9pt;
    font-weight: 700;
  }

  .p-check-main .p-check-print__head dl {
    display: grid;
    gap: 2.5mm;
    color: #172033;
    font-size: 9pt;
  }

  .p-check-main .p-check-print__head dl > div {
    display: grid;
    grid-template-columns: 13mm minmax(0, 1fr);
    gap: 2mm;
    align-items: end;
  }

  .p-check-main .p-check-print__head dt {
    color: #667085;
    font-weight: 700;
  }

  .p-check-main .p-check-print__head dd {
    min-height: 6mm;
    border-bottom: 0.7pt solid #9aa4b5;
  }

  .p-check-main .p-check-main__head,
  .p-check-main .p-check-form__mobile-progress,
  .p-check-main .p-check-form__sidebar,
  .p-check-main .p-check-form__footer,
  .p-check-main .p-check-contact__submit-guide,
  .p-check-main .p-check-contact__actions,
  .p-check-main .p-check-review {
    display: none !important;
  }

  .p-check-main details.p-check-form__section {
    display: block !important;
    margin: 0 0 6mm !important;
    padding: 0 0 5mm !important;
    color: #172033 !important;
    background: #ffffff !important;
    border: 0 !important;
    border-bottom: 0.7pt solid #d7dde8 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
    break-inside: auto;
    page-break-inside: auto;
  }

  .p-check-main details.p-check-form__section > .p-check-form__body {
    display: block !important;
  }

  .p-check-main .p-check-form__summary {
    display: grid !important;
    grid-template-columns: 10mm minmax(0, 1fr);
    gap: 3mm;
    align-items: center;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 0 3mm !important;
    color: #172033 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    list-style: none !important;
    cursor: default !important;
    break-after: avoid;
    page-break-after: avoid;
  }

  .p-check-main .p-check-form__summary::-webkit-details-marker {
    display: none !important;
  }

  .p-check-main .p-check-form__num {
    width: 8mm !important;
    height: 8mm !important;
    color: #ffffff !important;
    background: #172a54 !important;
    border: 0 !important;
    border-radius: 50% !important;
    font-size: 8pt !important;
    font-weight: 900 !important;
  }

  .p-check-main .p-check-form__icon,
  .p-check-main .p-check-form__toggle {
    display: none !important;
  }

  .p-check-main .p-check-form__title {
    display: block !important;
    min-width: 0 !important;
  }

  .p-check-main .p-check-form__title em {
    display: inline-flex !important;
    margin: 0 0 1mm !important;
    padding: 0.4mm 2mm !important;
    color: #bf4651 !important;
    background: #fff0ed !important;
    border-radius: 999px !important;
    font-size: 7.5pt !important;
    font-style: normal !important;
    font-weight: 800 !important;
  }

  .p-check-main .p-check-form__title strong {
    display: block !important;
    color: #172a54 !important;
    font-size: 14pt !important;
    line-height: 1.35 !important;
  }

  .p-check-main .p-check-form__body {
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
  }

  .p-check-main .p-check-form__lead {
    display: block !important;
    margin: 0 0 4mm !important;
    padding: 2.3mm 3mm !important;
    color: #2f3c50 !important;
    background: #f7f9fc !important;
    border: 0.6pt solid #dce3ee !important;
    border-left: 2.2pt solid #bf4651 !important;
    border-radius: 3pt !important;
    font-size: 9pt !important;
    font-weight: 700 !important;
    line-height: 1.55 !important;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .p-check-main .p-check-form__lead span {
    display: none !important;
  }

  .p-check-main .p-check-form__fields,
  .p-check-main .p-check-contact__fields {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3.6mm 5mm !important;
    align-items: start !important;
    margin: 0 !important;
  }

  .p-check-main .p-check-field {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .p-check-main .p-check-field:has(textarea),
  .p-check-main .p-check-field:has(fieldset) {
    grid-column: 1 / -1;
  }

  .p-check-main .p-check-field__label,
  .p-check-main .p-check-field legend {
    display: block !important;
    margin: 0 0 1.4mm !important;
    padding: 0 !important;
    color: #172a54 !important;
    font-size: 9pt !important;
    font-weight: 800 !important;
    line-height: 1.45 !important;
  }

  .p-check-main--ux .p-check-field__label::before {
    content: none !important;
  }

  .p-check-main .p-check-field input[type="text"],
  .p-check-main .p-check-field textarea {
    width: 100% !important;
    color: #111827 !important;
    background: #ffffff !important;
    border: 0.7pt solid #aeb8c8 !important;
    border-radius: 3pt !important;
    box-shadow: none !important;
    font-size: 10pt !important;
    line-height: 1.45 !important;
  }

  .p-check-main .p-check-field input[type="text"] {
    height: 9mm !important;
    padding: 1mm 2mm !important;
  }

  .p-check-main .p-check-field textarea {
    min-height: 21mm !important;
    padding: 2mm !important;
    resize: none !important;
  }

  .p-check-main .p-check-field input::placeholder,
  .p-check-main .p-check-field textarea::placeholder {
    color: #98a2b3 !important;
    opacity: 1 !important;
  }

  .p-check-main .p-check-choice {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 2mm 5mm !important;
    margin: 0 !important;
  }

  .p-check-main .p-check-choice__item,
  .p-check-main .p-check-unknown {
    display: inline-flex !important;
    width: auto !important;
    min-height: 0 !important;
    gap: 1.8mm !important;
    align-items: center !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #172033 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    font-size: 9pt !important;
    font-weight: 600 !important;
    line-height: 1.45 !important;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .p-check-main .p-check-unknown {
    margin-top: 1.4mm !important;
    padding: 1.4mm 2mm !important;
    border: 0.6pt dashed #c7cfdb !important;
    border-radius: 3pt !important;
    color: #475467 !important;
  }

  .p-check-main .p-check-choice__item input,
  .p-check-main .p-check-unknown input {
    flex: 0 0 auto !important;
    width: 3.4mm !important;
    height: 3.4mm !important;
    margin: 0 !important;
    accent-color: #172a54 !important;
  }

  .p-check-main .p-check-form__hint,
  .p-check-main .p-check-contact__warning {
    display: grid !important;
    grid-template-columns: 6mm minmax(0, 1fr) !important;
    gap: 2.5mm !important;
    align-items: start !important;
    margin: 4mm 0 0 !important;
    padding: 3mm !important;
    color: #2f3c50 !important;
    background: #fbfcfe !important;
    border: 0.6pt solid #dce3ee !important;
    border-radius: 3pt !important;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .p-check-main .p-check-form__hint > span,
  .p-check-main .p-check-contact__warning > .tkg-icon {
    display: grid !important;
    place-items: center !important;
    width: 6mm !important;
    height: 6mm !important;
    color: #ffffff !important;
    background: #7897ad !important;
    border-radius: 50% !important;
  }

  .p-check-main .p-check-form__hint .tkg-icon,
  .p-check-main .p-check-contact__warning .tkg-icon {
    width: 3.4mm !important;
    height: 3.4mm !important;
  }

  .p-check-main .p-check-form__hint strong {
    display: block !important;
    margin: 0 0 1mm !important;
    color: #172a54 !important;
    font-size: 9pt !important;
  }

  .p-check-main .p-check-form__hint p,
  .p-check-main .p-check-contact__warning p {
    margin: 0 !important;
    font-size: 8.8pt !important;
    line-height: 1.65 !important;
  }

  .p-check-main .p-check-contact {
    margin: 2mm 0 0 !important;
    padding: 5mm !important;
    color: #172033 !important;
    background: #ffffff !important;
    border: 1pt solid #172a54 !important;
    border-radius: 4pt !important;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .p-check-main .p-check-contact header {
    margin: 0 0 4mm !important;
    break-after: avoid;
    page-break-after: avoid;
  }

  .p-check-main .p-check-contact header p,
  .p-check-main .p-check-contact h2,
  .p-check-main .p-check-contact header span {
    margin: 0 !important;
  }

  .p-check-main .p-check-contact header p {
    color: #bf4651 !important;
    font-size: 8pt !important;
    font-weight: 900 !important;
  }

  .p-check-main .p-check-contact h2 {
    color: #172a54 !important;
    font-family: var(--font-serif, "Noto Serif JP", serif);
    font-size: 14pt !important;
    line-height: 1.35 !important;
  }

  .p-check-main .p-check-contact header span {
    display: block !important;
    margin-top: 1mm !important;
    color: #4e596c !important;
    font-size: 8.8pt !important;
    font-weight: 700 !important;
    line-height: 1.55 !important;
  }
}

.p-check-assurance {
  padding-block: 22px clamp(64px, 8vw, 92px);
}

.p-check-assurance__panel {
  position: relative;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr) 170px;
  gap: 18px;
  align-items: center;
  padding: 30px 36px;
  background: linear-gradient(90deg, rgba(255, 244, 236, 0.94), rgba(255, 253, 248, 0.94) 56%, rgba(236, 247, 248, 0.94));
  border: 1px solid rgba(230, 100, 87, 0.22);
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(41, 36, 25, 0.08);
}

.p-check-assurance__panel::after {
  content: "";
  display: block;
  width: 1px;
  height: 1px;
}

.p-check-assurance h2 {
  margin: 0;
  color: var(--check-navy);
  font-family: var(--font-serif, serif);
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 700;
  line-height: 1.36;
  text-align: center;
}

.p-check-assurance p {
  margin: 6px 0 0;
  color: var(--check-muted);
  font-weight: 700;
  text-align: center;
}

.p-check-assurance figure {
  justify-self: start;
  width: 138px;
  margin: -34px 0 -24px;
}

.p-check-assurance__mascot {
  width: 100%;
  filter: drop-shadow(0 18px 22px rgba(23, 42, 84, 0.12));
}

@media (max-width: 860px) {
  .p-check-assurance__panel {
    grid-template-columns: 112px minmax(0, 1fr) 112px;
    gap: 14px;
    padding-inline: 26px;
    border-radius: 24px;
  }

  .p-check-assurance figure {
    width: 104px;
    margin: -20px 0 -14px;
  }
}

@media (max-width: 640px) {
  .p-check-assurance__panel {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .p-check-assurance__panel::after {
    display: none;
  }

  .p-check-assurance figure {
    justify-self: center;
  }

  .p-check-assurance figure {
    grid-column: auto;
    margin: 0;
  }
}
