@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のフォントサイズ
*/
@-webkit-keyframes opacityAnim {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes opacityAnim {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100vh;
  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: -webkit-box !important;
  display: -ms-flexbox !important;
  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: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}

.flexCenter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.justifyContentCenter {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

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

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

body {
  background: #fff;
  color: #22293b;
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
body .grecaptcha-badge {
  visibility: hidden !important;
}

main.main,
main.contact-page {
  width: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

p,
a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(1px, 1.25vw, 16px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.7;
  color: #22293b;
}
@media screen and (max-width: 767px) {
  p,
  a {
    font-size: 4.1025641026vw;
  }
}
@media screen and (max-width: 767px) {
  p,
  a {
    line-height: 1.7142857143;
  }
}

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

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

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

h4 {
  font-family: "Noto Sans JP", sans-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: #0053c5;
}

.anchor {
  position: absolute;
  top: calc(-1 * clamp(1px, 6.25vw, 80px));
  left: 0;
}
@media screen and (max-width: 767px) {
  .anchor {
    top: 0;
  }
}

.header {
  width: 100%;
  position: fixed;
  background: transparent;
  border-radius: unset;
  padding: 0 clamp(1px, 1.71875vw, 22px) 0 0;
  z-index: 99999;
}
@media screen and (max-width: 767px) {
  .header {
    padding: 0 2.5641025641vw 0 0;
  }
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.header__logo-wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .header__logo-wrap {
    display: block;
  }
}
.header__logo {
  display: block;
  width: clamp(1px, 17.96875vw, 230px);
  padding: clamp(1px, 1.5625vw, 20px) clamp(1px, 3.125vw, 40px) clamp(1px, 1.5625vw, 20px) clamp(1px, 2.65625vw, 34px);
  background: #fff;
  border-bottom-right-radius: clamp(1px, 1.5625vw, 20px);
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 41.0256410256vw;
    padding: 3.8461538462vw 5.641025641vw;
    border-bottom-right-radius: 5.1282051282vw;
  }
}
.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(1px, 2.5vw, 32px);
  margin-right: clamp(1px, 2.5vw, 32px);
}
@media screen and (max-width: 767px) {
  .header__list {
    display: none;
  }
}
.header__item-link {
  font-size: clamp(1px, 1.25vw, 16px);
  font-weight: 700;
  letter-spacing: 0;
  color: #fff;
}
.header__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(1px, 1.25vw, 16px);
}
@media screen and (max-width: 767px) {
  .header__contact {
    display: none;
  }
}
.header__btn {
  width: clamp(1px, 13.28125vw, 170px);
  height: clamp(1px, 3.90625vw, 50px);
  background: #fff;
  border-radius: clamp(1px, 0.46875vw, 6px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__btn span {
  font-size: clamp(1px, 1.09375vw, 14px);
  letter-spacing: 0;
  color: #0053c5;
  font-weight: 700;
  position: relative;
  padding-left: clamp(1px, 2.03125vw, 26px);
}
.header__btn span::before {
  content: "";
  width: clamp(1px, 1.5625vw, 20px);
  height: clamp(1px, 1.25vw, 16px);
  position: absolute;
  background: url("../img/contact-mail.svg") no-repeat center center/contain;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.header__btn--2 span {
  padding-left: clamp(1px, 1.875vw, 24px);
}
.header__btn--2 span::before {
  width: clamp(1px, 1.25vw, 16px);
  height: clamp(1px, 1.484375vw, 19px);
  background: url("../img/contact-document.svg") no-repeat center center/contain;
}
.header .hamburger {
  width: 14.358974359vw;
  height: 14.358974359vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.7948717949vw;
  border-radius: 2.0512820513vw;
  cursor: pointer;
  display: none;
}
@media screen and (max-width: 767px) {
  .header .hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.header .hamburger span {
  width: 6.1538461538vw;
  height: 0.7692307692vw;
  background: #fff;
  border-radius: 200px;
}

.header.scrolled {
  background: #fff;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}
.header.scrolled .header__item-link {
  color: #22293b;
}
.header.scrolled .header__btn {
  background: #0053c5;
}
.header.scrolled .header__btn span {
  color: #fff;
}
.header.scrolled .header__btn span::before {
  background: url("../img/contact-mail-wh.svg") no-repeat center center/contain;
}
.header.scrolled .header__btn--2 span::before {
  background: url("../img/contact-document-wh.svg") no-repeat center center/contain;
}
.header.scrolled .hamburger span {
  background: #0053c5;
}

.nav {
  position: fixed;
  top: -200%;
  left: 0;
  width: 97.94%;
  height: auto;
  z-index: 999999;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.1s ease-in-out;
  transition: opacity 0.1s ease-in-out;
  -webkit-box-shadow: 0 33.3333333333vw 0 34.6153846154vw rgba(0, 0, 0, 0.6);
          box-shadow: 0 33.3333333333vw 0 34.6153846154vw rgba(0, 0, 0, 0.6);
  border-bottom-right-radius: 7.6923076923vw;
  overflow: hidden;
}
.nav.active {
  top: 0;
  visibility: visible;
  opacity: 1;
}
.nav__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #fff;
  padding: 4.1025641026vw 3.0769230769vw 0 6.1538461538vw;
}
.nav__logo {
  display: block;
  width: 41.0256410256vw;
}
.nav .hamburger--close {
  width: 10.2564102564vw;
  height: 10.2564102564vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.8461538462vw;
  border-radius: 2.0512820513vw;
  cursor: pointer;
  margin: 0 0 0 auto;
}
.nav .hamburger--close span {
  width: 6.6666666667vw;
  height: 0.7692307692vw;
  background: #0053c5;
  border-radius: 200px;
}
.nav .hamburger--close span:first-child {
  -webkit-transform: translateX(0.7692307692vw) rotate(45deg);
          transform: translateX(0.7692307692vw) rotate(45deg);
  -webkit-transform-origin: left;
          transform-origin: left;
}
.nav .hamburger--close span:last-child {
  -webkit-transform: translateX(0.7692307692vw) rotate(-45deg);
          transform: translateX(0.7692307692vw) rotate(-45deg);
  -webkit-transform-origin: left;
          transform-origin: left;
}
@media screen and (max-width: 767px) {
  .nav__inner {
    height: 90dvh;
    overflow-y: scroll;
  }
}
.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8.2051282051vw;
  background: #fff;
  padding: 17.4358974359vw 10.2564102564vw;
  margin-inline: auto;
}
.nav__item-link {
  display: block;
  font-size: 5.1282051282vw;
  font-weight: 700;
  position: relative;
}
.nav__item-link::before {
  content: "";
  width: 2.3076923077vw;
  height: 4.1025641026vw;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  background: url("../img/arrow_black.svg") no-repeat center center/contain;
}
.nav__contact-wrap {
  padding: 10.2564102564vw 6.1538461538vw 10.2564102564vw 6.1538461538vw;
  background: #0053c5;
}
.nav__btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6.1538461538vw;
  margin-top: 7.6923076923vw;
}
.nav__btn {
  width: 85.641025641vw;
  height: 20.5128205128vw;
  background: #fff;
  border-radius: 2.5641025641vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.nav__btn::before {
  content: "";
  width: 3.0769230769vw;
  height: 4.6153846154vw;
  position: absolute;
  background: url("../img/arrow.svg") no-repeat center center/contain;
  right: 4.6153846154vw;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.nav__btn-text {
  font-size: 6.1538461538vw;
  color: #0053c5;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.4583333333;
  padding-left: 8.2051282051vw;
  position: relative;
}
.nav__btn-text::before {
  content: "";
  width: 7.1794871795vw;
  height: 5.641025641vw;
  position: absolute;
  background: url("../img/contact-mail.svg") no-repeat center center/contain;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.nav__btn-text--sm {
  font-size: 3.5897435897vw;
  color: #0053c5;
  font-weight: 700;
  letter-spacing: 0;
}
.nav__btn--2::before {
  content: "";
  width: 5.3846153846vw;
  height: 5.1282051282vw;
  right: 3.5897435897vw;
  position: absolute;
  background: url("../img/download.svg") no-repeat center center/contain;
}
.nav__btn--2 .nav__btn-text {
  padding-left: 7.1794871795vw;
}
.nav__btn--2 .nav__btn-text::before {
  width: 5.3846153846vw;
  height: 6.6666666667vw;
  background: url("../img/contact-document.svg") no-repeat center center/contain;
}
.nav__text {
  color: #fff;
  text-align: center;
  letter-spacing: 0.014em;
  margin-top: 5.1282051282vw;
}
.nav__text a {
  color: #0053c5;
  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%;
}
.kv__inner {
  width: 100%;
  height: calc(100dvh - clamp(1px, 19.53125vw, 250px));
  background: url("../img/kv_bkg.jpg") no-repeat center bottom/cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 0 0 2dvh;
}
@media (min-width: 768px) and (max-height: 800px) {
  .kv__inner {
    height: auto;
    padding-top: 100px;
  }
}
@media screen and (max-width: 767px) {
  .kv__inner {
    height: auto;
    padding: 24.6153846154vw 6.1538461538vw 4.1025641026vw;
  }
}
.kv__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: clamp(1px, 1.328125vw, 17px);
}
@media screen and (max-width: 767px) {
  .kv__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 7.1794871795vw;
    padding-bottom: 0;
  }
}
.kv__title-sub {
  display: block;
  width: 41.40625vw;
}
@media screen and (max-width: 767px) {
  .kv__title-sub {
    width: 100%;
  }
}
.kv__title-main {
  display: block;
  width: 47.265625vw;
  margin-top: 2.03125vw;
}
@media screen and (max-width: 767px) {
  .kv__title-main {
    width: 100%;
  }
}
.kv__right {
  width: 46.875vw;
}
@media screen and (max-width: 767px) {
  .kv__right {
    width: 100%;
  }
}
.kv__img {
  width: 44.296875vw;
}
@media screen and (max-width: 767px) {
  .kv__img {
    width: 100%;
  }
}
.kv__note {
  display: block;
  text-align: right;
  font-size: clamp(1px, 0.859375vw, 11px);
  font-weight: 500;
  color: #fff;
  margin: 4.6875vw 0 0 auto;
}
@media screen and (max-width: 767px) {
  .kv__note {
    font-size: 2.8205128205vw;
    margin: 2.0512820513vw 0 0 0;
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .kv .contact-sec {
    height: 62.8205128205vw;
  }
}
@media screen and (max-width: 767px) {
  .kv .contact-sec__text {
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .kv .contact-sec__btn-container {
    height: 15.3846153846vw;
  }
}
@media screen and (max-width: 767px) {
  .kv .contact-sec__btn-wrap {
    gap: 3.5897435897vw;
  }
}
@media screen and (max-width: 767px) {
  .kv .contact-sec__btn {
    height: 15.3846153846vw;
  }
}

.contact-sec {
  height: clamp(1px, 19.53125vw, 250px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .contact-sec {
    height: auto;
    padding: 8.2051282051vw 0;
  }
}
.contact-sec__bkg {
  content: "";
  width: 100%;
  height: 100%;
  background: #0053c5;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.contact-sec__inner {
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .contact-sec__inner {
    padding: 0 6.1538461538vw;
  }
}
.contact-sec__text {
  font-size: clamp(1px, 1.5625vw, 20px);
  font-weight: 500;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact-sec__text {
    font-size: 3.5897435897vw;
    text-align: center;
  }
}
.contact-sec__btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1px, 3.125vw, 40px);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: clamp(1px, 1.5625vw, 20px);
}
@media screen and (max-width: 767px) {
  .contact-sec__btn-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6.1538461538vw;
    margin-top: 4.1025641026vw;
  }
}
.contact-sec__btn-container {
  width: clamp(1px, 37.96875vw, 486px);
  height: clamp(1px, 8.28125vw, 106px);
  background: #003290;
  border-radius: clamp(1px, 0.78125vw, 10px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .contact-sec__btn-container {
    width: 100%;
    height: 20.5128205128vw;
    border-radius: 2.5641025641vw;
  }
}
.contact-sec__btn-container:hover .contact-sec__btn {
  top: -7px;
  left: -6px;
}
.contact-sec__btn-container--2:hover .contact-sec__btn {
  top: 0;
  left: 0;
}
.contact-sec__btn {
  width: clamp(1px, 37.96875vw, 486px);
  height: clamp(1px, 8.28125vw, 106px);
  background: #fff;
  color: #0053c5;
  border-radius: clamp(1px, 0.78125vw, 10px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(1px, 0.78125vw, 10px);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
@media screen and (max-width: 767px) {
  .contact-sec__btn {
    width: 100%;
    height: 20.5128205128vw;
    gap: 2.5641025641vw;
    border-radius: 2.5641025641vw;
  }
}
.contact-sec__btn::before {
  content: "";
  width: clamp(1px, 0.9375vw, 12px);
  height: clamp(1px, 1.40625vw, 18px);
  position: absolute;
  background: url("../img/arrow.svg") no-repeat center center/contain;
  right: clamp(1px, 1.71875vw, 22px);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .contact-sec__btn::before {
    width: 2.8205128205vw;
    height: 4.1025641026vw;
    right: 5.1282051282vw;
  }
}
.contact-sec__btn-text {
  font-size: clamp(1px, 2.34375vw, 30px);
  font-weight: 700;
  line-height: 1;
  padding-left: clamp(1px, 3.90625vw, 50px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .contact-sec__btn-text {
    font-size: 6.1538461538vw;
    padding-left: 10.2564102564vw;
  }
}
.contact-sec__btn-text::before {
  content: "";
  width: clamp(1px, 2.8125vw, 36px);
  height: clamp(1px, 2.1875vw, 28px);
  position: absolute;
  background: url("../img/contact-mail.svg") no-repeat center center/contain;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .contact-sec__btn-text::before {
    width: 7.1794871795vw;
    height: 5.641025641vw;
  }
}
.contact-sec__btn-text--sm {
  font-size: clamp(1px, 1.25vw, 16px);
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .contact-sec__btn-text--sm {
    font-size: 3.5897435897vw;
  }
}
.contact-sec__btn--2::before {
  content: "";
  width: clamp(1px, 1.5625vw, 20px);
  height: clamp(1px, 1.5625vw, 20px);
  position: absolute;
  background: url("../img/download.svg") no-repeat center center/contain;
  right: clamp(1px, 1.71875vw, 22px);
}
@media screen and (max-width: 767px) {
  .contact-sec__btn--2::before {
    width: 4.358974359vw;
    height: 4.358974359vw;
    right: 5.1282051282vw;
  }
}
.contact-sec__btn--2 .contact-sec__btn-text {
  padding-left: clamp(1px, 2.96875vw, 38px);
}
@media screen and (max-width: 767px) {
  .contact-sec__btn--2 .contact-sec__btn-text {
    padding-left: 8.4615384615vw;
  }
}
.contact-sec__btn--2 .contact-sec__btn-text::before {
  width: clamp(1px, 2.03125vw, 26px);
  height: clamp(1px, 2.5vw, 32px);
  background: url("../img/contact-document.svg") no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .contact-sec__btn--2 .contact-sec__btn-text::before {
    width: 4.8717948718vw;
    height: 6.1538461538vw;
  }
}

.info {
  padding: clamp(1px, 5.859375vw, 75px) 0;
}
@media screen and (max-width: 767px) {
  .info {
    padding: 10.2564102564vw 5.641025641vw;
  }
}
.info__text {
  font-size: clamp(1px, 3.125vw, 40px);
  font-weight: 700;
  text-align: center;
  line-height: 1.45;
}
@media screen and (max-width: 767px) {
  .info__text {
    font-size: 6.6666666667vw;
    line-height: 1.4230769231;
  }
}

.points {
  position: relative;
}

.point {
  width: 100%;
  height: 100dvh;
  min-height: clamp(1px, 62.5vw, 800px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .point {
    height: auto;
    min-height: auto;
  }
}
.point:nth-child(even) .point__l {
  background: #e8f1fd;
}
.point__number {
  position: absolute;
  top: 212px;
  right: 0;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transform-origin: top right;
          transform-origin: top right;
  font-family: "Roboto", sans-serif;
  font-size: clamp(1px, 3.90625vw, 50px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  background: -webkit-gradient(linear, left top, right top, from(#25b9e5), to(#ffe98e));
  background: linear-gradient(to right, #25b9e5, #ffe98e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media screen and (max-width: 767px) {
  .point__number {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: block;
    font-size: 8.2051282051vw;
    position: relative;
    -webkit-transform: unset;
            transform: unset;
    -webkit-transform-origin: unset;
            transform-origin: unset;
    right: unset;
    top: unset;
    text-align: left;
    margin-bottom: 11.7948717949vw;
  }
}
.point__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .point__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.point__l {
  width: 40.859375vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #ddebfd;
  padding: clamp(1px, 7.5vw, 96px) clamp(1px, 3.75vw, 48px) 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .point__l {
    width: 100%;
    padding: 12.3076923077vw 6.1538461538vw 0;
    gap: 5.1282051282vw;
  }
}
.point__l-img {
  content: "";
  width: 15.546875vw;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .point__l-img {
    position: relative;
    width: 40.5128205128vw;
  }
}
.point--2 .point__l {
  padding: clamp(1px, 9.140625vw, 117px) clamp(1px, 3.75vw, 48px) 0;
}
@media screen and (max-width: 767px) {
  .point--2 .point__l {
    padding: 12.3076923077vw 6.1538461538vw 0;
  }
}
.point--2 .point__l-img {
  width: 13.59375vw;
}
@media screen and (max-width: 767px) {
  .point--2 .point__l-img {
    width: 35.8974358974vw;
  }
}
.point--3 .point__l {
  padding: clamp(1px, 3.75vw, 48px) clamp(1px, 3.75vw, 48px) 0;
}
@media screen and (max-width: 767px) {
  .point--3 .point__l {
    padding: 12.3076923077vw 6.1538461538vw 0;
  }
}
.point__worries {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(1px, 4.6875vw, 60px);
}
@media screen and (max-width: 767px) {
  .point__worries {
    gap: 4.1025641026vw;
  }
}
.point__worry {
  width: clamp(1px, 33.28125vw, 426px);
  background: #fff;
  padding: clamp(1px, 1.875vw, 24px) clamp(1px, 2.5vw, 32px);
  border-radius: clamp(1px, 0.78125vw, 10px);
  position: relative;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .point__worry {
    width: 100%;
    padding: 4.8717948718vw 6.1538461538vw 4.1025641026vw;
    border-radius: 2.5641025641vw;
  }
}
.point__worry::before {
  content: "";
  width: clamp(1px, 2.03125vw, 26px);
  height: clamp(1px, 2.421875vw, 31px);
  background: url("../img/bubbles.svg") no-repeat center center/contain;
  position: absolute;
  left: clamp(1px, 1.5625vw, 20px);
  bottom: calc(-1 * clamp(1px, 3.125vw, 40px));
}
@media screen and (max-width: 767px) {
  .point__worry::before {
    width: 6.6666666667vw;
    height: 7.9487179487vw;
    left: 4.1025641026vw;
    bottom: -10.2564102564vw;
  }
}
.point__worry:nth-child(even)::before {
  left: auto;
  right: clamp(1px, 1.5625vw, 20px);
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
@media screen and (max-width: 767px) {
  .point__worry:not(:last-child)::before {
    display: none;
  }
}
.point__worry-text {
  font-size: clamp(1px, 1.875vw, 24px);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}
@media screen and (max-width: 767px) {
  .point__worry-text {
    font-size: 5.1282051282vw;
    line-height: 1.5;
  }
}
.point__r {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: clamp(1px, 5.625vw, 72px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .point__r {
    padding: 6.1538461538vw 6.1538461538vw 12.3076923077vw;
  }
}
.point__subtitle {
  font-size: clamp(1px, 1.875vw, 24px);
  color: #0053c5;
  font-weight: 500;
  line-height: 1.5833333333;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .point__subtitle {
    font-size: 5.1282051282vw;
    line-height: 1.5;
  }
}
.point__title {
  font-size: clamp(1px, 3.75vw, 48px);
  color: #0053c5;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0;
  padding-bottom: clamp(1px, 0.9375vw, 12px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .point__title {
    font-size: 10.2564102564vw;
    line-height: 1.4;
    padding-bottom: 4.1025641026vw;
  }
}
.point__title::before {
  content: "";
  width: 100%;
  height: clamp(1px, 0.234375vw, 3px);
  background: #cccccc;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .point__title::before {
    height: 0.7692307692vw;
  }
}
.point__title::after {
  content: "";
  width: 16.3%;
  height: clamp(1px, 0.234375vw, 3px);
  background: #ffe162;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .point__title::after {
    height: 0.7692307692vw;
  }
}
.point__text {
  margin-top: clamp(1px, 2.5vw, 32px);
  font-size: clamp(1px, 1.5625vw, 20px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .point__text {
    font-size: 5.1282051282vw;
    line-height: 1.6;
    margin-top: 8.2051282051vw;
  }
}
.point__text--small {
  font-size: clamp(1px, 1.09375vw, 14px);
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .point__text--small {
    font-size: 3.5897435897vw;
  }
}
.point__img {
  width: 100%;
  margin-top: clamp(1px, 2.5vw, 32px);
}
@media screen and (max-width: 767px) {
  .point__img {
    margin-top: 8.2051282051vw;
  }
}

.gradient-bkg {
  background: -webkit-gradient(linear, left top, left bottom, from(#25b9e5), to(#ffe98e));
  background: linear-gradient(to bottom, #25b9e5, #ffe98e);
  padding: clamp(1px, 10.15625vw, 130px) clamp(1px, 5.625vw, 72px) clamp(1px, 5.625vw, 72px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .gradient-bkg {
    padding: 20.5128205128vw 6.1538461538vw 10.2564102564vw;
  }
}

.about {
  position: relative;
}
.about * {
  color: #fff;
}
.about__inner {
  width: 100%;
  text-align: center;
  margin: 0 auto;
}
.about__title {
  font-size: clamp(1px, 3.75vw, 48px);
  font-weight: 400;
  line-height: 1.4285714286;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .about__title {
    font-size: 8.2051282051vw;
    line-height: 1.4375;
  }
}
.about__img {
  width: clamp(1px, 45.3125vw, 580px);
  margin: clamp(1px, 3.125vw, 40px) auto 0;
}
@media screen and (max-width: 767px) {
  .about__img {
    width: 100%;
    margin: 10.2564102564vw auto 0;
  }
}
.about__subtitle {
  font-size: clamp(1px, 2.5vw, 32px);
  font-weight: 700;
  line-height: 1.875;
  letter-spacing: 0.1em;
  margin-top: clamp(1px, 5.625vw, 72px);
}
@media screen and (max-width: 767px) {
  .about__subtitle {
    font-size: 6.6666666667vw;
    line-height: 1.6923076923;
    margin-top: 16.4102564103vw;
    text-align: left;
  }
}
.about__text {
  font-size: clamp(1px, 1.5625vw, 20px);
  font-weight: 700;
  line-height: 2.2;
  letter-spacing: 0;
  margin-top: clamp(1px, 4.375vw, 56px);
}
@media screen and (max-width: 767px) {
  .about__text {
    font-size: 5.1282051282vw;
    line-height: 2.2;
    margin-top: 10.2564102564vw;
    text-align: left;
  }
}

.features {
  width: clamp(1px, 88.75vw, 1136px);
  background: #fff;
  border-radius: clamp(1px, 1.5625vw, 20px);
  padding: clamp(1px, 5.3125vw, 68px);
  margin: clamp(1px, 10vw, 128px) auto 0;
}
@media screen and (max-width: 767px) {
  .features {
    width: 100%;
    border-radius: 5.1282051282vw;
    padding: 10.2564102564vw 6.1538461538vw;
    margin: 20.5128205128vw auto 0;
  }
}
.features__inner {
  width: 100%;
  text-align: center;
}
.features__title {
  font-size: clamp(1px, 2.5vw, 32px);
  font-weight: 700;
  line-height: 1.4375;
  letter-spacing: 0.03em;
  color: #0053c5;
}
@media screen and (max-width: 767px) {
  .features__title {
    font-size: 8.2051282051vw;
    text-align: left;
    line-height: 1.4375;
  }
}
.features__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(1px, 3.75vw, 48px);
  margin-top: clamp(1px, 5.3125vw, 68px);
}
@media screen and (max-width: 767px) {
  .features__list {
    gap: 10.2564102564vw;
    margin-top: 10.2564102564vw;
  }
}
.features .feature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1px, 3.125vw, 40px);
  text-align: left;
}
@media screen and (max-width: 767px) {
  .features .feature {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6.1538461538vw;
  }
}
.features .feature__l {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.features .feature__r {
  width: clamp(1px, 21.875vw, 280px);
}
@media screen and (max-width: 767px) {
  .features .feature__r {
    width: 100%;
  }
}
.features .feature__number {
  font-family: "Roboto", sans-serif;
  font-size: clamp(1px, 6.25vw, 80px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  color: #ffc134;
}
@media screen and (max-width: 767px) {
  .features .feature__number {
    font-size: 17.9487179487vw;
  }
}
.features .feature__title {
  font-size: clamp(1px, 1.875vw, 24px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0;
  color: #0053c5;
  margin-top: clamp(1px, 0.9375vw, 12px);
}
@media screen and (max-width: 767px) {
  .features .feature__title {
    font-size: 6.6666666667vw;
    line-height: 1.3846153846;
    margin-top: 3.0769230769vw;
  }
}
.features .feature__text {
  font-size: clamp(1px, 1.25vw, 16px);
  font-weight: 400;
  line-height: 1.625;
  letter-spacing: 0;
  margin-top: clamp(1px, 1.25vw, 16px);
}
@media screen and (max-width: 767px) {
  .features .feature__text {
    font-size: 4.1025641026vw;
    line-height: 1.625;
    margin-top: 3.5897435897vw;
  }
}

.works {
  width: clamp(1px, 78.125vw, 1000px);
  background: #fff;
  border-radius: clamp(1px, 1.5625vw, 20px);
  padding: clamp(1px, 7.8125vw, 100px) 0 clamp(1px, 5.078125vw, 65px);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .works {
    width: 100%;
    padding: 20.5128205128vw 6.1538461538vw 16.6666666667vw;
  }
}
.works__inner {
  width: 100%;
  margin: 0 auto;
}
.works__title {
  font-size: clamp(1px, 2.5vw, 32px);
  font-weight: 700;
  line-height: 1.4375;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .works__title {
    font-size: 8.2051282051vw;
    line-height: 1.4375;
  }
}
.works__subtitle {
  font-family: "Roboto", sans-serif;
  font-size: clamp(1px, 1.5625vw, 20px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
  color: #0053c5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .works__subtitle {
    font-size: 5.1282051282vw;
    line-height: 1.3;
  }
}
.works__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: clamp(1px, 5.78125vw, 74px);
  margin-top: clamp(1px, 4.375vw, 56px);
}
@media screen and (max-width: 767px) {
  .works__list {
    gap: 16.4102564103vw;
    margin-top: 10.2564102564vw;
  }
}
.works .work__cat {
  font-size: clamp(1px, 1.875vw, 24px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#25b9e5), to(#ffe98e));
  background: linear-gradient(to right, #25b9e5, #ffe98e);
  padding: clamp(1px, 0.234375vw, 3px) clamp(1px, 1.25vw, 16px);
  border-radius: clamp(1px, 0.46875vw, 6px);
}
@media screen and (max-width: 767px) {
  .works .work__cat {
    font-size: 5.1282051282vw;
    line-height: 1.8;
    padding: 0.7692307692vw 4.1025641026vw;
    border-radius: 1.5384615385vw;
  }
}
.works .work__title {
  font-size: clamp(1px, 2.5vw, 32px);
  font-weight: 700;
  line-height: 1.125;
  letter-spacing: 0;
  margin-top: clamp(1px, 1.25vw, 16px);
}
@media screen and (max-width: 767px) {
  .works .work__title {
    font-size: 6.6666666667vw;
    line-height: 1.3846153846;
    margin-top: 4.1025641026vw;
  }
}
.works .work__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1px, 3.125vw, 40px);
  margin-top: clamp(1px, 2.5vw, 32px);
}
@media screen and (max-width: 767px) {
  .works .work__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8.2051282051vw;
    margin-top: 6.1538461538vw;
  }
}
.works .work__img {
  width: clamp(1px, 25vw, 320px);
}
@media screen and (max-width: 767px) {
  .works .work__img {
    width: 100%;
  }
}
.works .work__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.works .work__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(1px, 4.0625vw, 52px);
}
@media screen and (max-width: 767px) {
  .works .work__details {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 4.1025641026vw;
  }
}
.works .work__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(1px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .works .work__detail {
    gap: 6.1538461538vw;
  }
}
.works .work__detail-label {
  font-size: clamp(1px, 1.25vw, 16px);
  font-weight: 400;
  line-height: 1.875;
  letter-spacing: 0;
  color: #fff;
  background: #0053c5;
  padding: clamp(1px, 0.234375vw, 3px) clamp(1px, 1.25vw, 16px);
  border-radius: clamp(1px, 0.3125vw, 4px);
}
@media screen and (max-width: 767px) {
  .works .work__detail-label {
    font-size: 4.1025641026vw;
    padding: 0.7692307692vw 4.1025641026vw;
    border-radius: 1.0256410256vw;
    line-height: 1.875;
  }
}
.works .work__detail-content {
  font-size: clamp(1px, 1.25vw, 16px);
  font-weight: 400;
  line-height: 1.875;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .works .work__detail-content {
    font-size: 4.1025641026vw;
    line-height: 1.875;
  }
}
.works .work__subtitle {
  font-size: clamp(1px, 1.5625vw, 20px);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0;
  margin-top: clamp(1px, 2.5vw, 32px);
  padding-left: clamp(1px, 1.25vw, 16px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .works .work__subtitle {
    font-size: 5.1282051282vw;
    line-height: 1.8;
    margin-top: 8.2051282051vw;
    padding-left: 4.1025641026vw;
  }
}
.works .work__subtitle::before {
  content: "";
  width: clamp(1px, 0.46875vw, 6px);
  height: clamp(1px, 1.875vw, 24px);
  background: -webkit-gradient(linear, left top, left bottom, from(#25b9e5), to(#ffe98e));
  background: linear-gradient(to bottom, #25b9e5, #ffe98e);
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .works .work__subtitle::before {
    width: 1.5384615385vw;
    height: 6.1538461538vw;
  }
}
.works .work__text {
  font-size: clamp(1px, 1.25vw, 16px);
  font-weight: 400;
  line-height: 1.625;
  letter-spacing: 0;
  margin-top: clamp(1px, 1.171875vw, 15px);
}
@media screen and (max-width: 767px) {
  .works .work__text {
    font-size: 4.1025641026vw;
    line-height: 1.625;
    margin-top: 3.0769230769vw;
  }
}

.faqs {
  width: clamp(1px, 78.125vw, 1000px);
  background: #fff;
  border-radius: clamp(1px, 1.5625vw, 20px);
  padding: clamp(1px, 7.8125vw, 100px) 0 clamp(1px, 10vw, 128px);
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .faqs {
    width: 100%;
    padding: 20.5128205128vw 6.1538461538vw 20.5128205128vw;
  }
}
.faqs__inner {
  width: 100%;
  margin: 0 auto;
}
.faqs__title {
  font-size: clamp(1px, 2.5vw, 32px);
  font-weight: 700;
  line-height: 1.4375;
  letter-spacing: 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .faqs__title {
    font-size: 8.2051282051vw;
    line-height: 1.4375;
  }
}
.faqs__subtitle {
  font-family: "Roboto", sans-serif;
  font-size: clamp(1px, 1.5625vw, 20px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
  color: #0053c5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .faqs__subtitle {
    font-size: 5.1282051282vw;
    line-height: 1.3;
  }
}
.faqs__list {
  margin-top: clamp(1px, 4.375vw, 56px);
}
@media screen and (max-width: 767px) {
  .faqs__list {
    margin-top: 14.358974359vw;
  }
}
.faqs .faq {
  width: 100%;
  border-bottom: 1px solid #cccccc;
}
.faqs .faq:first-child {
  border-top: 1px solid #cccccc;
}
.faqs .faq__header, .faqs .faq__content {
  width: 100%;
  height: clamp(1px, 7.265625vw, 93px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 clamp(1px, 1.875vw, 24px) 0;
}
@media screen and (max-width: 767px) {
  .faqs .faq__header, .faqs .faq__content {
    height: auto;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 6.1538461538vw 0;
  }
}
.faqs .faq__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.faqs .faq__header {
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .faqs .faq__header {
    gap: 10px;
  }
}
.faqs .faq__content {
  height: auto;
  padding: 0 clamp(1px, 5.46875vw, 70px) clamp(1px, 1.5625vw, 20px) clamp(1px, 1.875vw, 24px);
  display: none;
}
@media screen and (max-width: 767px) {
  .faqs .faq__content {
    padding: 0 0 6.1538461538vw 0;
  }
}
.faqs .faq .plus {
  width: clamp(1px, 1.09375vw, 14px);
  height: clamp(1px, 0.15625vw, 2px);
  position: relative;
  background: #44bac4;
}
@media screen and (max-width: 767px) {
  .faqs .faq .plus {
    width: 3.0769230769vw;
    height: 0.5128205128vw;
    margin-top: 4.1025641026vw;
  }
}
.faqs .faq .plus::before {
  content: "";
  width: clamp(1px, 1.09375vw, 14px);
  height: clamp(1px, 0.15625vw, 2px);
  background: #44bac4;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}
@media screen and (max-width: 767px) {
  .faqs .faq .plus::before {
    width: 3.0769230769vw;
    height: 0.5128205128vw;
  }
}
.faqs .faq.is-active .plus::before {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}
.faqs .faq .q,
.faqs .faq .a {
  font-family: "Roboto", sans-serif;
  font-size: clamp(1px, 2.34375vw, 30px);
  font-weight: 700;
  color: #44bac4;
  margin-right: clamp(1px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .faqs .faq .q,
  .faqs .faq .a {
    font-size: 7.6923076923vw;
    margin-right: 6.1538461538vw;
  }
}
.faqs .faq .a {
  color: #ffc134;
}
.faqs .faq .question,
.faqs .faq .answer {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: clamp(1px, 1.5625vw, 20px);
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-right: clamp(1px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .faqs .faq .question,
  .faqs .faq .answer {
    font-size: 5.1282051282vw;
  }
}
.faqs .faq .answer {
  font-size: clamp(1px, 1.25vw, 16px);
  font-weight: 400;
  line-height: 1.625;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .faqs .faq .answer {
    font-size: 4.1025641026vw;
    line-height: 1.625;
  }
}

.contact-sec--last {
  height: auto;
  padding: clamp(1px, 4.21875vw, 54px) 0 clamp(1px, 5vw, 64px);
}
@media screen and (max-width: 767px) {
  .contact-sec--last {
    padding: 10.2564102564vw 0 15.3846153846vw;
  }
}
.contact-sec--last .contact-sec__title {
  font-size: clamp(1px, 2.5vw, 32px);
  font-weight: 700;
  line-height: 1.0625;
  letter-spacing: 0;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact-sec--last .contact-sec__title {
    font-size: 8.2051282051vw;
    line-height: 1.5;
  }
}
.contact-sec--last .contact-sec__text {
  font-size: clamp(1px, 1.25vw, 16px);
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0;
  color: #fff;
  text-align: center;
  margin-top: clamp(1px, 1.875vw, 24px);
}
@media screen and (max-width: 767px) {
  .contact-sec--last .contact-sec__text {
    font-size: 4.1025641026vw;
    line-height: 1.625;
    margin-top: 6.1538461538vw;
  }
}
.contact-sec--last .contact-sec__btn-wrap {
  margin-top: clamp(1px, 2.65625vw, 34px);
}
@media screen and (max-width: 767px) {
  .contact-sec--last .contact-sec__btn-wrap {
    margin-top: 6.1538461538vw;
  }
}

.footer {
  width: 100%;
  background: #484848;
  padding: clamp(1px, 2.03125vw, 26px) clamp(1px, 3.75vw, 48px) clamp(1px, 3.359375vw, 43px);
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 8.2051282051vw 6.1538461538vw 10.2564102564vw;
  }
}
.footer * {
  color: #fff;
  font-size: clamp(1px, 1.09375vw, 14px);
  font-weight: 400;
  line-height: 2.1428571429;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .footer * {
    font-size: 3.5897435897vw;
    line-height: 1;
  }
}
.footer__inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8.2051282051vw;
  }
}
.footer__left {
  padding-left: clamp(1px, 1.171875vw, 15px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .footer__left {
    padding-left: 3.8461538462vw;
  }
}
.footer__left::before {
  content: "";
  width: clamp(1px, 0.625vw, 8px);
  height: clamp(1px, 0.9375vw, 12px);
  background: url("../img/footer_arrow.svg") no-repeat center center/contain;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .footer__left::before {
    width: 2.0512820513vw;
    height: 3.0769230769vw;
  }
}

.contact-page .kv__inner {
  height: auto;
  background: -webkit-gradient(linear, left top, left bottom, from(#0053c5), to(#c2e0e4));
  background: linear-gradient(to bottom, #0053c5, #c2e0e4);
  padding: clamp(1px, 8.984375vw, 115px) 0 clamp(1px, 5.46875vw, 70px);
}
@media screen and (max-width: 767px) {
  .contact-page .kv__inner {
    padding: 20.5128205128vw 0 9.7435897436vw;
  }
}
.contact-page .kv__title {
  color: #fff;
  text-align: center;
}
.contact-page .kv__title-main, .contact-page .kv__title-sub {
  display: block;
  text-align: center;
}
.contact-page .kv__title-main {
  font-size: clamp(1px, 2.5vw, 32px);
  font-weight: 700;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .contact-page .kv__title-main {
    font-size: 8.2051282051vw;
  }
}
.contact-page .kv__title-sub {
  width: 100%;
  font-family: "Roboto", sans-serif;
  font-size: clamp(1px, 1.5625vw, 20px);
}
@media screen and (max-width: 767px) {
  .contact-page .kv__title-sub {
    font-size: 5.1282051282vw;
  }
}
.contact-page .inner {
  padding: clamp(1px, 6.25vw, 80px) 0 clamp(1px, 6.25vw, 80px);
}
@media screen and (max-width: 767px) {
  .contact-page .inner {
    padding: 12.8205128205vw 0 25.641025641vw;
  }
}
@media screen and (max-width: 767px) {
  .contact-page .about {
    padding: 0 5.1282051282vw;
  }
}
.contact-page .about * {
  color: inherit;
  text-align: center;
}
.contact-page .about__title {
  font-size: clamp(1px, 1.875vw, 24px);
  font-weight: 700;
  color: #0053c5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact-page .about__title {
    font-size: 6.1538461538vw;
    line-height: 1.5;
  }
}
.contact-page .about__text {
  font-size: clamp(1px, 1.25vw, 16px);
  font-weight: 400;
  line-height: 1.875;
  margin-top: clamp(1px, 2.5vw, 32px);
}
@media screen and (max-width: 767px) {
  .contact-page .about__text {
    font-size: 4.1025641026vw;
    margin-top: 5.1282051282vw;
    text-align: left;
  }
}
.contact-page .about__btn {
  display: block;
  width: clamp(1px, 31.25vw, 400px);
  height: clamp(1px, 6.25vw, 80px);
  background: #0053c5;
  color: #fff;
  font-size: clamp(1px, 1.25vw, 16px);
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: clamp(1px, 0.78125vw, 10px);
  margin: clamp(1px, 6.25vw, 80px) auto 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contact-page .about__btn {
    width: 87.6923076923vw;
    height: 15.3846153846vw;
    font-size: 4.1025641026vw;
    margin-top: 15.3846153846vw;
  }
}
.contact-page .about__btn::before {
  content: "";
  width: clamp(1px, 0.78125vw, 10px);
  height: clamp(1px, 1.25vw, 16px);
  position: absolute;
  background: url("../img/arrow-white.svg") no-repeat center center/contain;
  right: clamp(1px, 1.40625vw, 18px);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .contact-page .about__btn::before {
    width: 2.5641025641vw;
    height: 4.1025641026vw;
    right: 4.6153846154vw;
  }
}
.contact-page .progress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: clamp(1px, 5vw, 64px);
  gap: clamp(1px, 3.75vw, 48px);
}
@media screen and (max-width: 767px) {
  .contact-page .progress {
    margin-top: 10.2564102564vw;
    gap: 12.3076923077vw;
  }
}
.contact-page .progress__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  align-items: center;
  opacity: 0.2;
}
.contact-page .progress__item--active {
  opacity: 1;
}
.contact-page .progress__item-nr {
  width: clamp(1px, 3.125vw, 40px);
  height: clamp(1px, 3.125vw, 40px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  background: #0053c5;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: clamp(1px, 1.25vw, 16px);
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .contact-page .progress__item-nr {
    width: 10.2564102564vw;
    height: 10.2564102564vw;
    font-size: 4.1025641026vw;
  }
}
.contact-page .progress__item-text {
  font-family: "Roboto", sans-serif;
  font-size: clamp(1px, 1.25vw, 16px);
  font-weight: 700;
  color: #0053c5;
  margin-top: clamp(1px, 1.015625vw, 13px);
}
@media screen and (max-width: 767px) {
  .contact-page .progress__item-text {
    font-size: 4.1025641026vw;
    margin-top: 3.3333333333vw;
  }
}
.contact-page .form {
  width: clamp(1px, 78.125vw, 1000px);
  background: #e8f1fd;
  padding: clamp(1px, 5.625vw, 72px);
  margin: clamp(1px, 4.6875vw, 60px) auto 0;
}
@media screen and (max-width: 767px) {
  .contact-page .form {
    width: 87.6923076923vw;
    padding: 8.2051282051vw 5.1282051282vw;
    margin-top: 15.3846153846vw;
  }
}