@charset "utf-8";

/* =============================================================

fv

*  ============================================================= */

.fv {
  background-color: #fef1dc;
}

.fv__bg {
  position: relative;
  min-height: 760px;
  max-width: 1392px;
  margin: 0 auto;
  background-image: url("../img/home/fv-bg.webp");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  overflow: hidden;
}

.fv__bg::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  width: 60px;
  height: 100%;
  background: linear-gradient(to right, rgba(254, 241, 220, 0), #fef1dc);
  pointer-events: none;
}

.fv__inner {
  position: relative;
  z-index: 1;
  width: 91.25%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 160px 0 0 20px;
}

.fv__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 28px;
  border-radius: 999px;
  color: #dd8421;
  font-size: 1.3rem;
  font-weight: 500;
  background-color: #fff;
}

.fv__title {
  margin-top: 20px;
  font-size: 5rem;
  font-weight: 900;
  line-height: 1.3;
}

.fv__title span {
  color: #f5aa00;
}

.fv__body {
  margin-top: 56px;
}

.fv__lead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  column-gap: 10px;
  align-items: start;
}

.fv__text {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.12em;
}

.fv__cards {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  gap: 12px;
  width: 100%;
}

.fv__card {
  display: flex;
  align-items: center;
  min-height: 66px;
  padding: 12px 20px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.6);
}

.fv__card-label {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 30px;
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(to right, #f58d00, #ffc21c);
  font-size: 1.4rem;
}

.fv__card-text {
  margin-left: 20px;
  font-size: 1.7rem;
  letter-spacing: 0.12em;
}

.fv__body .cta-button {
  margin-top: 64px;
}

@media (max-width: 1100px) {
  .fv__inner {
    padding-left: 0;
  }
}

@media (max-width: 1024px) {
  .fv__title {
    font-size: 4.4rem;
  }

  .fv__text {
    font-size: 1.4rem;
  }

  .fv__cards {
    width: 390px;
  }

  .fv__card {
    padding: 12px 20px;
  }

  .fv__card-text {
    margin-left: 18px;
    font-size: 1.6rem;
  }
}

@media (max-width: 960px) {
  .fv__bg {
    min-height: auto;
    max-width: none;
    background-position: right -280px top;
  }

  .fv__inner {
    max-width: 560px;
    padding: 120px 0 64px;
  }

  .fv__title {
    font-size: 3.6rem;
  }

  .fv__lead {
    display: block;
  }

  .fv__cards {
    position: static;
    width: 100%;
    margin-top: 40px;
  }

  .fv__card {
    border: 1px solid rgba(245, 170, 0, 0.24);
  }

  .fv__body .cta-button {
    margin-top: 40px;
  }
}

@media (max-width: 560px) {
  .fv {
    background-color: transparent;
  }

  .fv__bg {
    background-image: none;
  }

  .fv__title {
    font-size: 9.6vw;
  }

  .fv__cards {
    margin-top: 32px;
    gap: 10px;
  }

  .fv__card {
    min-height: 58px;
    padding: 12px 10px;
    background-color: rgba(255, 255, 255, 0.96);
  }

  .fv__card-label {
    width: 76px;
    height: 28px;
  }

  .fv__card-text {
    margin-left: 14px;
    font-size: 4vw;
  }
}

/* =============================================================

section-layout

*  ============================================================= */

.section-layout {
  padding: 160px 0 0;
}

.section-layout__inner {
  width: 91.25%;
  max-width: 1280px;
  margin: 0 auto;
}

.section-layout__title-block {
  container-type: inline-size;
}

.section-layout__en-title {
  display: flex;
  align-items: flex-end;
  font-family: var(--font-en);
  color: #f5aa00;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.04em;
}

.section-layout__en-title::before {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 40px;
  height: 1px;
  margin-right: 10px;
  background-color: #f5aa00;
}

.section-layout__title {
  margin-top: 40px;
  font-size: clamp(3.6rem, calc(2.34375cqw + 1.2rem), 4.2rem);
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.12em;
}

.section-layout__content {
  width: 970px;
  margin-top: 56px;
}

@media (max-width: 1024px) {
  .section-layout__content {
    width: 100%;
  }
}

@media (max-width: 960px) {
  .section-layout__inner {
    max-width: 560px;
  }

  .section-layout__en-title::before {
    display: none;
  }

  .section-layout__title {
    font-size: 2.8rem;
  }
}

@media (max-width: 560px) {
  .section-layout__title {
    font-size: 7.2vw;
    line-height: 1.6;
  }
}

/* =============================================================

cta-button

*  ============================================================= */

.cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 320px;
  height: 56px;
  padding-left: 20px;
  padding-right: 48px;
  border: 2px solid #fff;
  border-radius: 56px;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  background-color: #f58d00;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.cta-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 10px solid #fff;
  transform: translateY(-50%);
}

.cta-button:hover {
  opacity: 0.78;
  transform: translateY(-2px);
}

@media (max-width: 560px) {
  .cta-button {
    width: 100%;
    font-size: 1.5rem;
  }
}

/* =============================================================

fadeup animation

*  ============================================================= */

.js-fadeup,
.js-stagger-item {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 1.2s ease-out,
    transform 1.2s ease-out;
  will-change: opacity, transform;
}

.js-fadeup.is-visible,
.js-stagger-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================================

coverage

*  ============================================================= */

.coverage {
  padding: 64px 0 0;
}

.coverage__inner {
  position: relative;
}

.coverage__content {
  position: relative;
  z-index: 1;
  margin-left: 40px;
}

.coverage__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.coverage__card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 480px;
  padding: 20px 16px 56px;
  border: 3px solid #fff;
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.24);
}

.coverage__num {
  color: #f5aa00;
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 400;
}

.coverage__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin: 18px auto 0;
}

.coverage__card-title {
  margin-top: 40px;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
}

.coverage__list {
  display: grid;
  gap: 10px;
  margin-top: 40px;
}

.coverage__list li {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 8px;
  background-color: rgba(245, 170, 0, 0.12);
  font-size: 1.4rem;
  text-align: center;
}

.coverage__tags {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: auto;
}

.coverage__tags li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 28px;
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(to right, #f58d00, #ffc21c);
  font-size: 1.4rem;
}

.coverage__arrow {
  position: absolute;
  right: 38px;
  bottom: 20px;
  left: 0;
  z-index: 0;
  height: 10px;
  background-color: #f8b500;
  pointer-events: none;
}

.coverage__arrow::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: 0;
  width: 40px;
  height: 32px;
  background-color: #f5aa00;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}

@media (max-width: 1170px) {
  .coverage__content {
    margin-left: 0;
  }

  .coverage__arrow {
    position: absolute;
    right: -20px;
    bottom: 20px;
  }

  .coverage__arrow::after {
    position: absolute;
    right: -30px;
    bottom: 0;
    width: 32px;
    height: 24px;
  }
}

@media (max-width: 1100px) {
  .coverage__content {
    margin-left: 0;
  }

  .coverage__card-title {
    font-size: 1.9rem;
  }
}

@media (max-width: 960px) {
  .coverage__cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .coverage__card {
    min-height: auto;
    padding: 20px 16px 32px;
  }

  .coverage__card-title {
    margin-top: 28px;
  }

  .coverage__list {
    margin-top: 28px;
  }

  .coverage__tags {
    margin-top: 32px;
  }

  .coverage__arrow {
    display: none;
  }
}

@media (max-width: 560px) {
  .coverage__card-title {
    font-size: 6.4vw;
  }

  .coverage__card {
    border: 3px solid #feeed0;
    background-color: rgba(255, 255, 255, 0.8);
  }

  .coverage__list li {
    padding: 16px 0;
    font-size: 4.4vw;
  }

  .coverage__tags li {
    width: 88px;
    padding: 16px 0;
    font-size: 4vw;
  }
}

/* =============================================================

issues

*  ============================================================= */

.issues {
  position: relative;
  background-color: #fef1dc;
  overflow: hidden;
}

.issues::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  height: 280px;
  background-color: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.issues__inner {
  position: relative;
  z-index: 1;
}

.issues__stage {
  position: relative;
  margin-top: 56px;
}

.issues__visual {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  width: 400px;
  height: 560px;
  background-image: url("../img/home/issues-bg.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  pointer-events: none;
}

.issues__content {
  position: relative;
  z-index: 1;
  margin-top: 0;
  margin-left: 12%;
  padding: 80px 0 40px;
  border-bottom: 10px solid #000;
}

.issues__left {
  margin-left: 40px;
}

.issues__list {
  display: grid;
  gap: 10px;
  width: 400px;
}

.issues__item {
  display: flex;
  align-items: center;
  height: 56px;
  padding: 0 28px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.issues__message {
  width: 560px;
  margin-top: 40px;
  padding: 28px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.55;
  letter-spacing: 0.12em;
}

.issues__text {
  position: absolute;
  top: 136px;
  right: 40px;
  width: 420px;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.12em;
}

@media (max-width: 1100px) {
  .issues__content {
    margin-left: 0;
  }

  .issues__text {
    position: absolute;
    top: 136px;
    right: 0;
  }
}

@media (max-width: 960px) {
  .issues__stage {
    display: flex;
    flex-direction: column;
  }

  .issues__visual {
    display: none;
  }

  .issues__content {
    display: flex;
    flex-direction: column;
    min-height: auto;
    margin-left: 0;
    padding: 40px 0 10px;
  }

  .issues__left {
    display: contents;
    margin-left: 0;
  }

  .issues__list {
    order: 1;
    width: 100%;
  }

  .issues__message {
    order: 2;
    width: 100%;
    margin-top: 40px;
  }

  .issues__text {
    position: static;
    order: 3;
    width: 100%;
    margin-top: 40px;
    padding-bottom: 56px;
    font-size: 1.4rem;
  }
}

@media (max-width: 560px) {
  .issues__stage {
    margin-top: 32px;
  }

  .issues__content {
    padding-top: 32px;
  }

  .issues__item {
    padding: 0 16px;
    font-size: 4.4vw;
  }

  .issues__message {
    margin-top: 32px;
    padding: 16px;
    font-size: 5.2vw;
  }

  .issues__text {
    margin-top: 32px;
    padding-bottom: 48px;
    font-size: 4vw;
  }
}

/* =============================================================

solution

*  ============================================================= */

.solution {
  position: relative;
  overflow: hidden;
}

.solution__inner {
  position: relative;
}

.solution__stage {
  margin-top: -16px;
}

.solution__canvas {
  position: relative;
  min-height: 560px;
}

.solution__visual {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 400px;
  height: 560px;
  background-image: url("../img/home/solution-bg.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  pointer-events: none;
}

.solution__content {
  position: relative;
  z-index: 1;
  min-height: 560px;
  margin-top: 0;
  padding: 64px 0;
  border-bottom: 10px solid #f8b500;
}

.solution__list {
  display: grid;
  gap: 20px;
  width: 640px;
  margin-left: 40px;
}

.solution__item {
  padding: 28px 24px 20px;
  border-radius: 12px;
  background-color: rgba(245, 170, 0, 0.1);
}

.solution__item-heading {
  display: flex;
  align-items: center;
}

.solution__check {
  flex-shrink: 0;
  width: 18px;
  height: auto;
  margin-right: 18px;
}

.solution__item-title {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0.08em;
}

.solution__item-title span {
  color: #f58d00;
}

.solution__item-text {
  margin-top: 8px;
  font-size: 1.4rem;
  line-height: 1.8;
  letter-spacing: 0.12em;
}

@media (max-width: 1100px) {
  .solution__list {
    margin-left: 0;
  }

  .solution__visual {
    right: -80px;
  }
}

@media (max-width: 960px) {
  .solution__stage {
    margin-top: 0;
  }

  .solution__canvas {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .solution__content {
    order: 1;
    min-height: auto;
  }

  .solution__list {
    width: 100%;
    margin-left: 0;
  }

  .solution__visual {
    display: none;
  }
}

@media (max-width: 560px) {
  .solution__content {
    padding: 40px 0 64px;
  }

  .solution__list {
    gap: 16px;
  }

  .solution__item {
    padding: 24px 16px 20px;
  }

  .solution__check {
    width: 14px;
    margin-right: 10px;
  }

  .solution__item-title {
    font-size: 5.8vw;
    letter-spacing: 0.05em;
  }

  .solution__item-text {
    margin-top: 10px;
    font-size: 1.3rem;
    line-height: 1.8;
  }

  .solution__visual {
    margin-top: 32px;
  }
}

/* =============================================================

difference

*  ============================================================= */

.difference {
  padding-bottom: 80px;
}

.difference__content {
  margin-left: 40px;
}

.difference__scroll {
  width: 100%;
}

.difference__image {
  width: 970px;
}

@media (max-width: 1100px) {
  .difference__content {
    margin-left: 0;
  }
}

@media (max-width: 1024px) {
  .difference__image {
    width: 100%;
  }
}

@media (max-width: 960px) {
  .section-layout__content.difference__content {
    margin-top: 16px;
  }

  .difference__scroll {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  .difference__image {
    width: 900px;
    max-width: none;
  }

  .difference__image img {
    max-width: none;
  }
}

/* =============================================================

ai-powered

*  ============================================================= */

.ai-powered {
  position: relative;
  padding: 80px 0;
  background-color: #fef1dc;
  background-image: url("../img/home/AI-Powered-bg.webp");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: cover;
  overflow: hidden;
}

.ai-powered__content {
  margin-left: 40px;
}

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

.ai-powered__card {
  min-height: 400px;
  padding: 20px;
  border: 3px solid #fff;
  border-radius: 20px;
  background-color: rgba(245, 170, 0, 0.1);
}

.ai-powered__card-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.ai-powered__en-title {
  color: #f5aa00;
  font-family: var(--font-en);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.ai-powered__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
}

.ai-powered__card-body {
  margin-top: 56px;
}

.ai-powered__card-title {
  font-size: 2.4rem;
  font-weight: 700;
}

.ai-powered__card-text {
  margin-top: 40px;
  font-size: 1.4rem;
  line-height: 1.2;
  letter-spacing: 0.12em;
}

.ai-powered__detail-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.ai-powered__detail-list li {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 10px 16px;
  border-radius: 10px;
  color: #fff;
  background-color: #f5aa00;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}

.ai-powered__detail-list li br.lstbr {
  display: none;
}

@media (max-width: 1100px) {
  .ai-powered__content {
    margin-left: 0;
  }
}

@media (max-width: 1024px) {
  .ai-powered__detail-list li br.lstbr {
    display: block;
  }
}

@media (max-width: 960px) {
  .ai-powered {
    background-position: center;
  }

  .ai-powered__list {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .ai-powered__card {
    min-height: auto;
  }

  .ai-powered__card-body {
    margin-top: 40px;
  }

  .ai-powered__card-text {
    margin-top: 28px;
  }
}

@media (max-width: 560px) {
  .ai-powered__list {
    gap: 20px;
  }

  .ai-powered__card {
    padding: 20px 16px;
  }

  .ai-powered__card-body {
    margin-top: 32px;
  }

  .ai-powered__card-title {
    font-size: 6.4vw;
  }

  .ai-powered__card-text {
    margin-top: 24px;
  }

  .ai-powered__detail-list li {
    font-size: 4.8vw;
  }
}

/* =============================================================

faq

*  ============================================================= */

.faq-section {
  padding-top: 80px;
}

.faq-section__content {
  margin-left: 40px;
}

.faq {
  width: 100%;
}

.faq__item {
  border: 1px solid #f5aa00;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.4);
}

.faq__item + .faq__item {
  margin-top: 24px;
}

.faq__heading {
  margin: 0;
}

.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 24px 16px;
  border: 0;
  color: #000;
  background: transparent;
  font-family: var(--font-ja);
  letter-spacing: 0.12em;
  text-align: left;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.faq__qText {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: left;
}

.faq__icon {
  position: relative;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
}

.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #f5aa00;
  transform: translate(-50%, -50%);
  transition: opacity 0.25s ease;
}

.faq__icon::before {
  width: 16px;
  height: 2px;
}

.faq__icon::after {
  width: 2px;
  height: 16px;
}

.faq__item.is-open .faq__icon::after {
  opacity: 0;
}

.faq__a {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}

.faq__aInner {
  padding: 16px;
  font-family: var(--font-ja);
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.08em;
}

@media (max-width: 1100px) {
  .faq-section__content {
    margin-left: 0;
  }
}

@media (max-width: 960px) {
  .faq__item + .faq__item {
    margin-top: 16px;
  }

  .faq__q {
    padding: 18px 16px;
  }

  .faq__aInner {
    padding: 0 16px 20px;
  }
}

@media (max-width: 480px) {
  .faq__qText {
    font-size: 4.8vw;
  }

  .faq__aInner {
    font-size: 4.4vw;
  }
}

/* =============================================================

flow

*  ============================================================= */

.flow {
  position: relative;
}

.flow__lead {
  margin-top: 40px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.12em;
}

.flow__content {
  margin-left: 40px;
  padding-bottom: 0;
}

.flow__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.flow__item {
  position: relative;
  isolation: isolate;
  min-height: 420px;
  padding: 20px 20px 32px;
  background-color: transparent;
}

.flow__item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border: 3px solid #fff;
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.3);
  pointer-events: none;
}

.flow__item::after {
  content: "";
  position: absolute;
  top: 40px;
  right: -10px;
  z-index: -1;
  width: 120px;
  height: 10px;
  background-color: #f5aa00;
  pointer-events: none;
}

.flow__item-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}

.flow__step {
  flex-shrink: 0;
  color: #f5aa00;
  font-family: var(--font-en);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
}

.flow__item-body {
  position: relative;
  z-index: 1;
  margin-top: 64px;
}

.flow__item-title {
  min-height: 68px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
}

.flow__item-text {
  margin-top: 40px;
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.12em;
}

/* =============================================================

flow CTA

*  ============================================================= */

.flow-cta {
  margin-top: -20px;
  padding: 112px 0 48px;
  color: #fff;
  background-color: #f5aa00;
}

.flow-cta__inner {
  width: 91.25%;
  max-width: 1280px;
  margin: 0 auto;
}

.flow-cta__title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0.1em;
}

.flow-cta__button {
  margin-top: 32px;
  background-color: #f58d00;
}

@media (max-width: 1100px) {
  .flow__content {
    margin-left: 0;
  }

  .flow__list {
    gap: 20px;
  }

  .flow__item {
    padding-right: 16px;
    padding-left: 16px;
  }

  .flow__item-title {
    font-size: 2.1rem;
  }
}

@media (max-width: 960px) {
  .flow__lead {
    margin-top: 32px;
    font-size: 1.4rem;
  }

  .flow__list {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .flow__item {
    min-height: auto;
    padding: 24px 20px 28px;
  }

  .flow__item::after {
    top: 40px;
    right: -10px;
    width: 120px;
    height: 10px;
  }

  .flow__item-body {
    margin-top: 40px;
  }

  .flow__item-title {
    min-height: auto;
    font-size: 2.2rem;
  }

  .flow__item-text {
    margin-top: 24px;
  }

  .flow-cta {
    margin-top: 0;
    padding: 80px 0 48px;
  }

  .flow-cta__inner {
    max-width: 560px;
  }

  .flow-cta__title {
    font-size: 3rem;
  }
}

@media (max-width: 560px) {
  .flow__lead {
    font-size: 1.3rem;
    line-height: 1.9;
  }

  .flow__item {
    padding: 20px 16px 24px;
  }

  .flow__item::before {
    border-width: 2px;
    border-radius: 16px;
  }

  .flow__item::after {
    top: 32px;
    right: -8px;
    width: 96px;
    height: 8px;
  }

  .flow__step {
    font-size: 1.3rem;
  }

  .flow__item-body {
    margin-top: 32px;
  }

  .flow__item-title {
    font-size: 5.8vw;
  }

  .flow-cta {
    margin-top: 40px;
    padding: 64px 0 40px;
  }

  .flow-cta__title {
    font-size: 7.4vw;
    line-height: 1.5;
  }

  .flow-cta__button {
    margin-top: 28px;
  }
}
