/* ============================================================
   AO HP ページ専用スタイル
   /so/hp
============================================================ */

.page-so-hp {
  /* ページスコープ CSS 変数 */
  --color-primary: #087464;
  --color-primary-dark: #065a4e;
  --color-primary-10: rgba(8, 116, 100, 0.1);
  --color-primary-50: rgba(8, 116, 100, 0.5);
  --grad-cta-mid: linear-gradient(90deg, #0a9080 0%, #087464 100%);

  background: #fff;
  padding-top: var(--header-height);
}

/* ============================================================
   ファーストビュー（hp 固有：箇条書き）
============================================================ */

.hp-fv {
  margin: 0 20px;
  border-radius: 10px;
}

/* ---- 箇条書き ---- */
.hp-fv__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hp-fv__bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  letter-spacing: 0.06em;
  line-height: 1.4;
  font-feature-settings: "palt" 1;
}

.hp-fv__bullets li svg {
  flex-shrink: 0;
}

.page-fv__btn--white {
  background: #fff;
  color: #087464;
}


/* ============================================================
   お悩みセクション（About）
============================================================ */

.hp-about {
  padding: 100px 0;
  background: linear-gradient(180deg, rgba(0, 73, 90, 0) 9.95%, rgba(0, 73, 90, 0.08) 91.51%);
}

/* ---- セクションヘッダー ---- */
.hp-about__head {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-bottom: 60px;
}

.hp-about__headline {
  font-weight: 700;
  font-size: 34px;
  color: #2a2d2a;
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-align: center;
  margin: 0;
  font-feature-settings: "palt" 1;
}

.hp-about__headline-accent {
  color: var(--color-primary);
  text-decoration: underline;
  text-decoration-color: rgba(8, 116, 100, 0.4);
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
  text-decoration-style: wavy;
}

/* ---- ペルソナ2カラム ---- */
.hp-about__personas {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-bottom: 80px;
}

.hp-about__persona {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

/* 背景アーク（半円の線） */
.hp-about__persona-arc {
  position: absolute;
  width: 363px;
  height: 136px;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  pointer-events: none;
  display: block;
}

.hp-about__persona-top,
.hp-about__pills {
  position: relative;
  z-index: 1;
}

.hp-about__persona-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.hp-about__persona-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px dashed rgba(42, 45, 42, 0.4);
  background: rgba(42, 45, 42, 0.08);
  flex-shrink: 0;
}

.hp-about__persona-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  display: block;
}

.hp-about__persona-label {
  font-weight: 700;
  font-size: 20px;
  color: #2a2d2a;
  letter-spacing: 0.01em;
  line-height: 1.5;
  margin: 0;
}

/* ---- ピルカード ---- */
.hp-about__pills {
  display: flex;
  flex-direction: row;
  align-items: center;
}

/* 重ねる効果（右側が前面に来るよう z-index を付ける） */
.hp-about__pills .hp-about__pill:not(:last-child) {
  margin-right: -20px;
}

.hp-about__pills .hp-about__pill:nth-child(1) {
  z-index: 1;
}

.hp-about__pills .hp-about__pill:nth-child(2) {
  z-index: 2;
}

.hp-about__pills .hp-about__pill:nth-child(3) {
  z-index: 3;
}

.hp-about__pill {
  position: relative;
  width: 170px;
  height: 170px;
  border-radius: 85px;
  border: 1px solid rgba(42, 45, 42, 0.1);
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  box-sizing: border-box;
  flex-shrink: 0;
}

.hp-about__pill p {
  font-weight: 700;
  font-size: 16px;
  color: #2a2d2a;
  letter-spacing: 0.06em;
  line-height: 1.4;
  margin: 0;
  font-feature-settings: "palt" 1;
}

.hp-about__pill p strong {
  color: var(--color-primary);
}

/* ---- 矢印 ---- */
.hp-about__arrow {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.hp-about__arrow img {
  display: block;
  height: auto;
}

/* ---- CTAバナー ---- */
.hp-about__cta-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 40px;
  background: linear-gradient(180deg, var(--color-primary-10) 0%, rgba(0, 0, 0, 0) 100%);
  text-align: center;
  margin-bottom: 40px;
}

.hp-about__cta-sub {
  font-size: 14px;
  color: #2a2d2a;
  letter-spacing: 0.06em;
  line-height: 1.4;
  margin: 0;
}

.hp-about__cta-headline {
  font-weight: 700;
  font-size: 30px;
  color: #2a2d2a;
  line-height: 1.3;
  letter-spacing: 0.04em;
  margin: 0;
  font-feature-settings: "palt" 1;
}

.hp-about__cta-headline strong {
  color: var(--color-primary);
}

/* ---- プレビュー画像（全幅スクロール） ---- */
.hp-about__previews {
  overflow: hidden;
  width: 100%;
}

.hp-about__previews-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: hp-previews-scroll 18s linear infinite;
}

@keyframes hp-previews-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.hp-about__preview-img {
  width: 400px;
  height: auto;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid rgba(42, 45, 42, 0.05);
  flex-shrink: 0;
}

.hp-about__preview-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   irohana hpとは？
============================================================ */

.hp-what {
  padding: 100px 0;
  background: #fff;
}

.hp-what__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  margin-bottom: 60px;
}

.hp-what__headline {
  font-weight: 700;
  font-size: 34px;
  color: #2a2d2a;
  line-height: 1.4;
  letter-spacing: 0.06em;
  margin: 0;
  font-feature-settings: "palt" 1;
}

.hp-what__headline-accent {
  color: var(--color-primary);
}

.hp-what__desc {
  font-size: 16px;
  color: #2a2d2a;
  line-height: 1.75;
  letter-spacing: 0.06em;
  margin: 0;
  font-feature-settings: "palt" 1;
}

/* ---- デモバナー ---- */
.hp-what__demo {
  position: relative;
  min-height: 280px;
  border-radius: 10px;
  overflow: hidden;
  background: url('../img/hp/what_demo_bg.jpg') center / cover no-repeat;
  display: flex;
  align-items: center;
  margin-bottom: 70px;
}


.hp-what__demo-body {
  position: relative;
  z-index: 1;
  padding: 40px 60px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 50%;
}

.hp-what__demo-sub {
  font-size: 16px;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin: 0;
}

.hp-what__demo-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 50px;
  padding: 0 20px;
  border: 1px solid #fff;
  border-radius: 5px;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.05em;
  font-feature-settings: "palt" 1;
  transition: var(--transition-opacity);
  align-self: flex-start;
}

.hp-what__demo-btn:hover {
  opacity: 0.8;
}

.hp-what__demo-img {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  max-width: 55%;
}

.hp-what__demo-img img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 5px;
}

/* ---- タブ + フィーチャー ---- */
.hp-what__body {
  background: #F0F7F5;
  border-radius: 10px;
  overflow: hidden;
}

.hp-what__tabs {
  display: flex;
}

.hp-what__tab {
  flex: 1;
  padding: 24px 20px;
  font-weight: 700;
  font-size: 18px;
  color: #2a2d2a;
  letter-spacing: 0.06em;
  background: #fff;
  border: 1px solid rgba(42, 45, 42, 0.1);
  border-bottom: none;
  cursor: pointer;
  transition: var(--transition-opacity);
  text-align: center;
  font-feature-settings: "palt" 1;
}

.hp-what__tab--active {
  color: var(--color-primary);
  background: #F0F7F5;
  border-top: 3px solid var(--color-primary);
}

/* ---- フィーチャー ---- */
.hp-what__tab-panel {
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
}

.hp-what__tab-panel[hidden] {
  display: none;
}

.hp-what__feature {
  display: flex;
  gap: 30px;
  padding: 50px 0;
}

.hp-what__divider {
  height: 1px;
  background: rgba(42, 45, 42, 0.1);
}

.hp-what__feature-num {
  font-weight: 600;
  font-size: 28px;
  color: #2a2d2a;
  line-height: 1.7;
  flex-shrink: 0;
  width: 30px;
}

.hp-what__feature-content {
  flex: 1;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.hp-what__feature-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hp-what__feature-title {
  font-weight: 700;
  font-size: 30px;
  color: var(--color-primary);
  line-height: 1.4;
  letter-spacing: 0.06em;
  margin: 0;
  font-feature-settings: "palt" 1;
}

.hp-what__feature-body {
  font-size: 16px;
  color: #2a2d2a;
  line-height: 1.75;
  letter-spacing: 0.06em;
  margin: 0;
  font-feature-settings: "palt" 1;
}

.hp-what__feature-img {
  flex-shrink: 0;
  width: 390px;
  height: 258px;
  border-radius: 10px;
  border: 1px solid rgba(8, 116, 100, 0.1);
  overflow: hidden;
}

.hp-what__feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   料金プラン
============================================================ */

.hp-price {
  padding: 100px 0;
  background: #fff;
}

.hp-price__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 60px;
}

.hp-price__headline {
  font-weight: 700;
  font-size: 34px;
  color: #2a2d2a;
  line-height: 1.4;
  letter-spacing: 0.06em;
  margin: 0;
  font-feature-settings: "palt" 1;
}

.hp-price__desc {
  font-size: 16px;
  color: #2a2d2a;
  line-height: 1.75;
  letter-spacing: 0.06em;
  margin: 0;
}

/* ---- グリッド ---- */
.hp-price__grid {
  display: grid;
  grid-template-columns: 120px repeat(3, 1fr);
  padding-top: 36px;
  /* バッジの高さ分 */
}

.hp-price__grid-spacer {
  /* ラベル列の空セル */
}

/* ---- ラベル列 ---- */
.hp-price__label {
  display: flex;
  align-items: center;
  padding: 16px 0;
  font-size: 12px;
  color: #2a2d2a;
  letter-spacing: 0.06em;
  line-height: 1.4;
  border-top: 1px solid rgba(42, 45, 42, 0.08);
}

/* ---- プランヘッド ---- */
.hp-price__plan-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 40px 24px;
  text-align: center;
  position: relative;
}

.hp-price__plan-head--light,
.hp-price__plan-head--pro {
  background: #fff;
  border: 1px solid rgba(42, 45, 42, 0.1);
  border-radius: 10px 10px 0 0;
  border-bottom: none;
}

.hp-price__plan-head--std {
  background: #F0F7F5;
  border: 2px solid var(--color-primary);
  border-radius: 10px 10px 0 0;
  border-bottom: none;
}

/* ---- おすすめバッジ ---- */
.hp-price__badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 10px 40px;
  border-radius: 5px 5px 0 0;
  white-space: nowrap;
}

/* ---- プラン名・価格 ---- */
.hp-price__plan-name {
  font-weight: 700;
  font-size: 18px;
  color: #2a2d2a;
  letter-spacing: 0.06em;
  line-height: 1.3;
  margin: 0;
}

.hp-price__plan-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.hp-price__price-label {
  font-size: 14px;
  color: #2a2d2a;
}

.hp-price__price-amount {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.hp-price__price-symbol {
  font-weight: 700;
  font-size: 16px;
  color: #2a2d2a;
}

.hp-price__price-num {
  font-weight: 700;
  font-size: 44px;
  color: #2a2d2a;
  line-height: 1;
}

.hp-price__price-tax {
  font-size: 12px;
  color: rgba(42, 45, 42, 0.6);
}

/* ---- フィーチャーセル ---- */
.hp-price__cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  font-size: 14px;
  color: #2a2d2a;
  letter-spacing: 0.06em;
  text-align: center;
  border-top: 1px solid rgba(42, 45, 42, 0.08);
}

.hp-price__cell--light,
.hp-price__cell--pro {
  border-left: 1px solid rgba(42, 45, 42, 0.1);
  border-right: 1px solid rgba(42, 45, 42, 0.1);
  background: #fff;
}

.hp-price__cell--std {
  border-left: 2px solid var(--color-primary);
  border-right: 2px solid var(--color-primary);
  background: #F0F7F5;
}

.hp-price__cell strong {
  font-size: 16px;
  font-weight: 700;
  color: #2a2d2a;
}

.hp-price__val-sub {
  font-size: 12px;
  color: rgba(42, 45, 42, 0.6);
}

.hp-price__check {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
}

.hp-price__cross {
  font-size: 18px;
  color: rgba(42, 45, 42, 0.3);
}

/* ---- CTAセル ---- */
.hp-price__cta-cell {
  display: flex;
  justify-content: center;
  padding: 30px 24px;
  border-top: 1px solid rgba(42, 45, 42, 0.08);
}

.hp-price__cta-cell--light,
.hp-price__cta-cell--pro {
  background: #fff;
  border-left: 1px solid rgba(42, 45, 42, 0.1);
  border-right: 1px solid rgba(42, 45, 42, 0.1);
  border-bottom: 1px solid rgba(42, 45, 42, 0.1);
  border-radius: 0 0 10px 10px;
}

.hp-price__cta-cell--std {
  background: #F0F7F5;
  border-left: 2px solid var(--color-primary);
  border-right: 2px solid var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  border-radius: 0 0 10px 10px;
}

.hp-price__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  height: 50px;
  padding: 0 20px;
  background: #087464;
  border-radius: 5px;
  font-weight: 500;
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: var(--transition-opacity);
}

.hp-price__cta-btn:hover {
  opacity: 0.85;
}

/* SPカード（デフォルト非表示） */
.hp-price__cards {
  display: none;
}

.hp-price__note {
  text-align: center;
  font-size: 13px;
  color: #666;
  margin: 30px 0 0;
  letter-spacing: 0.04em;
}

/* ============================================================
   制作の流れ
============================================================ */

.hp-flow {
  padding: 100px 0;
  background: #fff;
}

.hp-flow__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  margin-bottom: 80px;
}

.hp-flow__headline {
  font-weight: 700;
  font-size: 34px;
  color: #2a2d2a;
  line-height: 1.4;
  letter-spacing: 0.06em;
  margin: 0;
  font-feature-settings: "palt" 1;
}

.hp-flow__desc {
  font-size: 16px;
  color: #2a2d2a;
  line-height: 1.75;
  letter-spacing: 0.06em;
  margin: 0;
  font-feature-settings: "palt" 1;
}

/* ---- ステップ ---- */
.hp-flow__steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.hp-flow__steps::before {
  content: '';
  position: absolute;
  left: 9px;
  top: 28px;
  bottom: 28px;
  border-left: 2px dashed var(--color-primary-10);
}

.hp-flow__step {
  display: flex;
  align-items: center;
  gap: 50px;
}

.hp-flow__step-num {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.hp-flow__step-dot {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-primary);
  position: relative;
  z-index: 1;
}

.hp-flow__step-label {
  font-weight: 500;
  font-size: 20px;
  color: var(--color-primary);
  letter-spacing: 0.05em;
  line-height: 1.4;
}

.hp-flow__step-content {
  display: flex;
  align-items: center;
  gap: 60px;
  flex: 1;
}

.hp-flow__step-img {
  flex-shrink: 0;
  width: 177px;
  height: 117px;
  border-radius: 10px;
  border: 1px solid rgba(8, 116, 100, 0.1);
  overflow: hidden;
}

.hp-flow__step-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hp-flow__step-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hp-flow__step-title {
  font-weight: 700;
  font-size: 24px;
  color: var(--color-primary);
  line-height: 1.4;
  letter-spacing: 0.05em;
  margin: 0;
  font-feature-settings: "palt" 1;
}

.hp-flow__step-body {
  font-size: 16px;
  color: #2a2d2a;
  line-height: 1.75;
  letter-spacing: 0.05em;
  margin: 0;
  font-feature-settings: "palt" 1;
}

/* ============================================================
   FAQ / CTA カラーオーバーライド
============================================================ */

.hp-faq .biz-faq__q-label {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.hp-faq .biz-faq__toggle {
  background: var(--color-primary);
}

.hp-cta .biz-cta__download {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

.hp-cta .biz-cta__col {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}

/* ============================================================
   Mobile  (max-width: 767px)
============================================================ */
@media (max-width: 767px) {

  /* FV */
  .hp-fv {
    margin: 0 10px;
    border-radius: 8px;
  }

  .hp-fv__bullets li {
    font-size: 15px;
  }

  /* About */
  .hp-about {
    padding: 60px 0;
  }

  .hp-about__head {
    margin-bottom: 40px;
  }

  .hp-about__headline {
    font-size: 22px;
  }

  .hp-about__personas {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
  }

  .hp-about__persona-arc {
    width: 280px;
    height: 100px;
  }

  .hp-about__pill {
    width: 130px;
    height: 130px;
  }

  .hp-about__pill p {
    font-size: 13px;
  }

  .hp-about__persona-label {
    font-size: 17px;
  }

  .hp-about__cta-headline {
    font-size: 22px;
  }

  .hp-about__cta-sub {
    font-size: 13px;
  }

  .hp-about__cta-banner {
    padding: 24px 20px;
  }

  .hp-about__preview-img {
    width: 280px;
  }

  /* What */
  .hp-what {
    padding: 60px 0;
  }

  .hp-what__head {
    margin-bottom: 40px;
  }

  .hp-what__headline {
    font-size: 22px;
  }

  .hp-what__desc {
    font-size: 14px;
  }

  .hp-what__demo {
    min-height: auto;
    flex-direction: column;
    margin-bottom: 40px;
  }

  .hp-what__demo-body {
    max-width: 100%;
    padding: 24px 20px;
  }

  .hp-what__demo-img {
    position: static;
    width: 100%;
    max-width: 100%;
    transform: none;
    padding: 0 20px 20px;
    box-sizing: border-box;
  }

  .hp-what__tab {
    font-size: 14px;
    padding: 16px 12px;
  }

  .hp-what__tab-panel {
    padding: 30px 20px;
  }

  .hp-what__feature {
    flex-direction: column;
    gap: 16px;
    padding: 30px 0;
  }

  .hp-what__feature-content {
    flex-direction: column;
    gap: 20px;
  }

  .hp-what__feature-title {
    font-size: 20px;
  }

  .hp-what__feature-body {
    font-size: 14px;
  }

  .hp-what__feature-img {
    width: 100%;
    height: auto;
  }

  /* Price */
  .hp-price {
    padding: 60px 0;
  }

  .hp-price__head {
    margin-bottom: 40px;
  }

  .hp-price__headline {
    font-size: 22px;
  }

  .hp-price__desc {
    font-size: 14px;
  }

  /* PCグリッド非表示、カード表示 */
  .hp-price__grid {
    display: none;
  }

  .hp-price__cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .hp-price__card {
    border-radius: 10px;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    background: #fff;
    border: 1px solid rgba(42, 45, 42, 0.1);
  }

  .hp-price__card--std {
    background: #F0F7F5;
    border: 2px solid var(--color-primary);
  }

  .hp-price__card-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: #fff;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.06em;
    padding: 6px 24px;
    border-radius: 20px;
    white-space: nowrap;
  }

  .hp-price__card-name {
    font-weight: 700;
    font-size: 18px;
    color: #2a2d2a;
    margin: 0;
  }

  .hp-price__card-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  .hp-price__card-features {
    width: 100%;
    margin: 0;
  }

  .hp-price__card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-top: 1px solid rgba(42, 45, 42, 0.08);
  }

  .hp-price__card-row dt {
    font-size: 13px;
    color: #2a2d2a;
  }

  .hp-price__card-row dd {
    font-size: 14px;
    color: #2a2d2a;
    margin: 0;
    font-weight: 500;
  }

  .hp-price__card .hp-price__cta-btn {
    width: 100%;
    justify-content: center;
  }

  /* Flow */
  .hp-flow {
    padding: 60px 0;
  }

  .hp-flow__head {
    margin-bottom: 40px;
  }

  .hp-flow__headline {
    font-size: 22px;
  }

  .hp-flow__desc {
    font-size: 14px;
  }

  .hp-flow__step {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hp-flow__step-content {
    flex-direction: column;
    gap: 16px;
    padding-left: 40px;
  }

  .hp-flow__step-img {
    width: 100%;
    height: auto;
  }

  .hp-flow__step-title {
    font-size: 18px;
  }

  .hp-flow__step-body {
    font-size: 14px;
  }

  .hp-flow__steps {
    gap: 40px;
  }
}