body {
  font-size: 16px;
  line-height: 1.5;
  font-family: "Noto Sans JP", "sans-serif";
  background: #fafafa;
  color: #29328b;
  letter-spacing: 0.1em;
}

.is-drawer-open {
  overflow: hidden;
  height: 100vh;
}

.hidden-sp {
  display: none;
}
@media screen and (min-width: 768px) {
  .hidden-sp {
    display: block;
  }
}

.hidden-pc {
  display: block;
}
@media screen and (min-width: 768px) {
  .hidden-pc {
    display: none;
  }
}

.inner {
  padding-left: 15px;
  padding-right: 15px;
  max-width: 400px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .inner {
    padding-right: 30px;
    padding-left: 30px;
    max-width: 1000px;
  }
}

.btn {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 350px;
  padding: 10px 0;
  text-align: center;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: bold;
  -webkit-transition: 0.15s ease;
  transition: 0.15s ease;
}
@media screen and (min-width: 768px) {
  .btn {
    padding: 10px 0;
  }
}
.btn:active {
  -webkit-transform: translateY(6px);
          transform: translateY(6px);
}
.btn:hover {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
@media screen and (min-width: 768px) {
  .btn {
    width: 300px;
  }
}
@media screen and (min-width: 768px) {
  .btn__text {
    font-weight: bold;
    font-size: 18px;
  }
}
.btn--mail {
  background: #fff;
  color: #000;
  -webkit-box-shadow: 0 6px 0 #919191;
          box-shadow: 0 6px 0 #919191;
  -webkit-transition: 0.15s ease;
  transition: 0.15s ease;
}
.btn--mail i {
  font-size: 23px;
  margin-left: 20px;
}
.btn--mail:active {
  -webkit-transform: translateY(6px);
          transform: translateY(6px);
}
.btn--line {
  background-color: #00cb42;
  color: #fff;
  -webkit-box-shadow: 0 6px 0 #0c8e30;
          box-shadow: 0 6px 0 #0c8e30;
  -webkit-transition: 0.15s ease;
  transition: 0.15s ease;
}
.btn--line img {
  width: 30px;
  margin-left: 15px;
}
.btn--line:active {
  -webkit-transform: translateY(6px);
          transform: translateY(6px);
}
.btn__icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.btn__icon--left {
  left: 20px;
}
.btn__icon--right {
  right: 20px;
}
.btn__text {
  display: inline-block;
  line-height: 1.1;
}

.header {
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0);
  }
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 0;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding: 10px 0;
  }
}
@media screen and (min-width: 768px) {
  .header__btn {
    background-color: #00cb42;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: 0.15s ease;
    transition: 0.15s ease;
    font-weight: 600;
    -webkit-transition: 0.6s opacity;
    transition: 0.6s opacity;
  }
  .header__btn:hover {
    opacity: 0.7;
  }
}
.header__btn img {
  width: 20px;
  margin-right: 10px;
}
.header__btn-text {
  margin-bottom: 2px;
  margin-right: 5px;
}
.header__logo {
  line-height: 70px;
}
.header__logo a img {
  width: 145px;
}
.header__nav {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
    color: #fff;
  }
}
.header__link {
  font-weight: 700;
  letter-spacing: 0.48px;
  white-space: nowrap;
}
.header__link:hover {
  color: #29328b;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.header__open {
  margin-top: 3px;
}
@media screen and (min-width: 768px) {
  .header__open {
    display: none;
  }
}

.drawer-icon {
  width: 36px;
  height: 21px;
  position: relative;
  z-index: 51;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  top: 10px;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  display: none;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(3) {
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
  top: 10px;
}
.drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 3px;
  border-radius: 6px;
  background: #006bcb;
  -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 9px;
}
.drawer-icon__bar:nth-of-type(3) {
  top: 18px;
}

.drawer-content {
  width: 320px;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: #29328b;
  z-index: 50;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
.drawer-content.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.drawer-content__menu {
  padding: 86px 20px 40px;
}
.drawer-content__link {
  display: block;
  padding-top: 14px;
  padding-bottom: 14px;
  text-align: right;
  font-weight: 500;
  color: #fff;
}
.drawer-content__button {
  margin-top: 14px;
  text-align: right;
  color: #fff;
}

.hero {
  position: relative;
  width: 100%;
  height: 450px;
  background-image: url("../img/hero-sp.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: left;
  -ms-flex-line-pack: center;
      align-content: center;
}
@media screen and (min-width: 768px) {
  .hero {
    background-image: url("../img/hero-pc.webp");
    height: 670px;
  }
}
.hero__title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .hero__title {
    font-size: 40px;
  }
}
.hero__lead {
  margin-top: 12px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .hero__lead {
    font-size: 18px;
  }
}
.hero__cta {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .hero__cta {
    font-size: 16px;
  }
}
.hero__content {
  max-width: 1000px;
}
@media screen and (min-width: 768px) {
  .hero__content {
    margin-left: 100px;
  }
}
.hero__content-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .hero__content-image {
    gap: 15px;
  }
}
.hero__content-image img {
  width: 80px;
}
@media screen and (min-width: 768px) {
  .hero__content-image img {
    width: 100px;
  }
}
.hero__content-image p {
  font-size: 12px;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .hero__content-image p {
    font-size: 14px;
  }
}
.hero__content-image li {
  text-align: center;
}
.hero__content-txt1 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .hero__content-txt1 {
    font-size: 33px;
  }
}
.hero__content-txt1 span {
  font-size: 33px;
  font-weight: 700;
  color: #fef030;
}
.hero__content-txt2 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .hero__content-txt2 {
    font-size: 54px;
  }
}
.hero__content-txt3 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  -webkit-transform: skewX(-10deg);
          transform: skewX(-10deg);
}
@media screen and (min-width: 768px) {
  .hero__content-txt3 {
    font-size: 42px;
  }
}

.cta {
  background-color: #006bcb;
  padding: 15px 0;
}
@media screen and (min-width: 768px) {
  .cta--fixed {
    position: fixed;
    bottom: 0px;
    left: 0;
    width: 100%;
    z-index: 1000;
  }
}
.cta__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 1075px) {
  .cta__btns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.cta .btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .cta .btns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 24px;
  }
}
.cta .tel {
  text-align: center;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
  margin-top: 20px;
  font-size: 16px;
  max-width: 400px;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) and (max-width: 1070px) {
  .cta .tel {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .cta .tel {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    text-align: left;
    margin-top: 0;
    margin-left: 20px;
    margin-right: 0;
    padding: 10px;
  }
}
.cta .tel__time {
  font-size: 11px;
  color: #000;
}
.cta .tel__holiday {
  display: block;
  margin-top: 4px;
  -webkit-box-flex: 14;
      -ms-flex: 14;
          flex: 14;
  opacity: 0.7;
  color: #000;
}
@media screen and (min-width: 768px) {
  .cta .tel__holiday {
    display: inline;
  }
}
.cta .tel__text {
  margin-top: 16px;
  line-height: 1.2;
  margin-top: 0;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .cta .tel__text {
    margin-top: 0;
  }
}
.cta .tel i {
  display: inline-block;
  margin-right: 8px;
  font-weight: bold;
  font-size: 24px;
  letter-spacing: 1px;
}
.cta .tel__number {
  font-size: 28px;
  font-weight: bold;
  text-decoration: none;
  color: #000;
  font-family: "futura-pt", "sans-serif";
}
@media screen and (min-width: 768px) {
  .cta .tel__number {
    font-size: 28px;
  }
}

.problem {
  padding: 80px 0;
  background-color: #f5f6f7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .problem {
    padding: 110px 0;
  }
}
.problem__content {
  text-align: center;
}
.problem__title {
  max-width: 400px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .problem__title {
    width: 525px;
  }
}
.problem__img {
  max-width: 450px;
  margin-top: 50px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .problem__img {
    margin-top: 60px;
    max-width: none;
  }
}

.solution {
  background-color: #29328b;
  padding: 80px 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .solution {
    padding: 110px 0;
  }
}
.solution__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.solution__word {
  position: relative;
  font-weight: bold;
}
.solution__word::after {
  content: "";
  position: absolute;
  left: 16px;
  bottom: -17px;
  width: 111px;
  height: 37px;
  background-image: url("/eizens-osaka/assets/img/solution__back.webp");
  background-repeat: no-repeat;
  background-size: contain;
}
.solution__txt {
  color: #fff;
  letter-spacing: 0.1em;
  font-weight: 600;
}
.solution__txt1 {
  max-width: 450px;
  width: 187px;
}
@media screen and (min-width: 768px) {
  .solution__txt1 {
    width: 260px;
  }
}
.solution__txt2 {
  font-size: 20px;
  line-height: 34px;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .solution__txt2 {
    font-size: 28px;
  }
}
.solution__txt3 {
  font-size: 20px;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .solution__txt3 {
    font-size: 28px;
  }
}
.solution__txt4 {
  font-weight: 400;
  font-size: 14px;
  text-align: justify;
  margin-top: 20px;
}
.solution__txt5 {
  font-size: 22px;
  margin-top: 40px;
}
.solution__word {
  font-size: 26px;
  color: #fef030;
}
@media screen and (min-width: 768px) {
  .solution__word {
    font-size: 36px;
  }
}
.solution__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .solution__images {
    display: none;
  }
}
.solution__images-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .solution__images-pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 40px;
    gap: 10px;
  }
}

.about {
  padding: 80px 0;
}
@media screen and (min-width: 768px) {
  .about {
    padding: 110px 0;
  }
}
.about__title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #29328b;
  -webkit-transform: skewX(-10deg);
          transform: skewX(-10deg);
  line-height: 0.5;
  margin-top: 15px;
}
.about__title span {
  font-size: 18px;
  font-weight: 600;
  color: #29328b;
  margin-left: 5px;
}
.about__title-sub {
  font-size: 16px;
  text-align: center;
  font-weight: 600;
  color: #29328b;
}
.about__title-txt {
  font-size: 14px;
  color: #29328b;
  text-align: center;
  margin-top: 30px;
  line-height: 170%;
}
@media screen and (max-width: 767px) {
  .about__image-sp {
    margin-top: 45px;
  }
}
@media screen and (min-width: 768px) {
  .about__image-pc {
    margin-top: 40px;
  }
}

.service {
  position: relative;
  background-color: #eaf4fe;
  padding-bottom: 80px;
}
@media screen and (min-width: 768px) {
  .service {
    padding-bottom: 110px;
  }
}
.service__bg {
  position: absolute;
  top: -200px;
  left: 0;
  width: 100%;
  height: calc(100% + 200px);
  background: #eaf4fe;
  z-index: -1;
}
.service__title {
  position: relative;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  z-index: 2;
  color: #29328b;
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .service__title {
    font-size: 32px;
    margin-bottom: 80px;
  }
}
.service__title::before {
  content: "SERVICE";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 60px;
  font-weight: 900;
  letter-spacing: 8px;
  color: #fff;
  white-space: nowrap;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .service__title::before {
    font-size: 100px;
  }
}
.service__text {
  text-align: justify;
  line-height: 170%;
}
@media screen and (min-width: 768px) {
  .service__text {
    text-align: center;
  }
}
.service__content-text {
  font-size: 18px;
  -webkit-transform: skewX(-10deg);
          transform: skewX(-10deg);
  font-weight: 600;
  margin-top: 40px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .service__content-text {
    font-size: 28px;
    margin-top: 60px;
  }
}
.service__cards {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .service__cards {
    margin-top: 80px;
  }
}
.service__card1-title {
  font-size: 22px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
.service__card1-title img {
  width: 30px;
}
@media screen and (min-width: 768px) {
  .service__card1-title {
    font-size: 28px;
  }
}
.service__card1-text {
  font-size: 14px;
  text-align: justify;
  margin-top: 10px;
}
.service__card1-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .service__card1-slider {
    overflow: visible;
    -ms-scroll-snap-type: none;
        scroll-snap-type: none;
    gap: 24px;
    margin-top: 30px;
  }
}
.service__card1-slide {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 80%;
          flex: 0 0 80%;
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .service__card1-slide {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 48px) / 3);
            flex: 0 0 calc((100% - 48px) / 3);
  }
}
.service__card1-slide img {
  width: 100%;
  height: auto;
  display: block;
}
.service__card2 {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .service__card2 {
    margin-top: 80px;
  }
}
.service__card2-title {
  font-size: 22px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
.service__card2-title img {
  width: 30px;
}
@media screen and (min-width: 768px) {
  .service__card2-title {
    font-size: 28px;
  }
}
.service__card2-text {
  text-align: justify;
  margin-top: 10px;
}
.service__card2-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  overflow-x: auto;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .service__card2-slider {
    overflow: visible;
    -ms-scroll-snap-type: none;
        scroll-snap-type: none;
    gap: 24px;
    margin-top: 10px;
  }
}
.service__card2-slide {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 80%;
          flex: 0 0 80%;
  scroll-snap-align: start;
  border-radius: 12px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .service__card2-slide {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% - 48px) / 3);
            flex: 0 0 calc((100% - 48px) / 3);
  }
}
.service__card2-slide img {
  width: 100%;
  height: auto;
  display: block;
}
.service__boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .service__boxes {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .service__boxes {
    grid-template-columns: repeat(2, 1fr);
  }
}
.service__box {
  height: 150px;
  background-size: cover;
  background-position: center;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
  border-radius: 5px;
}
.service__box p {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .service__box {
    height: 200px;
  }
}
.service__box-head {
  font-size: 22px;
  font-weight: 600;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .service__box-head {
    font-size: 20px;
  }
}
.service__box--1 {
  background-image: url("../img/service__box1.webp");
  height: 100px;
}
@media screen and (min-width: 768px) {
  .service__box--1 {
    height: 200px;
  }
}
.service__box--2 {
  background-image: url("../img/service__box2.webp");
  height: 100px;
}
@media screen and (min-width: 768px) {
  .service__box--2 {
    height: 200px;
  }
}
.service__box--3 {
  background-image: url("../img/service__box3.webp");
  height: 100px;
}
@media screen and (min-width: 768px) {
  .service__box--3 {
    height: 200px;
  }
}
.service__box--4 {
  background-image: url("../img/service__box4.webp");
  height: 100px;
}
.service__box--5 {
  background-image: url("../img/service__box5.webp");
  height: 100px;
}
.service__box--6 {
  background-image: url("../img/service__box6.webp");
  height: 100px;
}
.service__box--7 {
  background-image: url("../img/service__box7.webp");
  height: 100px;
}
.service__box--8 {
  background-image: url("../img/service__box8.webp");
  height: 100px;
}
.service__box--9 {
  background-image: url("../img/service__box9.webp");
  height: 100px;
}
.service__box--10 {
  background-image: url("../img/service__box10.webp");
  height: 100px;
}
.service__box--11 {
  background-image: url("../img/service__box11.webp");
  height: 100px;
}
.service__box--12 {
  background-image: url("../img/service__box12.webp");
  height: 100px;
}

.flow {
  background-color: #29328b;
  padding: 80px 0;
}
@media screen and (min-width: 768px) {
  .flow {
    padding: 110px 0;
  }
}
.flow__title {
  position: relative;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  z-index: 2;
  color: #fff;
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .flow__title {
    font-size: 32px;
    margin-bottom: 80px;
  }
}
.flow__title::before {
  content: "FLOW";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 60px;
  font-weight: 900;
  letter-spacing: 8px;
  color: rgba(255, 255, 255, 0.2117647059);
  white-space: nowrap;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .flow__title::before {
    font-size: 100px;
  }
}
.flow__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .flow__cards {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .flow__cards {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .flow__card-img {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .flow__card-img {
    width: 100%;
    height: 150px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (min-width: 768px) {
  .flow__card-img-sp {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .flow__card-2 {
    margin-top: 20px;
  }
}
.flow .card-content {
  color: #fff;
}
.flow .card-content__title {
  font-size: 22px;
  font-weight: 600;
  margin-left: 10px;
  margin-top: 10px;
}
.flow .card-content__text {
  font-size: 14px;
  margin-top: 5px;
}
.flow__ye {
  font-size: 30px;
  font-weight: 600;
  color: #fef030;
  font-family: "futura-pt", "sans-serif";
}
@media screen and (min-width: 768px) {
  .flow__ye {
    font-size: 28px;
  }
}

.footer {
  background-color: #fff;
  padding: 60px 0;
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: 110px 0;
    padding-bottom: 150px;
  }
}
.footer__head {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .footer__head {
    font-size: 32px;
  }
}
.footer__cta {
  background-color: #f5f6f7;
  padding: 40px 10px;
  margin-top: 20px;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .footer__cta {
    margin-top: 60px;
  }
}
.footer__cta .btns {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .footer__cta .btns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.footer__cta .btn {
  width: 100%;
}

footer {
  text-align: center;
  background-color: #fff;
  padding-bottom: 20px;
}