@charset "UTF-8";
/* =========================================================
   訪問歯科診療LP — 専用スタイル
   ========================================================= */

.vd {
  --vd-blue: var(--primary-500);
  --vd-blue-dark: var(--primary-900);
  --vd-blue-soft: var(--primary-200);
  --vd-blue-pale: var(--primary-100);
  --vd-green: var(--secondary-600);
  --vd-camel: var(--secondary-600);
  --vd-camel-soft: var(--secondary-200);
  --vd-ink: var(--color-text);
  --vd-muted: var(--gray-700);
  --vd-line: var(--gray-500);
  --vd-surface: var(--color-bg-light);
  --vd-shadow: var(--shadow);
  color: var(--vd-ink);
  background: var(--color-bg);
}

.vd *,
.vd *::before,
.vd *::after {
  box-sizing: border-box;
}

.vd section {
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.vd-section {
  padding: 64px 0;
}

.vd-section--white {
  background: var(--vd-surface);
}

.vd-section--soft {
  background: var(--color-bg);
}

.vd-section--blue {
  background: var(--primary-400);
}

.vd-section--blue .vd-kicker,
.vd-section--blue .vd-heading {
  color: var(--color-bg-light);
}

.vd-section--blue .vd-kicker::before,
.vd-section--blue .vd-kicker::after {
  background: var(--color-bg-light);
}

.vd-section__head {
  text-align: center;
  margin-bottom: 32px;
}

.vd-section__lead {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--vd-muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
  letter-spacing: 0;
}

.vd-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--vd-blue);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.12em;
}

.vd-kicker::before,
.vd-kicker::after {
  content: "";
  width: 48px;
  height: 1px;
  background: var(--vd-blue);
  opacity: 0.5;
}

.vd-heading {
  margin-top: 14px;
  color: var(--vd-ink);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.06em;
}

.vd-eyebrow {
  position: relative;
  display: inline-block;
  margin-bottom: 22px;
  color: var(--vd-blue);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.08em;
}

.vd-eyebrow::before,
.vd-eyebrow::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 32px;
  height: 2px;
  border-top: 2px dotted var(--vd-blue);
}

.vd-eyebrow::before {
  right: calc(100% + 18px);
  transform: rotate(62deg);
}

.vd-eyebrow::after {
  left: calc(100% + 18px);
  transform: rotate(-62deg);
}

.vd-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--vd-blue-soft);
}

.vd-icon img {
  width: 54%;
  height: 54%;
  object-fit: contain;
}

.vd-target .vd-icon img {
  width: auto;
  height: 62%;
  max-width: 68%;
}

.vd-target .vd-icon img[src$="caremane_ico.svg"] {
  height: 66%;
  max-width: 66%;
}

.vd-target .vd-icon img[src$="family_ico.svg"] {
  height: 58%;
  max-width: 72%;
}

.vd-icon--small {
  width: 62px;
  height: 62px;
}

.vd-icon--large {
  width: 90px;
  height: 90px;
}

.vd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.vd-btn img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.vd-btn--primary img,
.vd-btn--secondary img {
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

.vd-btn:hover {
  transform: translateY(-2px);
}

.vd-btn--primary {
  color: var(--color-bg-light);
  background: var(--vd-blue);
  box-shadow: var(--vd-shadow);
}

.vd-btn--secondary {
  color: var(--color-bg-light);
  background: var(--primary-400);
  box-shadow: var(--vd-shadow);
}

.vd-btn--line {
  color: var(--vd-blue);
  border: 1px solid var(--vd-blue);
  background: var(--color-bg-light);
  box-shadow: none;
}

/* ---------------------------------------------------------
   Hero
   --------------------------------------------------------- */
.vd-hero {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-light);
}

.vd-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  min-height: 600px;
  padding-top: 48px;
  padding-bottom: 48px;
}

.vd-hero__body {
  position: relative;
  z-index: 1;
}

.vd-hero__title {
  margin-bottom: 24px;
  color: var(--vd-ink);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: 0.06em;
  word-break: keep-all;
}

.vd-hero__title span {
  display: block;
}

.vd-hero__title-accent {
  color: var(--vd-blue);
}

.vd-hero__lead {
  max-width: 640px;
  margin-bottom: 28px;
  color: var(--vd-ink);
  font-size: 16px;
  font-weight: 500;
  line-height: 2.05;
}

.vd-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.vd-hero__actions .vd-btn--primary {
  color: var(--color-bg-light);
  background: var(--primary-500);
  box-shadow: var(--vd-shadow);
}

.vd-hero__actions .vd-btn--secondary {
  color: var(--color-bg-light);
  background: var(--primary-400);
  box-shadow: var(--vd-shadow);
}

.vd-hero__actions .vd-btn--line {
  color: var(--color-bg-light);
  border-color: #2faf5e;
  background: #2faf5e;
  box-shadow: var(--vd-shadow);
}

.vd-hero__actions .vd-btn--line img {
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

.vd-hero__features {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  width: 100%;
}

.vd-hero__features li {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 64px;
  padding: 14px 18px 14px 48px;
  border: 1px solid rgba(35, 127, 182, 0.14);
  border-radius: 8px;
  color: var(--vd-blue-dark);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 18px rgba(33, 69, 92, 0.08);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.vd-hero__features li::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 16px;
  height: 16px;
  border: 2px solid var(--vd-blue);
  border-radius: 50%;
  transform: translateY(-50%);
}

.vd-hero__features li::after {
  content: "";
  position: absolute;
  left: 23px;
  top: 50%;
  width: 6px;
  height: 10px;
  border-right: 2px solid var(--vd-blue);
  border-bottom: 2px solid var(--vd-blue);
  transform: translateY(-62%) rotate(38deg);
}

.vd-hero__visual {
  position: relative;
  min-height: 330px;
}

.vd-hero__visual img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--vd-shadow);
}

/* ---------------------------------------------------------
   Target
   --------------------------------------------------------- */
.vd-guide {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

.vd-guide__item {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 150px;
  padding: 24px;
  border: 1px solid var(--vd-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--vd-shadow);
  overflow: hidden;
}

.vd-guide__item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: var(--vd-blue);
}

.vd-guide__item h3 {
  color: var(--vd-blue);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.55;
}

.vd-guide__item p {
  margin-top: 8px;
  color: var(--vd-ink);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.85;
}

.vd-target {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

.vd-target__item {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 148px;
  padding: 22px;
  border: 1px solid var(--vd-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--vd-shadow);
  overflow: hidden;
}

.vd-target__body {
  display: grid;
  gap: 8px;
}

.vd-target__title {
  color: var(--vd-ink);
  font-size: 18px;
  font-weight: 700;
}

.vd-target__text {
  color: var(--vd-muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.85;
}

.vd-target__arrow {
  width: 12px;
  height: 12px;
  border-top: 3px solid var(--vd-blue);
  border-right: 3px solid var(--vd-blue);
  transform: rotate(45deg);
}

/* ---------------------------------------------------------
   Problem / Service
   --------------------------------------------------------- */
.vd-problem,
.vd-service {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

.vd-problem__item,
.vd-service__item {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 96px;
  padding: 16px 18px;
  border: 1px solid rgba(28, 84, 118, 0.1);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(33, 69, 92, 0.08);
}

.vd-problem__item p,
.vd-service__item span:last-child {
  color: var(--vd-ink);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.65;
}

.vd-note {
  max-width: 920px;
  margin: 24px auto 0;
  padding: 18px 22px;
  border: 1px solid var(--vd-camel-soft);
  border-left: 5px solid var(--vd-camel);
  border-radius: 8px;
  color: var(--vd-ink);
  background: var(--color-bg);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.9;
}

/* ---------------------------------------------------------
   About
   --------------------------------------------------------- */
.vd-about {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  border: 1px solid var(--vd-line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--vd-shadow);
}

.vd-about__body {
  padding: 30px 24px;
}

.vd-about__body h3 {
  position: relative;
  margin-bottom: 24px;
  padding-bottom: 20px;
  color: var(--vd-ink);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
}

.vd-about__body h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 120px;
  height: 3px;
  border-top: 3px dotted #7cc4df;
}

.vd-about__body p {
  color: var(--vd-ink);
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
}

.vd-about__body p + p {
  margin-top: 14px;
}

.vd-about__img {
  min-height: 260px;
}

.vd-about__img img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

/* ---------------------------------------------------------
   Merit / Feature / Support
   --------------------------------------------------------- */
.vd-merit {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.vd-merit__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  min-height: 170px;
  padding: 24px;
  border: 1px solid var(--vd-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--vd-shadow);
}

.vd-merit__item h3,
.vd-feature__item h3,
.vd-support__title h3,
.vd-flow__item h3,
.vd-cost__item h3,
.vd-area__body h3 {
  color: var(--vd-blue);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.55;
}

.vd-merit__item p,
.vd-feature__item p,
.vd-flow__item p,
.vd-cost__item p {
  margin-top: 8px;
  color: var(--vd-ink);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.9;
}

.vd-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.vd-feature__item {
  position: relative;
  min-height: 184px;
  padding: 30px 24px 24px 96px;
  border: 1px solid rgba(35, 127, 182, 0.18);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--vd-shadow);
}

.vd-feature__num {
  position: absolute;
  left: 22px;
  top: 24px;
  color: rgba(35, 127, 182, 0.32);
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
}

.vd-support {
  display: grid;
  gap: 14px;
}

.vd-support__item {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--vd-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(33, 69, 92, 0.08);
}

.vd-support__title {
  display: flex;
  gap: 18px;
  align-items: center;
}

.vd-support__list {
  display: grid;
  gap: 8px;
}

.vd-support__list li {
  position: relative;
  padding-left: 18px;
  color: var(--vd-ink);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.85;
}

.vd-support__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--vd-blue);
}

/* ---------------------------------------------------------
   Flow / Cost
   --------------------------------------------------------- */
.vd-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
}

.vd-flow__item {
  position: relative;
  display: grid;
  justify-items: center;
  min-height: 246px;
  padding: 26px 18px 22px;
  border: 1px solid rgba(35, 127, 182, 0.16);
  border-radius: 8px;
  text-align: center;
  background: #fff;
  box-shadow: 0 8px 18px rgba(33, 69, 92, 0.08);
}

.vd-flow__step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  min-height: 28px;
  margin-bottom: 14px;
  border: 1px solid var(--vd-blue);
  border-radius: 6px;
  color: var(--vd-blue);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.vd-flow__item h3 {
  margin-top: 14px;
  color: var(--vd-ink);
  font-size: 17px;
}

.vd-cost {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  border: 1px solid var(--vd-camel-soft);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--vd-shadow);
}

.vd-cost__item {
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: 220px;
  padding: 26px 20px;
  text-align: center;
  border-bottom: 1px dashed var(--vd-camel-soft);
}

.vd-cost__item .vd-icon {
  background: var(--vd-camel-soft);
}

.vd-cost__item:last-child {
  border-bottom: 0;
}

.vd-cost__item h3 {
  color: var(--vd-ink);
  font-size: 17px;
}

/* ---------------------------------------------------------
   Area
   --------------------------------------------------------- */
.vd-area {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--vd-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--vd-shadow);
}

.vd-area__map {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(126, 198, 223, 0.22), rgba(255, 255, 255, 0.1) 42%),
    repeating-linear-gradient(35deg, transparent 0 34px, rgba(84, 151, 181, 0.12) 35px 38px),
    repeating-linear-gradient(115deg, transparent 0 48px, rgba(154, 196, 154, 0.14) 49px 52px),
    #f4faf6;
}

.vd-area__circle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 230px;
  height: 230px;
  border: 2px dashed rgba(35, 127, 182, 0.7);
  border-radius: 50%;
  background: rgba(126, 198, 223, 0.22);
  transform: translate(-50%, -50%);
}

.vd-area__circle::after {
  content: "半径16km圏内";
  position: absolute;
  left: 50%;
  bottom: 52px;
  color: var(--vd-blue);
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  transform: translateX(-50%);
}

.vd-area__pin {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff;
  background: var(--vd-blue);
  font-size: 24px;
  font-weight: 700;
  box-shadow: 0 10px 22px rgba(35, 127, 182, 0.28);
  transform: translate(-50%, -70%);
}

.vd-area__label {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--vd-blue-dark);
  background: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(33, 69, 92, 0.08);
}

.vd-area__label--north {
  left: 48%;
  top: 21%;
}

.vd-area__label--east {
  right: 14%;
  top: 44%;
}

.vd-area__label--west {
  left: 13%;
  top: 45%;
}

.vd-area__label--central {
  left: 48%;
  bottom: 18%;
}

.vd-area__label--teine {
  left: 18%;
  top: 23%;
}

.vd-area__body {
  padding: 30px 24px;
}

.vd-area__body h3 {
  margin-bottom: 22px;
}

.vd-area__body p {
  color: var(--vd-ink);
  font-size: 15px;
  font-weight: 700;
}

.vd-area__tags {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
  padding-top: 18px;
  border-top: 3px dotted #7cc4df;
}

.vd-area__tags li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 1px solid var(--vd-blue);
  border-radius: 6px;
  color: var(--vd-blue);
  background: #fff;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}

.vd-area__note {
  margin-top: 18px;
  color: var(--vd-muted) !important;
  font-weight: 500 !important;
}

/* ---------------------------------------------------------
   FAQ / CTA
   --------------------------------------------------------- */
.vd-faq {
  display: grid;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto;
}

.vd-faq__item {
  border: 1px solid var(--vd-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(33, 69, 92, 0.08);
  overflow: hidden;
}

.vd-faq__question {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  min-height: 72px;
  padding: 18px 22px;
  color: var(--vd-blue);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.65;
  cursor: pointer;
  list-style: none;
}

.vd-faq__question::-webkit-details-marker {
  display: none;
}

.vd-faq__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  background: var(--vd-blue);
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
}

.vd-faq__mark--answer {
  color: var(--vd-blue);
  background: transparent;
}

.vd-faq__toggle {
  position: relative;
  width: 18px;
  height: 18px;
}

.vd-faq__toggle::before,
.vd-faq__toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 2px;
  background: var(--vd-blue);
  transform: translate(-50%, -50%);
}

.vd-faq__toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.vd-faq__item[open] .vd-faq__toggle::after {
  opacity: 0;
}

.vd-faq__answer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  padding: 0 22px 22px;
  color: var(--vd-ink);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.95;
}

.vd-cta {
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(235, 247, 252, 0.92), rgba(255, 255, 255, 0.76)),
    var(--vd-blue-pale);
}

.vd-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  padding-top: 56px;
  padding-bottom: 56px;
}

.vd-cta__sub {
  margin-bottom: 8px;
  color: var(--vd-blue);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
}

.vd-cta__body h2 {
  margin-bottom: 18px;
  color: var(--vd-blue);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.06em;
}

.vd-cta__body p:not(.vd-cta__sub) {
  max-width: 660px;
  color: var(--vd-ink);
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}

.vd-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.vd-cta__img img {
  width: 100%;
  min-height: 260px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--vd-shadow);
}

/* ---------------------------------------------------------
   Responsive
   --------------------------------------------------------- */
@media (min-width: 640px) {
  .vd-hero__features,
  .vd-problem,
  .vd-service {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vd-cost {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vd-cost__item {
    border-right: 1px dashed var(--vd-line);
  }

  .vd-cost__item:nth-child(2n) {
    border-right: 0;
  }
}

@media (min-width: 768px) {
  .vd-section {
    padding: 88px 0;
  }

  .vd-heading {
    font-size: 32px;
  }

  .vd-hero__inner {
    max-width: none;
    grid-template-columns: minmax(420px, 620px) minmax(0, 1fr);
    gap: 34px;
    min-height: 660px;
    padding-top: 64px;
    padding-right: 0;
    padding-bottom: 54px;
    padding-left: max(var(--contents-padding), calc((100vw - var(--contents-width)) / 2 + var(--contents-padding)));
  }

  .vd-hero__title {
    font-size: 46px;
  }

  .vd-hero__title span {
    white-space: nowrap;
  }

  .vd-hero__visual {
    align-self: stretch;
    min-height: 500px;
  }

  .vd-hero__visual img {
    min-height: 500px;
    border-radius: 0;
    box-shadow: none;
  }

  .vd-hero__features {
    grid-column: 1 / -1;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding-right: max(var(--contents-padding), calc((100vw - var(--contents-width)) / 2 + var(--contents-padding)));
  }

  .vd-hero__features li {
    justify-content: center;
    min-height: 74px;
    padding-left: 48px;
  }

  .vd-target {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .vd-guide {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .vd-target__item {
    min-height: 170px;
  }

  .vd-guide__item {
    grid-template-columns: minmax(0, 1fr);
    align-content: start;
    justify-items: center;
    text-align: center;
  }

  .vd-about {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }

  .vd-about__body {
    padding: 46px;
  }

  .vd-merit {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vd-feature {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .vd-support__item {
    grid-template-columns: 330px minmax(0, 1fr);
    align-items: center;
  }

  .vd-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .vd-area {
    grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  }

  .vd-area__body {
    padding: 42px 38px;
  }

  .vd-cta__inner {
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.88fr);
    min-height: 430px;
  }

  .vd-cta__body h2 {
    font-size: 42px;
  }
}

@media (min-width: 1024px) {
  .vd-hero__title {
    font-size: 50px;
  }

  .vd-problem {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .vd-service {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .vd-flow {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .vd-flow__item::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -13px;
    width: 24px;
    height: 2px;
    border-top: 2px dotted var(--vd-blue);
  }

  .vd-flow__item:not(:last-child)::before {
    content: "";
    position: absolute;
    top: calc(50% - 5px);
    right: -14px;
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--vd-blue);
    border-right: 2px solid var(--vd-blue);
    transform: rotate(45deg);
    z-index: 1;
  }

  .vd-flow__item:last-child::after {
    content: none;
  }

  .vd-cost {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .vd-cost__item {
    border-right: 1px dashed var(--vd-line);
    border-bottom: 0;
  }

  .vd-cost__item:nth-child(2n) {
    border-right: 1px dashed var(--vd-line);
  }

  .vd-cost__item:last-child {
    border-right: 0;
  }
}

@media (max-width: 767px) {
  .vd-section {
    padding: 52px 0;
  }

  .vd-kicker {
    gap: 10px;
    font-size: 12px;
  }

  .vd-kicker::before,
  .vd-kicker::after {
    width: 30px;
  }

  .vd-heading {
    font-size: 25px;
  }

  .vd-eyebrow {
    font-size: 15px;
  }

  .vd-eyebrow::before,
  .vd-eyebrow::after {
    display: none;
  }

  .vd-hero__inner {
    min-height: auto;
    padding-top: 36px;
    padding-bottom: 40px;
  }

  .vd-hero__title {
    font-size: 30px;
    line-height: 1.5;
    letter-spacing: 0.03em;
    word-break: normal;
    overflow-wrap: anywhere;
  }

  .vd-hero__title span {
    white-space: normal;
  }

  .vd-hero__actions,
  .vd-cta__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .vd-btn {
    width: 100%;
  }

  .vd-target__item,
  .vd-merit__item,
  .vd-guide__item {
    grid-template-columns: minmax(0, 1fr);
    text-align: left;
  }

  .vd-target__arrow {
    display: none;
  }

  .vd-support__title {
    align-items: flex-start;
  }

  .vd-area__tags {
    grid-template-columns: minmax(0, 1fr);
  }

  .vd-faq__question {
    grid-template-columns: auto minmax(0, 1fr) auto;
    padding: 16px;
    font-size: 15px;
  }

  .vd-faq__answer {
    padding: 0 16px 18px;
  }
}

@media (max-width: 374px) {
  .vd-hero__title {
    font-size: 28px;
  }
}
