:root {
  --pcn-blue: #064a9b;
  --pcn-blue-dark: #06366f;
  --pcn-launcher-blue: #075dab;
  --pcn-launcher-blue-hover: #064a9b;
  --pcn-blue-soft: #eef5ff;
  --pcn-border: #7f91a8;
  --pcn-text: #172334;
  --pcn-muted: #526275;
  --pcn-error: #a30d24;
  --pcn-warning-bg: #fff7dc;
  --pcn-focus: #ffbf47;
  --pcn-surface: #ffffff;
  --pcn-shadow: 0 16px 48px rgba(14, 36, 63, 0.24);
}

.pcn-review-page {
  min-width: 0;
  margin: 0;
  color: var(--pcn-text);
  background: #f3f6fa;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

.pcn-review-skip {
  position: fixed;
  z-index: 11000;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  color: #fff;
  background: var(--pcn-blue-dark);
  transform: translateY(-160%);
}

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

.pcn-review-header,
.pcn-review-footer {
  background: #fff;
  border-bottom: 1px solid #d8e0ea;
}

.pcn-review-footer {
  margin-top: 48px;
  border-top: 1px solid #d8e0ea;
  border-bottom: 0;
}

.pcn-review-header__inner,
.pcn-review-footer__inner,
.pcn-review-main {
  width: min(100% - 32px, 920px);
  margin-inline: auto;
}

.pcn-review-header__inner,
.pcn-review-footer__inner {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.pcn-review-logo {
  display: inline-flex;
  align-items: center;
}

.pcn-review-logo img {
  display: block;
  width: min(220px, 48vw);
  height: auto;
}

.pcn-review-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.pcn-review-nav a,
.pcn-review-footer a {
  color: var(--pcn-blue-dark);
  font-weight: 700;
  text-underline-offset: 3px;
}

.pcn-review-main {
  padding-block: 40px 16px;
}

.pcn-review-main > h1 {
  margin: 0;
  color: var(--pcn-blue-dark);
  font-size: clamp(1.75rem, 4vw, 2.4rem);
  line-height: 1.35;
}

.pcn-review-lead {
  max-width: 760px;
  margin: 16px 0 28px;
  font-size: 1rem;
  line-height: 1.8;
}

.pcn-root,
.pcn-root *,
.pcn-root *::before,
.pcn-root *::after,
.pcn-launcher-dock,
.pcn-launcher-dock *,
.pcn-launcher-dock *::before,
.pcn-launcher-dock *::after,
.pcn-modal-host,
.pcn-modal-host *,
.pcn-modal-host *::before,
.pcn-modal-host *::after {
  box-sizing: border-box;
}

.pcn-root {
  min-width: 0;
  color: var(--pcn-text);
  background: var(--pcn-surface);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

.pcn-root p {
  font-size: inherit;
}

.pcn-root--inline {
  width: min(100%, 760px);
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid var(--pcn-border);
  border-radius: 18px;
  box-shadow: 0 8px 30px rgba(16, 44, 78, 0.12);
}

.pcn-root--modal {
  display: flex;
  flex-direction: column;
  min-height: 0;
  max-height: 80dvh;
}

.pcn-header {
  position: static;
  z-index: auto;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  width: auto;
  height: auto;
  padding: 18px 22px 12px;
  border-bottom: 3px solid var(--pcn-blue);
}

.pcn-title {
  margin: 0;
  color: var(--pcn-blue-dark);
  font-size: 1.35em;
  font-weight: 800;
  line-height: 1.35;
}

.pcn-close-button,
.pcn-reset-button,
.pcn-change-button {
  min-height: 44px;
  padding: 8px 10px;
  color: var(--pcn-blue-dark);
  background: transparent;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.pcn-intro {
  margin: 0;
  padding: 14px 22px 8px;
  color: var(--pcn-muted);
  font-size: 0.94em;
}

.pcn-trust-note {
  margin: 0 22px 10px;
  padding: 10px 12px;
  color: var(--pcn-text);
  background: var(--pcn-blue-soft);
  border-left: 4px solid var(--pcn-blue);
  border-radius: 6px;
  font-size: 0.9em;
}

.pcn-progress {
  margin: 0;
  padding: 6px 22px 10px;
  color: var(--pcn-blue-dark);
  font-size: 0.88em;
  font-weight: 800;
}

.pcn-status {
  margin: 0 22px 10px;
  padding: 10px 12px;
  border: 1px solid #d5a300;
  border-radius: 8px;
  background: var(--pcn-warning-bg);
  font-size: 0.9em;
}

.pcn-status[data-pcn-status-kind="error"] {
  color: var(--pcn-error);
  border-color: #d8a0aa;
  background: #fff1f3;
}

.pcn-current {
  min-height: 230px;
  padding: 12px 22px 22px;
}

.pcn-root--modal .pcn-current {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.pcn-question-heading {
  margin: 0 0 18px;
  color: var(--pcn-text);
  font-size: 1.25em;
  font-weight: 800;
  line-height: 1.5;
}

.pcn-choice-list,
.pcn-result-links,
.pcn-result-actions,
.pcn-secondary-options,
.pcn-manual-copy {
  display: grid;
  gap: 10px;
}

.pcn-choice,
.pcn-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding: 11px 16px;
  color: var(--pcn-text);
  background: #fff;
  border: 1px solid var(--pcn-border);
  border-radius: 10px;
  font: inherit;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}

.pcn-button-label {
  display: block;
  min-width: 0;
  max-width: 100%;
  text-wrap: balance;
}

.pcn-semantic-label {
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.pcn-choice:hover,
.pcn-choice[aria-pressed="true"],
.pcn-button--secondary:hover {
  border-color: var(--pcn-blue);
  background: var(--pcn-blue-soft);
}

.pcn-button--primary {
  color: #fff;
  background: var(--pcn-blue);
  border-color: var(--pcn-blue);
}

.pcn-button--primary:hover {
  color: #fff;
  background: var(--pcn-blue-dark);
  border-color: var(--pcn-blue-dark);
}

.pcn-button--link {
  justify-content: flex-start;
  color: var(--pcn-blue-dark);
  text-align: left;
}

.pcn-text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding: 5px 2px;
  color: var(--pcn-blue-dark);
  font: inherit;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: underline;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

.pcn-choice-help,
.pcn-body-text,
.pcn-summary-notice,
.pcn-unknown-summary,
.pcn-error-message,
.pcn-loading {
  margin: 12px 0;
}

.pcn-choice-help {
  margin: -4px 4px 8px;
  color: var(--pcn-muted);
  font-size: 0.9em;
}

.pcn-result-actions,
.pcn-secondary-options {
  margin-top: 18px;
}

.pcn-result-lead {
  margin: 0 0 16px;
  font-weight: 700;
  line-height: 1.75;
}

.pcn-root .pcn-result-guide {
  margin: 18px 0 20px;
  padding: 16px;
  color: #1c324a;
  background: #f1f6fc;
  border: 1px solid #adc5df;
  border-left: 4px solid var(--pcn-blue);
  border-radius: 10px;
  font-size: 1.06em;
  line-height: 1.8;
}

.pcn-result-checkpoint {
  margin: 18px 0;
  padding: 14px 16px;
  background: #f6f8fb;
  border: 1px solid #c8d3e0;
  border-radius: 10px;
}

.pcn-result-guide-title,
.pcn-result-checkpoint-title {
  margin: 0 0 8px;
  color: var(--pcn-blue-dark);
  font-weight: 800;
}

.pcn-root .pcn-result-checklist {
  display: grid;
  gap: 5px;
  margin: 20px 0 0;
  padding: 13px 0 0 14px;
  color: #283d54;
  border-top: 1px solid #d8e0ea;
  border-left: 3px solid #b5c9dd;
}

.pcn-result-checklist-label {
  color: var(--pcn-blue-dark);
  font-size: 0.86em;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.55;
}

.pcn-result-checklist-items {
  font-size: 0.94em;
  line-height: 1.75;
  white-space: pre-line;
}

.pcn-root .pcn-result-common-note {
  margin: 22px 0 0;
  padding: 11px 13px;
  color: #536272;
  background: #fafbfd;
  border: 1px solid #d8e0ea;
  border-left: 3px solid #aebbc9;
  border-radius: 7px;
  font-size: 0.82em;
  line-height: 1.75;
}

.pcn-result-links {
  justify-items: start;
  margin-top: 14px;
}

.pcn-result-actions > .pcn-button--primary {
  font-weight: 800;
}

.pcn-input-row,
.pcn-date-field,
.pcn-dimensions {
  display: grid;
  gap: 10px;
  align-items: end;
  margin-bottom: 14px;
}

.pcn-input-row {
  grid-template-columns: minmax(0, 1fr) minmax(88px, auto);
}

.pcn-input-row .pcn-label {
  grid-column: 1 / -1;
}

.pcn-dimensions {
  grid-template-columns: repeat(2, minmax(0, 1fr)) minmax(88px, auto);
}

.pcn-dimension-field {
  min-width: 0;
}

.pcn-label {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
}

.pcn-input,
.pcn-select,
.pcn-summary-textarea {
  width: 100%;
  min-height: 48px;
  padding: 10px 12px;
  color: var(--pcn-text);
  background: #fff;
  border: 1px solid #6d7d91;
  border-radius: 8px;
  font: inherit;
}

.pcn-summary-textarea {
  min-height: 220px;
  resize: vertical;
  white-space: pre-wrap;
}

.pcn-fieldset {
  display: grid;
  gap: 10px;
  min-width: 0;
  margin: 0 0 16px;
  padding: 0;
  border: 0;
}

.pcn-check-label {
  display: flex;
  gap: 10px;
  min-height: 48px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid var(--pcn-border);
  border-radius: 8px;
  cursor: pointer;
}

.pcn-check-input {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

.pcn-input-error,
.pcn-field-error {
  margin: 12px 0 0;
  color: var(--pcn-error);
  font-weight: 700;
}

.pcn-field-error {
  font-size: 0.92em;
}

.pcn-short-text-field {
  margin-bottom: 16px;
}

.pcn-short-text-input {
  min-height: 112px;
  resize: vertical;
}

.pcn-short-text-help,
.pcn-short-text-count {
  margin: 6px 0 0;
  color: var(--pcn-muted);
  font-size: 0.88em;
}

.pcn-short-text-count {
  text-align: right;
}

.pcn-input[aria-invalid="true"],
.pcn-select[aria-invalid="true"],
.pcn-summary-textarea[aria-invalid="true"] {
  border-color: var(--pcn-error);
  box-shadow: 0 0 0 2px rgba(163, 13, 36, 0.12);
}

.pcn-check-input[aria-invalid="true"] {
  outline: 2px solid var(--pcn-error);
  outline-offset: 2px;
}

.pcn-delivery-details {
  display: grid;
  gap: 14px;
  margin-bottom: 16px;
}

.pcn-delivery-field {
  min-width: 0;
}

.pcn-summary-list {
  display: grid;
  gap: 0;
  margin: 14px 0 18px;
  border-top: 1px solid var(--pcn-border);
}

.pcn-summary-row {
  display: grid;
  grid-template-columns: minmax(110px, 0.75fr) minmax(0, 1.6fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--pcn-border);
}

.pcn-summary-term,
.pcn-summary-value {
  margin: 0;
}

.pcn-summary-value {
  white-space: pre-line;
}

.pcn-summary-term {
  font-weight: 800;
}

.pcn-summary-preview {
  max-height: 280px;
  margin: 16px 0;
  overflow: auto;
  padding: 14px;
  color: var(--pcn-text);
  background: #f6f8fb;
  border: 1px solid var(--pcn-border);
  border-radius: 8px;
  font: inherit;
  font-size: 0.9em;
  line-height: 1.7;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.pcn-controls {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  width: auto;
  height: auto;
  padding: 14px 22px calc(14px + env(safe-area-inset-bottom));
  background: #f6f8fb;
  border-top: 1px solid var(--pcn-border);
}

.pcn-controls-primary {
  display: flex;
  gap: 10px;
  min-width: 0;
  flex: 1 1 auto;
}

.pcn-controls-primary .pcn-button {
  width: auto;
  flex: 1 1 0;
}

.pcn-launcher-dock {
  position: fixed;
  z-index: 9000;
  right: 24px;
  bottom: calc(105px + env(safe-area-inset-bottom));
  width: 130px;
}

.pcn-launcher {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 190px;
  padding: 18px 14px;
  color: #fff;
  background: var(--pcn-launcher-blue);
  border: 2px solid #fff;
  border-radius: 24px;
  box-shadow: 0 6px 24px rgba(5, 70, 132, 0.28);
  font: 700 16px/1.35 "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  text-align: center;
  cursor: pointer;
  opacity: 0.86;
  transition: background-color 0.2s ease, opacity 0.2s ease;
}

.pcn-launcher-main {
  display: block;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.5;
}

.pcn-launcher-help {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.55;
}

.pcn-launcher-line {
  display: block;
  white-space: nowrap;
}

.pcn-launcher:hover {
  background: var(--pcn-launcher-blue-hover);
  opacity: 1;
}

.pcn-launcher-dock:focus-within .pcn-launcher {
  opacity: 1;
}

.pcn-launcher-dismiss {
  position: absolute;
  top: -52px;
  right: 0;
  z-index: 1;
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: #06366f;
  background: #fff;
  border: 1px solid #064a9b;
  border-radius: 50%;
  box-shadow: 0 3px 10px rgba(6, 54, 111, 0.22);
  font: 700 22px/1 Arial, sans-serif;
  cursor: pointer;
  touch-action: manipulation;
}

.pcn-launcher-dismiss:hover {
  background: #eaf3ff;
}

.pcn-launcher-notice {
  position: fixed;
  z-index: 9001;
  right: 24px;
  bottom: calc(355px + env(safe-area-inset-bottom));
  width: min(360px, calc(100vw - 32px));
  margin: 0;
  padding: 10px 12px;
  color: var(--pcn-text);
  background: var(--pcn-warning-bg);
  border: 1px solid #d5a300;
  border-radius: 8px;
  font-size: 14px;
}

.pcn-modal-host {
  position: fixed;
  z-index: 10020;
  inset: 0;
}

.pcn-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 28, 48, 0.62);
}

.pcn-panel {
  position: absolute;
  right: 24px;
  bottom: calc(24px + env(safe-area-inset-bottom));
  width: min(400px, calc(100vw - 48px));
  min-width: min(320px, calc(100vw - 48px));
  max-width: 440px;
  max-height: 80dvh;
  overflow: hidden;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--pcn-shadow);
}

.pcn-body-locked {
  overscroll-behavior: none;
}

.pcn-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;
}

.pcn-root :focus-visible,
.pcn-launcher:focus-visible,
.pcn-launcher-dismiss:focus-visible,
.pcn-panel:focus-visible,
.pcn-review-page :focus-visible {
  outline: 3px solid var(--pcn-focus);
  outline-offset: 3px;
  box-shadow: 0 0 0 9px var(--pcn-blue-dark);
}

.pcn-root [hidden],
.pcn-modal-host[hidden],
.pcn-launcher-dock[hidden],
.pcn-launcher-notice[hidden] {
  display: none !important;
}

.pcn-handoff-card,
.pcn-handoff-card *,
.pcn-handoff-card *::before,
.pcn-handoff-card *::after {
  box-sizing: border-box;
}

.pcn-handoff-card {
  width: 100%;
  margin: 24px 0 30px;
  padding: 20px;
  color: #172334;
  background: #eef5ff;
  border: 1px solid #7f91a8;
  border-left: 6px solid #064a9b;
  border-radius: 10px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.75;
}

.pcn-handoff-anchor {
  scroll-margin-top: 170px;
}

.pcn-handoff-card--notice {
  background: #fff7dc;
  border-left-color: #8c6500;
}

.pcn-handoff-title {
  margin: 0 0 12px;
  padding: 0;
  color: #06366f;
  background: transparent;
  border: 0;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.45;
}

.pcn-handoff-message,
.pcn-handoff-detail,
.pcn-handoff-status {
  margin: 10px 0;
  padding: 0;
  font-size: 16px;
}

.pcn-handoff-detail--warning {
  color: #7a3900;
  font-weight: 700;
}

.pcn-handoff-label {
  display: block;
  margin: 18px 0 7px;
  font-size: 16px;
  font-weight: 800;
}

.pcn-handoff-textarea {
  display: block;
  width: 100%;
  min-height: 210px;
  padding: 12px;
  color: #172334;
  background: #fff;
  border: 1px solid #61738a;
  border-radius: 8px;
  font: 16px/1.7 "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  resize: vertical;
  white-space: pre-wrap;
}

.pcn-handoff-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.pcn-handoff-erase-actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid #c8d3e0;
}

.pcn-handoff-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 10px 18px;
  border: 1px solid #064a9b;
  border-radius: 8px;
  font: 700 16px/1.45 "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  cursor: pointer;
}

.pcn-handoff-button--primary {
  color: #fff;
  background: #064a9b;
}

.pcn-handoff-button--secondary {
  color: #06366f;
  background: #fff;
}

.pcn-handoff-button--erase,
.pcn-handoff-button--delete {
  min-height: 44px;
  padding: 7px 4px;
  color: #6b2530;
  background: transparent;
  border: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pcn-handoff-button--erase:hover,
.pcn-handoff-button--delete:hover {
  color: var(--pcn-error);
  background: #fff1f3;
}

.pcn-handoff-button:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

.pcn-handoff-status {
  min-height: 1.75em;
  color: #06366f;
  font-weight: 700;
}

.pcn-handoff-card :focus-visible {
  outline: 3px solid #ffbf47;
  outline-offset: 3px;
  box-shadow: 0 0 0 9px #06366f;
}

.pcn-handoff-title:focus-visible {
  outline: 2px solid #064a9b;
  outline-offset: 3px;
  box-shadow: none;
}

/* PCNを読むページだけで共通メニューの操作状態を補強する。 */
@media (max-width: 975px) {
  .c-hamburger-menu__list {
    visibility: hidden;
  }

  #hamburger:checked ~ .c-hamburger-menu__list {
    visibility: visible;
  }

  .c-hamburger-menu__button:focus-visible {
    outline: 3px solid var(--pcn-focus);
    outline-offset: 4px;
  }
}

/* opacityだけで隠れていたトップへ戻るボタンをTab順から外す。 */
.back-to-top:not(.show) {
  visibility: hidden;
  pointer-events: none;
}

/* 320px幅でも見出しを支援技術から消さない。 */
@media (max-width: 514px) {
  #copy {
    display: block;
  }
}

@media (max-width: 790px) {
  .logo_area {
    padding-bottom: 160px;
  }

  .pcn-launcher-dock {
    left: 16px;
    right: auto;
    bottom: calc(16px + env(safe-area-inset-bottom));
    width: min(236px, calc(100vw - 32px));
  }

  .pcn-launcher {
    min-height: 64px;
    padding: 9px 12px 10px;
    border-radius: 999px;
  }

  .pcn-launcher-main {
    line-height: 1.35;
  }

  .pcn-launcher-help {
    margin-top: 2px;
    line-height: 1.3;
  }

  .pcn-launcher-line {
    display: inline;
  }

  .pcn-launcher-notice {
    left: 16px;
    right: auto;
    bottom: calc(140px + env(safe-area-inset-bottom));
  }

  .pcn-panel {
    inset: 0;
    width: 100%;
    min-width: 0;
    max-width: none;
    max-height: 100dvh;
    border-radius: 0;
  }

  .pcn-root--modal {
    min-height: 100dvh;
    max-height: 100dvh;
  }
}

@media (min-width: 791px) and (max-height: 600px) {
  .pcn-launcher-dock {
    bottom: calc(16px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 360px) {
  .logo_area {
    padding-bottom: 245px;
  }

  .pcn-launcher-dock {
    right: 16px;
    bottom: calc(105px + env(safe-area-inset-bottom));
    width: auto;
  }

  .pcn-launcher-notice {
    right: 16px;
    bottom: calc(229px + env(safe-area-inset-bottom));
    width: auto;
  }
}

@media (max-width: 575px) {
  .pcn-handoff-anchor {
    scroll-margin-top: 16px;
  }

  .pcn-review-header__inner,
  .pcn-review-footer__inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 16px;
  }

  .pcn-header,
  .pcn-intro,
  .pcn-progress,
  .pcn-current,
  .pcn-controls {
    padding-inline: 16px;
  }

  .pcn-status {
    margin-inline: 16px;
  }

  .pcn-trust-note {
    margin-inline: 16px;
  }

  .pcn-dimensions,
  .pcn-input-row {
    grid-template-columns: 1fr;
  }

  .pcn-summary-row {
    grid-template-columns: 1fr auto;
    gap: 6px 10px;
  }

  .pcn-summary-value {
    grid-column: 1 / -1;
  }

  .pcn-change-button {
    grid-column: 2;
    grid-row: 1;
  }

  .pcn-controls {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    align-items: stretch;
    padding-block: 10px calc(10px + env(safe-area-inset-bottom));
  }

  .pcn-controls-primary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .pcn-controls-primary .pcn-button {
    width: 100%;
  }

  .pcn-controls-primary .pcn-button:only-child {
    grid-column: 1 / -1;
  }

  .pcn-reset-button {
    width: auto;
    min-height: 44px;
    justify-self: start;
    padding: 5px 8px;
  }

  .pcn-handoff-card {
    padding: 16px;
  }

  .pcn-handoff-actions,
  .pcn-handoff-button {
    width: 100%;
  }

  .pcn-handoff-erase-actions {
    width: 100%;
  }

  .pcn-handoff-button--erase,
  .pcn-handoff-button--delete {
    width: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pcn-root *,
  .pcn-launcher,
  .pcn-launcher-dock,
  .pcn-review-skip,
  .pcn-handoff-card * {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
