@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;
  }
}

a:hover {
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  opacity: 0.7;
}

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: 13.359375vw;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 37.1794871795vw;
    margin-bottom: 1.5384615385vw;
  }
}
.header__text {
  font-size: 3.0769230769vw;
  font-weight: 500;
  letter-spacing: 0.014em;
  display: none;
}
@media screen and (max-width: 767px) {
  .header__text {
    display: block;
  }
}
.header__list {
  display: flex;
  gap: 1.71875vw;
  margin-left: 3.125vw;
}
@media screen and (max-width: 767px) {
  .header__list {
    display: none;
  }
}
.header__item-link {
  font-size: 1.09375vw;
  font-weight: 700;
  letter-spacing: 0;
}
.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;
  letter-spacing: 0;
  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 {
  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 .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: 194.8717948718vw;
  }
}
.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: 50%;
  right: 6.25vw;
  transform: translateY(-50%);
  width: 46.25vw;
  height: 45.390625vw;
  background: url("../img/kv_bkg.webp") no-repeat right center/contain;
  mix-blend-mode: darken;
}
@media screen and (max-width: 767px) {
  .kv .kv-main__bkg {
    top: 55%;
    left: 50%;
    right: unset;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 108.7179487179vw;
    background: url("../img/kv_bkg_sp.webp") no-repeat center center/cover;
  }
}
.kv .kv-main__wrap {
  height: 100%;
  padding-left: 6.25vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .kv .kv-main__wrap {
    height: auto;
    justify-content: space-between;
  }
}
.kv .kv-main__head {
  margin-bottom: 3.125vw;
}
@media screen and (max-width: 767px) {
  .kv .kv-main__head {
    margin-bottom: 5.1282051282vw;
  }
}
.kv .kv-main__bottom {
  display: flex;
  align-items: center;
  gap: 2.1875vw;
}
@media screen and (max-width: 767px) {
  .kv .kv-main__bottom {
    flex-direction: column-reverse;
    gap: 5.1282051282vw;
    align-items: flex-start;
  }
}
.kv__title-sub {
  font-size: 2.65625vw;
  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.9743589744vw;
    line-height: 1.2;
  }
}
.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.40625vw;
  line-height: 1.5555555556;
  font-weight: 500;
  letter-spacing: 0.016em;
}
@media screen and (max-width: 767px) {
  .kv__text {
    font-size: 3.8461538462vw;
    line-height: 1.4666666667;
  }
}
.kv__logo {
  width: 17.578125vw;
}
@media screen and (max-width: 767px) {
  .kv__logo {
    width: 47.1794871795vw;
  }
}
.kv__btn {
  width: 22.734375vw;
  height: 4.609375vw;
  background: linear-gradient(180deg, #2b6eef 0%, #7442d3 100%);
  border-radius: 5.390625vw;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.40625vw;
  letter-spacing: 0.016em;
  color: #fff;
  font-weight: 500;
  margin-top: 3.90625vw;
}
@media screen and (max-width: 767px) {
  .kv__btn {
    display: none;
  }
}
.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 3.5897435897vw 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;
  }
}

.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.6875vw, 60px) 0;
}
@media screen and (max-width: 767px) {
  .about__inner {
    margin: 15.3846153846vw 5.1282051282vw 10.2564102564vw;
  }
}
.about__text {
  font-size: clamp(1px, 4.0625vw, 52px);
  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-ps {
  margin-top: clamp(1px, 2.34375vw, 30px);
}
@media screen and (max-width: 767px) {
  .about__text-ps {
    margin-top: 3.0769230769vw;
  }
}
.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 {
    padding-bottom: 10.2564102564vw;
    margin-bottom: 20.5128205128vw;
  }
}
.cost::before {
  content: "";
  position: absolute;
  width: 100%;
  height: clamp(1px, 27.1875vw, 348px);
  background: linear-gradient(to bottom, #2b6eef 0%, #7442d3 100%);
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .cost::before {
    height: 230.7692307692vw;
  }
}
.cost__inner {
  width: clamp(1px, 87.5vw, 1120px);
  margin-inline: auto;
  padding: clamp(1px, 5.46875vw, 70px) 0 clamp(1px, 3.125vw, 40px);
  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: 16.4102564103vw 5.1282051282vw 10.2564102564vw;
    border-radius: 6.1538461538vw;
  }
}
.cost__wrap {
  display: flex;
  align-items: center;
  gap: clamp(1px, 2.03125vw, 26px);
}
@media screen and (max-width: 767px) {
  .cost__wrap {
    width: 100%;
    flex-direction: column;
    gap: 15.3846153846vw;
  }
}
.cost__item {
  width: clamp(1px, 24.84375vw, 318px);
  height: clamp(1px, 21.71875vw, 278px);
  background: #fff;
  border-radius: clamp(1px, 1.875vw, 24px);
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .cost__item {
    width: 100%;
    height: auto;
    border-radius: 6.1538461538vw;
  }
}
.cost__item--1 .cost__list {
  width: clamp(1px, 15.625vw, 200px);
}
@media screen and (max-width: 767px) {
  .cost__item--1 .cost__list {
    width: 100%;
  }
}
.cost__item--2 .cost__list {
  width: clamp(1px, 19.84375vw, 254px);
}
@media screen and (max-width: 767px) {
  .cost__item--2 .cost__list {
    width: 100%;
  }
}
.cost__item--2 .cost__header {
  gap: clamp(1px, 1.40625vw, 18px);
  margin-bottom: clamp(1px, 4.53125vw, 58px);
}
@media screen and (max-width: 767px) {
  .cost__item--2 .cost__header {
    gap: 4.6153846154vw;
    margin-bottom: 5.1282051282vw;
  }
}
.cost__item--3 .cost__list {
  width: clamp(1px, 22.03125vw, 282px);
}
@media screen and (max-width: 767px) {
  .cost__item--3 .cost__list {
    width: 100%;
  }
}
.cost__item--3 .cost__header {
  gap: clamp(1px, 1.40625vw, 18px);
  margin-bottom: clamp(1px, 2.890625vw, 37px);
}
@media screen and (max-width: 767px) {
  .cost__item--3 .cost__header {
    gap: 4.6153846154vw;
    margin-bottom: 5.1282051282vw;
  }
}
.cost__header {
  width: clamp(1px, 21.5625vw, 276px);
  height: clamp(1px, 5.78125vw, 74px);
  display: flex;
  align-items: center;
  gap: clamp(1px, 0.546875vw, 7px);
  background: #22293b;
  padding: 0 clamp(1px, 1.5625vw, 20px);
  border-radius: 200px;
  position: relative;
  margin-top: calc(-1 * clamp(1px, 2.34375vw, 30px));
  margin-bottom: clamp(1px, 3.90625vw, 50px);
}
@media screen and (max-width: 767px) {
  .cost__header {
    width: 70.7692307692vw;
    height: 18.9743589744vw;
    gap: 1.7948717949vw;
    padding: 4.1025641026vw 5.1282051282vw;
    margin-top: -6.1538461538vw;
    margin-bottom: 10.2564102564vw;
  }
}
.cost__header::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-left: clamp(1px, 0.9375vw, 12px) solid transparent;
  border-right: clamp(1px, 0.9375vw, 12px) solid transparent;
  border-top: clamp(1px, 1.5625vw, 20px) solid #22293b;
  left: 50%;
  bottom: calc(-1 * clamp(1px, 1.171875vw, 15px));
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .cost__header::before {
    border-left: 3.0769230769vw solid transparent;
    border-right: 3.0769230769vw solid transparent;
    border-top: 5.1282051282vw solid #22293b;
    bottom: -3.8461538462vw;
  }
}
.cost__item-icon {
  width: clamp(1px, 3.4375vw, 44px);
  height: clamp(1px, 3.4375vw, 44px);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "proxima-nova", sans-serif;
  font-size: clamp(1px, 0.859375vw, 11px);
  background: #fff;
  border-radius: 200px;
  padding: clamp(1px, 0.78125vw, 10px);
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .cost__item-icon {
    font-size: 2.8205128205vw;
  }
}
@media screen and (max-width: 767px) {
  .cost__item-icon {
    width: 11.2820512821vw;
    height: 11.2820512821vw;
    padding: 2.5641025641vw;
  }
}
.cost__item-title {
  color: #fff;
  font-size: clamp(1px, 1.09375vw, 14px);
  font-weight: 500;
  letter-spacing: 0.016em;
  line-height: 1.4285714286;
}
@media screen and (max-width: 767px) {
  .cost__item-title {
    font-size: 3.5897435897vw;
  }
}
.cost__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(1px, 1.09375vw, 14px);
}
@media screen and (max-width: 767px) {
  .cost__list {
    gap: 3.5897435897vw;
    padding: 0 2.5641025641vw 8.7179487179vw 5.1282051282vw;
  }
}
.cost__point {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1px, 0.78125vw, 10px);
}
@media screen and (max-width: 767px) {
  .cost__point {
    align-items: flex-start;
    gap: 2.5641025641vw;
  }
}
.cost__point-icon {
  min-width: clamp(1px, 2.03125vw, 26px);
  min-height: clamp(1px, 2.03125vw, 26px);
}
@media screen and (max-width: 767px) {
  .cost__point-icon {
    min-width: 6.6666666667vw;
    min-height: 6.6666666667vw;
  }
}
.cost__item-text {
  font-size: clamp(1px, 1.25vw, 16px);
  letter-spacing: 0.014em;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .cost__item-text {
    font-size: 4.1025641026vw;
  }
}

.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, 18.90625vw, 242px);
}
@media screen and (max-width: 767px) {
  .reasons__logo {
    width: 35.3846153846vw;
  }
}
.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;
  }
}

@media screen and (max-width: 767px) {
  .banner {
    display: none;
  }
}
.banner__inner {
  width: clamp(1px, 56.25vw, 720px);
  margin-inline: auto;
  background: #fff;
  border-radius: clamp(1px, 1.875vw, 24px);
  padding: clamp(1px, 2.1875vw, 28px);
  display: flex;
  align-items: center;
  gap: clamp(1px, 1.796875vw, 23px);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
.banner__img {
  width: clamp(1px, 24.765625vw, 317px);
}
.banner__text {
  font-size: clamp(1px, 2.03125vw, 26px);
  font-weight: 500;
  letter-spacing: 0.016em;
  line-height: 1.3076923077;
}
.banner__text span {
  font-size: clamp(1px, 1.015625vw, 13px);
  font-weight: 400;
  letter-spacing: 0.016em;
  line-height: 3.3846153846;
}
.banner__btn {
  width: 22.734375vw;
  height: 4.609375vw;
  background: linear-gradient(180deg, #2b6eef 0%, #7442d3 100%);
  border-radius: 5.390625vw;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 3.90625vw auto 7.8125vw;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.25);
}
.banner__btn span {
  font-size: 1.40625vw;
  font-weight: 500;
  letter-spacing: 0.016em;
  color: #fff;
  padding-right: 1.5625vw;
  position: relative;
}
.banner__btn span::before {
  content: "";
  position: absolute;
  width: 1.171875vw;
  height: 1.171875vw;
  background: url("../img/btn_link_icon.webp") no-repeat center center/contain;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.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;
    font-weight: 500;
    width: 100%;
    margin-bottom: 4.6153846154vw;
  }
}
@media screen and (max-width: 767px) {
  .contact__title .text-normal {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .contact__title .text-normal:last-of-type {
    width: fit-content;
    margin-top: 4.1025641026vw;
  }
}
.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;
    margin-top: 2.5641025641vw;
  }
}
.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 {
  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: 13.8461538462vw;
  }
}
.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 {
  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) {
  .services {
    background: url("../img/services_bkg_sp.webp") no-repeat top center/100% 100%;
    padding: 21.7948717949vw 0 22.5641025641vw;
  }
}
.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;
  color: #fff;
  margin-bottom: clamp(1px, 3.125vw, 40px);
}
@media screen and (max-width: 767px) {
  .services__title {
    gap: 1.0256410256vw;
    font-size: 8.2051282051vw;
    margin-bottom: 10.2564102564vw;
    align-items: center;
    line-height: 1;
    letter-spacing: 0.02em;
  }
}
.services__logo {
  width: clamp(1px, 18.90625vw, 242px);
}
@media screen and (max-width: 767px) {
  .services__logo {
    width: 35.3846153846vw;
  }
}
.services__container {
  width: clamp(1px, 87.5vw, 1120px);
  height: clamp(1px, 39.375vw, 504px);
  margin: auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .services__container {
    width: 87.6923076923vw;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 5.1282051282vw;
  }
}
.services .service {
  width: clamp(1px, 87.5vw, 1120px);
  background: #fff;
  border-radius: clamp(1px, 0.9375vw, 12px);
  padding: clamp(1px, 4.375vw, 56px);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  z-index: 1;
  background: #f6f5ff;
}
@media screen and (max-width: 767px) {
  .services .service {
    width: 100%;
    padding: 10.2564102564vw 5.1282051282vw;
    position: relative;
    border-radius: 3.0769230769vw;
  }
}
.services .service__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .services .service__inner {
    flex-direction: column;
    gap: 7.1794871795vw;
  }
}
.services .service__desc {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.services .service__point {
  font-family: "proxima-nova", sans-serif;
  font-size: clamp(1px, 1.875vw, 24px);
  font-weight: 700;
  text-transform: uppercase;
  padding-left: clamp(1px, 2.109375vw, 27px);
  position: relative;
  margin-bottom: clamp(1px, 2.34375vw, 30px);
  text-align: center;
}
@media screen and (max-width: 767px) {
  .services .service__point {
    font-size: 4.358974359vw;
  }
}
@media screen and (max-width: 767px) {
  .services .service__point {
    padding-left: 6.9230769231vw;
    margin-bottom: 4.1025641026vw;
  }
}
.services .service__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) {
  .services .service__point::before {
    width: 5.8974358974vw;
    height: 3.8461538462vw;
  }
}
.services .service__wrap {
  width: clamp(1px, 71.640625vw, 917px);
  display: flex;
  background: #fff;
  padding: clamp(1px, 2.96875vw, 38px) clamp(1px, 3.515625vw, 45px);
  border-radius: clamp(1px, 0.78125vw, 10px);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .services .service__wrap {
    width: 100%;
    padding: 7.6923076923vw 5.1282051282vw;
    border-radius: 4.1025641026vw;
    flex-direction: column;
  }
}
.services .service__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(1px, 1.5625vw, 20px);
}
@media screen and (max-width: 767px) {
  .services .service__list {
    gap: 4.1025641026vw;
  }
}
@media screen and (max-width: 767px) {
  .services .service__list:not(:first-child) {
    margin-top: 4.1025641026vw;
  }
}
.services .service__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) {
  .services .service__title {
    font-size: 5.1282051282vw;
    line-height: 1.5;
    margin-bottom: 5.1282051282vw;
  }
}
.services .service__item {
  display: flex;
  align-items: center;
  height: clamp(1px, 3.828125vw, 49px);
}
@media screen and (max-width: 767px) {
  .services .service__item {
    height: auto;
  }
}
.services .service__text {
  font-size: clamp(1px, 1.25vw, 16px);
  letter-spacing: 0.016em;
  line-height: 1.5;
  font-weight: 700;
  color: #3a64e9;
  padding-left: clamp(1px, 2.1875vw, 28px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .services .service__text {
    font-size: 4.1025641026vw;
    line-height: 1.75;
    padding-left: 7.1794871795vw;
  }
}
.services .service__text::before {
  content: "";
  width: clamp(1px, 1.40625vw, 18px);
  height: clamp(1px, 1.40625vw, 18px);
  background: url("../img/check_icon.svg") no-repeat center center/contain;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .services .service__text::before {
    width: 4.6153846154vw;
    height: 4.6153846154vw;
  }
}
.services .service__img {
  width: clamp(1px, 35vw, 448px);
  height: clamp(1px, 26.875vw, 344px);
}
@media screen and (max-width: 767px) {
  .services .service__img {
    width: 77.4358974359vw;
    height: auto;
  }
}

.cases {
  width: clamp(1px, 87.5vw, 1120px);
  padding: clamp(1px, 7.8125vw, 100px) 0 clamp(1px, 11.71875vw, 150px);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .cases {
    width: 100%;
    padding: 15.3846153846vw 5.1282051282vw;
  }
}
.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: 0;
  }
}
.cases__title img {
  width: clamp(1px, 14.609375vw, 187px);
}
@media screen and (max-width: 767px) {
  .cases__title img {
    width: 25.641025641vw;
  }
}
.cases__btn {
  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) {
  .cases__btn {
    width: 87.6923076923vw;
    height: 15.3846153846vw;
    margin-top: 20.5128205128vw;
    margin-bottom: 7.1794871795vw;
  }
}
.cases__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) {
  .cases__btn-title {
    font-size: 4.6153846154vw;
  }
}
.cases__btn-text {
  font-size: clamp(1px, 0.9375vw, 12px);
  color: #fff;
  letter-spacing: 0.014em;
}
.cases__btn-text span {
  font-size: clamp(1px, 1.09375vw, 14px);
  font-weight: 500;
}
.cases .case__wrap {
  overflow-y: hidden;
  background: linear-gradient(to bottom, transparent 0%, transparent 50%, #f9fafc 100%);
  border-bottom: 1px solid #e8e8e8;
}
@media screen and (max-width: 767px) {
  .cases .case__wrap {
    padding-bottom: 8.7179487179vw;
  }
}
@media screen and (max-width: 767px) {
  .cases .case__wrap:first-child {
    padding: 0 0 10.2564102564vw;
  }
}
@media screen and (max-width: 767px) {
  .cases .case__wrap:last-of-type {
    padding-bottom: 0;
    border-bottom: none;
  }
}
.cases .case__wrap .case__btn {
  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;
  margin-left: clamp(1px, 29.0625vw, 372px);
  position: relative;
  z-index: 2;
  display: none;
}
.cases .case {
  display: flex;
  gap: clamp(1px, 3.125vw, 40px);
  padding: clamp(1px, 2.65625vw, 34px) 0;
  max-height: auto;
  transition: max-height 0.2s ease-in-out;
  overflow: hidden;
  position: relative;
}
.cases .case::after {
  content: "";
  width: clamp(1px, 58.4375vw, 748px);
  height: clamp(1px, 10.625vw, 136px);
  position: absolute;
  bottom: 0;
  right: 0;
  background: linear-gradient(to bottom, transparent 0%, #f9fafc 100%);
  opacity: 1;
  visibility: visible;
  z-index: 2;
  transition: opacity 0.3s ease-in-out;
  display: none;
}
@media screen and (max-width: 767px) {
  .cases .case {
    gap: 0;
    padding: 10.2564102564vw 0;
  }
}
@media screen and (max-width: 767px) {
  .cases .case {
    flex-direction: column;
    gap: 5.1282051282vw;
  }
}
@media screen and (max-width: 767px) {
  .cases .case:last-of-type {
    padding-bottom: 0;
  }
}
.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: 1.2;
}
@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: 1.2;
  color: #3a64e9;
  margin: clamp(1px, 1.875vw, 24px) 0 clamp(1px, 1.25vw, 16px);
}
@media screen and (max-width: 767px) {
  .cases .case__subtitle {
    font-size: 4.1025641026vw;
    margin: 6.1538461538vw 0 4.1025641026vw;
    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;
    line-height: 1.625;
  }
}

.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 {
  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__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;
  }
}