.page-disclaimer {
  --pd-ink: #2B1B3D;
  --pd-ink-soft: rgba(43, 27, 61, 0.72);
  --pd-line: rgba(43, 27, 61, 0.18);
  --pd-line-strong: rgba(43, 27, 61, 0.42);
  --pd-accent: #7030A0;
  --pd-orange: #FF6A00;
  --pd-scan: #39FF14;

  background-color: #FFF8E7;
  color: var(--pd-ink);
  font-family: var(--font-body);
  padding-top: 28px;
  padding-bottom: 72px;
  background-image:
    linear-gradient(var(--pd-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--pd-line) 1px, transparent 1px);
  background-size: 36px 36px;
}

.page-disclaimer .breadcrumb {
  margin-bottom: 40px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--pd-line-strong);
}

.page-disclaimer .breadcrumb a {
  color: var(--pd-accent);
  text-decoration: none;
}

.page-disclaimer .breadcrumb a:hover {
  text-decoration: underline;
}

.pd-hero {
  position: relative;
  padding-bottom: 48px;
  border-bottom: 3px solid var(--pd-ink);
}

.pd-hero__top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px 16px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--pd-ink-soft);
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--pd-line-strong);
  margin-bottom: 32px;
}

.pd-hero__grid {
  display: grid;
  gap: 28px;
}

.pd-hero__kicker {
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--pd-accent);
  text-transform: uppercase;
  margin: 0 0 12px;
}

.pd-hero h1 {
  font-family: var(--font-head);
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.12;
  margin: 0 0 18px;
  letter-spacing: -0.01em;
  position: relative;
}

.pd-hero h1::after {
  content: "";
  display: block;
  width: 56px;
  height: 5px;
  background: var(--pd-scan);
  border: 1px solid var(--pd-ink);
  margin-top: 14px;
}

.pd-hero__lead {
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.8;
  color: var(--pd-ink-soft);
  max-width: 680px;
  margin: 0;
}

.pd-hero__facts {
  list-style: none;
  margin: 28px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--pd-line-strong);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 26px;
  font-size: 12px;
  color: var(--pd-ink-soft);
}

.pd-hero__facts li::before {
  content: "▸ ";
  color: var(--pd-accent);
}

.pd-hero__figure {
  margin: 0;
  border: 2px solid var(--pd-ink);
  position: relative;
  background: #fff;
}

.pd-hero__figure img {
  display: block;
  width: 100%;
  height: auto;
}

.pd-hero__figure::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: -8px;
  width: 38px;
  height: 38px;
  border-right: 3px solid var(--pd-accent);
  border-bottom: 3px solid var(--pd-accent);
  pointer-events: none;
}

.pd-hero__vtext {
  display: none;
  position: absolute;
  right: -6px;
  top: 70px;
  color: var(--pd-ink-soft);
  opacity: 0.7;
  font-size: 11px;
  letter-spacing: 0.18em;
}

.pd-toc {
  margin: 32px 0 40px;
  border: 1px solid var(--pd-line-strong);
  border-left: 4px solid var(--pd-orange);
  background: rgba(255, 248, 231, 0.75);
  padding: 16px 20px 18px;
}

.pd-toc__label {
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--pd-ink-soft);
  display: block;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.pd-toc__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px 16px;
}

.pd-toc__list a {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 14px;
  color: var(--pd-ink);
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px dotted var(--pd-line);
  transition: color 0.3s, border-color 0.3s;
}

.pd-toc__list a span {
  color: var(--pd-accent);
  font-size: 13px;
  font-weight: 600;
}

.pd-toc__list a:hover {
  color: var(--pd-accent);
  border-bottom-color: var(--pd-accent);
}

.pd-sections {
  display: block;
}

.pd-section {
  padding: 48px 0;
  border-bottom: 1px solid var(--pd-line);
  display: grid;
  gap: 20px;
  scroll-margin-top: 80px;
}

.pd-section__head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.pd-section__no {
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
  color: var(--pd-accent);
  font-family: var(--font-mono);
  letter-spacing: -0.04em;
  min-width: 64px;
}

.pd-section__titles h2 {
  font-family: var(--font-head);
  font-size: clamp(22px, 3.2vw, 32px);
  margin: 0;
  line-height: 1.25;
}

.pd-section__sub {
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--pd-ink-soft);
  margin: 6px 0 0;
  text-transform: uppercase;
}

.pd-section__body {
  font-size: 16px;
  line-height: 1.9;
  color: var(--pd-ink);
}

.pd-section__body p {
  margin: 0 0 18px;
}

.pd-section__body p:last-child {
  margin-bottom: 0;
}

.pd-section__body a {
  color: var(--pd-accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pd-section__body a:hover {
  color: var(--pd-orange);
}

.pd-copyright-mark {
  color: var(--pd-accent);
  vertical-align: -3px;
  margin-right: 6px;
}

.pd-contact {
  margin-top: 48px;
  scroll-margin-top: 80px;
}

.pd-contact__inner {
  background-color: var(--pd-ink);
  color: #FFF8E7;
  padding: 32px 22px;
  border-radius: 0;
  box-shadow: var(--shadow);
  position: relative;
}

.pd-contact__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 52px;
  height: 4px;
  background: var(--pd-scan);
}

.pd-contact__inner::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 24px;
  height: 24px;
  background: var(--pd-orange);
}

.pd-contact__inner h2 {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 34px);
  margin: 0 0 12px;
}

.pd-contact__lead {
  color: rgba(255, 248, 231, 0.85);
  margin-top: 0;
  margin-bottom: 28px;
  line-height: 1.8;
}

.pd-contact__list {
  margin: 0;
  border-top: 1px solid rgba(255, 248, 231, 0.28);
}

.pd-contact__item {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 248, 231, 0.28);
}

.pd-contact__item dt {
  font-size: 13px;
  color: rgba(255, 248, 231, 0.62);
  padding-top: 2px;
}

.pd-contact__item dd {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  word-break: break-word;
}

.pd-contact__links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.pd-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background-color 0.3s var(--ease);
}

.pd-link-btn--solid {
  background: var(--pd-scan);
  color: #0B1B3D;
  border: 2px solid var(--pd-scan);
}

.pd-link-btn--solid:hover {
  box-shadow: inset 0 0 0 2px #0B1B3D;
  transform: translateX(3px);
}

.pd-link-btn--outline {
  border: 2px solid rgba(255, 248, 231, 0.55);
  color: #FFF8E7;
}

.pd-link-btn--outline:hover {
  border-color: #FFF8E7;
  transform: translateX(3px);
}

.pd-contact__note {
  margin-top: 26px;
  padding-top: 16px;
  border-top: 1px dashed rgba(255, 248, 231, 0.22);
  font-size: 12px;
  color: rgba(255, 248, 231, 0.6);
}

@media (min-width: 600px) {
  .pd-toc__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .page-disclaimer .breadcrumb {
    margin-bottom: 48px;
  }

  .pd-hero__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: center;
    gap: 36px;
  }

  .pd-hero__vtext {
    display: block;
  }

  .pd-toc__list {
    grid-template-columns: repeat(4, 1fr);
  }

  .pd-section {
    grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
    gap: 36px;
    padding: 56px 0;
  }

  .pd-section__body {
    font-size: 17px;
    max-width: 780px;
  }

  .pd-contact__inner {
    padding: 44px 48px;
  }

  .pd-contact__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 24px;
  }

  .pd-contact__item {
    grid-template-columns: 1fr;
    padding: 18px 0;
  }

  .pd-contact__item dt {
    margin-bottom: 6px;
  }
}

@media (min-width: 1080px) {
  .pd-contact__inner {
    padding: 52px 64px;
  }
}
