/*
 * 看護部概要ページ専用のコンテンツデザイン。
 * 採用ページで使っている、丸角・小さなラベル・軽い影・色分けの
 * 視覚言語を、水色を主役にして展開する。
 */
.about-overview {
  --about-ink: #17384a;
  --about-copy: #435d6a;
  --about-blue: #0ea5e9;
  --about-blue-deep: #0875ab;
  --about-cyan: #55cbe4;
  --about-line: #cfeaf2;
  --about-sky: #f2fbff;
  --about-yellow: #f3c24d;
  --about-yellow-pale: #fff8e6;
  --about-green: #8fdc30;
  --about-green-pale: #f4fce9;
  --about-white: #ffffff;
}

.about-overview .content_body {
  padding-bottom: clamp(84px, 10vw, 140px);
  background:
    radial-gradient(circle at 96% 19%, rgba(85, 203, 228, 0.13) 0 5px, transparent 5.5px),
    radial-gradient(circle at 98% 21%, rgba(14, 165, 233, 0.08) 0 11px, transparent 11.5px),
    linear-gradient(180deg, #ffffff 0%, #fbfeff 100%);
}

.about-overview .content_body .container {
  max-width: 1160px;
}

.about-overview .about-overview__content {
  display: grid;
  gap: clamp(72px, 9vw, 116px);
}

.about-overview .pagelink_area {
  margin: 0 !important;
}

.about-overview .about-overview__section {
  position: relative;
  scroll-margin-top: 110px;
}

.about-overview .about-section-heading {
  position: relative;
  margin-bottom: clamp(26px, 4vw, 38px);
  padding: clamp(22px, 3.4vw, 34px) clamp(24px, 4vw, 42px);
  overflow: hidden;
  border: 1px solid var(--about-line);
  border-radius: 22px;
  background: var(--about-white);
  box-shadow: 8px 9px 0 rgba(85, 203, 228, 0.16);
}

.about-overview .about-section-heading::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 6px;
  height: calc(100% - 42px);
  border-radius: 0 999px 999px 0;
  background: var(--about-blue-deep);
  content: "";
  transform: translateY(-50%);
}

.about-overview .about-section-heading::after {
  position: absolute;
  top: 21px;
  right: 25px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--about-cyan);
  box-shadow: 0 0 0 7px rgba(85, 203, 228, 0.12);
  content: "";
}

.about-overview .about-section-heading__eyebrow {
  display: inline-flex;
  width: fit-content;
  margin: 0 0 8px !important;
  padding: 4px 9px !important;
  border: 1px solid #b9e9f5;
  border-radius: 999px;
  background: #eefbff;
  color: var(--about-blue-deep) !important;
  font-size: 0.7rem !important;
  font-weight: 700;
  letter-spacing: 0.12em !important;
  line-height: 1.35 !important;
}

.about-overview .about-section-title {
  display: block !important;
  position: static !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--about-ink) !important;
  font-family: inherit !important;
  font-size: clamp(1.45rem, 2.6vw, 2rem) !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  line-height: 1.45 !important;
  text-align: left !important;
  animation: none !important;
  translate: none !important;
}

.about-overview .about-section-title::before,
.about-overview .about-section-title::after {
  display: none !important;
  content: none !important;
}

.about-overview .about-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
}

.about-overview .about-principle {
  position: relative;
  min-width: 0;
  padding: 24px clamp(19px, 2.5vw, 28px) clamp(22px, 3vw, 30px);
  overflow: hidden;
  border: 1px solid var(--about-line);
  border-radius: 18px;
  background: var(--about-white);
  box-shadow: 0 13px 28px rgba(18, 104, 142, 0.08);
}

.about-overview .about-principle::before {
  position: absolute;
  top: 0;
  left: clamp(19px, 2.5vw, 28px);
  width: 92px;
  height: 4px;
  border-radius: 0 0 999px 999px;
  background: var(--about-blue);
  content: "";
}

.about-overview .about-principle:nth-child(2) {
  border-color: #f1dda1;
  background: linear-gradient(135deg, #ffffff 45%, var(--about-yellow-pale) 150%);
}

.about-overview .about-principle:nth-child(2)::before {
  background: var(--about-yellow);
}

.about-overview .about-principle:nth-child(3) {
  border-color: #d3ecc0;
  background: linear-gradient(135deg, #ffffff 45%, var(--about-green-pale) 150%);
}

.about-overview .about-principle:nth-child(3)::before {
  background: var(--about-green);
}

.about-overview .about-principle__number {
  display: inline-flex;
  min-width: 42px;
  min-height: 25px;
  margin-bottom: 18px;
  padding: 4px 9px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #eaf9fd;
  color: var(--about-blue-deep);
  font-family: "Plus Jakarta Sans", "Zen Kaku Gothic Antique", sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
}

.about-overview .about-principle:nth-child(2) .about-principle__number {
  background: #fff3cb;
  color: #a66e05;
}

.about-overview .about-principle:nth-child(3) .about-principle__number {
  background: #e7f7d7;
  color: #5b941c;
}

.about-overview .about-principle h3,
.about-overview .about-overview__education-vision h3 {
  display: block !important;
  position: static !important;
  min-height: 0 !important;
  margin: 0 0 13px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--about-ink) !important;
  font-family: inherit !important;
  font-size: clamp(1.08rem, 1.8vw, 1.28rem) !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  line-height: 1.5 !important;
  animation: none !important;
  translate: none !important;
}

.about-overview .about-principle h3::before,
.about-overview .about-principle h3::after,
.about-overview .about-overview__education-vision h3::before,
.about-overview .about-overview__education-vision h3::after {
  display: none !important;
  content: none !important;
}

.about-overview .about-principle p,
.about-overview .about-overview__lead,
.about-overview .about-overview__education-vision p,
.about-overview .about-overview__detail p,
.about-overview .about-overview__detail li {
  margin: 0 !important;
  padding: 0 !important;
  color: var(--about-copy) !important;
  font-size: 0.96rem !important;
  letter-spacing: 0.03em !important;
  line-height: 1.9 !important;
}

.about-overview .about-principle p {
  min-height: 5.7em;
}

.about-overview .about-goal-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  counter-reset: overview-goal;
  list-style: none;
}

.about-overview .about-goal-list > li {
  position: relative;
  min-width: 0;
  min-height: 190px;
  margin: 0 !important;
  padding: 64px clamp(20px, 3vw, 30px) clamp(21px, 3vw, 30px) !important;
  overflow: hidden;
  border: 1px solid var(--about-line);
  border-radius: 18px;
  background: var(--about-white);
  box-shadow: 0 12px 24px rgba(18, 104, 142, 0.07);
  color: var(--about-copy) !important;
  counter-increment: overview-goal;
}

.about-overview .about-goal-list > li::before {
  position: absolute !important;
  top: 19px;
  left: clamp(20px, 3vw, 30px);
  display: inline-flex !important;
  min-width: 43px;
  height: 25px;
  padding: 0 9px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #e9f9fd;
  color: var(--about-blue-deep);
  content: "0" counter(overview-goal) !important;
  font-family: "Plus Jakarta Sans", "Zen Kaku Gothic Antique", sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
}

.about-overview .about-goal-list > li:nth-child(2)::before,
.about-overview .about-goal-list > li:nth-child(4)::before {
  background: #edf9df;
  color: #5b941c;
}

.about-overview .about-goal-list > li::after {
  display: none !important;
  content: none !important;
}

.about-overview .about-goal-list .goal-title {
  margin: 0 0 13px !important;
  padding: 0 !important;
  color: var(--about-ink) !important;
  font-size: clamp(1rem, 1.65vw, 1.16rem) !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  line-height: 1.7 !important;
}

.about-overview .about-goal-list ul,
.about-overview .about-overview__detail ul {
  display: grid;
  gap: 7px;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
}

.about-overview .about-goal-list ul li,
.about-overview .about-overview__detail ul li {
  position: relative;
  margin: 0 !important;
  padding: 0 0 0 17px !important;
}

.about-overview .about-goal-list ul li::before,
.about-overview .about-overview__detail ul li::before {
  position: absolute !important;
  top: 0.72em;
  left: 1px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--about-cyan);
  content: "" !important;
}

.about-overview .about-overview__action {
  display: flex;
  margin: 26px 0 0 !important;
  padding: 0 !important;
  justify-content: flex-end;
}

.about-overview .about-overview__button {
  display: inline-flex !important;
  min-height: 48px;
  padding: 11px 20px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--about-blue);
  border-radius: 999px;
  background: var(--about-blue);
  box-shadow: 0 8px 17px rgba(14, 165, 233, 0.17);
  color: #ffffff !important;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.4;
  text-align: center;
  text-decoration: none !important;
  transition: translate 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.about-overview .about-overview__button::after {
  content: "→";
  font-size: 1.04em;
}

.about-overview .about-overview__button:hover {
  background: var(--about-blue-deep);
  box-shadow: 0 11px 22px rgba(7, 117, 171, 0.24);
  translate: 0 -2px;
}

.about-overview .about-overview__lead {
  position: relative;
  margin-bottom: 22px !important;
  padding: clamp(20px, 3vw, 28px) clamp(21px, 3.4vw, 34px) !important;
  border: 1px solid var(--about-line);
  border-radius: 16px;
  background: linear-gradient(118deg, var(--about-sky), #ffffff 74%);
  box-shadow: 0 10px 22px rgba(18, 104, 142, 0.06);
}

.about-overview .about-overview__lead::before {
  display: inline-block;
  margin-right: 10px;
  color: var(--about-blue);
  content: "●";
  font-size: 0.7em;
  vertical-align: 0.08em;
}

.about-overview .about-overview__image-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 2vw, 20px);
  margin: 0;
}

.about-overview .about-overview__image-card {
  position: relative;
  min-width: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid #d9edf2;
  border-radius: 16px;
  background: #eaf7fb;
  box-shadow: 0 11px 22px rgba(18, 104, 142, 0.08);
}

.about-overview .about-overview__image-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-overview .about-overview__image-card:hover img {
  transform: scale(1.035);
}

.about-overview .about-overview__education-vision {
  margin-bottom: 22px;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid #d8ebcf;
  border-radius: 18px;
  background: linear-gradient(118deg, var(--about-green-pale), #ffffff 72%);
}

.about-overview .about-overview__education-vision h3 {
  color: #4d7a19 !important;
}

.about-overview .about-overview__detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.about-overview .about-overview__detail {
  min-width: 0;
  padding: clamp(21px, 3vw, 30px);
  border: 1px solid var(--about-line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(18, 104, 142, 0.07);
}

.about-overview .about-overview__detail--wide {
  grid-column: 1 / -1;
}

.about-overview .about-overview__detail h4 {
  display: flex !important;
  position: static !important;
  min-height: 0 !important;
  margin: 0 0 15px !important;
  padding: 0 !important;
  align-items: center;
  gap: 9px;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--about-ink) !important;
  font-family: inherit !important;
  font-size: clamp(1.06rem, 1.7vw, 1.22rem) !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  line-height: 1.5 !important;
  text-align: left !important;
  animation: none !important;
  translate: none !important;
}

.about-overview .about-overview__detail h4::before {
  display: inline-block !important;
  position: static !important;
  width: 9px !important;
  height: 9px !important;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--about-green) !important;
  content: "" !important;
  transform: none !important;
}

.about-overview .about-overview__detail h4::after {
  display: none !important;
  content: none !important;
}

.about-overview .about-overview__detail strong {
  color: var(--about-blue-deep);
}

.about-overview .about-overview__detail .about-overview__image-grid {
  margin-top: 20px;
}

.about-overview .about-overview__ladder-panel {
  grid-column: 1 / -1;
  padding: clamp(21px, 3vw, 30px);
  border: 1px solid #e2e7cf;
  border-radius: 18px;
  background: linear-gradient(145deg, #fcfff8, #ffffff 75%);
}

.about-overview .about-overview__ladder-panel .ladder_list {
  margin: 17px 0 0;
  padding: 0;
}

.about-overview .about-overview__ladder-panel .ladder_card {
  max-width: 860px;
  border: 1px solid #e2ecd8;
  box-shadow: 0 9px 19px rgba(79, 115, 50, 0.07);
  color: var(--about-copy);
  line-height: 1.7;
}

.about-overview .about-overview__ladder-panel .ladder_card._step1 { margin-left: 0; }
.about-overview .about-overview__ladder-panel .ladder_card._step2 { margin-left: 34px; }
.about-overview .about-overview__ladder-panel .ladder_card._step3 { margin-left: 68px; }
.about-overview .about-overview__ladder-panel .ladder_card._step4 { margin-left: 102px; }
.about-overview .about-overview__ladder-panel .ladder_card._step5 { margin-left: 136px; }

/* Recruitページの装飾ルールを、概要ページ向けの水色・黄緑で展開する。 */
.about-overview .about-overview__section {
  isolation: isolate;
  padding: clamp(22px, 4vw, 44px);
  overflow: hidden;
  border: 1px solid #d7edf3;
  border-radius: 28px;
  background: linear-gradient(145deg, #f4fcff 0%, #ffffff 68%);
  box-shadow: 0 18px 38px rgba(18, 104, 142, 0.055);
}

.about-overview .about-overview__section > * {
  position: relative;
  z-index: 1;
}

.about-overview .about-overview__section::before {
  position: absolute;
  bottom: -1px;
  left: -1px;
  width: clamp(94px, 16vw, 180px);
  height: clamp(64px, 10vw, 104px);
  border-radius: 0 26px 0 0;
  background: repeating-linear-gradient(135deg, rgba(14, 165, 233, 0.18) 0 6px, transparent 6px 13px);
  content: "";
  pointer-events: none;
}

.about-overview .about-overview__section::after {
  position: absolute;
  top: 24px;
  right: 27px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: rgba(85, 203, 228, 0.7);
  box-shadow:
    -24px 17px 0 -2px rgba(14, 165, 233, 0.22),
    10px 28px 0 -3px rgba(85, 203, 228, 0.34),
    -40px 37px 0 -5px rgba(14, 165, 233, 0.16);
  content: "";
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-overview .about-overview__section--goals {
  border-color: #f0e1ab;
  background: linear-gradient(145deg, #fffaf0 0%, #ffffff 70%);
}

.about-overview .about-overview__section--goals::before {
  background: repeating-linear-gradient(135deg, rgba(243, 194, 77, 0.24) 0 6px, transparent 6px 13px);
}

.about-overview .about-overview__section--goals::after {
  background: rgba(243, 194, 77, 0.75);
  box-shadow:
    -24px 17px 0 -2px rgba(243, 194, 77, 0.24),
    10px 28px 0 -3px rgba(243, 194, 77, 0.35),
    -40px 37px 0 -5px rgba(243, 194, 77, 0.18);
}

.about-overview .about-overview__section--structure {
  border-color: #ccebf3;
  background: linear-gradient(145deg, #effbff 0%, #ffffff 70%);
}

.about-overview .about-overview__section--education {
  border-color: #dcebc9;
  background: linear-gradient(145deg, #f8fdec 0%, #ffffff 70%);
}

.about-overview .about-overview__section--education::before {
  background: repeating-linear-gradient(135deg, rgba(143, 220, 48, 0.24) 0 6px, transparent 6px 13px);
}

.about-overview .about-overview__section--education::after {
  background: rgba(143, 220, 48, 0.78);
  box-shadow:
    -24px 17px 0 -2px rgba(143, 220, 48, 0.24),
    10px 28px 0 -3px rgba(143, 220, 48, 0.36),
    -40px 37px 0 -5px rgba(143, 220, 48, 0.18);
}

.about-overview .about-overview__section--policy .about-section-heading {
  background: linear-gradient(118deg, #e8faff 0%, #ffffff 75%);
}

.about-overview .about-overview__section--goals .about-section-heading {
  border-color: #eedda5;
  background: linear-gradient(118deg, #fff7df 0%, #ffffff 75%);
  box-shadow: 8px 9px 0 rgba(243, 194, 77, 0.17);
}

.about-overview .about-overview__section--goals .about-section-heading::before {
  background: #d6a52a;
}

.about-overview .about-overview__section--goals .about-section-heading::after {
  background: #f3c24d;
  box-shadow: 0 0 0 7px rgba(243, 194, 77, 0.13);
}

.about-overview .about-overview__section--goals .about-section-heading__eyebrow {
  border-color: #f1d885;
  background: #fff4d0;
  color: #9b6a08 !important;
}

.about-overview .about-overview__section--structure .about-section-heading {
  background: linear-gradient(118deg, #e8faff 0%, #ffffff 75%);
}

.about-overview .about-overview__section--education .about-section-heading {
  border-color: #d7e8c3;
  background: linear-gradient(118deg, #f0fae4 0%, #ffffff 75%);
  box-shadow: 8px 9px 0 rgba(143, 220, 48, 0.17);
}

.about-overview .about-overview__section--education .about-section-heading::before {
  background: #70ad28;
}

.about-overview .about-overview__section--education .about-section-heading::after {
  background: #8fdc30;
  box-shadow: 0 0 0 7px rgba(143, 220, 48, 0.13);
}

.about-overview .about-overview__section--education .about-section-heading__eyebrow {
  border-color: #cde7af;
  background: #edf9df;
  color: #598c1b !important;
}

.about-overview .about-principle,
.about-overview .about-goal-list > li,
.about-overview .about-overview__detail {
  isolation: isolate;
  transition: translate 0.26s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.26s ease, border-color 0.26s ease;
}

.about-overview .about-principle > *,
.about-overview .about-goal-list > li > *,
.about-overview .about-overview__detail > * {
  position: relative;
  z-index: 1;
}

.about-overview .about-principle::after,
.about-overview .about-goal-list > li::after,
.about-overview .about-overview__detail::after {
  position: absolute;
  right: -15px;
  bottom: -15px;
  z-index: 0;
  display: block !important;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(85, 203, 228, 0.24);
  box-shadow: -17px -17px 0 -7px rgba(85, 203, 228, 0.2);
  content: "" !important;
  transform: scale(1);
  transform-origin: center;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.25s ease;
}

.about-overview .about-principle:nth-child(2)::after,
.about-overview .about-goal-list > li:nth-child(2)::after,
.about-overview .about-goal-list > li:nth-child(4)::after {
  background: rgba(243, 194, 77, 0.27);
  box-shadow: -17px -17px 0 -7px rgba(243, 194, 77, 0.22);
}

.about-overview .about-principle:nth-child(3)::after,
.about-overview .about-overview__section--education .about-overview__detail::after {
  background: rgba(143, 220, 48, 0.25);
  box-shadow: -17px -17px 0 -7px rgba(143, 220, 48, 0.2);
}

/* 文章の下敷きは青〜ピンクのグラデーションを使わず、黄緑のドット紙にする。 */
.about-overview .about-overview__detail p.c-mission-text {
  padding: 14px 17px !important;
  border: 1px solid #dceec8 !important;
  border-radius: 13px !important;
  background-color: #fbfff7 !important;
  background-image: radial-gradient(circle, rgba(143, 220, 48, 0.3) 1.15px, transparent 1.7px) !important;
  background-position: 2px 2px !important;
  background-size: 11px 11px !important;
  box-shadow: none !important;
}

@media (hover: hover) and (pointer: fine) {
  .about-overview .about-overview__section:hover::after {
    transform: scale(1.13);
  }

  .about-overview .about-principle:hover,
  .about-overview .about-goal-list > li:hover,
  .about-overview .about-overview__detail:hover {
    z-index: 2;
    border-color: rgba(14, 165, 233, 0.5);
    box-shadow: 0 18px 32px rgba(18, 104, 142, 0.15);
    translate: 0 -5px;
  }

  .about-overview .about-principle:hover::after,
  .about-overview .about-goal-list > li:hover::after,
  .about-overview .about-overview__detail:hover::after {
    transform: scale(5.3);
  }
}

@media screen and (max-width: 767px) {
  .about-overview .content_body {
    padding-bottom: 82px;
  }

  .about-overview .about-overview__content {
    gap: 66px;
  }

  .about-overview .about-section-heading {
    padding: 21px 22px 21px 25px;
    border-radius: 16px;
    box-shadow: 5px 6px 0 rgba(85, 203, 228, 0.16);
  }

  .about-overview .about-section-heading::before {
    width: 5px;
    height: calc(100% - 34px);
  }

  .about-overview .about-section-heading::after {
    top: 17px;
    right: 18px;
    width: 13px;
    height: 13px;
    box-shadow: 0 0 0 5px rgba(85, 203, 228, 0.12);
  }

  .about-overview .about-principles,
  .about-overview .about-goal-list,
  .about-overview .about-overview__detail-grid {
    grid-template-columns: 1fr;
  }

  .about-overview .about-principle p {
    min-height: 0;
  }

  .about-overview .about-goal-list > li {
    min-height: 0;
  }

  .about-overview .about-overview__action {
    justify-content: stretch;
  }

  .about-overview .about-overview__button {
    width: 100%;
  }

  .about-overview .about-overview__image-grid {
    grid-template-columns: repeat(3, minmax(74%, 1fr));
    width: 100%;
    margin: 0;
    padding: 0 0 8px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
  }

  .about-overview .about-overview__image-card {
    scroll-snap-align: start;
  }

  .about-overview .about-overview__detail--wide {
    grid-column: auto;
  }

  .about-overview .about-overview__ladder-panel .ladder_card._step1 { margin-left: 0; }
  .about-overview .about-overview__ladder-panel .ladder_card._step2 { margin-left: 7px; }
  .about-overview .about-overview__ladder-panel .ladder_card._step3 { margin-left: 14px; }
  .about-overview .about-overview__ladder-panel .ladder_card._step4 { margin-left: 21px; }
  .about-overview .about-overview__ladder-panel .ladder_card._step5 { margin-left: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  .about-overview .about-overview__button,
  .about-overview .about-overview__image-card img {
    transition: none;
  }
}
