@charset "UTF-8";
/*
 * htmlのフォントサイズ
 * @args ベースの画面幅
 */
/*
   * ルートのフォントサイズを基準にフォントサイズを可変にする
   * @args 最大値（デザイン上の数値）
   */
/*
   * get_vwの設定
   */
/*
   * breakpointの設定
   */
/** --------------------------------
* cssの値を単位を除いて数字だけにしてくれる関数
*
* @param 数字と単位を含む値 10ox, 3remなど
*/
/** --------------------------------
* 値の「単位」を取得する関数
*
* @param $value 数字と単位を含む値 10ox, 3remなど
*/
/** --------------------------------
* pxやremをvwに変換してくれる関数
*
* @param $viewport pcデザインの横幅
* @param $fontSize フォントサイズ(pxでもremでも)
*/
/** --------------------------------
* フォントサイズをレスポンシブで調整する関数
*
* @param $pc pcのフォントサイズ
* @param $sp spのフォントサイズ
*/
@keyframes opacityAnim {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  position: relative;
}

body {
  line-height: 1.56;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
  margin: 0;
}

a {
  text-decoration: none;
}

#root,
#__next {
  isolation: isolate;
}

ul {
  list-style: none;
}

.pc_contents {
  display: block !important;
}
@media screen and (max-width: 767px) {
  .pc_contents {
    display: none !important;
  }
}

.pc_contentsInline {
  display: inline !important;
}
@media screen and (max-width: 767px) {
  .pc_contentsInline {
    display: none !important;
  }
}

.pc_contentsFlex {
  display: flex !important;
}
@media screen and (max-width: 767px) {
  .pc_contentsFlex {
    display: none !important;
  }
}

.sp_contents {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp_contents {
    display: block !important;
  }
}

.sp_contentsInline {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp_contentsInline {
    display: inline !important;
  }
}

.sp_contentsFlex {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp_contentsFlex {
    display: flex !important;
  }
}

.flexCenter {
  display: flex;
  justify-content: center;
  align-items: center;
}

.justifyContentCenter {
  justify-content: center;
}

html {
  margin-top: 0 !important;
}
@media screen and (max-width: 767px) {
  html {
    margin-top: 0 !important;
  }
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}

.container {
  overflow-x: hidden;
  position: relative;
}

body {
  background: #f9fafc;
  color: #22293b;
  font-family: "M PLUS 1p", serif;
  position: relative;
}
body .grecaptcha-badge {
  visibility: hidden !important;
}

main.main {
  width: 100%;
}

p,
a {
  font-family: "M PLUS 1p", serif;
  font-size: clamp(1px, 1.09375vw, 14px);
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.7142857143;
  color: #22293b;
}
@media screen and (max-width: 767px) {
  p,
  a {
    font-size: 3.5897435897vw;
  }
}

h2,
h3,
h4 {
  line-height: 1.7; /* 54.4px */
  letter-spacing: 0.1em;
  font-weight: 400;
}

h2 {
  font-family: "M PLUS 1p", serif;
  font-size: clamp(1px, 2.5vw, 32px);
}
@media screen and (max-width: 767px) {
  h2 {
    font-size: 5.641025641vw;
  }
}

h3 {
  font-family: "M PLUS 1p", serif;
  font-size: clamp(1px, 1.71875vw, 22px);
}
@media screen and (max-width: 767px) {
  h3 {
    font-size: 4.6153846154vw;
  }
}

h4 {
  font-family: "M PLUS 1p", serif;
  font-size: clamp(1px, 1.5625vw, 20px);
}
@media screen and (max-width: 767px) {
  h4 {
    font-size: 4.1025641026vw;
  }
}

html {
  scroll-behavior: smooth;
}

section {
  position: relative;
}

.purple {
  color: #3a64e9;
}

.header {
  width: 100%;
  position: fixed;
  background: #fff;
  border-radius: unset;
  padding: 1.25vw 3.125vw 1.09375vw 6.25vw;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .header {
    background: rgba(255, 255, 255, 0.7);
    border-radius: clamp(1px, 1.875vw, 24px);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 2px solid #fff;
    padding: 3.0769230769vw 6.1538461538vw;
    visibility: visible;
    opacity: 1;
  }
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo-wrap {
  display: flex;
}
@media screen and (max-width: 767px) {
  .header__logo-wrap {
    display: block;
    padding-top: 1.0256410256vw;
  }
}
.header__logo {
  width: 11.328125vw;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 37.1794871795vw;
    margin-bottom: 1.5384615385vw;
  }
}
.header__text {
  font-size: 3.0769230769vw;
  font-weight: 500;
  display: none;
}
@media screen and (max-width: 767px) {
  .header__text {
    display: block;
  }
}
.header__list {
  display: flex;
  gap: 3.125vw;
  margin-left: 6.25vw;
}
@media screen and (max-width: 767px) {
  .header__list {
    display: none;
  }
}
.header__item-link {
  font-size: 1.09375vw;
  font-weight: 700;
}
.header__contact {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header__contact {
    display: none;
  }
}
.header__tel {
  font-family: "proxima-nova", sans-serif;
  font-size: 1.40625vw;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.625vw;
  margin-right: 1.25vw;
}
.header__tel span {
  font-family: "M PLUS 1p", serif;
  font-size: 0.9375vw;
  font-weight: 400;
}
.header__btn {
  position: relative;
  width: 11.25vw;
  height: 3.359375vw;
  background: linear-gradient(180deg, #2b6eef 0%, #7442d3 100%);
  border-radius: 2.8125vw;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.25vw;
  color: #fff;
  font-weight: 500;
}
.header__btn::before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 200px;
  opacity: 0;
  z-index: 2;
  transition: opacity 0.15s ease-out;
}
.header__btn:hover::before {
  opacity: 0.2;
}
.header .hamburger {
  width: 14.358974359vw;
  height: 14.358974359vw;
  background: #22293b;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5384615385vw;
  border-radius: 2.0512820513vw;
  cursor: pointer;
  display: none;
}
@media screen and (max-width: 767px) {
  .header .hamburger {
    display: flex;
  }
}
.header .hamburger span {
  width: 6.1538461538vw;
  height: 0.5128205128vw;
  background: #d0d1e0;
  border-radius: 200px;
}

.nav {
  position: fixed;
  top: -200%;
  left: 0;
  width: 100%;
  height: auto;
  background: #fff;
  padding: 6.1538461538vw 6.1538461538vw 10.2564102564vw 6.1538461538vw;
  z-index: 999999;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.1s ease-in-out;
}
.nav.active {
  top: 0;
  visibility: visible;
  opacity: 1;
}
.nav .hamburger--close {
  width: 10.2564102564vw;
  height: 10.2564102564vw;
  background: #22293b;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3.8461538462vw;
  border-radius: 2.0512820513vw;
  cursor: pointer;
  margin: 0 0 0 auto;
}
.nav .hamburger--close span {
  width: 6.1538461538vw;
  height: 0.5128205128vw;
  background: #fff;
  border-radius: 200px;
}
.nav .hamburger--close span:first-child {
  transform: translateX(0.7692307692vw) rotate(45deg);
  transform-origin: left;
}
.nav .hamburger--close span:last-child {
  transform: translateX(0.7692307692vw) rotate(-45deg);
  transform-origin: left;
}
.nav__inner {
  width: 78.4615384615vw;
  padding-top: 4.1025641026vw;
  margin-inline: auto;
}
.nav__list {
  display: flex;
  flex-direction: column;
  gap: 10.2564102564vw;
  padding-left: 2.5641025641vw;
}
.nav__item-link {
  font-weight: 500;
}
.nav__btn {
  width: 78.4615384615vw;
  height: 14.358974359vw;
  background: linear-gradient(180deg, #2b6eef 0%, #7442d3 100%);
  border-radius: 9.2307692308vw;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 4.6153846154vw;
  color: #fff;
  font-weight: 700;
  margin-top: 17.1794871795vw;
}
.nav__text {
  text-align: center;
  letter-spacing: 0.014em;
  margin-top: 5.1282051282vw;
}
.nav__text a {
  color: #3a64e9;
  font-weight: 500;
  letter-spacing: 0.014em;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.anchor {
  position: absolute;
  top: -6.25vw;
}
@media screen and (max-width: 767px) {
  .anchor {
    top: -20.5128205128vw;
  }
}

.kv {
  width: 100%;
  height: 100dvh;
}
@media screen and (max-width: 767px) {
  .kv {
    height: 171.7948717949vw;
  }
}
.kv__inner {
  width: 100%;
  height: 100%;
  display: flex;
}
.kv .kv-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-x: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .kv .kv-main {
    padding-top: 7.6923076923vw;
    margin-top: 20.5128205128vw;
  }
}
.kv .kv-main__bkg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 60px);
  background: url("../img/kv_bkg2@2x.webp") no-repeat right center/cover;
  mix-blend-mode: darken;
}
@media screen and (max-width: 767px) {
  .kv .kv-main__bkg {
    height: calc(100% - 40px);
    background: url("../img/kv_bkg_sp2@2x.webp") no-repeat center center/cover;
  }
}
.kv .kv-main__wrap {
  height: 100%;
  padding-left: 3.90625vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .kv .kv-main__wrap {
    justify-content: space-between;
  }
}
.kv .kv-main__head {
  margin-bottom: 6.875vw;
}
.kv__title-sub {
  font-size: 1.5625vw;
  font-weight: 700;
  color: #3a64e9;
  letter-spacing: 0.016em;
}
@media screen and (max-width: 767px) {
  .kv__title-sub {
    font-size: 5.1282051282vw;
  }
}
.kv__title {
  font-size: 4.21875vw;
  font-weight: 700;
  color: #3a64e9;
  letter-spacing: 0.016em;
}
@media screen and (max-width: 767px) {
  .kv__title {
    font-size: 8.7179487179vw;
  }
}
.kv__title-1, .kv__title-2, .kv__title-3, .kv__title-4 {
  line-height: 1.1;
}
.kv__title-1 {
  font-family: "proxima-nova", sans-serif;
  font-size: 6.171875vw;
  line-height: 0.8;
}
@media screen and (max-width: 767px) {
  .kv__title-1 {
    font-size: 13.3333333333vw;
  }
}
.kv__title-2 {
  font-family: "proxima-nova", sans-serif;
  font-size: 4.375vw;
}
@media screen and (max-width: 767px) {
  .kv__title-2 {
    font-size: 9.4871794872vw;
  }
}
.kv__title-3 {
  font-size: 3.828125vw;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .kv__title-3 {
    font-size: 7.9487179487vw;
  }
}
.kv__title-4 {
  font-size: 4.375vw;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .kv__title-4 {
    font-size: 9.4871794872vw;
  }
}
.kv__title-bkg {
  width: fit-content;
  color: #fff;
  background: linear-gradient(135deg, #2b6eef 0%, #7442d3 100%);
  display: flex;
  align-items: flex-end;
  padding: 0.78125vw 1.5625vw;
  border-radius: 0.390625vw;
}
@media screen and (max-width: 767px) {
  .kv__title-bkg {
    padding: 1.2820512821vw 2.5641025641vw;
    border-radius: 1.2820512821vw;
  }
}
.kv__text {
  font-size: 1.25vw;
  font-weight: 500;
  letter-spacing: 0.016em;
  margin-bottom: 1.25vw;
}
.kv__logo {
  width: 27.03125vw;
}
.kv .kv-companies {
  display: flex;
  gap: 1.875vw;
  margin: auto 0 0 0;
}
@media screen and (max-width: 767px) {
  .kv .kv-companies {
    margin: auto 0 2.5641025641vw 0;
  }
}
.kv .kv-companies__list {
  display: flex;
  align-items: center;
  gap: 1.875vw;
  animation: 70s linear infinite top-markee;
  mix-blend-mode: darken;
}
@keyframes top-markee {
  0% {
    transform: translateX(-10%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@media screen and (max-width: 767px) {
  .kv .kv-companies__list {
    gap: 6.1538461538vw;
  }
}
.kv .kv-companies__item {
  width: 7.8125vw;
}
@media screen and (max-width: 767px) {
  .kv .kv-companies__item {
    width: 25.641025641vw;
  }
}
.kv .kv-contact {
  width: clamp(1px, 27.96875vw, 358px);
  background: rgba(244, 244, 246, 0.3176470588);
  padding: 0 clamp(1px, 2.65625vw, 34px);
  display: none;
}
@media screen and (max-width: 767px) {
  .kv .kv-contact {
    display: none;
  }
}
.kv .kv-contact__title {
  font-size: clamp(1px, 1.015625vw, 13px);
  color: #3a64e9;
  font-weight: 700;
  margin-bottom: clamp(1px, 1.5625vw, 20px);
}
.kv .kv-contact .form__unit {
  margin-bottom: clamp(1px, 1.25vw, 16px);
}
.kv .kv-contact .form__unit dt,
.kv .kv-contact .form__unit .label {
  font-size: clamp(1px, 1.09375vw, 14px);
  font-weight: 700;
  margin-bottom: clamp(1px, 0.3125vw, 4px);
}
.kv .kv-contact .form__unit input,
.kv .kv-contact .form__unit select {
  width: 100%;
  height: clamp(1px, 3.125vw, 40px);
  border-radius: clamp(1px, 0.234375vw, 3px);
  border: 1px solid #d0d1e0;
  padding: 0 clamp(1px, 0.78125vw, 10px);
  font-size: clamp(1px, 1.09375vw, 14px);
}
.kv .kv-contact .form__unit .input__name__unit {
  display: flex;
  gap: clamp(1px, 0.46875vw, 6px);
}
.kv .kv-contact .label__txt {
  font-size: clamp(1px, 1.25vw, 16px);
}
.kv .kv-contact .label__txt a.link__blank {
  font-size: clamp(1px, 1.25vw, 16px);
  text-decoration: underline;
  text-underline-offset: 4px;
  color: #3a64e9;
  padding: 0 2px;
}
.kv .kv-contact .contact__must,
.kv .kv-contact .mark__required {
  color: #f00;
}
.kv .kv-contact .contact__must {
  visibility: hidden;
}
.kv .kv-contact .contact__must.active {
  visibility: visible;
}
.kv .kv-contact .input__checkbox {
  display: flex;
}
.kv .kv-contact .input__checkbox input {
  width: clamp(1px, 1.25vw, 16px);
  height: clamp(1px, 1.25vw, 16px);
  margin: clamp(1px, 0.46875vw, 6px) clamp(1px, 0.46875vw, 6px) 0 0;
}
.kv .kv-contact .form__btns {
  text-align: center;
  margin-top: clamp(1px, 1.5625vw, 20px);
}
.kv .kv-contact .form__btns .btn.form__submit__btn input {
  width: clamp(1px, 11.25vw, 144px);
  font-size: clamp(1px, 1.25vw, 16px);
  font-weight: 500;
  color: #fff;
  background: linear-gradient(135deg, #2b6eef 0%, #7442d3 100%);
  border-radius: clamp(1px, 15.625vw, 200px);
  border: none;
  padding: clamp(1px, 0.78125vw, 10px) clamp(1px, 1.5625vw, 20px);
  cursor: pointer;
}

.download-sp {
  padding: 5.3846153846vw 10.2564102564vw 5.1282051282vw;
  background: rgba(240, 240, 240, 0.7);
  border-radius: clamp(1px, 1.875vw, 24px);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 2px solid #fff;
  border-radius: 4.1025641026vw;
  display: none;
}
@media screen and (max-width: 767px) {
  .download-sp {
    display: block;
  }
}
.download-sp__inner {
  width: 76.9230769231vw;
  height: 17.1794871795vw;
  background: linear-gradient(180deg, #2b6eef 0%, #7442d3 100%);
  border-radius: 2.0512820513vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
.download-sp__btn {
  width: 75.8974358974vw;
  height: 16.1538461538vw;
  background: #fff;
  border-radius: 1.5384615385vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
.download-sp__btn span {
  display: block;
  font-size: 4.1025641026vw;
  color: #3a64e9;
  font-weight: 700;
  letter-spacing: 0.014em;
  padding-right: 7.6923076923vw;
  position: relative;
}
.download-sp__btn span::after {
  content: "";
  position: absolute;
  width: 3.0769230769vw;
  height: 4.358974359vw;
  background: url("../img/download-sp_arrow.svg") no-repeat center center/contain;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.about__inner {
  text-align: center;
  margin: clamp(1px, 7.8125vw, 100px) 0 clamp(1px, 4.375vw, 56px) 0;
}
@media screen and (max-width: 767px) {
  .about__inner {
    margin: 15.3846153846vw 0 10.2564102564vw 0;
  }
}
.about__text {
  font-size: clamp(1px, 3.75vw, 48px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.28;
}
@media screen and (max-width: 767px) {
  .about__text {
    font-size: 6.1538461538vw;
    line-height: 1.4615384615;
  }
}
.about__text .text-big {
  font-size: clamp(1px, 4.375vw, 56px);
}
@media screen and (max-width: 767px) {
  .about__text .text-big {
    font-size: 6.6666666667vw;
  }
}
.about__text .text-big--2 {
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .about__text .text-big--2 {
    line-height: 2;
  }
}
.about__text .dot {
  position: relative;
}
.about__text .dot::after {
  content: "";
  position: absolute;
  width: clamp(1px, 0.625vw, 8px);
  height: clamp(1px, 0.625vw, 8px);
  border-radius: 50%;
  background: #3a64e9;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .about__text .dot::after {
    top: -1.2820512821vw;
    width: 1.5384615385vw;
    height: 1.5384615385vw;
  }
}

.cost {
  position: relative;
  margin-bottom: clamp(1px, 10.9375vw, 140px);
}
@media screen and (max-width: 767px) {
  .cost {
    margin-bottom: 20.5128205128vw;
    padding-bottom: 7.6923076923vw;
    overflow-x: hidden;
  }
}
.cost::before {
  content: "";
  position: absolute;
  width: 100%;
  height: clamp(1px, 27.1875vw, 348px);
  background: linear-gradient(to bottom, #2b6eef 0%, #7442d3 100%);
  bottom: clamp(1px, 0.78125vw, 10px);
  left: 0;
}
@media screen and (max-width: 767px) {
  .cost::before {
    height: 100vw;
  }
}
.cost__inner {
  width: clamp(1px, 87.5vw, 1120px);
  margin-inline: auto;
  padding: clamp(1px, 5.15625vw, 66px) 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.7);
  border-radius: clamp(1px, 1.875vw, 24px);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 2px solid #fff;
}
@media screen and (max-width: 767px) {
  .cost__inner {
    width: 100%;
    padding: 10.7692307692vw 5.1282051282vw 34.358974359vw;
    border-radius: 6.1538461538vw;
  }
}
.cost__wrap {
  display: flex;
  align-items: center;
  margin-right: -7%;
}
@media screen and (max-width: 767px) {
  .cost__wrap {
    margin-right: 0;
  }
}
.cost-col {
  font-weight: 700;
}
.cost-col__title {
  display: block;
  font-size: clamp(1px, 1.40625vw, 18px);
  text-align: center;
  margin-bottom: clamp(1px, 1.5625vw, 20px);
}
@media screen and (max-width: 767px) {
  .cost-col__title {
    font-size: 4.1025641026vw;
    margin-bottom: 2.5641025641vw;
  }
}
.cost-col__top {
  width: clamp(1px, 15.625vw, 200px);
  height: clamp(1px, 7.8125vw, 100px);
  background: #3c48a3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-top-left-radius: clamp(1px, 0.625vw, 8px);
  border-top-right-radius: clamp(1px, 0.625vw, 8px);
}
@media screen and (max-width: 767px) {
  .cost-col__top {
    width: 50.2564102564vw;
    height: 18.2051282051vw;
    border-top-left-radius: 2.0512820513vw;
    border-top-right-radius: 2.0512820513vw;
  }
}
.cost-col__head {
  width: clamp(1px, 15.625vw, 200px);
  height: clamp(1px, 7.8125vw, 100px);
  background: #3c48a3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-top-left-radius: clamp(1px, 0.625vw, 8px);
  border-top-right-radius: clamp(1px, 0.625vw, 8px);
}
@media screen and (max-width: 767px) {
  .cost-col__head {
    width: 38.4615384615vw;
    height: 20.5128205128vw;
    border-top-left-radius: 2.0512820513vw;
    border-top-right-radius: 2.0512820513vw;
  }
}
.cost-col__foot {
  width: clamp(1px, 15.625vw, 200px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #9364ff;
  height: clamp(1px, 15.625vw, 200px);
  border-bottom-left-radius: clamp(1px, 0.625vw, 8px);
  border-bottom-right-radius: clamp(1px, 0.625vw, 8px);
}
@media screen and (max-width: 767px) {
  .cost-col__foot {
    width: 38.4615384615vw;
    height: 41.0256410256vw;
    border-bottom-left-radius: 2.0512820513vw;
    border-bottom-right-radius: 2.0512820513vw;
  }
}
.cost-col__text {
  color: #fff;
  font-weight: 500;
  text-align: center;
}
.cost-col__price {
  font-size: clamp(1px, 1.40625vw, 18px);
  color: #fff;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .cost-col__price {
    font-size: 3.5897435897vw;
  }
}
.cost-col__nr {
  font-family: "proxima-nova", sans-serif;
  font-size: clamp(1px, 2.5vw, 32px);
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .cost-col__nr {
    font-size: 6.4102564103vw;
  }
}
.cost-col--2 {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap-reverse;
  align-content: flex-end;
}
.cost-col--2 .cost-col__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1px, 0.3125vw, 4px);
  margin-right: calc(-1 * clamp(1px, 4.6875vw, 60px));
}
@media screen and (max-width: 767px) {
  .cost-col--2 .cost-col__title {
    gap: 1.0256410256vw;
    margin-right: -9.2307692308vw;
  }
}
.cost-col--2 .cost-col__title .logo {
  display: inline-block;
  width: clamp(1px, 8.046875vw, 103px);
}
@media screen and (max-width: 767px) {
  .cost-col--2 .cost-col__title .logo {
    width: 21.0256410256vw;
  }
}
.cost-col--2 .cost-col__top {
  width: clamp(1px, 20.3125vw, 260px);
  height: clamp(1px, 7.03125vw, 90px);
  background: url("../img/after_bkg.svg") no-repeat center center/contain;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .cost-col--2 .cost-col__top {
    width: 50.2564102564vw;
    height: 18.2051282051vw;
  }
}
.cost-col--2 .cost-col__top-wrap {
  width: clamp(1px, 15.625vw, 200px);
  margin: 0 0 0 auto;
}
@media screen and (max-width: 767px) {
  .cost-col--2 .cost-col__top-wrap {
    width: 41.0256410256vw;
  }
}
.cost-col--2 .cost-col__top .cost-col__text {
  color: #3a64e9;
  font-size: clamp(1px, 1.25vw, 16px);
  letter-spacing: 0.014em;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .cost-col--2 .cost-col__top .cost-col__text {
    font-size: 3.5897435897vw;
  }
}
.cost-col--2 .cost-col__top .cost-col__text .text-big {
  font-family: "proxima-nova", sans-serif;
  font-size: clamp(1px, 2.8125vw, 36px);
}
@media screen and (max-width: 767px) {
  .cost-col--2 .cost-col__top .cost-col__text .text-big {
    font-size: 6.6666666667vw;
  }
}
.cost-col--2 .cost-col__top .cost-col__price {
  color: #22293b;
  font-size: clamp(1px, 0.9375vw, 12px);
  letter-spacing: 0.014em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .cost-col--2 .cost-col__top .cost-col__price {
    font-size: 3.5897435897vw;
  }
}
.cost-col--2 .cost-col__top .cost-col__price .cost-col__nr {
  font-family: "proxima-nova", sans-serif;
  font-size: clamp(1px, 1.796875vw, 23px);
  position: relative;
  padding-left: clamp(1px, 0.625vw, 8px);
}
@media screen and (max-width: 767px) {
  .cost-col--2 .cost-col__top .cost-col__price .cost-col__nr {
    font-size: 4.6153846154vw;
  }
}
@media screen and (max-width: 767px) {
  .cost-col--2 .cost-col__top .cost-col__price .cost-col__nr {
    padding-left: 2.5641025641vw;
  }
}
.cost-col--2 .cost-col__top .cost-col__price .cost-col__nr::before {
  content: "";
  width: clamp(1px, 0.546875vw, 7px);
  height: clamp(1px, 1.09375vw, 14px);
  position: absolute;
  background: url("../img/after_arrow.svg") no-repeat center center/contain;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .cost-col--2 .cost-col__top .cost-col__price .cost-col__nr::before {
    width: 1.7948717949vw;
    height: 3.5897435897vw;
    background: url("../img/after_arrow.svg") no-repeat center center/contain;
  }
}
.cost-col--2 .cost-col__head {
  height: clamp(1px, 5.46875vw, 70px);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
@media screen and (max-width: 767px) {
  .cost-col--2 .cost-col__head {
    height: 14.358974359vw;
  }
}
.cost-col--2 .cost-col__foot {
  height: clamp(1px, 10.9375vw, 140px);
}
@media screen and (max-width: 767px) {
  .cost-col--2 .cost-col__foot {
    height: 28.7179487179vw;
  }
}
.cost .baloon {
  width: clamp(1px, 15.625vw, 200px);
  height: clamp(1px, 6.796875vw, 87px);
  background: url("../img/after_baloon_bkg.svg") no-repeat center center/contain;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: clamp(1px, 1.5625vw, 20px);
}
@media screen and (max-width: 767px) {
  .cost .baloon {
    position: absolute;
    bottom: 8.7179487179vw;
    right: 6.1538461538vw;
    background: url("../img/after_baloon_bkg_sp.svg") no-repeat center center/contain;
    width: 38.4615384615vw;
    height: 22.3076923077vw;
    padding-top: 3.5897435897vw;
  }
}
.cost .baloon__inner {
  text-align: center;
  margin-right: calc(-1 * clamp(1px, 1.5625vw, 20px));
}
@media screen and (max-width: 767px) {
  .cost .baloon__inner {
    margin-right: 0;
  }
}
.cost .baloon__text {
  font-size: clamp(1px, 1.25vw, 16px);
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .cost .baloon__text {
    font-size: 3.5897435897vw;
    line-height: 1.5;
  }
}
.cost .baloon__price {
  font-family: "M PLUS 1p", serif;
  font-size: clamp(1px, 1.40625vw, 18px);
  color: #3a64e9;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .cost .baloon__price {
    font-size: 2.5641025641vw;
  }
}
.cost .baloon__price .cost-col__nr {
  font-family: "proxima-nova", sans-serif;
  font-size: clamp(1px, 2.8125vw, 36px);
  letter-spacing: 0.02em;
  margin-right: 3px;
}
@media screen and (max-width: 767px) {
  .cost .baloon__price .cost-col__nr {
    font-size: 7.1794871795vw;
  }
}

.reasons {
  background: url("../img/reasons_bkg.webp") no-repeat top center/100% 100%;
  padding: clamp(1px, 7.8125vw, 100px) 0 clamp(1px, 15.625vw, 200px);
}
@media screen and (max-width: 767px) {
  .reasons {
    background: url("../img/reasons_bkg_sp.webp") no-repeat top center/100% 100%;
    padding: 20.5128205128vw 0 10.2564102564vw;
  }
}
.reasons__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1px, 1.328125vw, 17px);
  font-size: clamp(1px, 4.375vw, 56px);
  font-weight: 500;
  color: #fff;
  margin-bottom: clamp(1px, 3.125vw, 40px);
}
@media screen and (max-width: 767px) {
  .reasons__title {
    gap: 3.0769230769vw;
    font-size: 8.2051282051vw;
    margin-bottom: 10.2564102564vw;
    align-items: center;
    line-height: 1;
  }
}
.reasons__logo {
  width: clamp(1px, 14.609375vw, 187px);
}
@media screen and (max-width: 767px) {
  .reasons__logo {
    width: 25.641025641vw;
  }
}
.reasons__container {
  width: clamp(1px, 87.5vw, 1120px);
  height: clamp(1px, 39.375vw, 504px);
  margin: auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .reasons__container {
    width: 87.6923076923vw;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 5.1282051282vw;
  }
}
.reasons .reason,
.reasons .reason--1 {
  width: clamp(1px, 87.5vw, 1120px);
  background: #fff;
  border-radius: clamp(1px, 1.875vw, 24px);
  padding: clamp(1px, 4.375vw, 56px);
  position: absolute;
  left: 0;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .reasons .reason,
  .reasons .reason--1 {
    width: 100%;
    padding: 10.2564102564vw 5.1282051282vw;
    position: relative;
    border-radius: 3.0769230769vw;
  }
}
.reasons .reason {
  top: 110%;
  visibility: hidden;
}
@media screen and (max-width: 767px) {
  .reasons .reason {
    top: unset;
    visibility: visible;
  }
}
.reasons .reason--4 {
  z-index: 4;
}
.reasons .reason--3 {
  z-index: 3;
}
.reasons .reason--2 {
  z-index: 1;
}
.reasons .reason--1 {
  z-index: 1;
}
.reasons .reason__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .reasons .reason__inner {
    flex-direction: column;
    gap: 7.1794871795vw;
  }
}
.reasons .reason__desc {
  flex: 1;
}
.reasons .reason__point {
  font-family: "proxima-nova", sans-serif;
  font-size: clamp(1px, 1.25vw, 16px);
  font-weight: 700;
  text-transform: uppercase;
  padding-left: clamp(1px, 2.109375vw, 27px);
  position: relative;
  margin-bottom: clamp(1px, 1.40625vw, 18px);
}
@media screen and (max-width: 767px) {
  .reasons .reason__point {
    font-size: 4.1025641026vw;
  }
}
@media screen and (max-width: 767px) {
  .reasons .reason__point {
    padding-left: 6.9230769231vw;
    margin-bottom: 2.0512820513vw;
  }
}
.reasons .reason__point::before {
  content: "";
  width: clamp(1px, 1.796875vw, 23px);
  height: clamp(1px, 1.171875vw, 15px);
  position: absolute;
  background: url("../img/point_icon.svg") no-repeat center center/contain;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .reasons .reason__point::before {
    width: 5.8974358974vw;
    height: 3.8461538462vw;
  }
}
.reasons .reason__title {
  font-size: clamp(1px, 2.5vw, 32px);
  font-weight: 500;
  letter-spacing: 0.016em;
  line-height: 1.625;
  margin-bottom: clamp(1px, 3.125vw, 40px);
}
@media screen and (max-width: 767px) {
  .reasons .reason__title {
    font-size: 5.1282051282vw;
    line-height: 1.5;
    margin-bottom: 5.1282051282vw;
  }
}
.reasons .reason__text {
  font-size: clamp(1px, 1.25vw, 16px);
  letter-spacing: 0.014em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .reasons .reason__text {
    font-size: 4.1025641026vw;
    line-height: 1.75;
  }
}
.reasons .reason__img {
  width: clamp(1px, 35vw, 448px);
  height: clamp(1px, 26.875vw, 344px);
}
@media screen and (max-width: 767px) {
  .reasons .reason__img {
    width: 77.4358974359vw;
    height: auto;
  }
}
.reasons .reason--4 {
  background: rgba(255, 255, 255, 0.7);
  border-radius: clamp(1px, 1.875vw, 24px);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 2px solid #fff;
}
.reasons .reason--4 .reason__point::before {
  background: url("../img/point_icon_gr.svg") no-repeat center center/contain;
}

.contact {
  padding-bottom: clamp(1px, 7.8125vw, 100px);
}
@media screen and (max-width: 767px) {
  .contact {
    padding-bottom: 15.3846153846vw;
  }
}
.contact__title {
  font-size: clamp(1px, 1.640625vw, 21px);
  font-weight: 700;
  letter-spacing: 0.014em;
  line-height: 1;
  text-align: center;
  color: #3a64e9;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
}
@media screen and (max-width: 767px) {
  .contact__title {
    font-size: 5.1282051282vw;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 2.5641025641vw;
  }
}
@media screen and (max-width: 767px) {
  .contact__title .text-normal {
    width: 100%;
  }
}
.contact__title .text-big {
  font-size: clamp(1px, 2.265625vw, 29px);
}
@media screen and (max-width: 767px) {
  .contact__title .text-big {
    font-size: 7.1794871795vw;
    width: fit-content;
  }
}
.contact__title .text-bigger {
  font-family: "proxima-nova", sans-serif;
  font-size: clamp(1px, 3.203125vw, 41px);
  font-weight: 500;
  line-height: 1;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .contact__title .text-bigger {
    font-size: 11.2820512821vw;
  }
}
.contact__subtitle {
  font-size: clamp(1px, 1.640625vw, 21px);
  letter-spacing: 0.014em;
  line-height: 2.5714285714;
  text-align: center;
  color: #3a64e9;
  margin-bottom: clamp(1px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .contact__subtitle {
    font-size: 4.1025641026vw;
    line-height: 1.625;
    margin-bottom: 10.2564102564vw;
  }
}
.contact__btn {
  position: relative;
  width: clamp(1px, 56.25vw, 720px);
  height: clamp(1px, 16.40625vw, 210px);
  display: block;
  background: linear-gradient(90deg, #2b6eef 0%, #7442d3 100%);
  border-radius: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 clamp(1px, 6.484375vw, 83px);
  position: relative;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .contact__btn {
    width: 87.6923076923vw;
    height: 20.5128205128vw;
    padding: 0 10.7692307692vw;
    margin-bottom: 7.1794871795vw;
  }
}
.contact__btn::before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 200px;
  opacity: 0;
  z-index: 2;
  transition: opacity 0.15s ease-out;
}
.contact__btn:hover::before {
  opacity: 0.2;
}
.contact__btn::after {
  content: "";
  position: absolute;
  width: clamp(1px, 14.0625vw, 180px);
  height: clamp(1px, 14.0625vw, 180px);
  background: url("../img/contact_btn.svg") no-repeat center center/contain;
  right: clamp(1px, 1.5625vw, 20px);
}
@media screen and (max-width: 767px) {
  .contact__btn::after {
    width: 17.9487179487vw;
    height: 17.9487179487vw;
    right: 1.5384615385vw;
    background: url("../img/contact_btn_sp.svg") no-repeat center center/contain;
  }
}
.contact__btn-title {
  font-size: clamp(1px, 2.5vw, 32px);
  font-weight: 500;
  letter-spacing: 0.016em;
  line-height: 1.625;
  color: #fff;
  margin-bottom: clamp(1px, 0.78125vw, 10px);
}
@media screen and (max-width: 767px) {
  .contact__btn-title {
    font-size: 4.6153846154vw;
  }
}
.contact__btn-text {
  color: #fff;
}
.contact__text {
  text-align: center;
  letter-spacing: 0.014em;
  margin-top: 5.1282051282vw;
}
.contact__text a {
  color: #3a64e9;
  font-weight: 500;
  letter-spacing: 0.014em;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.details {
  background: #fff;
  padding: clamp(1px, 4.21875vw, 54px) clamp(1px, 6.25vw, 80px);
}
@media screen and (max-width: 767px) {
  .details {
    padding: 15.3846153846vw 6.1538461538vw;
  }
}
.details__inner {
  width: clamp(1px, 87.5vw, 1120px);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .details__inner {
    width: 87.6923076923vw;
  }
}
.details__head {
  display: flex;
  gap: clamp(1px, 3.125vw, 40px);
  margin-bottom: clamp(1px, 1.25vw, 16px);
}
@media screen and (max-width: 767px) {
  .details__head {
    flex-direction: column;
    gap: 5.1282051282vw;
    margin-bottom: 10.2564102564vw;
  }
}
.details__icon {
  font-family: "proxima-nova", sans-serif;
  font-size: clamp(1px, 1.25vw, 16px);
  font-weight: 700;
  text-transform: uppercase;
  padding-left: clamp(1px, 2.109375vw, 27px);
  position: relative;
  margin-bottom: clamp(1px, 1.40625vw, 18px);
}
@media screen and (max-width: 767px) {
  .details__icon {
    font-size: 4.1025641026vw;
  }
}
@media screen and (max-width: 767px) {
  .details__icon {
    padding-left: 6.9230769231vw;
    margin-bottom: 2.5641025641vw;
  }
}
.details__icon::before {
  content: "";
  width: clamp(1px, 1.796875vw, 23px);
  height: clamp(1px, 1.171875vw, 15px);
  position: absolute;
  background: url("../img/point_icon.svg") no-repeat center center/contain;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .details__icon::before {
    width: 5.8974358974vw;
    height: 3.8461538462vw;
  }
}
.details__title {
  font-size: clamp(1px, 2.5vw, 32px);
  font-weight: 500;
  letter-spacing: 0.016em;
  line-height: 1.625;
}
@media screen and (max-width: 767px) {
  .details__title {
    font-size: 5.1282051282vw;
  }
}
.details__right {
  width: clamp(1px, 40.625vw, 520px);
  padding-top: clamp(1px, 3.515625vw, 45px);
}
@media screen and (max-width: 767px) {
  .details__right {
    width: 100%;
    padding-top: 0;
  }
}
.details__text {
  font-size: clamp(1px, 1.25vw, 16px);
}
@media screen and (max-width: 767px) {
  .details__text {
    font-size: 4.1025641026vw;
  }
}
@media screen and (max-width: 767px) {
  .details__bottom {
    width: 54.1025641026vw;
    margin-inline: auto;
  }
}

.services {
  width: clamp(1px, 87.5vw, 1120px);
  padding: clamp(1px, 7.8125vw, 100px) 0 clamp(1px, 3.90625vw, 50px);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .services {
    width: 87.6923076923vw;
    padding: 15.3846153846vw 0 7.6923076923vw;
  }
}
.services__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1px, 1.328125vw, 17px);
  font-size: clamp(1px, 4.375vw, 56px);
  font-weight: 500;
  line-height: 1;
  margin-bottom: clamp(1px, 3.125vw, 40px);
}
@media screen and (max-width: 767px) {
  .services__title {
    gap: 2.5641025641vw;
    font-size: 8.2051282051vw;
    margin-bottom: 10.2564102564vw;
  }
}
.services__title img {
  width: clamp(1px, 14.609375vw, 187px);
}
@media screen and (max-width: 767px) {
  .services__title img {
    width: 25.641025641vw;
  }
}
.services__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1px, 0.3125vw, 4px);
}
@media screen and (max-width: 767px) {
  .services__inner {
    grid-template-columns: 1fr;
    gap: 2.5641025641vw;
  }
}
.services .service {
  min-height: clamp(1px, 31.640625vw, 405px);
  background: #fff;
  border-radius: clamp(1px, 1.875vw, 24px);
  padding: clamp(1px, 4.375vw, 56px);
  box-shadow: 14px 14px 20px rgba(35, 41, 59, 0.1254901961);
}
@media screen and (max-width: 767px) {
  .services .service {
    min-height: auto;
    padding: 7.6923076923vw 5.1282051282vw 10.2564102564vw;
  }
}
.services .service__title-wrap {
  display: flex;
  align-items: center;
  gap: clamp(1px, 1.25vw, 16px);
  margin-bottom: clamp(1px, 0.9375vw, 12px);
}
@media screen and (max-width: 767px) {
  .services .service__title-wrap {
    gap: 4.1025641026vw;
    margin-bottom: 3.0769230769vw;
  }
}
.services .service__icon {
  width: clamp(1px, 4.375vw, 56px);
}
@media screen and (max-width: 767px) {
  .services .service__icon {
    width: 12.8205128205vw;
  }
}
.services .service__title {
  font-size: clamp(1px, 1.875vw, 24px);
  color: #3a64e9;
  font-weight: 500;
  letter-spacing: 0.016em;
}
@media screen and (max-width: 767px) {
  .services .service__title {
    font-size: 5.1282051282vw;
  }
}
.services .service__text {
  padding-bottom: clamp(1px, 1.5625vw, 20px);
  margin-bottom: clamp(1px, 1.5625vw, 20px);
  border-bottom: 1px solid #e8e8e8;
}
@media screen and (max-width: 767px) {
  .services .service__text {
    padding-bottom: 5.1282051282vw;
    margin-bottom: 7.1794871795vw;
    letter-spacing: 0.014em;
  }
}
.services .service__list {
  display: flex;
  flex-direction: column;
  gap: clamp(1px, 0.78125vw, 10px);
}
.services .service__item {
  font-weight: 500;
  font-size: clamp(1px, 1.25vw, 16px);
}
@media screen and (max-width: 767px) {
  .services .service__item {
    font-size: 4.1025641026vw;
  }
}
.services .service__item span {
  color: #3a64e9;
}
.services__btn {
  position: relative;
  width: clamp(1px, 46.875vw, 600px);
  height: clamp(1px, 9.375vw, 120px);
  background: linear-gradient(90deg, #2b6eef 0%, #7442d3 100%);
  border-radius: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-inline: auto;
  margin-top: clamp(1px, 3.90625vw, 50px);
  box-shadow: 0px 0px 20px rgba(35, 41, 59, 0.1254901961);
}
@media screen and (max-width: 767px) {
  .services__btn {
    width: 87.6923076923vw;
    height: 15.3846153846vw;
    margin-top: 15.3846153846vw;
    margin-bottom: 7.1794871795vw;
  }
}
.services__btn::before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  opacity: 0;
  border-radius: 200px;
  transition: opacity 0.15s ease-out;
  z-index: 2;
}
.services__btn:hover::before {
  opacity: 0.2;
}
.services__btn-title {
  font-size: clamp(1px, 2.5vw, 32px);
  font-weight: 500;
  letter-spacing: 0.016em;
  line-height: 1.625;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .services__btn-title {
    font-size: 4.6153846154vw;
  }
}
.services__btn-text {
  font-size: clamp(1px, 0.9375vw, 12px);
  color: #fff;
  letter-spacing: 0.014em;
}
.services__btn-text span {
  font-size: clamp(1px, 1.09375vw, 14px);
  font-weight: 500;
}

.cases {
  width: clamp(1px, 87.5vw, 1120px);
  padding: clamp(1px, 7.8125vw, 100px) 0 clamp(1px, 11.71875vw, 150px);
  margin-inline: auto;
}
.cases__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1px, 1.328125vw, 17px);
  font-size: clamp(1px, 4.375vw, 56px);
  font-weight: 500;
  line-height: 1;
  margin-bottom: clamp(1px, 3.125vw, 40px);
}
@media screen and (max-width: 767px) {
  .cases__title {
    gap: 2.5641025641vw;
    font-size: 8.2051282051vw;
    margin-bottom: 10.2564102564vw;
  }
}
.cases__title img {
  width: clamp(1px, 14.609375vw, 187px);
}
@media screen and (max-width: 767px) {
  .cases__title img {
    width: 25.641025641vw;
  }
}
.cases .case {
  display: flex;
  align-items: center;
  gap: clamp(1px, 3.125vw, 40px);
  padding: clamp(1px, 2.65625vw, 34px) 0;
}
@media screen and (max-width: 767px) {
  .cases .case {
    gap: 0;
    padding: 10.2564102564vw 0;
  }
}
@media screen and (max-width: 767px) {
  .cases .case:first-child {
    padding: 0 0 10.2564102564vw 0;
  }
}
.cases .case:not(:last-child) {
  border-bottom: 1px solid #e8e8e8;
}
@media screen and (max-width: 767px) {
  .cases .case {
    flex-direction: column;
    gap: 5.1282051282vw;
  }
}
.cases .case__img {
  width: clamp(1px, 25.9375vw, 332px);
}
@media screen and (max-width: 767px) {
  .cases .case__img {
    width: 87.6923076923vw;
  }
}
.cases .case__desc {
  flex: 1;
}
.cases .case__title {
  font-size: clamp(1px, 1.875vw, 24px);
  font-weight: 500;
  letter-spacing: 0.016em;
  line-height: 2.1666666667;
}
@media screen and (max-width: 767px) {
  .cases .case__title {
    font-size: 5.1282051282vw;
    margin-bottom: 2.5641025641vw;
  }
}
.cases .case__subtitle {
  display: inline-block;
  font-size: clamp(1px, 1.25vw, 16px);
  font-weight: 700;
  letter-spacing: 0.016em;
  line-height: 2;
  color: #3a64e9;
  margin-bottom: clamp(1px, 1.25vw, 16px);
}
@media screen and (max-width: 767px) {
  .cases .case__subtitle {
    font-size: 4.1025641026vw;
    margin-bottom: 2.5641025641vw;
    letter-spacing: 0.014em;
  }
}
.cases .case__text {
  font-size: clamp(1px, 1.25vw, 16px);
  font-weight: 400;
  letter-spacing: 0.014em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .cases .case__text {
    font-size: 4.1025641026vw;
  }
}

.download {
  background: url("../img/download_bkg.webp") no-repeat top center/100% 100%;
  padding-bottom: clamp(1px, 7.8125vw, 100px);
}
@media screen and (max-width: 767px) {
  .download {
    background: url("../img/download_bkg_sp.webp") no-repeat top center/100% 100%;
    padding-bottom: 20.5128205128vw;
  }
}
.download__inner {
  width: clamp(1px, 87.5vw, 1120px);
  padding: clamp(1px, 4.375vw, 56px) clamp(1px, 4.375vw, 56px) clamp(1px, 4.375vw, 56px) clamp(1px, 5.625vw, 72px);
  margin-inline: auto;
  background: rgba(255, 255, 255, 0.7);
  border-radius: clamp(1px, 1.875vw, 24px);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 2px solid #fff;
}
@media screen and (max-width: 767px) {
  .download__inner {
    padding: 10.2564102564vw 5.1282051282vw;
  }
}
.download__container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1px, 3.125vw, 40px);
}
@media screen and (max-width: 767px) {
  .download__container {
    flex-direction: column;
    align-items: flex-start;
    gap: 8.2051282051vw;
  }
}
.download__text {
  font-size: clamp(1px, 2.5vw, 32px);
  font-weight: 500;
  color: #3a64e9;
  display: flex;
  align-items: center;
  letter-spacing: 0.016em;
  line-height: 1;
  margin-bottom: clamp(1px, 0.390625vw, 5px);
}
@media screen and (max-width: 767px) {
  .download__text {
    font-size: 4.8717948718vw;
    margin-bottom: 1.2820512821vw;
  }
}
.download__text .text-bigger {
  font-family: "proxima-nova", sans-serif;
  font-size: clamp(1px, 5.390625vw, 69px);
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .download__text .text-bigger {
    font-size: 10.5128205128vw;
  }
}
.download__text .text-big {
  font-family: "proxima-nova", sans-serif;
  font-size: clamp(1px, 3.125vw, 40px);
  font-weight: 700;
  padding-top: clamp(1px, 0.390625vw, 5px);
}
@media screen and (max-width: 767px) {
  .download__text .text-big {
    font-size: 6.4102564103vw;
  }
}
@media screen and (max-width: 767px) {
  .download__text .text-big {
    padding-top: 1.2820512821vw;
  }
}
.download__logo {
  width: clamp(1px, 26.015625vw, 333px);
  margin-bottom: clamp(1px, 3.125vw, 40px);
}
@media screen and (max-width: 767px) {
  .download__logo {
    width: 51.2820512821vw;
    margin-bottom: 0;
  }
}
.download__btn {
  position: relative;
  width: clamp(1px, 26.953125vw, 345px);
  height: clamp(1px, 6.25vw, 80px);
  background: linear-gradient(90deg, #2b6eef 0%, #7442d3 100%);
  border-radius: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(1px, 1.875vw, 24px);
  font-weight: 500;
  letter-spacing: 0.016em;
  line-height: 1.625;
  color: #fff;
  box-shadow: 0px 0px 20px rgba(35, 41, 59, 0.1254901961);
}
@media screen and (max-width: 767px) {
  .download__btn {
    width: 77.4358974359vw;
    height: 15.3846153846vw;
    font-size: 4.6153846154vw;
  }
}
.download__btn::before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  border-radius: 200px;
  opacity: 0;
  z-index: 2;
  transition: opacity 0.15s ease-out;
}
.download__btn:hover::before {
  opacity: 0.2;
}
.download__img {
  width: clamp(1px, 47.265625vw, 605px);
}
@media screen and (max-width: 767px) {
  .download__img {
    width: 100%;
  }
}
.download .contact__btn {
  margin-top: clamp(1px, 7.8125vw, 100px);
  background: #fff;
  color: #22293b;
}
@media screen and (max-width: 767px) {
  .download .contact__btn {
    margin-top: 20.5128205128vw;
  }
}
@media screen and (max-width: 767px) {
  .download .contact__btn {
    width: 87.6923076923vw;
    height: 20.5128205128vw;
    padding: 0 7.4358974359vw;
    margin-bottom: 7.1794871795vw;
  }
}
.download .contact__btn::after {
  background: url("../img/contact_btn_purple.svg") no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .download .contact__btn::after {
    width: 17.9487179487vw;
    height: 17.9487179487vw;
    right: 1.5384615385vw;
    background: url("../img/contact_btn_purple_sp.svg") no-repeat center center/contain;
  }
}
@media screen and (max-width: 767px) {
  .download .contact__btn {
    font-size: 4.6153846154vw;
  }
}
.download .contact__btn-title, .download .contact__btn-text {
  color: #22293b;
}
@media screen and (max-width: 767px) {
  .download .contact__text {
    color: #fff;
  }
  .download .contact__text a {
    color: #fff;
  }
}

.footer {
  padding: clamp(1px, 5.46875vw, 70px) clamp(1px, 10.703125vw, 137px) clamp(1px, 4.21875vw, 54px) clamp(1px, 6.25vw, 80px);
  background: #22293b;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 20.5128205128vw 6.1538461538vw 5.1282051282vw 6.1538461538vw;
  }
}
.footer__inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer__logo {
  width: clamp(1px, 17.65625vw, 226px);
}
@media screen and (max-width: 767px) {
  .footer__logo {
    width: 36.9230769231vw;
    margin-bottom: 10.2564102564vw;
  }
}
.footer__center {
  border-left: 1px solid #3c4969;
  border-right: 1px solid #3c4969;
  padding: 0 clamp(1px, 4.375vw, 56px) 0 clamp(1px, 4.375vw, 56px);
  margin: 0 clamp(1px, 4.375vw, 56px) 0 clamp(1px, 3.90625vw, 50px);
}
@media screen and (max-width: 767px) {
  .footer__center {
    border: none;
    border-top: 1px solid #3c4969;
    border-bottom: 1px solid #3c4969;
    padding: 10.2564102564vw 0;
    margin: 0;
  }
}
.footer__company {
  color: #fff;
  font-size: clamp(1px, 1.25vw, 16px);
  font-weight: 700;
  letter-spacing: 0.014em;
  line-height: 2;
  margin-bottom: clamp(1px, 3.125vw, 40px);
}
@media screen and (max-width: 767px) {
  .footer__company {
    font-size: 4.1025641026vw;
    margin-bottom: 10.2564102564vw;
  }
}
.footer__wrap {
  display: flex;
  gap: clamp(1px, 3.125vw, 40px);
}
@media screen and (max-width: 767px) {
  .footer__wrap {
    flex-direction: column;
    gap: 10.2564102564vw;
  }
}
.footer__address {
  color: #d0d1e0;
  line-height: 2;
  letter-spacing: 0.014em;
}
@media screen and (max-width: 767px) {
  .footer__address {
    line-height: 1.7142857143;
  }
}
.footer__right {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .footer__right {
    padding-top: 10.2564102564vw;
  }
}
.footer__link {
  color: #fff;
  text-transform: uppercase;
  margin-bottom: clamp(1px, 5.546875vw, 71px);
  letter-spacing: 0.014em;
}
@media screen and (max-width: 767px) {
  .footer__link {
    margin-bottom: 20.5128205128vw;
  }
}
.footer__link:first-of-type {
  margin-bottom: clamp(1px, 3.125vw, 40px);
}
@media screen and (max-width: 767px) {
  .footer__link:first-of-type {
    margin-bottom: 10.2564102564vw;
  }
}
.footer__copy {
  font-size: clamp(1px, 0.9375vw, 12px);
  color: #d0d1e0;
}
@media screen and (max-width: 767px) {
  .footer__copy {
    font-size: 3.0769230769vw;
  }
}
