:root {
  --dd-orange: #F4A33B;
  --dd-orange-dark: #E6862F;
  --dd-sky: #BFE7F7;
  --dd-sky-light: #EAF8FD;
  --dd-navy: #2F536B;
  --dd-blue: #5FA8C8;
  --dd-green: #33B86B;
  --dd-cream: #FFF8EC;
  --dd-white: #FFFFFF;
  --dd-text: #33424A;
  --dd-muted: #667781;
  --dd-border: #DDECF2;

  --dd-radius-card: 24px;
  --dd-radius-soft: 18px;
  --dd-radius-pill: 999px;

  --dd-shadow-soft: 0 10px 28px rgba(47, 83, 107, 0.07);
  --dd-shadow-card: 0 10px 24px rgba(47, 83, 107, 0.1);
  --dd-shadow-button: 0 8px 20px rgba(47, 83, 107, 0.14);

  --dd-font-heading: 'M PLUS Rounded 1c', 'Noto Sans JP', sans-serif;
  --dd-font-body: 'Noto Sans JP', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  /*
    Door Door HP typography baseline (font size rule)
    - html/body の基本 font-size は変更しない（1rem = 16px 前提）
    - 本文・説明文・Q&A回答文は 15px〜16px を基本にする
    - 14px 未満は装飾的な補助ラベルや短い注釈に限定する
    - 高齢者施設入居サポートの文脈では、読みやすさと安心感を優先する
    - 既存セクションへの一括適用はせず、今後触るセクションから順に寄せる
  */
  --dd-font-size-body: 1rem;         /* 16px: 基本本文 */
  --dd-font-size-body-sm: 0.9375rem; /* 15px: 補足本文・カード本文 */
  --dd-font-size-caption: 0.875rem;  /* 14px: キャプション・タグ */
  --dd-font-size-note: 0.75rem;      /* 12px: 補助ラベル（下限目安） */
}

* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: clip;
}

body {
  font-family: var(--dd-font-body);
  color: var(--dd-text);
  line-height: 1.75;
  letter-spacing: 0.01em;
  background: linear-gradient(180deg, #f7fcff 0%, #ffffff 100%);
}

h1,
h2,
h3,
button,
[role="button"],
a[class*="rounded"],
span[class*="rounded-full"] {
  font-family: var(--dd-font-heading);
  letter-spacing: 0.02em;
}

h1 {
  line-height: 1.45;
}

h2 {
  line-height: 1.5;
}

p {
  font-size: clamp(0.98rem, 0.95rem + 0.2vw, 1.08rem);
}

main {
  background: var(--dd-white) !important;
}

.dd-section {
  isolation: isolate;
}

.dd-section + .dd-section {
  border-top: 1px solid rgba(186, 217, 231, 0.34);
}

.dd-section-divider {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: clamp(4.25rem, 7.2vw, 7.25rem);
  margin-bottom: -1px;
  overflow: hidden;
  pointer-events: none;
}

.dd-section-divider svg {
  display: block;
  width: 100%;
  height: 100%;
}

.dd-section-divider path {
  fill: currentColor;
}

.dd-section-divider .dd-section-divider__curve {
  fill: none;
  stroke: rgba(95, 169, 197, 0.2);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.dd-section-divider--task-services {
  color: #fffdf9;
  background: #eef8fd;
}

.dd-section-divider--cases-checklist {
  color: #eef8fd;
  background: #ffffff;
}

.dd-section-divider + .dd-section {
  border-top: 0 !important;
}

.dd-section-bg {
  opacity: 1;
}

.dd-section-bg::before,
.dd-section-bg::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

/* Base UI treatments */
.bg-white.border,
.bg-white[class*="border-gray"],
.bg-gray-50.border,
.bg-gray-100.border,
[class*="rounded-2xl"].shadow-sm,
[class*="rounded-xl"].shadow-sm {
  border-color: var(--dd-border) !important;
}

.shadow-sm,
.hover\:shadow-md:hover {
  box-shadow: var(--dd-shadow-card) !important;
}

.rounded-2xl {
  border-radius: var(--dd-radius-card) !important;
}

.rounded-xl {
  border-radius: var(--dd-radius-soft) !important;
}

.rounded-full {
  border-radius: var(--dd-radius-pill) !important;
}

.text-gray-800,
.text-gray-700,
.text-gray-600 {
  color: var(--dd-text) !important;
}

.text-gray-500,
.text-gray-400,
.text-gray-300 {
  color: var(--dd-muted) !important;
}

.border-gray-100,
.border-gray-200,
.border-gray-300,
.border-gray-400 {
  border-color: var(--dd-border) !important;
}

/* Header CTA compression protection */
header .hidden.md\:flex.items-center.space-x-3 {
  gap: 0.62rem;
}

header .hidden.md\:flex.items-center.space-x-3 > * {
  flex-shrink: 1;
}

header .hidden.md\:flex.items-center.space-x-3 .bg-yellow-500,
header .hidden.md\:flex.items-center.space-x-3 .bg-green-500 {
  padding-inline: 0.95rem;
  padding-block: 0.48rem;
  font-size: 0.8rem;
}

.dd-header-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  min-width: 0;
}

.dd-header-logo-img {
  height: 34px;
  width: auto;
  display: block;
  flex: 0 0 auto;
}

.dd-header-logo-text {
  font-family: var(--dd-font-heading);
  font-weight: 800;
  font-size: 1.08rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--dd-navy);
  white-space: nowrap;
}

body > header {
  box-shadow: none !important;
  border-bottom: 0 !important;
  background: #ffffff !important;
  filter: none !important;
  backdrop-filter: none !important;
}

.dd-top-main {
  box-shadow: none !important;
}

.dd-sp-menu {
  position: relative;
}

.dd-sp-menu-button {
  list-style: none;
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  padding: 0.42rem 0.68rem;
  border: 1px solid #cfe3ed;
  border-radius: 999px;
  background: #ffffff;
  color: var(--dd-navy);
  font-family: var(--dd-font-heading);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.dd-sp-menu-button::-webkit-details-marker {
  display: none;
}

.dd-sp-menu-button::marker {
  content: "";
}

.dd-sp-menu-button:hover {
  background: #f1f9fd;
  border-color: #bad8e7;
}

.dd-sp-menu-button:focus-visible {
  outline: 2px solid #84bcd6;
  outline-offset: 2px;
}

.dd-sp-menu[open] .dd-sp-menu-button {
  background: #eef8fd;
  border-color: #b6d5e5;
}

.dd-sp-menu-panel {
  position: absolute;
  top: calc(100% + 0.42rem);
  right: 0;
  width: min(20rem, calc(100vw - 2rem));
  background: #ffffff;
  border: 1px solid #cfe3ed;
  border-radius: 14px;
  box-shadow: 0 9px 20px rgba(47, 83, 107, 0.12);
  padding: 0.35rem;
  display: grid;
  gap: 0.12rem;
  z-index: 70;
  max-height: min(64vh, 420px);
  overflow: auto;
}

.dd-sp-menu-panel a {
  display: block;
  padding: 0.68rem 0.82rem;
  border-radius: 10px;
  color: #455d6b;
  font-family: var(--dd-font-heading);
  font-size: 0.96rem;
  line-height: 1.55;
  text-decoration: none;
}

.dd-sp-menu-panel a:not(:last-child) {
  border-bottom: 1px solid rgba(207, 227, 237, 0.9);
}

.dd-sp-menu-panel a:hover,
.dd-sp-menu-panel a:focus-visible {
  background: #edf8fd;
  color: var(--dd-navy);
  outline: none;
}

/* Child pages share the site footer while leaving top-page CTA rules untouched. */
@media (max-width: 767px) {
  .dd-child-page {
    padding-bottom: 6.5rem !important;
  }
}

@media (min-width: 768px) {
  .dd-child-page {
    padding-bottom: 0 !important;
  }
}

/* PC second-row header navigation */
.dd-header-subnav {
  background: #ffffff !important;
  border-top: 0;
  border-bottom: 0;
  box-shadow: none !important;
  filter: none !important;
  backdrop-filter: none !important;
}

.dd-header-subnav-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  min-height: 2.8rem;
}

.dd-header-subnav-list li {
  flex: 1 1 0;
  position: relative;
}

.dd-header-subnav-list li + li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 1.15rem;
  background: rgba(186, 211, 224, 0.7);
}

.dd-header-subnav-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.32rem 0.62rem;
  color: #4a606f;
  font-family: var(--dd-font-heading);
  font-size: 0.89rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.18s ease, color 0.18s ease;
}

.dd-header-subnav-list a:hover {
  background: #edf8fd;
  color: var(--dd-navy);
}

.dd-header-subnav-list a.dd-nav-link--active {
  background: #edf8fd;
  box-shadow: inset 0 -2px 0 #77b4d1;
  color: var(--dd-navy);
  font-weight: 700;
}

.dd-sp-menu-panel a.dd-nav-link--active {
  background: #edf8fd;
  color: var(--dd-navy);
  font-weight: 800;
}

#yarukoto-list,
#service-range,
#reasons,
#estimate,
#cases,
#flow,
#faq {
  scroll-margin-top: 8.4rem;
}

/* Role-based buttons */
.bg-yellow-500 {
  background-color: var(--dd-orange) !important;
  color: #fff !important;
  box-shadow: var(--dd-shadow-button);
}

.bg-yellow-500:hover,
.hover\:bg-yellow-400:hover {
  background-color: var(--dd-orange-dark) !important;
}

.bg-green-500,
.bg-green-600 {
  background-color: var(--dd-green) !important;
  color: #fff !important;
  box-shadow: var(--dd-shadow-button);
}

.bg-green-500:hover,
.bg-green-600:hover,
.hover\:bg-green-400:hover,
.hover\:bg-green-700:hover {
  background-color: #2ea660 !important;
}

.bg-gray-500 {
  background-color: var(--dd-navy) !important;
  color: #fff !important;
  box-shadow: var(--dd-shadow-button);
}

.bg-gray-500:hover,
.hover\:bg-gray-600:hover {
  background-color: #27475d !important;
}

/* FV CTA role colors */
.dd-fv-cta-estimate {
  background-color: var(--dd-orange) !important;
}

.dd-fv-cta-estimate:hover {
  background-color: var(--dd-orange-dark) !important;
}

.dd-fv-cta-case {
  background-color: #2f6f8f !important;
}

.dd-fv-cta-case:hover {
  background-color: #285f7a !important;
}

.dd-fv-cta-line {
  background-color: var(--dd-green) !important;
}

.dd-fv-cta-line:hover {
  background-color: #2ea660 !important;
}

.bg-white.border-2,
a.inline-flex.bg-white.border-2,
a.bg-white.border,
a.bg-transparent.border,
a.bg-white.text-gray-700 {
  border-color: var(--dd-blue) !important;
  color: var(--dd-navy) !important;
  background: rgba(255, 255, 255, 0.95) !important;
}

a.inline-flex.bg-white.border-2:hover,
a.bg-white.border:hover,
a.bg-transparent.border:hover,
a.bg-white.text-gray-700:hover {
  background: #f4fbff !important;
}

/* Pill tags */
span.bg-white.border,
span.bg-gray-100.border {
  background: rgba(255, 255, 255, 0.95) !important;
  border-color: #cde4ee !important;
  color: #48606d !important;
  font-weight: 700;
}

/* Section tones */
.dd-section--top-hero .dd-section-bg {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 252, 245, 0.8) 24%, rgba(241, 225, 204, 0.36) 40%, rgba(241, 225, 204, 0.08) 52%, rgba(241, 225, 204, 0) 62%),
    url("../../images/fv-main-visual.webp");
  background-repeat: no-repeat;
  background-position: left top, 82% center;
  background-size: auto, cover;
}

.dd-section--top-hero .dd-section-bg::before {
  display: none;
}

.dd-section--top-hero {
  --dd-fv-copy-left-offset: clamp(8.7rem, 9.8vw, 11.8rem);
  padding-top: clamp(3.7rem, 8vw, 5.2rem) !important;
  padding-bottom: clamp(3.9rem, 9vw, 6rem) !important;
}

.dd-fv-content-wrap {
  text-align: left !important;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: auto !important;
}

.dd-fv-content-wrap p {
  max-width: 40rem;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.dd-section--top-hero .dd-fv-content-wrap > h1,
.dd-section--top-hero .dd-fv-content-wrap > p,
.dd-section--top-hero .dd-fv-content-wrap > .flex.flex-wrap.justify-center.gap-2,
.dd-section--top-hero .dd-fv-content-wrap > .flex.flex-col.sm\:flex-row.justify-center.gap-4 {
  margin-left: 0 !important;
  margin-right: auto !important;
}

.dd-fv-content-wrap .flex.flex-wrap.justify-center.gap-2,
.dd-fv-content-wrap .flex.flex-col.sm\:flex-row.justify-center.gap-4 {
  justify-content: flex-start !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.dd-section--top-hero h1 {
  margin-bottom: clamp(1.05rem, 2vw, 1.5rem) !important;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif !important;
  font-weight: 800 !important;
  color: #2a3f56 !important;
  letter-spacing: 0.004em;
  line-height: 1.3 !important;
  max-width: 14.8em;
  word-break: keep-all;
  overflow-wrap: normal;
}

.dd-section--top-hero p {
  margin-bottom: clamp(1.35rem, 2.6vw, 2rem) !important;
}

.dd-section--top-hero .flex.flex-wrap.justify-center.gap-2 {
  gap: 0.52rem !important;
  margin-bottom: clamp(1.5rem, 2.8vw, 2.15rem) !important;
}

.dd-fv-service-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  padding: 0.56rem 1.08rem !important;
  font-size: 1.02rem !important;
  line-height: 1.25;
  background: #ffffff !important;
  border-color: #bfddea !important;
  color: #34566a !important;
  box-shadow: 0 4px 14px rgba(47, 111, 143, 0.1) !important;
}

.dd-fv-service-badge svg,
.dd-fv-service-badge .lucide {
  width: 1rem;
  height: 1rem;
  stroke-width: 2;
  color: #34566a;
  flex: 0 0 auto;
}

.dd-section--top-hero .flex.flex-col.sm\:flex-row.justify-center.gap-4 {
  gap: clamp(0.6rem, 1.8vw, 0.95rem) !important;
}

.dd-section--top-hero .flex.flex-col.sm\:flex-row.justify-center.gap-4 > * {
  padding-top: 0.65rem !important;
  padding-bottom: 0.65rem !important;
}

@media (min-width: 1024px) {
  .dd-section--top-hero .dd-section-inner {
    min-height: clamp(34.5rem, 73vh, 41rem);
    display: flex;
    align-items: flex-start;
  }

  .dd-section--top-hero .dd-fv-content-wrap {
    padding-top: clamp(1.1rem, 4.4vh, 2.4rem);
    padding-left: var(--dd-fv-copy-left-offset) !important;
  }

  .dd-section--top-hero .dd-section-bg::before {
    display: none;
  }

  .dd-section--top-hero h1 {
    font-size: clamp(2.45rem, 3.25vw, 3.75rem) !important;
    margin-top: -0.58em;
    margin-bottom: clamp(1.05rem, 2vw, 1.5rem) !important;
    max-width: 13.6em;
    margin-left: 0 !important;
    line-height: 1.34 !important;
    letter-spacing: 0.002em;
  }

  .dd-section--top-hero p {
    margin-bottom: clamp(1.35rem, 2.6vw, 2rem) !important;
  }

  .dd-section--top-hero .flex.flex-wrap.justify-center.gap-2 {
    margin-bottom: clamp(1.5rem, 2.8vw, 2.15rem) !important;
  }

  .dd-section--top-hero .dd-fv-content-wrap .flex.flex-col.sm\:flex-row.justify-center.gap-4 {
    margin-top: 0 !important;
  }
}

.dd-section--top-assurance .dd-section-bg {
  background: linear-gradient(90deg, #fff7ea 0%, #fff0d5 52%, #fff8e8 100%);
}

.dd-section--top-assurance p.text-sm {
  font-size: var(--dd-font-size-body-sm) !important;
  line-height: 1.72;
}

.dd-section--top-advisors-link .dd-section-bg {
  background: linear-gradient(180deg, #ffffff 0%, #f7fcff 100%);
}

.dd-section--top-trouble .dd-section-bg {
  background: #eef8fd;
}

.dd-section--top-faq .dd-section-bg {
  background: #eef8fd;
}

.dd-section--top-faq {
  border-top: 0 !important;
}

.dd-section--top-services .dd-section-bg {
  background: linear-gradient(180deg, #fffdf9 0%, #ffffff 100%);
}

.dd-section--top-reasons {
  border-top: 0 !important;
}

.dd-section--top-services .text-center.mb-12 {
  max-width: 48rem;
  margin-inline: auto;
}

.dd-top-service-heading {
  color: #273f52 !important;
  letter-spacing: 0;
  word-break: keep-all;
  overflow-wrap: normal;
}

.dd-top-service-heading span {
  display: inline-block;
}

.dd-top-service-heading-line {
  display: block !important;
}

.dd-section--top-services .text-center.mb-12 p {
  font-size: var(--dd-font-size-body);
  line-height: 1.85;
  color: #5d7180 !important;
}

.dd-top-service-grid {
  align-items: stretch;
  gap: 1.35rem !important;
}

.dd-top-service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  min-height: 17.8rem;
  padding: 1.65rem 1.45rem 1.5rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid #cfe5ef;
  border-radius: 1.55rem;
  box-shadow: 0 5px 14px rgba(47, 83, 107, 0.055);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.dd-top-service-card:hover {
  transform: translateY(-2px);
  border-color: #b8dceb;
  box-shadow: 0 8px 18px rgba(95, 168, 200, 0.09);
}

.dd-top-service-title {
  order: 1;
  min-height: 2.7em;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dd-navy) !important;
  font-family: var(--dd-font-heading);
  font-size: 1.16rem;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0;
  text-wrap: balance;
}

.dd-top-service-visual {
  order: 2;
  position: relative;
  display: grid;
  place-items: center;
  width: 8.4rem;
  height: 6.9rem;
  margin: 0.15rem auto 1rem;
  color: #2f6f8f;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

.dd-top-service-visual::after {
  content: none;
}

.dd-top-service-visual svg,
.dd-top-service-visual .lucide {
  position: relative;
  z-index: 1;
  width: 2.75rem;
  height: 2.75rem;
  stroke-width: 1.9;
}

.dd-top-service-visual img {
  position: relative;
  inset: auto;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.dd-top-service-text {
  order: 3;
  margin: 0;
  color: #5f7686 !important;
  font-size: var(--dd-font-size-body-sm);
  line-height: 1.72;
  letter-spacing: 0;
}

.dd-top-service-cta {
  color: var(--dd-navy) !important;
}

.dd-top-service-cta:hover {
  background-color: #f5fbff;
  border-color: var(--dd-blue);
}

.dd-section--top-task-list .dd-section-bg,
.dd-section--top-reasons .dd-section-bg {
  background: linear-gradient(180deg, #ffffff 0%, #fffdf9 100%);
}

.dd-section--top-flow .dd-section-bg {
  background: #eef8fd;
}

.dd-top-reason-list {
  display: grid;
  gap: clamp(5.25rem, 8vw, 7rem);
}

.dd-top-reason-item {
  position: relative;
  gap: 0 !important;
  isolation: isolate;
}

.dd-top-reason-media,
.dd-top-reason-content {
  width: 100%;
  min-width: 0;
}

.dd-top-reason-media {
  position: relative;
  z-index: 3;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid #d5e7f0;
  border-radius: 1.15rem;
  background: #eef7fb;
  box-shadow: 0 5px 14px rgba(47, 83, 107, 0.055);
}

.dd-top-reason-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dd-top-reason-item:nth-child(2) .dd-top-reason-media img {
  object-position: center 38%;
}

.dd-top-reason-item:nth-child(3) .dd-top-reason-media img {
  object-position: center 35%;
}

.dd-top-reason-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.dd-top-reason-content {
  position: relative;
  z-index: 1;
  padding: clamp(1.65rem, 3vw, 2.35rem);
  border: 1px solid rgba(193, 222, 235, 0.72);
  border-radius: 1.25rem;
  background: rgba(245, 251, 254, 0.92);
  box-shadow: 0 5px 14px rgba(47, 83, 107, 0.055);
}

.dd-top-reason-item:nth-child(2) .dd-top-reason-content {
  border-color: rgba(232, 210, 178, 0.72);
  background: rgba(255, 250, 241, 0.92);
}

.dd-top-reason-number {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  margin-bottom: 0.75rem;
  color: #2f6f8f;
  letter-spacing: 0;
}

.dd-top-reason-number-label {
  font-family: var(--dd-font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.dd-top-reason-number-value {
  color: #e59832;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(2.45rem, 4vw, 3.35rem);
  font-weight: 600;
  line-height: 0.9;
}

.dd-top-reason-content h3 {
  color: var(--dd-navy) !important;
  margin-bottom: 1rem !important;
  font-size: clamp(1.35rem, 1.15rem + 0.45vw, 1.65rem) !important;
  line-height: 1.55;
  letter-spacing: 0;
  text-wrap: balance;
  word-break: auto-phrase;
}

.dd-top-reason-content p {
  font-size: var(--dd-font-size-body);
  line-height: 1.85;
  line-break: strict;
  text-wrap: pretty;
  word-break: normal;
}

.dd-top-reason-illus-slot {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: -1.15rem;
  width: 4.35rem;
  height: 3.55rem;
  border: 1px dashed rgba(95, 168, 200, 0.36);
  border-radius: 0.85rem;
  background:
    linear-gradient(145deg, rgba(234, 248, 253, 0.62), rgba(255, 248, 236, 0.58));
  box-shadow: 0 6px 14px rgba(47, 83, 107, 0.04);
  opacity: 0.62;
}

@media (min-width: 769px) {
  .dd-top-reason-list {
    margin-bottom: 5.5rem;
  }

  .dd-top-reason-item {
    align-items: flex-start !important;
  }

  .dd-top-reason-media {
    flex: 0 0 55%;
    width: 55% !important;
  }

  .dd-top-reason-content {
    flex: 0 0 53%;
    width: 53% !important;
    top: 56px;
    padding-right: clamp(3rem, 4vw, 3.5rem);
    padding-left: clamp(3rem, 4vw, 3.5rem);
    transform: translateX(-15%);
  }

  .dd-top-reason-item:not(:nth-child(2)) .dd-top-reason-content {
    padding-left: clamp(6rem, 8vw, 7rem);
  }

  .dd-top-reason-item:nth-child(2) .dd-top-reason-content {
    padding-right: clamp(6rem, 8vw, 7rem);
    transform: translateX(15%);
  }

  .dd-top-reason-item:not(:nth-child(2)) .dd-top-reason-illus-slot {
    right: auto;
    left: -1.35rem;
  }

  .dd-top-reason-item:nth-child(2) .dd-top-reason-illus-slot {
    right: -1.35rem;
  }
}

@media (max-width: 768px) {
  .dd-section--top-reasons {
    padding-bottom: 7rem !important;
  }

  .dd-section--top-reasons h2 {
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
    font-size: 1.75rem !important;
    line-height: 1.45;
    letter-spacing: 0;
    text-wrap: balance;
    word-break: auto-phrase;
  }

  .dd-top-reason-list {
    gap: 2.25rem;
    margin-bottom: 0;
  }

  .dd-top-reason-item {
    gap: 1rem !important;
    align-items: stretch !important;
  }

  .dd-top-reason-media {
    aspect-ratio: 16 / 9;
    border-radius: 0.85rem;
  }

  .dd-top-reason-content {
    top: auto;
    z-index: 1;
    padding: 1.2rem 1.05rem 1.45rem;
    border-radius: 1rem;
    transform: none;
  }

  .dd-top-reason-number {
    margin-bottom: 0.65rem;
  }

  .dd-top-reason-number-value {
    font-size: 2.45rem;
  }

  .dd-top-reason-content h3 {
    font-size: 1.06rem !important;
    line-height: 1.58;
    text-wrap: pretty;
    word-break: normal;
    overflow-wrap: break-word;
  }

  .dd-top-reason-content p {
    font-size: 0.985rem;
    line-height: 1.82;
    text-wrap: pretty;
    overflow-wrap: break-word;
  }

  .dd-top-reason-illus-slot {
    right: 0.8rem;
    bottom: -1.1rem;
    width: 4.15rem;
    height: 3.3rem;
    margin: 0;
    border-radius: 0.8rem;
    opacity: 0.42;
  }
}

.dd-section--top-cases .dd-section-bg {
  background-color: #ffffff;
  background-image: url("../images/top-case-bg_pc_.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.dd-section--top-cases .dd-section-bg::after {
  right: 0;
  bottom: 0;
  left: 0;
  height: clamp(5rem, 8vw, 7.5rem);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #ffffff 88%);
}

.dd-top-cases-heading-line,
.dd-top-cases-copy-line {
  display: block;
}

.dd-top-cases-scroll-hint {
  display: none;
}

.dd-top-case-image {
  height: 12rem;
  overflow: hidden;
  background-color: #e5f3f9;
}

.dd-top-case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dd-section--top-cases .grid > div {
  display: flex;
  flex-direction: column;
}

.dd-top-case-content {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.dd-top-case-tags {
  flex-wrap: wrap;
  row-gap: 0.4rem;
}

.dd-top-case-price {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 0.8rem;
  border-top: 1px solid #e2edf2;
}

.dd-top-case-price-label {
  color: #c77a25;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
}

.dd-top-case-price p {
  color: var(--dd-navy) !important;
  font-size: 1.3rem !important;
  line-height: 1.35 !important;
  text-align: right;
}

@keyframes dd-case-scroll-nudge {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .dd-top-cases-scroll-arrow {
    animation: none;
  }
}

.dd-section--top-estimate .dd-section-bg {
  background-color: #fff8ec;
  background-image: url("../images/top-estimate-bg.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
}

@media (min-width: 769px) {
  .dd-top-section-heading {
    font-size: clamp(2.132rem, 3.444vw, 3.28rem) !important;
    line-height: 1.3 !important;
  }

  .dd-top-service-heading {
    width: max-content;
    max-width: calc(100vw - 2rem);
    margin-right: auto;
    margin-left: 50%;
    transform: translateX(-50%);
  }

  .dd-top-service-heading-line {
    white-space: nowrap;
  }

  .dd-section--top-estimate {
    height: clamp(520px, 43vw, 620px);
    aspect-ratio: auto;
    padding-top: clamp(2rem, 3.5vw, 5rem) !important;
    padding-bottom: clamp(2rem, 3.5vw, 5rem) !important;
  }

  .dd-section--top-estimate .dd-section-bg {
    background-image: url("../images/top-estimate-bg_pc.webp");
    background-position: center;
  }

  .dd-section--top-estimate .dd-section-inner {
    display: flex;
    align-items: center;
    height: 100%;
  }

  .dd-section--top-estimate .dd-section-inner > .max-w-6xl {
    width: 100%;
  }

  .dd-section--top-estimate .dd-top-estimate-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(12.5rem, 22vw, 17rem);
    column-gap: clamp(1.5rem, 3vw, 2.75rem);
    width: min(100%, 64rem);
    margin-right: auto;
    margin-left: auto;
  }

  .dd-top-estimate-content > :not(.dd-top-estimate-visual) {
    grid-column: 1;
  }

  .dd-section--top-estimate .dd-top-estimate-heading-sub {
    font-size: 0.82em;
  }

  .dd-section--top-estimate .dd-top-estimate-cta {
    width: min(100%, 27.5rem);
    min-width: 0;
    justify-self: start;
  }

  .dd-section--top-estimate .dd-top-estimate-visual {
    display: block;
    grid-column: 2;
    grid-row: 1 / span 5;
    align-self: center;
    justify-self: center;
  }
}

.dd-top-estimate-content {
  width: min(100%, 52rem);
  margin-right: auto;
  padding: clamp(2rem, 3.5vw, 2.65rem);
  text-align: left;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 214, 137, 0.72);
  border-radius: var(--dd-radius-card);
  box-shadow: 0 14px 34px rgba(132, 88, 24, 0.1);
  backdrop-filter: blur(2px);
}

.dd-top-estimate-label {
  margin: 0 0 0.75rem;
  color: var(--dd-orange);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.18em;
}

.dd-top-estimate-heading {
  margin: 0 0 1.35rem;
  color: var(--dd-navy);
  font-size: clamp(2.6rem, 4.2vw, 4rem) !important;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0;
}

.dd-top-estimate-heading-first,
.dd-top-estimate-heading-second {
  display: block;
}

.dd-top-estimate-heading-second {
  white-space: nowrap;
}

.dd-top-estimate-heading-accent {
  color: #2f86ae;
}

.dd-top-estimate-visual {
  display: none;
}

@media (min-width: 769px) {
  .dd-top-estimate-visual {
    width: clamp(12.5rem, 22vw, 17rem);
    max-width: 100%;
  }

  .dd-top-estimate-visual img {
    display: block;
    width: 100%;
    max-width: 17rem;
    height: auto;
    object-fit: contain;
  }
}

.dd-top-estimate-lead {
  max-width: 44rem;
  margin-right: 0;
  margin-left: 0;
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.08rem);
  line-height: 1.85;
}

.dd-top-estimate-note {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1.5rem;
  color: #7b6544;
  font-size: var(--dd-font-size-caption);
  font-weight: 700;
}

.dd-top-estimate-note svg,
.dd-top-estimate-note .lucide {
  width: 1.05rem;
  height: 1.05rem;
  color: var(--dd-orange);
  flex: 0 0 auto;
}

.dd-top-estimate-cta {
  display: inline-grid;
  grid-template-columns: 2.5rem auto 1.25rem;
  gap: 0.8rem;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 31rem);
  min-height: 4.25rem;
  padding: 1rem 2rem !important;
  background: linear-gradient(180deg, #f8aa42 0%, #f39a2f 100%) !important;
  border: 0;
  border-radius: 1.25rem !important;
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  box-shadow:
    inset 0 -3px 0 rgba(204, 113, 22, 0.56),
    0 3px 0 rgba(198, 109, 22, 0.16),
    0 6px 10px rgba(191, 111, 25, 0.14) !important;
  transform: translateY(0);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.dd-top-estimate-cta:hover,
.dd-top-estimate-cta:focus-visible {
  background: linear-gradient(180deg, #ffb34c 0%, #f7a139 100%) !important;
  box-shadow:
    inset 0 -3px 0 rgba(204, 113, 22, 0.58),
    0 4px 0 rgba(198, 109, 22, 0.18),
    0 9px 14px rgba(191, 111, 25, 0.18) !important;
  transform: translateY(-2px);
}

.dd-top-estimate-cta:focus-visible {
  outline: 3px solid rgba(95, 168, 200, 0.34);
  outline-offset: 4px;
}

.dd-top-estimate-cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.dd-top-estimate-cta-icon svg,
.dd-top-estimate-cta-icon .lucide {
  width: 1.25rem;
  height: 1.25rem;
  color: #ffffff;
}

.dd-top-estimate-cta-arrow {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
  transition: transform 0.2s ease;
}

.dd-top-estimate-cta:hover .dd-top-estimate-cta-arrow,
.dd-top-estimate-cta:focus-visible .dd-top-estimate-cta-arrow {
  transform: translateX(3px);
}

.dd-section--top-checklist .dd-section-bg {
  background: #eef8fd;
}

.dd-section--top-checklist .dd-section-bg::before,
.dd-section--top-checklist .dd-section-bg::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  height: 30px;
  background: #3784a4;
  pointer-events: none;
}

.dd-section--top-checklist .dd-section-bg::before {
  display: none;
}

.dd-section--top-checklist .dd-section-bg::after {
  display: none;
}

.dd-top-checklist-heading-wrap {
  position: relative;
  display: block;
  width: max-content;
  max-width: 100%;
  margin-right: auto;
  margin-bottom: 1rem;
  margin-left: auto;
  z-index: 0;
}

.dd-top-checklist-heading-wrap .dd-top-section-heading {
  margin-bottom: 0;
}

.dd-top-checklist-heading-illust {
  display: block;
  position: absolute;
  top: calc(42% + 30px);
  left: calc(100% + clamp(0.5rem, 1.5vw, 1.1rem) + 50px);
  width: clamp(8rem, 12.8vw, 10.8rem);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.9;
  pointer-events: none;
  transform: translateY(-50%);
  z-index: -1;
}

.dd-top-checklist-lead {
  max-width: 44rem;
  margin: 0 auto 2rem;
  line-height: 1.85;
}

.dd-top-checklist-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1.35rem;
}

.dd-top-checklist-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-height: 5.25rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(38, 112, 143, 0.18);
  border-radius: 1rem;
  background: #3784a4;
  color: #ffffff;
  font-family: var(--dd-font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: left;
  box-shadow: 0 3px 8px rgba(31, 100, 130, 0.11);
}

.dd-top-checklist-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 3.5rem;
  height: 3.5rem;
  padding: 0;
  overflow: hidden;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(31, 94, 120, 0.1);
}

.dd-top-checklist-icon img {
  display: block;
  width: 112%;
  max-width: none;
  height: 112%;
  object-fit: contain;
}

.dd-top-checklist-item svg {
  flex: 0 0 auto;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.52rem;
  border-radius: 50%;
  background: #e8f7f4;
  color: #2e9a82;
}

.dd-top-checklist-item--caution {
  border-color: rgba(178, 99, 28, 0.18);
  background: #c9792e;
  color: #ffffff;
  box-shadow: 0 3px 8px rgba(159, 88, 24, 0.11);
}

.dd-top-checklist-item--caution .dd-top-checklist-icon,
.dd-top-checklist-item--caution svg {
  background: #ffffff;
  color: #d58a28;
}

.dd-top-checklist-note {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 auto 1.7rem;
  padding: 0.7rem 1rem;
  border-radius: 0.75rem;
  background: rgba(231, 245, 250, 0.9);
  color: #526d7b;
  font-size: 0.9rem;
  line-height: 1.6;
  text-align: left;
}

.dd-top-checklist-note svg {
  flex: 0 0 auto;
  width: 1.15rem;
  height: 1.15rem;
  color: #5c9bb4;
}

.dd-top-checklist-actions {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
}

.dd-top-link-button,
.dd-top-checklist-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.25rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid #5fa9c5;
  border-radius: 999px;
  font-family: var(--dd-font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.dd-top-link-button {
  width: min(100%, 17.6875rem);
  border: 2px solid #5fa9c5;
  background: #ffffff;
  color: #3d7088;
  text-decoration: none;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.dd-top-link-button svg,
.dd-top-link-button .lucide,
.dd-top-checklist-cta svg {
  width: 1.1rem;
  height: 1.1rem;
  flex: 0 0 auto;
}

.dd-top-link-button__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 1.1rem;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;
}

.dd-top-checklist-cta--primary {
  width: 17.6875rem;
  background: #ffffff;
  color: #3d7088;
}

.dd-top-checklist-cta--secondary {
  background: #ffffff;
  color: #3d7088;
}

.dd-top-link-button--light {
  border-color: rgba(168, 207, 223, 0.7);
  background: transparent;
  color: var(--dd-text);
}

.dd-top-checklist-cta:hover,
.dd-top-checklist-cta:focus-visible,
.dd-top-link-button:hover,
.dd-top-link-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 7px 14px rgba(47, 112, 143, 0.18);
}

.dd-btn-primary {
  min-height: 3.5rem;
  padding: 0.85rem 1.65rem;
  border-radius: 1.1rem;
  box-shadow:
    inset 0 -3px 0 var(--dd-btn-depth, rgba(0, 0, 0, 0.24)),
    0 3px 0 var(--dd-btn-edge, rgba(0, 0, 0, 0.1)),
    0 6px 10px var(--dd-btn-shadow, rgba(0, 0, 0, 0.12));
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.dd-btn-primary:hover,
.dd-btn-primary:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.03) saturate(1.03);
  box-shadow:
    inset 0 -3px 0 var(--dd-btn-depth-hover, rgba(0, 0, 0, 0.28)),
    0 4px 0 var(--dd-btn-edge-hover, rgba(0, 0, 0, 0.12)),
    0 9px 14px var(--dd-btn-shadow-hover, rgba(0, 0, 0, 0.16));
}

.dd-btn-primary:focus-visible {
  outline: 3px solid var(--dd-btn-focus-ring, rgba(0, 0, 0, 0.22));
  outline-offset: 4px;
}

.dd-btn-primary > svg:last-child {
  transition: transform 0.2s ease;
}

.dd-btn-primary:hover > svg:last-child,
.dd-btn-primary:focus-visible > svg:last-child {
  transform: translateX(3px);
}

.dd-section--top-advisors-guide .dd-section-bg {
  background: #7ccceb;
}

.dd-top-advisors-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(9.5rem, 19vw, 14.8rem);
  grid-template-areas:
    "copy visual"
    "cta visual";
  align-items: start;
  gap: 0.9rem;
  padding: clamp(1.7rem, 2.6vw, 2.2rem) clamp(1.6rem, 4vw, 3.5rem);
  border-radius: 1.75rem;
  background: #ffffff;
  min-height: 15.5rem;
}

.dd-top-advisors-copy {
  grid-area: copy;
  flex: 1 1 auto;
  min-width: 0;
}

.dd-top-advisors-heading {
  margin: 0 0 1rem;
  color: var(--dd-navy) !important;
  font-size: clamp(1.5rem, 1.2rem + 0.7vw, 2rem);
  line-height: 1.35;
  letter-spacing: 0;
  white-space: nowrap;
}

.dd-top-advisors-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.dd-top-advisors-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: #f4fbfe;
  border: 1px solid #cfe5ef;
  color: #55707f;
  font-family: var(--dd-font-heading);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.dd-top-advisors-text {
  margin: 0;
  color: var(--dd-text) !important;
  font-size: 1rem;
  line-height: 1.85;
}

.dd-top-advisors-visual {
  grid-area: visual;
  width: clamp(9.5rem, 19vw, 14.8rem);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 10rem;
  align-self: center;
}

.dd-top-advisors-visual-image {
  display: block;
  width: 150%;
  max-width: calc(clamp(9.5rem, 19vw, 14.8rem) * 1.5);
  height: auto;
  object-fit: contain;
  transform: translate(-50px, 10px);
}

.dd-top-advisors-cta {
  grid-area: cta;
  align-self: flex-start;
  color: var(--dd-navy) !important;
  white-space: nowrap;
  margin-top: 0.75rem;
}

.dd-top-advisors-cta:hover {
  background: #f7fcff;
  border-color: var(--dd-blue);
}

.dd-section--top-company {
  color: var(--dd-text) !important;
  border-top: 0 !important;
}

.dd-section--top-company .dd-section-bg {
  background-color: #eef7fb;
  background-image: url("../images/top-bg-sky-sp.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.dd-section--top-company h2,
.dd-section--top-company p,
.dd-section--top-company a {
  color: var(--dd-text) !important;
}

.dd-top-company-content {
  text-align: left;
}

.dd-top-company-heading {
  width: min(100%, 45rem);
  margin-right: auto;
  margin-left: 0;
  font-size: clamp(2.2rem, 1.85rem + 1.4vw, 3.25rem) !important;
  line-height: 1.32 !important;
  letter-spacing: 0.02em;
}

.dd-top-company-heading-line {
  display: block;
}

.dd-top-company-text {
  width: min(100%, 46rem);
  margin-right: auto;
  margin-left: 0;
  color: #d6e7ef !important;
  font-size: clamp(1.12rem, 1.04rem + 0.35vw, 1.26rem);
  line-height: 1.95;
}

.dd-top-company-text p {
  margin: 0;
}

.dd-top-company-text p + p {
  margin-top: 0.9rem;
}

.dd-top-company-cta {
  margin-right: auto;
  width: 17.6875rem;
  border-color: #5fa9c5 !important;
  background: #ffffff;
  color: #3d7088 !important;
}

.dd-top-company-cta .dd-top-link-button__arrow {
  color: #3d7088 !important;
}

.dd-top-company-cta:hover,
.dd-top-company-cta:focus-visible {
  background: #ffffff;
  box-shadow: 0 7px 14px rgba(47, 112, 143, 0.18);
}

@media (min-width: 769px) {
  .dd-section--top-company {
    padding-bottom: calc(6rem - 80px) !important;
  }

  .dd-section--top-company .dd-section-bg {
    background-image: url("../images/top-bg-sky-pc.webp");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
  }
}

@media (min-width: 1024px) {
  .dd-top-company-content {
    max-width: 58rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
    transform: translateX(-1.35rem);
  }

  .dd-top-company-heading,
  .dd-top-company-text {
    width: min(100%, 49rem);
  }

  .dd-top-company-heading-line--nowrap {
    white-space: nowrap;
  }
}

.dd-section--top-final-cta .dd-section-bg {
  background-color: #ffffff;
  background-image: url("../images/top-bg-cta-hill-town-sp.webp");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}

.dd-section--top-final-cta,
.dd-section--top-final-cta h2,
.dd-section--top-final-cta p {
  color: var(--dd-navy) !important;
}

.dd-section--top-final-cta {
  border: 0 !important;
  border-top: 0 !important;
  margin-top: 0;
  padding-top: clamp(2.35rem, 4.6vw, 3.9rem) !important;
  padding-bottom: clamp(7.25rem, 13vw, 10rem) !important;
  background: transparent !important;
}

@media (min-width: 769px) {
  .dd-section--top-final-cta .dd-section-bg {
    background-image: url("../images/top-bg-cta-hill-town-pc.webp");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
  }

  .dd-section--top-final-cta {
    padding-bottom: calc(clamp(10rem, 18vw, 13.5rem) + 200px) !important;
  }

  .dd-top-final-cta-inner {
    margin: -80px auto 80px;
  }

  .dd-top-final-cta-action {
    gap: 0.9rem;
    min-height: 4.45rem;
    padding: 1rem 1.55rem;
    border-radius: 1.2rem;
    box-shadow:
      inset 0 -3px 0 rgba(27, 52, 68, 0.12),
      0 4px 0 rgba(47, 83, 107, 0.12),
      0 10px 18px rgba(47, 83, 107, 0.18);
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease,
      background 0.2s ease,
      filter 0.2s ease;
  }

  .dd-top-final-cta-action:hover,
  .dd-top-final-cta-action:focus-visible {
    transform: translateY(-2px);
    box-shadow:
      inset 0 -3px 0 rgba(27, 52, 68, 0.14),
      0 5px 0 rgba(47, 83, 107, 0.14),
      0 14px 24px rgba(47, 83, 107, 0.22);
    filter: brightness(1.03);
  }

  .dd-top-final-cta-action--estimate {
    background: linear-gradient(180deg, #f8aa42 0%, #f39a2f 100%);
    box-shadow:
      inset 0 -3px 0 rgba(204, 113, 22, 0.56),
      0 4px 0 rgba(198, 109, 22, 0.16),
      0 10px 18px rgba(191, 111, 25, 0.18);
  }

  .dd-top-final-cta-action--estimate:hover,
  .dd-top-final-cta-action--estimate:focus-visible {
    background: linear-gradient(180deg, #ffb34c 0%, #f7a139 100%);
    box-shadow:
      inset 0 -3px 0 rgba(204, 113, 22, 0.58),
      0 5px 0 rgba(198, 109, 22, 0.18),
      0 14px 24px rgba(191, 111, 25, 0.2);
  }

  .dd-top-final-cta-action--line {
    background: linear-gradient(180deg, #46c874 0%, #31af5d 100%);
    box-shadow:
      inset 0 -3px 0 rgba(28, 133, 70, 0.46),
      0 4px 0 rgba(28, 133, 70, 0.14),
      0 10px 18px rgba(28, 133, 70, 0.18);
  }

  .dd-top-final-cta-action--line:hover,
  .dd-top-final-cta-action--line:focus-visible {
    background: linear-gradient(180deg, #4fd27d 0%, #38b964 100%);
    box-shadow:
      inset 0 -3px 0 rgba(28, 133, 70, 0.5),
      0 5px 0 rgba(28, 133, 70, 0.16),
      0 14px 24px rgba(28, 133, 70, 0.2);
  }

  .dd-top-final-cta-action-icon {
    width: 2.45rem;
    height: 2.45rem;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  }
}

.dd-section--top-company + .dd-section--top-final-cta {
  border: 0 !important;
  border-top: 0 !important;
  margin-top: 0;
}

.dd-top-final-cta-inner {
  width: min(100% - 2rem, 74rem);
  margin: 0 auto;
  padding: clamp(0.35rem, 1vw, 0.9rem) clamp(1.2rem, 3vw, 2.5rem);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.dd-top-final-cta-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin-bottom: 1.05rem;
}

.dd-top-final-cta-brand-logo {
  width: auto;
  height: clamp(2.2rem, 2vw, 2.55rem);
  display: block;
  flex: 0 0 auto;
}

.dd-top-final-cta-brand-name {
  color: var(--dd-navy);
  font-family: var(--dd-font-heading);
  font-size: clamp(1.1rem, 1rem + 0.35vw, 1.35rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.dd-top-final-cta-heading {
  margin-bottom: 0.9rem !important;
  font-size: clamp(2rem, 1.55rem + 1.35vw, 3rem) !important;
  line-height: 1.35;
}

.dd-top-final-cta-text {
  width: min(100%, 39rem);
  margin-right: auto;
  margin-bottom: 1.65rem !important;
  margin-left: auto;
  color: #5e7281 !important;
  font-size: clamp(1rem, 0.97rem + 0.2vw, 1.08rem);
  line-height: 1.85;
}

.dd-top-final-cta-actions {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1.35rem;
  flex-wrap: wrap;
}

.dd-top-final-cta-action-wrap {
  display: grid;
  justify-items: center;
  gap: 0.65rem;
}

.dd-top-final-cta-note {
  margin: 0;
  color: #7a8b96 !important;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: 0.03em;
}

.dd-top-final-cta-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: clamp(17.5rem, 24vw, 21rem);
  min-height: 4.25rem;
  padding: 1rem 1.4rem;
  border: 0;
  border-radius: 1.35rem;
  color: #ffffff !important;
  font-family: var(--dd-font-heading);
  font-size: clamp(1rem, 0.94rem + 0.2vw, 1.12rem);
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(47, 83, 107, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.dd-top-final-cta-action:hover,
.dd-top-final-cta-action:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(47, 83, 107, 0.18);
  filter: brightness(1.03);
}

.dd-top-final-cta-action:focus-visible {
  outline: 3px solid rgba(95, 168, 200, 0.32);
  outline-offset: 4px;
}

.dd-top-final-cta-action--estimate {
  background: linear-gradient(180deg, #f8ab45 0%, #ef9630 100%);
}

.dd-top-final-cta-action--line {
  background: linear-gradient(180deg, #42c26d 0%, #2da95a 100%);
  cursor: pointer;
}

.dd-top-final-cta-action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  flex: 0 0 auto;
}

.dd-top-final-cta-action-icon svg,
.dd-top-final-cta-action-icon .lucide {
  width: 1.18rem;
  height: 1.18rem;
  color: #ffffff;
}

.dd-top-final-cta-action-label {
  display: inline-block;
}

/* Q&A and cards stabilization */
.dd-section--top-trouble .grid > div,
.dd-section--top-cases .grid > div,
.dd-section--top-services .grid > div {
  height: 100%;
}

.dd-section--top-trouble .grid > div {
  min-width: 0;
}

.dd-section--top-trouble .grid {
  align-items: stretch;
}

.dd-section--top-trouble .grid > div,
.dd-section--top-services .grid > div,
.dd-section--top-cases .grid > div,
.dd-section--top-faq .space-y-4 > div {
  background-color: rgba(255, 255, 255, 0.97) !important;
  border-color: #cee3ee !important;
  box-shadow: 0 12px 26px rgba(47, 83, 107, 0.1) !important;
}

.dd-section--top-cases .grid > div {
  border-color: rgba(229, 137, 47, 0.78) !important;
  box-shadow:
    0 5px 0 rgba(246, 169, 75, 0.42),
    0 10px 14px rgba(246, 169, 75, 0.22) !important;
}

.dd-section--top-cases .grid > div:hover {
  border-color: rgba(218, 115, 25, 0.92) !important;
  box-shadow:
    0 6px 0 rgba(246, 169, 75, 0.52),
    0 12px 16px rgba(246, 169, 75, 0.28) !important;
}

.dd-section--top-trouble h3 {
  min-height: 2.95em;
  font-size: 1.14rem !important;
  line-height: 1.6 !important;
  overflow-wrap: anywhere;
}

.dd-section--top-trouble .grid > .dd-top-trouble-card {
  position: relative;
  overflow: visible;
  padding-top: 2.05rem !important;
  padding-bottom: 1.55rem !important;
  height: auto;
  min-height: 23.5rem;
  background-color: #ffffff !important;
  border-color: #d5e7f0 !important;
  box-shadow: 0 5px 14px rgba(47, 83, 107, 0.055) !important;
}

.dd-top-trouble-image-frame {
  height: 6.95rem;
  min-height: 0;
  width: min(84%, 15.75rem);
  margin: -3.35rem auto 1rem;
  padding: 0;
  overflow: visible;
  background-color: transparent;
  border: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.dd-top-trouble-image-frame img {
  display: block;
  width: min(100%, 15.75rem);
  height: auto;
  max-height: 8.45rem;
  object-fit: contain;
  filter: drop-shadow(0 7px 12px rgba(45, 88, 111, 0.14));
}

.dd-top-trouble-image-frame .dd-top-trouble-image-family {
  width: min(100%, 16.15rem);
  max-width: none;
  max-height: 8.85rem;
}

.dd-top-trouble-qa-row {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  column-gap: 0.75rem;
  align-items: start;
  padding-inline: 1.6rem;
}

.dd-section--top-trouble .dd-top-trouble-qa-row.mb-4 {
  min-height: 3.25rem;
}

.dd-top-trouble-qa-row > span {
  margin-right: 0 !important;
}

.dd-top-trouble-qa-label--question {
  color: #2f6f8f !important;
  font-size: 1.72rem !important;
  line-height: 0.95;
}

.dd-top-trouble-qa-label--answer {
  color: #d98a2b !important;
}

.dd-top-trouble-qa-row > h3,
.dd-top-trouble-qa-row > p {
  min-width: 0;
}

.dd-section--top-trouble .grid > .dd-top-trouble-card:nth-child(2) .dd-top-trouble-image-frame img {
  width: min(120%, 19.62rem);
  max-height: 10.5rem;
}

.dd-top-trouble-answer-highlight {
  display: inline !important;
  padding-inline: 0;
  background: none;
}

.dd-top-trouble-answer-highlight::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin: 0.78rem 0 0.46rem;
  background-color: rgba(94, 157, 184, 0.24);
}

.dd-section--top-trouble .dd-top-trouble-qa-row > p {
  font-size: var(--dd-font-size-body-sm) !important;
  line-height: 1.8 !important;
}

.dd-section--top-trouble .dd-top-trouble-answer-highlight {
  font-size: var(--dd-font-size-body-sm);
}

.dd-section--top-trouble p,
.dd-section--top-cases p,
.dd-section--top-flow p,
.dd-section--top-faq p {
  line-height: 1.8;
}

@media (min-width: 769px) {
  .dd-section--top-trouble .text-center.mb-12 {
    margin-bottom: calc(3rem + 50px) !important;
  }

  .dd-section--top-trouble .grid {
    row-gap: calc(2rem + 50px) !important;
  }
}

.dd-section--top-task-list .dd-section-bg {
  background: #eef8fd;
}

.dd-yarukoto-lead {
  max-width: 40rem;
  margin: 0 auto clamp(2.5rem, 4.2vw, 3.5rem);
  color: #5c7281;
  text-wrap: pretty;
  word-break: keep-all;
  line-height: 1.85;
}

.dd-yarukoto-roadmap {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  position: relative;
}

.dd-yarukoto-step {
  min-width: 0;
  position: relative;
  padding: 0 0.35rem;
}

.dd-yarukoto-step + .dd-yarukoto-step::before {
  display: none;
}

.dd-yarukoto-step-number {
  position: relative;
  z-index: 0;
  display: inline-block;
  margin-bottom: 0.92rem;
  color: #e59a31;
  font-family: "Inter", "Helvetica Neue", Arial, system-ui, sans-serif;
  font-size: clamp(3.05rem, 4.95vw, 4.2rem);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: 0.026em;
}

.dd-yarukoto-step-number::after {
  content: "";
  position: absolute;
  top: calc(54% + 2px);
  left: calc(100% + 0.5rem);
  width: 4.4px;
  height: 4.4px;
  border-radius: 50%;
  background: rgba(150, 206, 229, 0.92);
  transform: translateY(-50%);
  box-shadow:
    10px 0 0 rgba(150, 206, 229, 0.92),
    20px 0 0 rgba(150, 206, 229, 0.92),
    30px 0 0 rgba(150, 206, 229, 0.92),
    40px 0 0 rgba(150, 206, 229, 0.92);
}

.dd-yarukoto-step-number::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0.7em;
  bottom: -0.08em;
  width: 0.58em;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(245, 171, 76, 0.2);
}

.dd-yarukoto-step:nth-child(even) .dd-yarukoto-step-number::before {
  background: rgba(245, 171, 76, 0.14);
}

.dd-yarukoto-step-title {
  position: relative;
  margin: 0 0 0.85rem;
  padding-bottom: 0.85rem;
  color: #264a64;
  font-size: clamp(1.05rem, 1rem + 0.3vw, 1.22rem);
  font-weight: 800;
  line-height: 1.5;
}

.dd-yarukoto-step-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(100%, 8.5rem);
  height: 1px;
  background: rgba(150, 206, 229, 0.46);
}

@media (min-width: 769px) {
  .dd-yarukoto-step-title {
    display: inline-block;
    width: fit-content;
    max-width: 100%;
  }

  .dd-yarukoto-step-title::after {
    width: 100%;
  }
}

.dd-yarukoto-step-text {
  margin: 0;
  color: #5f7686;
  font-size: var(--dd-font-size-body);
  line-height: 1.75;
}

.dd-yarukoto-cta {
  border-color: #a8cfdf !important;
  color: var(--dd-navy) !important;
  box-shadow: 0 7px 16px rgba(47, 83, 107, 0.07) !important;
}

.dd-yarukoto-cta:hover {
  border-color: var(--dd-blue) !important;
  background-color: #f7fcff !important;
}

.dd-section--top-task-list .text-center.mt-10 {
  margin-top: 2.5rem !important;
  transform: translateY(0.65rem);
}

.dd-yarukoto-list-container {
  width: min(100% - 2rem, 68rem);
  margin-inline: auto;
}

.dd-yarukoto-list-kicker {
  margin: 0 0 0.75rem;
  color: var(--dd-blue);
  font-family: var(--dd-font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.dd-yarukoto-list-section-heading {
  max-width: 44rem;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.dd-yarukoto-list-section-heading h2,
.dd-yarukoto-list-related__heading h2 {
  margin: 0;
  color: var(--dd-navy);
  font-size: clamp(1.65rem, 1.35rem + 1.15vw, 2.25rem);
  font-weight: 800;
  line-height: 1.5;
}

.dd-yarukoto-list-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 7vw, 5.75rem) 0;
  border-bottom: 1px solid rgba(221, 236, 242, 0.92);
  background:
    radial-gradient(circle at 12% 18%, rgba(179, 225, 116, 0.34) 0 8rem, transparent 8.1rem),
    radial-gradient(circle at 88% 12%, rgba(244, 163, 59, 0.14) 0 7rem, transparent 7.1rem),
    linear-gradient(180deg, #ffffff 0%, #f8fdff 100%);
}

.dd-yarukoto-list-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(17rem, 0.88fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}

.dd-yarukoto-list-hero__content {
  max-width: 44rem;
}

.dd-yarukoto-list-hero__title {
  margin: 0;
  color: var(--dd-navy);
  font-size: clamp(2rem, 1.5rem + 2vw, 3.3rem);
  font-weight: 800;
  line-height: 1.35;
  text-wrap: pretty;
}

.dd-yarukoto-list-hero__lead {
  margin: clamp(1.25rem, 2.5vw, 1.75rem) 0 0;
  color: var(--dd-text);
  font-size: clamp(1rem, 0.96rem + 0.22vw, 1.12rem);
  line-height: 1.95;
  text-wrap: pretty;
}

.dd-yarukoto-list-hero__note {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  max-width: 100%;
  margin: 1.65rem 0 0;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(95, 168, 200, 0.24);
  border-radius: var(--dd-radius-pill);
  background: rgba(255, 255, 255, 0.86);
  color: #56707d;
  font-size: 0.94rem;
  line-height: 1.55;
  box-shadow: 0 10px 22px rgba(47, 83, 107, 0.06);
}

.dd-yarukoto-list-hero__note svg,
.dd-yarukoto-list-hero__note .lucide {
  flex: 0 0 auto;
  width: 1.1rem;
  height: 1.1rem;
  color: var(--dd-blue);
}

.dd-yarukoto-list-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.dd-yarukoto-list-hero__illustration-slot {
  position: relative;
  width: min(100%, 24rem);
  aspect-ratio: 1448 / 1086;
  min-height: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.dd-yarukoto-list-hero__illustration-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transform: scale(1.2);
  transform-origin: center center;
}

.dd-yarukoto-list-index {
  padding: clamp(4rem, 7vw, 5.5rem) 0;
  background: #ffffff;
}

.dd-yarukoto-list-index__lead {
  margin: 0.9rem 0 0;
  color: var(--dd-muted);
  font-size: var(--dd-font-size-body);
  line-height: 1.8;
}

.dd-yarukoto-list-index__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dd-yarukoto-list-index__item {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 0.8rem;
  min-height: 0;
  padding: 0.95rem 0 1rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.dd-yarukoto-list-index__item::after {
  content: "";
  position: absolute;
  left: 3rem;
  right: 9%;
  bottom: 0;
  height: 1px;
  background: rgba(95, 168, 200, 0.38);
}

.dd-yarukoto-list-index__number {
  color: rgba(244, 163, 59, 0.9);
  font-family: "Inter", var(--dd-font-body);
  font-size: clamp(1.75rem, 1.45rem + 1vw, 2.4rem);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
}

.dd-yarukoto-list-index__title {
  display: block;
  width: fit-content;
  max-width: 100%;
  color: var(--dd-navy);
  font-family: var(--dd-font-heading);
  font-size: clamp(0.98rem, 0.92rem + 0.22vw, 1.12rem);
  font-weight: 800;
  line-height: 1.45;
  line-height: 1.35;
}

.dd-yarukoto-list-index__icon {
  display: none;
}

.dd-yarukoto-list-index__title-long,
.dd-yarukoto-list-index__title-short {
  display: block;
}

.dd-yarukoto-list-index__title-short {
  display: none;
}

.dd-yarukoto-list-steps {
  padding: clamp(4rem, 7vw, 5.75rem) 0;
  border-block: 1px solid rgba(221, 236, 242, 0.9);
  background:
    linear-gradient(180deg, #f8fdff 0%, #ffffff 48%, #f8fdff 100%);
}

.dd-yarukoto-list-steps__list {
  display: grid;
  gap: clamp(1.35rem, 3vw, 2rem);
}

.dd-yarukoto-list-step-card {
  position: relative;
  overflow: hidden;
  padding: clamp(1.2rem, 2.7vw, 2.15rem);
  border: 1px solid rgba(221, 236, 242, 0.98);
  border-radius: var(--dd-radius-card);
  background: #ffffff;
  box-shadow: var(--dd-shadow-soft);
}

.dd-yarukoto-list-step-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0.32rem;
  background: var(--dd-orange);
}

.dd-yarukoto-list-step-card__header {
  display: grid;
  grid-template-columns: minmax(0, auto) auto;
  justify-content: start;
  align-items: end;
  gap: clamp(0.72rem, 1.2vw, 1rem);
  margin-bottom: 1rem;
  width: fit-content;
  max-width: min(100%, 49rem);
  padding-right: clamp(0.45rem, 1vw, 0.9rem);
}

.dd-yarukoto-list-step-card__header > div {
  min-width: 0;
  max-width: min(100%, 38rem);
}

.dd-yarukoto-list-step-card__number {
  margin: 0 0 0.35rem;
  color: var(--dd-orange-dark);
  font-family: "Inter", var(--dd-font-body);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.09em;
}

.dd-yarukoto-list-step-card__title {
  margin: 0;
  color: var(--dd-navy);
  font-size: clamp(1.25rem, 1.08rem + 0.7vw, 1.75rem);
  font-weight: 800;
  line-height: 1.35;
}

.dd-yarukoto-list-step-card__icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(6.1rem, 11vw, 8.8rem);
  height: clamp(6.1rem, 11vw, 8.8rem);
  align-self: end;
  margin-left: 0;
  margin-bottom: -0.08rem;
}

.dd-yarukoto-list-step-card__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

#step-02 .dd-yarukoto-list-step-card__icon,
#step-06 .dd-yarukoto-list-step-card__icon {
  width: clamp(7.4rem, 13.2vw, 10.5rem);
  height: clamp(7.4rem, 13.2vw, 10.5rem);
  margin-left: 0;
  margin-bottom: -0.15rem;
}

#step-02 .dd-yarukoto-list-step-card__icon img,
#step-06 .dd-yarukoto-list-step-card__icon img {
  transform: scale(1.42);
  transform-origin: center bottom;
}

#step-02 .dd-yarukoto-list-step-card__icon img {
  transform: scale(2.15);
}

#step-02 .dd-yarukoto-list-step-card__icon {
  margin-left: 70px;
  transform: translateY(-4px);
}

#step-06 .dd-yarukoto-list-step-card__icon img {
  transform: scale(2.4);
}

#step-06 .dd-yarukoto-list-step-card__icon {
  margin-left: 50px;
  transform: translateY(30px);
}

#step-08 .dd-yarukoto-list-step-card__icon img {
  transform: scale(1.45);
  transform-origin: center bottom;
}

#step-08 .dd-yarukoto-list-step-card__icon {
  margin-left: 30px;
}

#step-01 .dd-yarukoto-list-step-card__icon img {
  transform: scale(1.43);
  transform-origin: center bottom;
}

#step-01 .dd-yarukoto-list-step-card__icon {
  margin-left: 40px;
  transform: translateY(-10px);
}

#step-05 .dd-yarukoto-list-step-card__icon img {
  transform: scale(1.2);
  transform-origin: center bottom;
}

#step-05 .dd-yarukoto-list-step-card__icon {
  transform: translateY(10px);
  margin-left: 20px;
}

#step-03 .dd-yarukoto-list-step-card__icon img {
  transform: scale(1.1);
  transform-origin: center bottom;
}

#step-03 .dd-yarukoto-list-step-card__icon {
  margin-left: 40px;
}

#step-04 .dd-yarukoto-list-step-card__icon img {
  transform: scale(1.56);
  transform-origin: center bottom;
}

#step-04 .dd-yarukoto-list-step-card__icon {
  margin-left: 50px;
}

#step-09 .dd-yarukoto-list-step-card__icon img {
  transform: scale(1.4);
  transform-origin: center bottom;
}

#step-09 .dd-yarukoto-list-step-card__icon {
  margin-left: 30px;
}

#step-10 .dd-yarukoto-list-step-card__icon img {
  transform: scale(1.4);
  transform-origin: center bottom;
}

#step-10 .dd-yarukoto-list-step-card__icon {
  margin-left: 30px;
}

#step-07 .dd-yarukoto-list-step-card__icon {
  margin-left: 50px;
  margin-bottom: -0.08rem;
  transform: translateY(24px);
}

#step-07 .dd-yarukoto-list-step-card__icon img {
  transform: scale(1.08);
  transform-origin: center bottom;
}

.dd-yarukoto-list-step-card__body {
  max-width: 56rem;
  margin: 0;
  color: var(--dd-text);
  font-size: var(--dd-font-size-body);
  line-height: 1.9;
}

.dd-yarukoto-list-step-card__body-break {
  display: none;
}

.dd-yarukoto-list-step-card__notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.45rem;
}

@media (min-width: 769px) {
  .dd-yarukoto-list-step-card {
    padding-top: clamp(1.15rem, 2.45vw, 1.95rem);
    padding-bottom: clamp(1.2rem, 2.55vw, 2.05rem);
  }

  .dd-yarukoto-list-step-card__header {
    align-items: center;
    margin-bottom: 0.95rem;
  }

  .dd-yarukoto-list-step-card__notes {
    margin-top: 1.35rem;
  }

  #step-01 .dd-yarukoto-list-step-card__body-break {
    display: block;
  }

  #step-02 .dd-yarukoto-list-step-card__body-break {
    display: block;
  }
}

.dd-yarukoto-list-info {
  min-width: 0;
  padding: 1.1rem 1.15rem;
  border-radius: var(--dd-radius-soft);
}

.dd-yarukoto-list-info h4 {
  margin: 0 0 0.55rem;
  color: var(--dd-navy);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.45;
}

.dd-yarukoto-list-info p,
.dd-yarukoto-list-info li {
  color: #566c78;
  font-size: var(--dd-font-size-body-sm);
  line-height: 1.75;
}

.dd-yarukoto-list-info p {
  margin: 0;
}

.dd-yarukoto-list-info--worry {
  position: relative;
  border: 1px solid rgba(244, 163, 59, 0.2);
  background: var(--dd-cream);
  box-shadow: 0 8px 18px rgba(244, 163, 59, 0.07);
}

.dd-yarukoto-list-info--worry::after {
  content: "";
  position: absolute;
  left: 1.45rem;
  bottom: -0.48rem;
  width: 1rem;
  height: 1rem;
  border-right: 1px solid rgba(244, 163, 59, 0.2);
  border-bottom: 1px solid rgba(244, 163, 59, 0.2);
  background: var(--dd-cream);
  transform: rotate(45deg);
}

.dd-yarukoto-list-info--support {
  border: 1px solid rgba(95, 168, 200, 0.22);
  background: var(--dd-sky-light);
}

.dd-yarukoto-list-support-list {
  display: grid;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dd-yarukoto-list-support-list li {
  position: relative;
  padding-left: 1.55rem;
}

.dd-yarukoto-list-support-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.92rem;
  height: 0.92rem;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(95, 168, 200, 0.35);
}

.dd-yarukoto-list-support-list li::after {
  content: "";
  position: absolute;
  left: 0.28rem;
  top: calc(0.45em + 0.22rem);
  width: 0.38rem;
  height: 0.2rem;
  border-left: 2px solid var(--dd-blue);
  border-bottom: 2px solid var(--dd-blue);
  transform: rotate(-45deg);
}

.dd-yarukoto-list-related {
  padding: clamp(2.75rem, 5vw, 3.75rem) 0 clamp(3rem, 5.5vw, 4.1rem);
  border-top: 1px solid rgba(221, 236, 242, 0.86);
  background: linear-gradient(180deg, #fbfdff 0%, #f7fbfd 100%);
}

.dd-section--yarukoto-support {
  position: relative;
  overflow: hidden;
  padding-top: clamp(2.65rem, 4.5vw, 3.5rem) !important;
  padding-bottom: calc(clamp(3.85rem, 6.5vw, 5rem) + 200px) !important;
}

.dd-section--yarukoto-support .dd-section-bg {
  background-color: #ffffff;
  background-image: url("../images/top-bg-cta-hill-town-sp.webp");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}

.dd-yarukoto-list-support__inner {
  width: min(100% - 2rem, 64rem);
  max-width: 64rem;
}

.dd-yarukoto-list-support__card {
  padding: clamp(1.75rem, 4vw, 2.4rem);
  border-color: rgba(221, 236, 242, 0.95);
  border-radius: 1.7rem;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 34px rgba(47, 83, 107, 0.06);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.dd-yarukoto-list-support__title {
  color: var(--dd-navy);
}

.dd-yarukoto-list-support__title-break {
  display: none;
}

.dd-yarukoto-list-support__text {
  max-width: 40rem;
  margin-inline: auto;
  color: #5a6c76;
}

.dd-yarukoto-list-support__actions {
  align-items: center;
  margin-top: 0.35rem;
}

.dd-yarukoto-list-related__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1.15rem;
  text-align: center;
}

.dd-yarukoto-list-related__heading .dd-yarukoto-list-kicker {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

.dd-yarukoto-list-related__heading h2 {
  font-size: clamp(1.4rem, 1.24rem + 0.48vw, 1.8rem);
}

.dd-yarukoto-list-related__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.dd-yarukoto-list-related__card {
  position: relative;
  min-height: 7.4rem;
  padding: 1.1rem 1.15rem;
  border: 2px solid rgba(244, 163, 59, 0.56);
  border-radius: 1.15rem;
  background: #ffffff;
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.dd-yarukoto-list-related__card::after {
  content: "→";
  position: absolute;
  right: 1.1rem;
  bottom: 1rem;
  color: var(--dd-orange);
  font-family: var(--dd-font-heading);
  font-weight: 800;
}

.dd-yarukoto-list-related__card:hover,
.dd-yarukoto-list-related__card:focus-visible {
  border-color: var(--dd-orange);
  box-shadow: 0 8px 18px rgba(47, 83, 107, 0.07);
  transform: translateY(-2px);
}

.dd-yarukoto-list-related__title {
  margin: 0 0 0.45rem;
  color: var(--dd-navy);
  font-family: var(--dd-font-heading);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.45;
}

.dd-yarukoto-list-related__text {
  margin: 0;
  padding-right: 1.2rem;
  color: var(--dd-muted);
  font-size: var(--dd-font-size-caption);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .dd-yarukoto-list-hero__layout {
    grid-template-columns: 1fr;
  }

  .dd-yarukoto-list-hero__content {
    max-width: none;
  }

  .dd-yarukoto-list-hero__visual {
    justify-content: flex-start;
  }

  .dd-yarukoto-list-step-card__notes {
    grid-template-columns: 1fr;
  }

  .dd-yarukoto-list-related__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 769px) {
  .dd-section--yarukoto-support {
    padding-top: clamp(3.2rem, 5vw, 4.25rem) !important;
    padding-bottom: calc(clamp(4.6rem, 7vw, 5.8rem) + 200px) !important;
  }

  .dd-yarukoto-list-support__inner {
    margin-top: 100px;
  }

  .dd-yarukoto-list-support__card {
    padding: 0;
    border: 0 !important;
    border-color: transparent;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    transform: scale(1.1);
    transform-origin: center top;
  }

  .dd-yarukoto-list-support__title {
    font-size: clamp(2.6rem, 2.2rem + 0.9vw, 3.25rem) !important;
    line-height: 1.3;
    margin-top: -50px !important;
    margin-bottom: 2.2rem !important;
  }

  .dd-yarukoto-list-support__text {
    max-width: 64rem;
    font-size: clamp(1.18rem, 1.08rem + 0.24vw, 1.32rem) !important;
    line-height: 1.72;
  }

  .dd-yarukoto-list-support__actions a {
    min-width: 14.5rem;
    padding: 0.95rem 1.6rem !important;
    font-size: 1.45rem !important;
    line-height: 1.2;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.28),
      0 10px 22px rgba(47, 83, 107, 0.16);
    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease,
      filter 0.2s ease,
      background-color 0.2s ease;
  }

  .dd-yarukoto-list-support__actions a:hover,
  .dd-yarukoto-list-support__actions a:focus-visible {
    transform: translateY(-2px);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.34),
      0 14px 28px rgba(47, 83, 107, 0.2);
    filter: brightness(1.08);
  }

  .dd-yarukoto-list-support__actions {
    gap: 50px !important;
  }

  .dd-yarukoto-list-hero__illustration-slot {
    width: min(100%, 29rem);
  }

  .dd-yarukoto-list-hero__illustration-image {
    transform: scale(1);
  }

  .dd-section--yarukoto-support .dd-section-bg {
    background-image: url("../images/top-bg-cta-hill-town-pc.webp");
    background-position: center calc(100% + 1.35rem);
    background-size: 100% auto;
  }
}

@media (max-width: 640px) {
  .dd-section--yarukoto-support {
    padding-top: 2.8rem !important;
    padding-bottom: calc(4rem + 200px) !important;
  }

  .dd-section--yarukoto-support .dd-section-bg {
    background-position: center calc(100% + 0.55rem);
    background-size: 128% auto;
  }

  .dd-yarukoto-list-support__card {
    padding: 0;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .dd-yarukoto-list-container {
    width: min(100% - 1.5rem, 68rem);
  }

  .dd-yarukoto-list-hero,
  .dd-yarukoto-list-index,
  .dd-yarukoto-list-steps,
  .dd-yarukoto-list-related {
    padding-block: 3.25rem;
  }

  .dd-yarukoto-list-hero__note {
    align-items: flex-start;
    border-radius: 1.15rem;
  }

  .dd-yarukoto-list-support__title-break {
    display: block;
  }

  .dd-yarukoto-list-hero__illustration-slot {
    width: 100%;
    aspect-ratio: 1448 / 1086;
    min-height: 0;
  }

  .dd-yarukoto-list-index__item {
    align-items: center;
    gap: 0.55rem;
    padding: 0.72rem 0;
  }

  .dd-yarukoto-list-index__item::after {
    left: 2.45rem;
    right: 7%;
    background: rgba(95, 168, 200, 0.34);
  }

  .dd-yarukoto-list-index__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.25rem 0.9rem;
  }

  .dd-yarukoto-list-index__number {
    font-size: clamp(1.36rem, 1.18rem + 0.4vw, 1.6rem);
  }

  .dd-yarukoto-list-index__title {
    font-size: 0.92rem;
    line-height: 1.42;
  }

  .dd-yarukoto-list-index__title-long {
    display: none;
  }

  .dd-yarukoto-list-index__title-short {
    display: block;
  }

  .dd-yarukoto-list-step-card {
    border-radius: 1.3rem;
  }

  .dd-yarukoto-list-step-card__header {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 0.45rem;
    width: 100%;
    max-width: 100%;
    padding-right: 0;
  }

  .dd-yarukoto-list-step-card__header > div {
    max-width: none;
  }

  .dd-yarukoto-list-step-card__icon {
    width: 4.6rem;
    height: 4.6rem;
    margin-left: 0;
    margin-bottom: -0.2rem;
  }

  #step-02 .dd-yarukoto-list-step-card__icon,
  #step-06 .dd-yarukoto-list-step-card__icon {
    width: 5.2rem;
    height: 5.2rem;
    margin-left: -0.1rem;
  }

  #step-02 .dd-yarukoto-list-step-card__icon img,
  #step-06 .dd-yarukoto-list-step-card__icon img {
    transform: scale(1.16);
    transform-origin: center bottom;
  }

  #step-02 .dd-yarukoto-list-step-card__icon {
    width: 5.8rem;
    height: 5.8rem;
    margin-left: 0;
    margin-bottom: -0.42rem;
    transform: translateY(-8px);
  }

  #step-02 .dd-yarukoto-list-step-card__icon img {
    transform: scale(1.3);
  }

  #step-06 .dd-yarukoto-list-step-card__icon {
    margin-left: 0;
    transform: none;
  }

  #step-05 .dd-yarukoto-list-step-card__icon img {
    transform: scale(1.3);
    transform-origin: center bottom;
  }

  #step-01 .dd-yarukoto-list-step-card__icon img {
    transform: scale(1.12);
    transform-origin: center bottom;
  }

  #step-01 .dd-yarukoto-list-step-card__icon {
    width: 4.95rem;
    height: 4.95rem;
    margin-left: 0;
    margin-bottom: -0.2rem;
  }

  #step-05 .dd-yarukoto-list-step-card__icon {
    transform: none;
    margin-left: 0;
  }

  #step-03 .dd-yarukoto-list-step-card__icon img {
    transform: scale(1.2);
    transform-origin: center bottom;
  }

  #step-03 .dd-yarukoto-list-step-card__icon {
    margin-left: 0;
  }

  #step-04 .dd-yarukoto-list-step-card__icon img {
    transform: scale(1.32);
    transform-origin: center bottom;
  }

  #step-04 .dd-yarukoto-list-step-card__icon {
    margin-left: 0;
  }

  #step-08 .dd-yarukoto-list-step-card__icon img {
    transform: scale(1.32);
    transform-origin: center bottom;
  }

  #step-08 .dd-yarukoto-list-step-card__icon {
    margin-left: 0;
  }

  #step-09 .dd-yarukoto-list-step-card__icon img {
    transform: scale(1.3);
    transform-origin: center bottom;
  }

  #step-09 .dd-yarukoto-list-step-card__icon {
    margin-left: 0;
  }

  #step-10 .dd-yarukoto-list-step-card__icon img {
    transform: scale(1.3);
    transform-origin: center bottom;
  }

  #step-10 .dd-yarukoto-list-step-card__icon {
    margin-left: 0;
  }

  #step-07 .dd-yarukoto-list-step-card__icon {
    margin-left: 0;
    margin-bottom: -0.2rem;
    transform: none;
  }

  #step-07 .dd-yarukoto-list-step-card__icon img {
    transform: none;
  }

  #step-06 .dd-yarukoto-list-step-card__icon img {
    transform: scale(2.05);
    transform-origin: center bottom;
  }

  .dd-yarukoto-list-info {
    padding: 1rem;
  }

  .dd-yarukoto-list-related__heading {
    gap: 0.35rem;
  }

  .dd-yarukoto-list-related__heading h2 {
    margin-top: 0;
  }

  .dd-yarukoto-list-related__grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .dd-yarukoto-list-related__card {
    min-height: auto;
    padding: 1rem 1.05rem;
  }
}

@media (max-width: 768px) {
  .dd-section--top-cases .dd-section-bg {
    background-image: url("../images/top-case-bg_sp.webp");
    background-position: center top;
    background-size: 120% auto;
  }

  .dd-section--top-cases .text-center.mb-12 {
    margin-bottom: 1.5rem !important;
  }

  .dd-top-cases-scroll-hint {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    margin-top: 0.9rem;
    color: #5c7281;
    font-size: 0.8rem;
    font-weight: 700;
    line-height: 1.6;
  }

  .dd-top-cases-scroll-arrow {
    display: inline-block;
    color: #d78925;
    font-size: 1rem;
    transform: translateX(0);
    animation: dd-case-scroll-nudge 1.8s ease-in-out infinite;
  }

  .dd-section--top-cases .grid {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 1rem !important;
    margin-right: -1rem;
    margin-left: -1rem;
    padding: 0.15rem 1rem 0.9rem;
    overflow-x: auto;
    overflow-y: visible;
    scroll-padding-left: 1rem;
    scroll-snap-type: x proximity;
    align-items: stretch;
    -webkit-overflow-scrolling: touch;
  }

  .dd-section--top-cases .grid::-webkit-scrollbar {
    display: none;
  }

  .dd-section--top-cases .grid > div {
    flex: 0 0 min(82vw, 320px);
    width: min(82vw, 320px);
    min-height: 388px;
    height: auto;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .dd-section--top-estimate {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .dd-section--top-estimate .dd-section-bg {
    background-position: center;
    background-size: cover;
  }

  .dd-top-estimate-content {
    width: 100%;
    padding: 2rem 1.25rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.91);
    border-radius: var(--dd-radius-soft);
    box-shadow: 0 10px 24px rgba(132, 88, 24, 0.08);
    backdrop-filter: blur(1px);
  }

  .dd-top-estimate-label {
    margin-bottom: 0.65rem;
    font-size: 0.8125rem;
  }

  .dd-top-estimate-heading {
    margin-bottom: 1.25rem;
    font-size: clamp(1.9rem, 9.2vw, 2.35rem) !important;
    line-height: 1.25;
  }

  .dd-top-estimate-heading-second {
    white-space: normal;
  }

  .dd-top-estimate-heading-second > span {
    display: block;
  }

  .dd-top-estimate-lead {
    max-width: 21.5rem;
    margin-right: auto;
    margin-left: auto;
    font-size: 0.95rem;
    line-height: 1.8;
    text-wrap: pretty;
    overflow-wrap: break-word;
  }

  .dd-top-estimate-lead br:not(.md\\:hidden) {
    display: none;
  }

  .dd-top-estimate-note {
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 0.8125rem;
  }

  .dd-top-estimate-cta {
    width: 100%;
    max-width: 20rem;
    min-width: 0;
    min-height: 3.75rem;
    grid-template-columns: 2.15rem minmax(0, auto) 1.1rem;
    gap: 0.55rem;
    justify-content: center;
    padding: 0.75rem 0.85rem !important;
    border-radius: 1.1rem !important;
    font-size: 0.95rem;
  }

  .dd-top-estimate-cta-icon {
    width: 2.15rem;
    height: 2.15rem;
  }

  .dd-top-estimate-cta-icon svg,
  .dd-top-estimate-cta-icon .lucide {
    width: 1.05rem;
    height: 1.05rem;
  }

  .dd-top-estimate-cta-arrow {
    width: 1.1rem;
    height: 1.1rem;
  }

  .dd-section--top-trouble .grid > div {
    width: calc(100vw - 2rem);
    max-width: 100%;
    padding: 1.05rem 1.05rem 1.35rem !important;
    box-sizing: border-box;
  }

  .dd-top-trouble-qa-row {
    grid-template-columns: 1.65rem minmax(0, 1fr);
    column-gap: 0.45rem;
  }

  .dd-section--top-trouble .grid {
    row-gap: 1.5rem !important;
  }

  .dd-section--top-trouble .grid > .dd-top-trouble-card {
    margin-top: 20px;
    padding-top: 1.65rem !important;
    padding-bottom: 1.35rem !important;
    height: auto;
    min-height: auto;
  }

  .dd-top-trouble-image-frame {
    height: 5.8rem;
    width: min(82%, 12.9rem);
    margin-top: -2.45rem;
    margin-bottom: 0.72rem;
  }

  .dd-top-trouble-image-frame img,
  .dd-top-trouble-image-frame .dd-top-trouble-image-family {
    max-height: 6.95rem;
  }

  .dd-section--top-trouble .grid > .dd-top-trouble-card:nth-child(2) .dd-top-trouble-image-frame img {
    width: min(120%, 15.96rem);
    max-height: 8.64rem;
  }

  .dd-section--top-trouble .dd-top-trouble-qa-row.mb-4 {
    min-height: auto;
  }

  .dd-top-trouble-qa-row {
    padding-inline: 0.92rem 0.88rem;
  }

  .dd-top-trouble-qa-label--question {
    font-size: 1.54rem !important;
  }

  .dd-section--top-trouble h3 {
    font-size: 1.04rem !important;
    line-height: 1.56 !important;
    letter-spacing: -0.02em;
    overflow-wrap: break-word;
    word-break: normal;
    line-break: strict;
    text-wrap: pretty;
  }

  .dd-section--top-trouble p {
    overflow-wrap: break-word;
    word-break: normal;
    text-wrap: pretty;
  }

  .dd-section--top-trouble h3,
  .dd-top-trouble-answer-highlight {
    word-break: normal;
    overflow-wrap: break-word;
    line-break: strict;
    text-wrap: pretty;
  }

  .dd-top-trouble-image-frame {
    margin-right: auto;
    margin-left: 0.72rem;
  }

  .dd-section--top-services {
    padding-bottom: 6.75rem !important;
  }

  .dd-section--top-services .text-center.mb-12 {
    margin-bottom: 1.65rem !important;
  }

  .dd-section--top-services .text-center.mb-12 p {
    font-size: 0.95rem;
    line-height: 1.78;
  }

  .dd-top-service-grid {
    gap: 0.85rem !important;
  }

  .dd-top-service-card {
    justify-content: center;
    min-height: 9.7rem;
    padding: 1rem 0.62rem 0.95rem;
    border-radius: 1.15rem;
    box-shadow: 0 5px 14px rgba(47, 83, 107, 0.055);
  }

  .dd-top-service-card:hover {
    transform: none;
    box-shadow: 0 8px 18px rgba(95, 168, 200, 0.09);
  }

  .dd-top-service-title {
    order: 2;
    min-height: 2.8em;
    font-size: 0.94rem;
    line-height: 1.4;
    overflow-wrap: anywhere;
    transform: translateY(10px);
  }

  .dd-top-service-visual {
    order: 1;
    width: 5.8rem;
    height: 4.9rem;
    margin: 0 0 0.52rem;
    transform: translateY(10px);
  }

  .dd-top-service-visual svg,
  .dd-top-service-visual .lucide {
    width: 2.1rem;
    height: 2.1rem;
  }

  .dd-top-service-card:nth-child(2) .dd-top-service-visual img {
    transform: scale(1.12);
    transform-origin: center;
  }

  .dd-top-service-text {
    display: none;
    transform: translateY(10px);
  }

  .dd-section--top-services .text-center.mt-10 {
    margin-top: 1.7rem !important;
  }

  .dd-top-service-cta {
    padding: 0.7rem 1.15rem;
    font-size: 0.95rem;
  }

  .dd-yarukoto-lead {
    margin-bottom: 2.2rem;
    text-align: center !important;
    width: min(100%, 22rem);
    max-width: 22rem;
    margin-inline: auto;
    line-height: 1.78;
  }

  .dd-yarukoto-roadmap {
    grid-template-columns: 1fr;
    gap: 1.45rem;
    max-width: 27rem;
    margin-inline: auto;
  }

  .dd-yarukoto-step {
    display: grid;
    grid-template-columns: minmax(3.2rem, auto) minmax(0, 1fr);
    grid-template-areas:
      "num title"
      ". text";
    column-gap: 0.8rem;
    row-gap: 0.28rem;
    align-items: center;
    padding: 0 0.1rem 0;
  }

  .dd-yarukoto-step + .dd-yarukoto-step::before {
    display: none;
  }

  .dd-yarukoto-step-number::after {
    display: none;
  }

  .dd-yarukoto-step-number {
    grid-area: num;
    margin-bottom: 0;
    font-size: clamp(2.1rem, 11.2vw, 2.62rem);
    line-height: 0.9;
    letter-spacing: 0.01em;
    align-self: center;
  }

  .dd-yarukoto-step-title {
    grid-area: title;
    margin: 0;
    padding: 0 0 0.52rem;
    font-size: 1.03rem;
    line-height: 1.45;
  }

  .dd-yarukoto-step-title::after {
    width: 100%;
  }

  .dd-yarukoto-step-text {
    grid-area: text;
    margin-top: 0.08rem;
    font-size: var(--dd-font-size-body);
    line-height: 1.7;
  }

  .dd-section--top-task-list .text-center.mt-10 {
    margin-top: 2.45rem !important;
    transform: translateY(0.45rem);
  }
}

/* Timeline and flow */
.dd-section--top-task-list .border-l-2 {
  border-color: #a8cfdf !important;
}

.dd-section--top-task-list .absolute.w-8.h-8,
.dd-section--top-flow .w-16.h-16 {
  background-color: var(--dd-blue) !important;
  border-color: #4f97b6 !important;
  color: #fff !important;
}

/* FAQ rows */
.dd-section--top-faq .space-y-4 {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.dd-top-faq-heading-wrap {
  position: relative;
  display: block;
  width: max-content;
  max-width: 100%;
  margin-right: auto;
  margin-bottom: 1rem;
  margin-left: auto;
  z-index: 0;
}

.dd-top-faq-heading-wrap .dd-top-section-heading {
  margin-bottom: 0 !important;
}

.dd-top-faq-heading-illust {
  display: block;
  position: absolute;
  top: calc(42% + 30px);
  left: calc(100% + clamp(0.5rem, 1.5vw, 1.1rem) + 50px);
  width: clamp(8rem, 12.8vw, 10.8rem);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.9;
  pointer-events: none;
  transform: translateY(-50%);
  z-index: -1;
}

.dd-top-faq-lead {
  margin: 0 auto 2rem;
  max-width: 38rem;
  font-size: 1rem;
  line-height: 1.85;
  text-align: center;
}

.dd-top-faq-line-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.28rem;
  padding-inline: 0.18em;
}

.dd-top-faq-line-text {
  display: inline;
}

.dd-top-faq-line-text-sp {
  display: none;
}

.dd-top-faq-line-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex: 0 0 auto;
  margin-inline: 0.1em;
}

.dd-section--top-faq .space-y-4 > div {
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.25rem !important;
  border-color: #d8edf5 !important;
  border-radius: 1rem !important;
  background-color: #ffffff !important;
  box-shadow: 0 5px 14px rgba(47, 83, 107, 0.055) !important;
}

.dd-section--top-faq .cursor-pointer {
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.dd-section--top-faq .cursor-pointer:hover {
  border-color: #bfdfea !important;
  box-shadow: 0 8px 18px rgba(95, 168, 200, 0.09) !important;
}

.dd-section--top-faq .space-y-4 > div > span {
  gap: 0.75rem;
  flex: 1 1 auto;
  min-width: 0;
  color: var(--dd-navy) !important;
  font-size: 1.18rem;
  line-height: 1.65;
}

.dd-section--top-faq .space-y-4 > div > span > span {
  flex: 0 0 auto;
  margin-right: 0 !important;
  color: #6aa9c2 !important;
  font-size: 1.18rem !important;
  line-height: 1;
}

.dd-section--top-faq .space-y-4 > div svg,
.dd-section--top-faq .space-y-4 > div .lucide {
  flex: 0 0 auto;
  width: 1.05rem !important;
  height: 1.05rem !important;
  color: #8aafbf !important;
  stroke-width: 1.7 !important;
}

.dd-section--top-faq .text-center.mt-8 {
  margin-top: 2.25rem !important;
}

.dd-faq-sp-break {
  display: none;
}

@media (max-width: 768px) {
  .dd-section-divider {
    height: 3rem;
  }

  .dd-section--top-cases .dd-section-bg::after {
    height: 5.5rem;
  }

  .dd-top-main {
    padding-bottom: 5rem !important;
    box-shadow: none !important;
  }

  .dd-section--top-cases,
  .dd-section--top-company {
    padding-bottom: 1rem !important;
  }

  .dd-section--top-advisors-guide {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .dd-top-final-cta-actions {
    display: none !important;
  }

  .dd-top-company-content {
    max-width: 100%;
  }

  .dd-top-company-heading {
    width: 100%;
    max-width: 22rem;
    font-size: clamp(1.5rem, 5vw, 1.95rem) !important;
    line-height: 1.5 !important;
    letter-spacing: 0.01em;
  }

  .dd-top-company-heading-line:first-child {
    white-space: nowrap;
  }

  .dd-top-company-heading-line--nowrap {
    white-space: normal;
  }

  .dd-top-company-text {
    width: 100%;
    max-width: 22rem;
    font-size: 1rem;
    line-height: 1.9;
  }

  .dd-section--top-final-cta {
    border: 0 !important;
    border-top: 0 !important;
    margin-top: 0;
    padding-bottom: 6.9rem !important;
    padding-top: calc(clamp(2.55rem, 6vw, 3.8rem) + 7rem) !important;
    background: transparent !important;
  }

  .dd-top-final-cta-inner {
    width: min(100% - 1.5rem, 40rem);
    margin: -80px auto 80px;
    padding: 0.35rem 1.05rem 0.65rem;
    border-radius: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .dd-top-final-cta-brand {
    margin-bottom: 0.75rem;
    gap: 0.5rem;
  }

  .dd-top-final-cta-brand-logo {
    height: 2rem;
  }

  .dd-top-final-cta-brand-name {
    font-size: 1rem;
  }

  .dd-top-final-cta-heading {
    margin-bottom: 0.75rem !important;
    font-size: clamp(1.6rem, 5.4vw, 2rem) !important;
  }

  .dd-top-final-cta-text {
    width: min(100%, 20rem);
    margin-bottom: 0 !important;
    font-size: 0.95rem;
    line-height: 1.78;
  }

  .dd-section--top-trouble .dd-section-bg,
  .dd-section--top-task-list .dd-section-bg {
    background: #eef8fd !important;
  }

  .dd-section--top-task-list {
    padding-top: 3.8rem !important;
    padding-bottom: 4.75rem !important;
  }

  .dd-section--top-services {
    padding-bottom: 4.6rem !important;
  }

  .dd-section--top-reasons {
    padding-top: 4.4rem !important;
  }

  .dd-section--top-checklist {
    padding-bottom: 4.2rem !important;
  }

  .dd-section--top-flow {
    padding-top: 4.2rem !important;
    padding-bottom: 4.35rem !important;
    border-top: 0 !important;
  }

  .dd-section--top-faq {
    padding-top: 4.35rem !important;
    padding-bottom: 5rem !important;
  }

  .dd-top-advisors-card {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual"
      "cta";
    gap: 1.25rem;
    padding: 1.9rem 1.15rem 1.7rem;
    min-height: 0;
  }

  .dd-top-advisors-copy {
    text-align: left;
  }

  .dd-top-advisors-heading {
    margin-bottom: 0.9rem;
    font-size: 1.3rem;
    white-space: normal;
  }

  .dd-top-advisors-tags {
    gap: 0.55rem;
    margin-bottom: 0.9rem;
  }

  .dd-top-advisors-tag {
    font-size: 0.8rem;
  }

  .dd-top-advisors-text {
    font-size: 0.95rem;
    line-height: 1.8;
  }

  .dd-top-advisors-visual {
    min-height: 5.1rem;
    width: 100%;
  }

  .dd-top-advisors-visual-image {
    width: 116%;
    max-width: 12.8rem;
    transform: translateY(4px);
  }

  .dd-top-advisors-cta {
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: 100%;
    max-width: none;
    box-sizing: border-box;
    min-height: 3.25rem;
    padding: 0.75rem 1.5rem;
    border: 2px solid #5fa9c5;
    border-radius: 999px;
    background: #ffffff;
    color: #3d7088 !important;
    font-family: var(--dd-font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    margin-top: 0.75rem;
  }

  .dd-top-faq-heading-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    width: 100%;
    margin-bottom: 1rem;
  }

  .dd-top-faq-heading-illust {
    position: static;
    order: -1;
    width: clamp(5.6rem, 24vw, 7.6rem);
    max-width: 100%;
    height: auto;
    object-fit: contain;
    opacity: 0.9;
    transform: none;
  }

  .dd-top-faq-lead {
    margin-bottom: 1.6rem;
    max-width: 20rem;
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .dd-top-faq-line-inline {
    padding-inline: 0.22em;
  }

  .dd-top-faq-line-text {
    display: none;
  }

  .dd-top-faq-line-text-sp {
    display: inline;
  }

  .dd-top-faq-line-icon {
    display: none;
  }

  .dd-section--top-faq .space-y-4 {
    gap: 0.65rem;
  }

  .dd-section--top-faq .space-y-4 > div {
    min-height: 4.5rem;
    gap: 0.65rem;
    padding: 0.95rem 0.85rem !important;
  }

  .dd-section--top-faq .space-y-4 > div > span {
    align-items: center;
    gap: 1em;
    font-size: 1.06rem;
    line-height: 1.6;
  }

  .dd-section--top-faq .space-y-4 > div > span > span {
    padding-top: 0;
    font-size: 1.24rem !important;
  }

  .dd-section--top-faq .space-y-4 > div svg,
  .dd-section--top-faq .space-y-4 > div .lucide {
    width: 0.98rem !important;
    height: 0.98rem !important;
  }

  .dd-faq-sp-break {
    display: block;
  }

  .dd-section--top-services .text-center.mt-10 {
    margin-top: 2.95rem !important;
  }

  .dd-section--top-task-list .text-center.mt-10 {
    margin-top: 2rem !important;
    transform: translateY(0) !important;
  }

  .dd-top-checklist-actions {
    margin-top: 0.8rem;
  }

  .dd-section--top-flow .dd-top-flow-cta {
    margin-top: 1.95rem !important;
  }

  .dd-top-faq-heading-wrap {
    margin-bottom: 0.75rem;
  }

  .dd-top-faq-lead {
    margin-bottom: 1.3rem;
  }
}

/* Keep placeholder image frames visible */
.aspect-video.bg-gray-200,
.h-48.bg-gray-200,
.h-40.bg-gray-200 {
  background: linear-gradient(145deg, #e7f4fa 0%, #d9ecf6 100%) !important;
  border-color: #b9d7e7 !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

/* SP fixed CTA */
.dd-mobile-fixed-cta {
  border: 0 !important;
  background: #ffffff !important;
  box-shadow: none !important;
  backdrop-filter: none;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  header .hidden.md\:flex.items-center.space-x-3 {
    gap: 0.42rem;
  }

  header .hidden.md\:flex.items-center.space-x-3 .bg-yellow-500,
  header .hidden.md\:flex.items-center.space-x-3 .bg-green-500 {
    font-size: 0.72rem;
    padding-inline: 0.62rem;
    padding-block: 0.44rem;
  }
}

@media (max-width: 768px) {
  .dd-section--top-hero .dd-section-bg {
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0px, rgba(255, 255, 255, 0.94) 100px, rgba(255, 255, 255, 0.08) 170px, rgba(255, 255, 255, 0) 240px), url("../../images/fv-main-visual.webp") !important;
    background-repeat: no-repeat !important;
    background-position: center top, 72% calc(-0.775rem + 20px) !important;
    background-size: auto, 230% auto !important;
  }

  .dd-fv-content-wrap {
    text-align: left !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100%;
    align-items: flex-start;
    padding-top: clamp(0.625rem, calc(15vw - 3.125rem), 2.775rem) !important;
  }

  .dd-fv-content-wrap p {
    max-width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .dd-fv-content-wrap .flex.flex-wrap.justify-center.gap-2,
  .dd-fv-content-wrap .flex.flex-col.sm\:flex-row.justify-center.gap-4 {
    justify-content: center !important;
  }

  .dd-section--top-hero .dd-section-inner {
    min-height: clamp(34.5rem, 102vw, 38.5rem);
    display: flex;
    align-items: flex-start;
  }

  .dd-header-logo-img {
    height: 28px;
  }

  .dd-header-logo {
    gap: 0.35rem;
    max-width: calc(100vw - 140px);
  }

  .dd-header-logo-text {
    font-size: 0.94rem;
  }

  h1 {
    font-size: clamp(1.5rem, 5.4vw, 1.9rem);
    line-height: 1.42;
  }

  h2 {
    font-size: clamp(1.5rem, 5vw, 1.95rem);
  }

  .dd-section--top-hero .flex.flex-col.sm\:flex-row.justify-center.gap-4 > * {
    width: 100%;
    max-width: 24rem;
    margin-inline: auto;
  }

  .dd-section--top-hero {
    padding-top: 0.9rem !important;
    padding-bottom: 2.2rem !important;
  }

  .dd-section--top-hero p {
    margin-bottom: 0.95rem !important;
    font-size: clamp(0.86rem, 3.45vw, 0.98rem) !important;
    line-height: 1.72 !important;
  }

  .dd-section--top-hero .dd-fv-content-wrap > p {
    display: none !important;
  }

  .dd-section--top-hero h1 {
    max-width: 100%;
    word-break: normal;
    margin-top: 10px !important;
    margin-bottom: 2rem !important;
    font-size: clamp(1.58rem, 6.8vw, 1.96rem) !important;
    line-height: 1.34 !important;
  }

  .dd-section--top-hero .flex.flex-wrap.justify-center.gap-2 {
    width: calc(100% - 40px);
    gap: 0.48rem 0.42rem !important;
    margin-top: 250px !important;
    margin-bottom: 0.95rem !important;
    max-width: calc(100% - 40px);
    align-self: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    justify-content: center !important;
  }

  .dd-section--top-hero .dd-fv-content-wrap > .flex.flex-wrap.justify-center.gap-2 {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .dd-section--top-hero .dd-fv-content-wrap .flex.flex-col.sm\:flex-row.justify-center.gap-4 {
    justify-content: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .dd-section--top-hero .flex.flex-wrap.justify-center.gap-2 span {
    padding: 0.42rem 0.82rem !important;
    font-size: var(--dd-font-size-caption) !important;
  }

  .dd-fv-service-badge {
    gap: 0.38rem;
    padding: 0.42rem 0.82rem !important;
    font-size: var(--dd-font-size-caption) !important;
  }

  .dd-fv-service-badge svg,
  .dd-fv-service-badge .lucide {
    width: 0.86rem;
    height: 0.86rem;
  }

  .dd-section--top-hero .flex.flex-col.sm\:flex-row.justify-center.gap-4 > * {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .dd-fv-cta-desktop-only {
    display: none !important;
  }

  .dd-fv-cta-case-primary {
    background-color: #2f6f8f !important;
    border: none !important;
    color: #ffffff !important;
    box-shadow: var(--dd-shadow-button) !important;
    width: auto !important;
    min-width: 13.6rem;
    padding: 0.58rem 1rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
    align-self: center !important;
    display: flex !important;
    justify-content: center !important;
  }

  .dd-fv-cta-case-primary:hover {
    background-color: #285f7a !important;
    color: #ffffff !important;
  }

  .dd-fv-cta-case-primary .text-xs {
    display: none !important;
  }

  .dd-fv-cta-case-primary span:last-child {
    font-size: 1rem;
    font-weight: 700;
  }

  .dd-section--top-hero .text-xs {
    font-size: var(--dd-font-size-note) !important;
    margin-bottom: 0.18rem !important;
  }

  .dd-sp-menu-panel {
    width: min(20rem, calc(100vw - 2rem));
    max-height: min(66vh, 34rem);
    padding: 0.4rem;
  }

  .dd-sp-menu-panel a {
    padding: 0.68rem 0.8rem;
    font-size: 1rem;
    line-height: 1.56;
  }

  .dd-section--top-flow .md\:w-1\/5 {
    width: 100% !important;
    max-width: 20rem;
  }

  .dd-section--top-checklist .flex.flex-wrap.justify-center.gap-3 {
    gap: 0.55rem;
  }

  .dd-top-checklist-lead {
    margin-bottom: 1.35rem;
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .dd-top-checklist-heading-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    width: 100%;
    margin-bottom: 1rem;
  }

  .dd-top-checklist-heading-illust {
    position: static;
    order: -1;
    width: clamp(5.6rem, 24vw, 7.6rem);
    max-width: 100%;
    height: auto;
    object-fit: contain;
    opacity: 0.9;
    transform: none;
  }

  .dd-top-checklist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    margin-bottom: 1rem;
  }

  .dd-top-checklist-item {
    gap: 0.3rem;
    min-height: 4.35rem;
    padding: 0.5rem;
    border-radius: 0.8rem;
    font-size: 0.78rem;
    line-height: 1.4;
  }

  .dd-top-checklist-icon,
  .dd-top-checklist-item svg {
    width: 2.75rem;
    height: 2.75rem;
    padding: 0.4rem;
  }

  .dd-top-checklist-icon {
    padding: 0;
  }

  .dd-top-checklist-item:nth-child(6) {
    font-size: 0.7rem;
  }

  .dd-top-checklist-note {
    align-items: flex-start;
    margin-bottom: 1.25rem;
    padding: 0.65rem 0.75rem;
    font-size: 0.8rem;
  }

  .dd-top-checklist-note svg {
    margin-top: 0.12rem;
  }

  .dd-top-checklist-actions {
    flex-direction: column;
    gap: 0.65rem;
    width: 100%;
  }

  .dd-top-checklist-cta {
    width: 100%;
    min-height: 3.15rem;
    padding: 0.68rem 1rem;
    font-size: 0.9rem;
  }

  .dd-top-link-button {
    width: 100%;
    min-height: 3.15rem;
    padding: 0.68rem 1rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 375px) {
  .dd-section--top-hero .dd-section-bg {
    background-position: center top, 72% bottom !important;
    background-size: auto, auto calc(100% + 2px) !important;
  }
}

@media (min-width: 769px) and (max-width: 980px) {
  .dd-section--top-flow .flex.flex-col.md\:flex-row.justify-between.items-center.relative {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .dd-section--top-flow .md\:w-1\/5 {
    width: calc(33.333% - 0.8rem) !important;
  }

  .dd-section--top-flow .hidden.md\:block.absolute.top-1\/2.left-0.w-full.h-1.bg-gray-200.-z-10 {
    display: none !important;
  }
}

/* Top flow section */
.dd-section--top-flow {
  --dd-flow-01: #7ccceb;
  --dd-flow-02: #5fa8c8;
  --dd-flow-03: #68cdb0;
  --dd-flow-04: #f4b35c;
  --dd-flow-05: #e88933;
  --dd-flow-01-border: #4aa7c9;
  --dd-flow-02-border: #428faf;
  --dd-flow-03-border: #48aa98;
  --dd-flow-04-border: #df9638;
  --dd-flow-05-border: #cf7324;
  --dd-flow-border: rgba(127, 190, 214, 0.28);
}

.dd-top-flow-heading span {
  display: block;
}

.dd-top-flow-heading-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.75rem);
  margin-bottom: 3rem;
}

.dd-top-flow-heading {
  margin-bottom: 0 !important;
}

.dd-top-flow-heading-icon {
  flex: 0 0 auto;
  width: clamp(8rem, 12.8vw, 10.8rem);
  height: auto;
  object-fit: contain;
  opacity: 0.9;
}

.dd-top-flow-list {
  position: relative;
  isolation: isolate;
}

.dd-top-flow-line {
  z-index: 0 !important;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--dd-flow-01) 0%, var(--dd-flow-03) 52%, var(--dd-flow-05) 100%) !important;
  opacity: 0.7;
}

.dd-top-flow-step {
  position: relative;
  z-index: 1;
  border: 1px solid var(--dd-flow-border);
  border-radius: 1.15rem;
  box-shadow: 0 5px 14px rgba(47, 83, 107, 0.055);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dd-top-flow-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(95, 168, 200, 0.09);
}

.dd-section--top-flow .dd-top-flow-step h3 {
  color: var(--dd-navy) !important;
  font-size: 1.18rem !important;
  line-height: 1.45;
}

.dd-section--top-flow .dd-top-flow-step p {
  color: #5c7281 !important;
  font-size: 0.95rem !important;
  line-height: 1.65;
}

.dd-top-flow-number {
  border-color: rgba(255, 255, 255, 0.92) !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

.dd-section--top-flow .dd-top-flow-step--01 .dd-top-flow-number {
  background-color: var(--dd-flow-01) !important;
  border-color: var(--dd-flow-01-border) !important;
}

.dd-section--top-flow .dd-top-flow-step--02 .dd-top-flow-number {
  background-color: var(--dd-flow-02) !important;
  border-color: var(--dd-flow-02-border) !important;
}

.dd-section--top-flow .dd-top-flow-step--03 .dd-top-flow-number {
  background-color: var(--dd-flow-03) !important;
  border-color: var(--dd-flow-03-border) !important;
}

.dd-section--top-flow .dd-top-flow-step--04 .dd-top-flow-number {
  background-color: var(--dd-flow-04) !important;
  border-color: var(--dd-flow-04-border) !important;
}

.dd-section--top-flow .dd-top-flow-step--05 .dd-top-flow-number {
  background-color: var(--dd-flow-05) !important;
  border-color: var(--dd-flow-05-border) !important;
}

.dd-site-footer {
  position: relative;
  margin-top: -1px;
  padding: clamp(1.75rem, 3vw, 2.4rem) 0 clamp(2.2rem, 4vw, 2.8rem);
  background-color: #f8efe0;
  background-image: url("../images/top-bg-footer-ground-sp.webp");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  border-top: 0 !important;
  color: var(--dd-text);
  overflow: hidden;
  box-shadow: none;
}

.dd-site-footer::before {
  content: none;
}

.dd-site-footer::after {
  content: none;
}

.dd-site-footer__inner {
  position: relative;
  z-index: 1;
}

.dd-site-footer__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.54fr) minmax(0, 0.96fr) minmax(0, 0.93fr) minmax(0, 1.17fr);
  column-gap: clamp(1.2rem, 2.15vw, 2.2rem);
  row-gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
  padding: clamp(1.45rem, 2.5vw, 1.9rem) clamp(1.1rem, 2.3vw, 1.6rem);
  border: 1px solid rgba(193, 223, 234, 0.88);
  border-radius: 1.75rem;
  background: #ffffff;
  box-shadow:
    0 18px 38px rgba(47, 83, 107, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(6px);
}

.dd-site-footer__grid > .dd-site-footer__nav-group:first-of-type {
  padding-left: clamp(0.12rem, 0.45vw, 0.42rem);
}

.dd-site-footer__grid::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: none;
}

@media (min-width: 769px) {
  .dd-site-footer {
    background-image: url("../images/top-bg-footer-ground-pc.webp");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
  }

  .dd-site-footer__nav-title {
    white-space: nowrap;
  }
}

.dd-site-footer__brand {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.dd-site-footer__brand-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  width: fit-content;
  text-decoration: none;
}

.dd-site-footer__brand-logo {
  width: auto;
  height: 2.5rem;
  display: block;
  flex: 0 0 auto;
}

.dd-site-footer__brand-name {
  color: var(--dd-navy);
  font-family: var(--dd-font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.dd-site-footer__description {
  max-width: 31ch;
  margin: 0;
  font-size: var(--dd-font-size-body-sm);
  line-height: 1.82;
  text-wrap: pretty;
  color: var(--dd-text);
}

.dd-site-footer__description-row {
  display: block;
}

.dd-site-footer__description-row--nowrap {
  white-space: nowrap;
}

.dd-site-footer__nav-group {
  min-width: 0;
  position: relative;
  z-index: 1;
}

.dd-site-footer__nav-title {
  margin: 0 0 0.95rem;
  color: var(--dd-navy);
  font-family: var(--dd-font-heading);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.4;
}

.dd-site-footer__nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dd-site-footer__nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--dd-text);
  font-size: 0.94rem;
  line-height: 1.65;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.dd-site-footer__nav-link:hover,
.dd-site-footer__nav-link:focus-visible {
  color: var(--dd-navy);
  transform: translateX(2px);
}

.dd-site-footer__nav-link:focus-visible {
  outline: 2px solid rgba(95, 168, 200, 0.34);
  outline-offset: 3px;
  border-radius: 0.35rem;
}

.dd-site-footer__nav-link--muted {
  color: var(--dd-muted);
}

.dd-site-footer__meta {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: clamp(2rem, 3.5vw, 2.8rem);
  padding-top: 1.25rem;
  border-top: 1px solid rgba(186, 217, 231, 0.72);
}

.dd-site-footer__copyright {
  margin: 0;
  color: #ffffff;
  font-size: 0.82rem;
  line-height: 1.6;
}

@media (min-width: 769px) {
  .dd-section--top-flow .dd-top-flow-container {
    max-width: 72rem !important;
  }

  .dd-section--top-flow .dd-top-flow-list {
    display: grid !important;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: stretch !important;
    gap: clamp(0.7rem, 1.2vw, 1rem);
  }

  .dd-section--top-flow .dd-top-flow-line {
    display: block !important;
    top: 3.05rem !important;
    left: 10% !important;
    width: 80% !important;
    height: 4px !important;
  }

  .dd-section--top-flow .dd-top-flow-step {
    width: auto !important;
    max-width: none !important;
    margin-bottom: 0 !important;
    padding: 1.1rem 0.8rem 1.05rem !important;
  }

  .dd-section--top-flow .dd-top-flow-number {
    width: 4.1rem !important;
    height: 4.1rem !important;
    margin-bottom: 0.85rem !important;
  }

  .dd-section--top-flow .dd-top-flow-cta {
    margin-top: 3rem !important;
  }
}

@media (max-width: 768px) {
  .dd-top-main {
    padding-bottom: 0 !important;
    box-shadow: none !important;
  }

  .dd-site-footer {
    margin-top: -1px;
    padding-top: 1.55rem;
    padding-bottom: calc(5.75rem + env(safe-area-inset-bottom));
  }

  .dd-site-footer__grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    padding: 1.2rem 1rem 1.35rem;
    border-radius: 1.35rem;
    backdrop-filter: none;
  }

  .dd-site-footer__brand {
    gap: 0.85rem;
  }

  .dd-site-footer__brand-link {
    gap: 0.65rem;
  }

  .dd-site-footer__brand-logo {
    height: 2.15rem;
  }

  .dd-site-footer__brand-name {
    font-size: 1.08rem;
  }

  .dd-site-footer__description {
    max-width: 21em;
    font-size: 0.95rem;
    line-height: 1.82;
  }

  .dd-site-footer__description-row {
    display: inline;
  }

  .dd-site-footer__description-row--nowrap {
    display: inline-block;
    white-space: nowrap;
  }

  .dd-site-footer__nav-title {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
  }

  .dd-site-footer__nav-list {
    gap: 0.55rem;
  }

  .dd-site-footer__nav-link {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .dd-site-footer__meta {
    margin-top: 1.65rem;
    padding-top: 1rem;
  }

  .dd-site-footer__copyright {
    font-size: 0.78rem;
  }

  .dd-top-flow-heading-wrap {
    display: grid;
    grid-template-columns: auto 50px auto;
    grid-template-areas:
      "contact arrow truck"
      "heading heading heading";
    justify-content: center;
    column-gap: 0;
    row-gap: 0.8rem;
    margin-bottom: 2.1rem;
  }

  .dd-top-flow-heading-wrap::before {
    content: "";
    grid-area: arrow;
    justify-self: center;
    align-self: center;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 16px solid #ff7a3d;
    opacity: 0.9;
  }

  .dd-top-flow-heading {
    grid-area: heading;
  }

  .dd-top-flow-heading-icon {
    width: clamp(5.6rem, 24vw, 7.6rem);
  }

  .dd-top-flow-heading-icon--contact {
    grid-area: contact;
  }

  .dd-top-flow-heading-icon--truck {
    grid-area: truck;
  }

  .dd-section--top-flow .dd-top-flow-list {
    align-items: stretch !important;
    gap: 0.9rem;
    padding-left: 0.7rem;
  }

  .dd-section--top-flow .dd-top-flow-list::before {
    content: "";
    position: absolute;
    top: 1.6rem;
    bottom: 1.6rem;
    left: 3.3125rem;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--dd-flow-01) 0%, var(--dd-flow-03) 52%, var(--dd-flow-05) 100%);
    opacity: 0.58;
  }

  .dd-section--top-flow .dd-top-flow-line {
    display: none !important;
  }

  .dd-section--top-flow .dd-top-flow-step {
    display: grid !important;
    grid-template-columns: 3.6rem minmax(0, 1fr);
    grid-template-areas:
      "number title"
      "number text";
    column-gap: 0.85rem;
    align-items: center !important;
    width: 100% !important;
    max-width: none !important;
    margin-bottom: 0 !important;
    padding: 0.9rem 1rem !important;
    text-align: left !important;
  }

  .dd-section--top-flow .dd-top-flow-number {
    grid-area: number;
    width: 3.35rem !important;
    height: 3.35rem !important;
    margin: 0 !important;
    font-size: 1rem !important;
  }

  .dd-section--top-flow .dd-top-flow-step h3 {
    grid-area: title;
    margin-bottom: 0.15rem !important;
    font-size: 1.06rem !important;
    line-height: 1.45;
  }

  .dd-section--top-flow .dd-top-flow-step p {
    grid-area: text;
    font-size: 0.92rem !important;
    line-height: 1.6;
  }

  .dd-section--top-flow .dd-top-flow-cta {
    margin-top: 2.5rem !important;
  }
}
