@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

header,
footer,
nav,
section,
article,
aside,
figure,
figcaption {
  display: block;
}

ol,
ul {
  list-style: none;
  list-style-type: none;
}

html {
  font-size: 62.5%;
}

body {
  background: #fff;
  line-height: 1;
  margin: auto;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.8em;
}
@media screen and (max-width: 1239px) {
  body {
    font-size: 1.6em;
  }
}

a {
  text-decoration: none;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 1239px) {
  .section-inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media screen and (max-width: 1239px) {
  .sp-only {
    display: block;
  }
}

.button {
  display: inline-block;
  color: #fff;
  position: relative;
  text-align: center;
  border-radius: 4rem;
  padding: 1.9rem 0;
  font-weight: 500;
  border: 2px solid #fff;
}
.button::after {
  background-image: url(../img/btn-arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
  width: 0.9rem;
  height: 1.5rem;
  position: absolute;
  right: 1.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.button:hover::after {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  right: 1rem;
}

.button--demo {
  background-image: -webkit-gradient(linear, left top, right top, from(#224578), to(#0a8c9b));
  background-image: -webkit-linear-gradient(left, #224578, #0a8c9b);
  background-image: linear-gradient(90deg, #224578, #0a8c9b);
}

.button--entry {
  background-image: -webkit-gradient(linear, left top, right top, from(#e7691d), to(#e49b34));
  background-image: -webkit-linear-gradient(left, #e7691d, #e49b34);
  background-image: linear-gradient(90deg, #e7691d, #e49b34);
}

.button--demo-text {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  font-weight: 500;
}

.button--demo-text-top {
  display: block;
  margin-bottom: 0.4rem;
}

.section-head-en,
.section-head {
  text-align: center;
}

.section-head-en {
  color: #5397dd;
  font-family: "Poppins", sans-serif;
  font-size: 2.4rem;
  margin-bottom: 1.6rem;
  font-weight: 200;
}
@media screen and (max-width: 767px) {
  .section-head-en {
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
  }
}

.section-head {
  font-size: 4.8rem;
  font-weight: 500;
  color: #1d3b67;
  position: relative;
}
@media screen and (max-width: 767px) {
  .section-head {
    font-size: 2.4rem;
  }
}
.section-head:after {
  position: absolute;
  height: 0.6rem;
  width: 11.5rem;
  background: #5397dd;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -3.6rem;
  border-radius: 10px;
  content: "";
}
@media screen and (max-width: 767px) {
  .section-head:after {
    height: 0.4rem;
    width: 8rem;
    bottom: -2.5rem;
  }
}

.section-desc {
  font-size: 2.2rem;
  line-height: 1.6;
  margin-top: 8rem;
}
@media screen and (max-width: 767px) {
  .section-desc {
    font-size: 1.6rem;
    margin-top: 5rem;
  }
}

.line-yellow {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, transparent), color-stop(0, #f8ffa9));
  background: -webkit-linear-gradient(transparent 80%, #f8ffa9 0);
  background: linear-gradient(transparent 80%, #f8ffa9 0);
  display: inline-block;
  font-weight: bold;
}

.cl-yellow {
  color: #f8ffa9;
  font-weight: inherit;
}

.header {
  width: 100%;
  background: #fff;
  position: fixed;
  z-index: 10;
  top: 0;
}

.header__top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.9rem 0;
}
@media screen and (max-width: 1239px) {
  .header__top {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .header__top {
    padding: 1rem 2rem;
  }
}

.header__logo {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.header__logo-image {
  height: 6.8rem;
}
@media screen and (max-width: 767px) {
  .header__logo-image {
    height: 4rem;
  }
}

.header__info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .header__info {
    display: none;
  }
}

.header__company {
  font-size: 1.3rem;
  color: #1d3b67;
  font-weight: bold;
}

.header__company-time {
  font-size: 1.4rem;
  font-weight: inherit;
}

.header__tel {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .header__tel {
    margin-right: 0;
  }
}

.header__tel-number {
  width: 22rem;
  margin: 0.5rem 0 0.4rem;
}
.header__tel-number img {
  width: 100%;
}

.header__tel--mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__tel--mobile {
    display: block;
  }
}

.header__buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1.6rem;
  margin-right: 2rem;
}
@media screen and (max-width: 1239px) {
  .header__buttons {
    display: none;
  }
}

.header__button {
  width: 28rem;
  font-size: 2rem;
  padding: 1.3rem 0;
}
.header__button .button--demo-text-top {
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .header__button {
    height: 5.8rem;
  }
}
.header__button.button--demo {
  width: 28rem;
}
@media screen and (max-width: 767px) {
  .header__button.button--demo {
    margin: 0;
  }
}
@media screen and (max-width: 767px) {
  .header__button.button--entry {
    margin-bottom: 1rem;
  }
}

.header__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.6rem;
  padding-bottom: 2.3rem;
}
@media screen and (max-width: 1239px) {
  .header__nav {
    gap: 1rem;
  }
}

.header__nav-link {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 500;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  color: #333;
}
@media screen and (max-width: 1239px) {
  .header__nav-link {
    font-size: 1.4rem;
  }
}

.header__nav-link:hover {
  color: #5397dd;
}

.hamburger {
  position: fixed;
  top: 2rem;
  right: 2rem;
  width: 28px;
  height: 21px;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: transparent;
  border: none;
  z-index: 100;
  cursor: pointer;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #1d3b67;
  border-radius: 2px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.hamburger.is-open {
  right: 1.2rem;
}
.hamburger.is-open span:nth-child(1) {
  -webkit-transform: rotate(45deg) translateY(13px);
          transform: rotate(45deg) translateY(13px);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-open span:nth-child(3) {
  -webkit-transform: rotate(-45deg) translateY(-13px);
          transform: rotate(-45deg) translateY(-13px);
}

.header__nav-mobile .button {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__nav-mobile .button {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .header__nav-mobile {
    position: fixed;
    top: 0;
    right: 0;
    width: 90%;
    max-width: 300px;
    height: 100vh;
    background-color: #fff;
    -webkit-box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
            box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 4rem 2rem;
    z-index: 90;
  }
  .header__nav-mobile a {
    margin-bottom: 2rem;
    font-size: 1.6rem;
    text-decoration: none;
  }
}

.header__nav-mobile.is-show {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}

@media screen and (max-width: 767px) {
  .hamburger {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 80;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.overlay.is-show {
  opacity: 1;
  visibility: visible;
}

.fv {
  position: relative;
  background-image: url(../img/fv-bg.png);
  background-size: cover;
  background-position: center;
  text-align: center;
  overflow: hidden;
  margin-top: 146px;
}
@media screen and (max-width: 767px) {
  .fv {
    background-image: url(../img/fv-bg-sp.jpg);
    margin-top: 6.1rem;
  }
}

.fv__inner {
  max-width: 140rem;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 767px) {
  .fv__inner {
    max-width: 46rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.fv__face {
  position: absolute;
}
.fv__face:nth-child(1) {
  top: 4rem;
  left: 3rem;
}
@media screen and (max-width: 1239px) {
  .fv__face:nth-child(1) {
    top: 1rem;
    left: -3rem;
  }
}
@media screen and (max-width: 767px) {
  .fv__face:nth-child(1) {
    top: 20rem;
    left: -1rem;
  }
}
.fv__face:nth-child(1) img {
  width: 21.5rem;
}
@media screen and (max-width: 1239px) {
  .fv__face:nth-child(1) img {
    width: 18rem;
  }
}
@media screen and (max-width: 767px) {
  .fv__face:nth-child(1) img {
    width: 10rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 360px) {
  .fv__face:nth-child(1) img {
    width: 8rem;
  }
}
.fv__face:nth-child(2) {
  bottom: 8rem;
  left: -1rem;
}
@media screen and (max-width: 767px) {
  .fv__face:nth-child(2) {
    bottom: 36rem;
    left: 7rem;
  }
}
.fv__face:nth-child(2) img {
  width: 29.7rem;
}
@media screen and (max-width: 1239px) {
  .fv__face:nth-child(2) img {
    width: 20rem;
  }
}
@media screen and (max-width: 767px) {
  .fv__face:nth-child(2) img {
    width: 13rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 360px) {
  .fv__face:nth-child(2) img {
    width: 10rem;
  }
}
.fv__face:nth-child(3) {
  top: 9rem;
  right: -2rem;
}
@media screen and (max-width: 767px) {
  .fv__face:nth-child(3) {
    top: 20rem;
    right: 7rem;
  }
}
.fv__face:nth-child(3) img {
  width: 28.8rem;
}
@media screen and (max-width: 1239px) {
  .fv__face:nth-child(3) img {
    width: 20rem;
  }
}
@media screen and (max-width: 767px) {
  .fv__face:nth-child(3) img {
    width: 12rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 360px) {
  .fv__face:nth-child(3) img {
    width: 11rem;
  }
}
.fv__face:nth-child(4) {
  bottom: 5rem;
  right: 9rem;
}
@media screen and (max-width: 1239px) {
  .fv__face:nth-child(4) {
    right: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .fv__face:nth-child(4) {
    bottom: 35rem;
    right: -1rem;
  }
}
.fv__face:nth-child(4) img {
  width: 21.5rem;
}
@media screen and (max-width: 1239px) {
  .fv__face:nth-child(4) img {
    width: 18rem;
  }
}
@media screen and (max-width: 767px) {
  .fv__face:nth-child(4) img {
    width: 10rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 360px) {
  .fv__face:nth-child(4) img {
    width: 9rem;
  }
}

.fv__face img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fv__main {
  position: relative;
  z-index: 2;
  padding: 5rem 0;
  color: #1d3b67;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .fv__main {
    padding: 3rem 0;
    margin-bottom: 0;
  }
}

.fv__catch {
  font-size: 3.2rem;
  font-weight: bold;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 1239px) {
  .fv__catch {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .fv__catch {
    margin-bottom: 0.6rem;
    font-size: 1.4rem;
  }
}

.fv__logo-main {
  width: 81rem;
  height: 14.6rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  background: #1d3b67;
  border-radius: 4px;
}
@media screen and (max-width: 1239px) {
  .fv__logo-main {
    width: 60rem;
    height: auto;
    padding: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .fv__logo-main {
    width: 100%;
    max-width: 42rem;
    padding: 1rem;
  }
}

.fv__logo-image {
  width: 77rem;
}
@media screen and (max-width: 1239px) {
  .fv__logo-image {
    width: 100%;
  }
}

.fv__subcatch {
  font-size: 2.6rem;
  padding: 1.2rem 0;
  border-top: 2px solid #1d3b67;
  border-bottom: 2px solid #1d3b67;
  margin-top: 2.2rem;
  margin-left: auto;
  margin-right: auto;
  max-width: 70rem;
  font-weight: 500;
}
@media screen and (max-width: 1239px) {
  .fv__subcatch {
    max-width: 60rem;
    line-height: 1.3;
  }
}
@media screen and (max-width: 767px) {
  .fv__subcatch {
    font-size: 1.8rem;
    max-width: 34rem;
    padding: 0.8rem 0;
    margin-top: 1.2rem;
  }
}

.fv__features {
  margin-top: 3.2rem;
  text-align: left;
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .fv__features {
    max-width: 34rem;
    margin-top: 16rem;
  }
}

.fv__feature {
  background: #fff;
  border-radius: 4px;
  padding: 0 1.6rem;
  height: 6.8rem;
  margin-bottom: 1.4rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .fv__feature {
    font-size: 1.4rem;
    height: 5rem;
    line-height: 1.3;
    margin-bottom: 0.6rem;
  }
}
.fv__feature .fv__feature__img {
  display: block;
  margin: 0 auto;
}
.fv__feature:nth-child(1) .fv__feature__img {
  width: 4.3rem;
}
@media screen and (max-width: 767px) {
  .fv__feature:nth-child(1) .fv__feature__img {
    width: 3.4rem;
  }
}
.fv__feature:nth-child(2) .fv__feature__img {
  width: 3.5rem;
}
@media screen and (max-width: 767px) {
  .fv__feature:nth-child(2) .fv__feature__img {
    width: 2.4rem;
  }
}
.fv__feature:nth-child(3) .fv__feature__img {
  width: 2.9rem;
}
@media screen and (max-width: 767px) {
  .fv__feature:nth-child(3) .fv__feature__img {
    width: 2rem;
  }
}
.fv__feature:last-child {
  margin-bottom: 0;
}

.fv__feature__img-wrapper {
  width: 4.3rem;
  margin-right: 1.3rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .fv__feature__img-wrapper {
    min-width: 3.4rem;
  }
}

.fv__desc {
  font-size: 2.2rem;
  margin-top: 4rem;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .fv__desc {
    margin-top: 2rem;
    font-size: 1.4rem;
  }
}

.fv__desc-wrap {
  position: relative;
  display: inline-block;
  padding: 0 1.5em;
}
.fv__desc-wrap::before, .fv__desc-wrap::after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 1.2em;
  color: #1d3b67;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .fv__desc-wrap::before, .fv__desc-wrap::after {
    top: auto;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    bottom: 0;
  }
}
.fv__desc-wrap::before {
  content: "＼";
  left: 0;
}
.fv__desc-wrap::after {
  content: "／";
  right: 0;
}

.fv__desc-strong {
  font-size: 4.8rem;
  font-weight: inherit;
  display: block;
  margin-top: 1rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .fv__desc-strong {
    line-height: 1.2;
    font-size: 2.4rem;
  }
}
.fv__desc-strong .cl-red {
  color: #df1010;
  font-weight: bold;
  font-size: 6rem;
}
@media screen and (max-width: 767px) {
  .fv__desc-strong .cl-red {
    font-size: 3rem;
  }
}
.fv__desc-strong .cl-red span {
  font-family: "Poppins", sans-serif;
  font-size: 7.5rem;
  vertical-align: -6px;
}
@media screen and (max-width: 767px) {
  .fv__desc-strong .cl-red span {
    font-size: 4rem;
    vertical-align: -3px;
  }
}

.fv__text {
  margin-top: 1rem;
  font-size: 2.2rem;
  line-height: 1.3;
}
.fv__text span {
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .fv__text {
    font-size: 1.6rem;
    margin-top: 0.4rem;
  }
}

.about {
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#f6f6f6));
  background: -webkit-linear-gradient(#fff, #f6f6f6);
  background: linear-gradient(#fff, #f6f6f6);
  text-align: center;
}

.about__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 9rem;
  padding-bottom: 24rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .about__inner {
    padding-top: 5rem;
    padding-bottom: 14rem;
  }
}

.about__images {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 24px;
}

.about__image-wrapper {
  position: absolute;
  bottom: 0;
}
.about__image-wrapper:nth-child(1) {
  left: 0;
}
@media screen and (max-width: 1239px) {
  .about__image-wrapper:nth-child(1) {
    left: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .about__image-wrapper:nth-child(1) {
    left: 1rem;
  }
}
.about__image-wrapper:nth-child(1) .about__image {
  width: 33.1rem;
}
@media screen and (max-width: 1239px) {
  .about__image-wrapper:nth-child(1) .about__image {
    width: 25rem;
  }
}
@media screen and (max-width: 767px) {
  .about__image-wrapper:nth-child(1) .about__image {
    width: 12rem;
  }
}
.about__image-wrapper:nth-child(2) {
  right: -4rem;
}
@media screen and (max-width: 1239px) {
  .about__image-wrapper:nth-child(2) {
    right: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .about__image-wrapper:nth-child(2) {
    right: 1rem;
  }
}
.about__image-wrapper:nth-child(2) .about__image {
  width: 60.5rem;
}
@media screen and (max-width: 1239px) {
  .about__image-wrapper:nth-child(2) .about__image {
    width: 42rem;
  }
}
@media screen and (max-width: 767px) {
  .about__image-wrapper:nth-child(2) .about__image {
    width: 19rem;
  }
}

.about__image {
  -o-object-fit: cover;
     object-fit: cover;
}

.about__content {
  max-width: 600px;
  margin: 0 auto;
}

.movie {
  background: #e8f3ff;
  text-align: center;
  position: relative;
}

.movie__inner {
  padding-top: 9rem;
  padding-bottom: 14rem;
}
@media screen and (max-width: 767px) {
  .movie__inner {
    padding-top: 5rem;
    padding-bottom: 10rem;
  }
}

.movie__desc {
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .movie__desc {
    margin-bottom: 3rem;
  }
}

.movie__video-wrapper {
  width: 100%;
  aspect-ratio: 16/9;
  max-width: 76rem;
  margin: 0 auto;
}
.movie__video-wrapper iframe {
  width: 100%;
  height: 100%;
}

.cta {
  width: 100%;
  position: relative;
  text-align: center;
  margin-top: -8rem;
}

.cta__inner {
  padding-left: 2rem;
  padding-right: 2rem;
}

.cta__bg {
  height: 53.6rem;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: url(../img/cta-bg.png) no-repeat center bottom;
  background-size: cover;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .cta__bg {
    height: 50rem;
  }
}

.cta__inner {
  padding: 17rem 0;
}
@media screen and (max-width: 767px) {
  .cta__inner {
    padding: 9rem 0;
  }
}

.cta__head {
  font-size: 4rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .cta__head {
    font-size: 2.4rem;
    line-height: 1.3;
    margin-bottom: 2rem;
  }
}
.cta__head .cl-yellow {
  font-size: 4.8rem;
}
@media screen and (max-width: 767px) {
  .cta__head .cl-yellow {
    font-size: 3rem;
  }
}

.cta__buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 7rem;
}
@media screen and (max-width: 767px) {
  .cta__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .cta__button-wrapper {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.cta__button {
  width: 34rem;
  text-align: center;
  font-size: 2.2rem;
  font-weight: 500;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .cta__button {
    width: 100%;
    max-width: 34rem;
    font-size: 1.8rem;
  }
}

.cta__button__text {
  text-align: center;
  font-weight: 500;
  display: block;
  color: #fff;
  margin-bottom: 0.8rem;
}

.cta-last .cta__bg {
  background: url(../img/cta-bg-last.png) no-repeat center bottom;
}
.cta-last .cta__inner {
  padding-top: 24rem;
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .cta-last .cta__inner {
    padding-top: 13rem;
  }
}

.solution {
  background: #fff;
  padding-top: 60rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .solution {
    padding-top: 54rem;
  }
}

.solution__inner {
  padding-bottom: 14rem;
}
@media screen and (max-width: 767px) {
  .solution__inner {
    padding-bottom: 8rem;
  }
}

.solution__block--video {
  margin-top: 11rem;
}
@media screen and (max-width: 767px) {
  .solution__block--video {
    margin-top: 6rem;
  }
}

.solution__block {
  background: #e8f3ff;
  border-radius: 10px;
  padding: 5rem 4rem 8rem;
  margin-bottom: 3.2rem;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .solution__block {
    padding: 3rem 1.6rem;
    margin-bottom: 2rem;
  }
}

.solution__block-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .solution__block-header {
    margin-bottom: 1rem;
  }
}

.solution__block-number {
  font-size: 7rem;
  color: #b3d2f2;
  font-weight: bold;
  margin-right: 10px;
  font-family: "Poppins", sans-serif;
}
.solution__block-number img {
  display: block;
}

.solution__block-title {
  font-size: 3.2rem;
  color: #1d3b67;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .solution__block-title {
    font-size: 2rem;
    line-height: 1.3;
  }
}

.solution__block-feature-head-wrapper {
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .solution__block-feature-head-wrapper {
    margin-bottom: 2rem;
  }
}

.solution__block-feature-head {
  font-size: 2.4rem;
  padding: 1.2rem 3rem;
  color: #fff;
  border-radius: 10px;
  font-weight: 500;
  background: #5397dd;
  margin: 0 auto;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .solution__block-feature-head {
    font-size: 1.8rem;
    padding: 1.2rem 2rem;
    border-radius: 5px;
  }
}

.solution__block-desc {
  margin-bottom: 3.4rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .solution__block-desc {
    margin-bottom: 2rem;
  }
}

.solution__features {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 50px;
}
@media screen and (max-width: 1239px) {
  .solution__features {
    gap: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .solution__features {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.solution__feature {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  width: 30.8rem;
}
@media screen and (max-width: 767px) {
  .solution__feature {
    margin: 0 auto;
    width: 100%;
  }
}

.solution__feature__image-wrapper {
  width: 23rem;
  height: 23rem;
  border-radius: 50%;
  background: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .solution__feature__image-wrapper {
    width: 20rem;
    height: 20rem;
  }
}

.solution__feature-image {
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .solution__feature-image {
    width: 57%;
    max-height: 11rem;
  }
}

.solution__feature-desc {
  line-height: 1.3;
  font-weight: 500;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .solution__feature-desc {
    margin-top: 1rem;
  }
}

.solution__note {
  font-size: 2rem;
  margin-top: 6.4rem;
  line-height: 1.5;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .solution__note {
    font-size: 1.6rem;
    margin-top: 1rem;
  }
}

.solution__note-link {
  color: #1d3b67;
  text-decoration: underline;
}

.num img {
  height: 5.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .num img {
    height: 4rem;
  }
}

.reason,
.demo {
  background: url("../img/reason-bg.jpg") no-repeat center/cover;
  background-attachment: fixed;
}
@media screen and (max-width: 767px) {
  .reason,
  .demo {
    background-attachment: scroll;
  }
}

.reason__inner {
  padding-top: 15rem;
  margin-top: 45rem;
  padding-bottom: 14rem;
}
@media screen and (max-width: 767px) {
  .reason__inner {
    margin-top: 39rem;
    padding-bottom: 10rem;
  }
}

.reason__title,
.reason__label {
  color: #fff;
}

.reason__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  margin-top: 11rem;
}
@media screen and (max-width: 767px) {
  .reason__items {
    margin-top: 6rem;
  }
}

.reason__item {
  background: #fff;
  border-radius: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .reason__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.reason__item-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 2rem;
  gap: 1.2rem;
}
@media screen and (max-width: 767px) {
  .reason__item-header {
    margin-bottom: 1rem;
  }
}

.reason__item-number img {
  display: block;
}

.reason__item-title {
  font-size: 3.2rem;
  color: #1d3b67;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .reason__item-title {
    font-size: 2rem;
  }
}

.reason__item-desc {
  line-height: 1.5;
}

.reason__item__text {
  padding: 3.5rem;
}
@media screen and (max-width: 767px) {
  .reason__item__text {
    padding: 2rem 1.6rem;
  }
}

.reason__item .reason__item-image {
  display: block;
  max-width: 47rem;
}
@media screen and (max-width: 767px) {
  .reason__item .reason__item-image {
    max-width: 100%;
  }
}
.reason__item:nth-child(1) .reason__item-image, .reason__item:nth-child(3) .reason__item-image {
  border-radius: 0 10px 10px 0;
}
@media screen and (max-width: 767px) {
  .reason__item:nth-child(1) .reason__item-image, .reason__item:nth-child(3) .reason__item-image {
    border-radius: 10px 10px 0 0;
  }
}
.reason__item:nth-child(2) .reason__item-image {
  border-radius: 10px 0 0 10px;
}
@media screen and (max-width: 767px) {
  .reason__item:nth-child(2) .reason__item-image {
    border-radius: 10px 10px 0 0;
  }
}
.reason__item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .reason__item:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.assessment {
  background: #fff;
  padding-top: 15rem;
  margin-top: 45rem;
  padding-bottom: 14rem;
}
@media screen and (max-width: 767px) {
  .assessment {
    margin-top: 39rem;
    padding-bottom: 10rem;
  }
}

.assessment__block {
  margin-top: 11rem;
}
@media screen and (max-width: 767px) {
  .assessment__block {
    margin-top: 6rem;
  }
}

.case {
  background: #e8f3ff;
}

.case__inner {
  padding-top: 15rem;
  margin-top: 45rem;
  padding-bottom: 14rem;
}
@media screen and (max-width: 767px) {
  .case__inner {
    margin-top: 39rem;
    padding-bottom: 5rem;
  }
}

.case__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-top: 11rem;
}
@media screen and (max-width: 1239px) {
  .case__items {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .case__items {
    gap: 1rem;
    margin-top: 6rem;
  }
}

.case__item {
  background: #fff;
  border-radius: 10px;
  width: 100%;
  max-width: 58.5rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 1239px) {
  .case__item {
    width: calc(50% - 2rem);
  }
}
@media screen and (max-width: 767px) {
  .case__item {
    width: calc(50% - 0.5rem);
  }
}

.case__item-image-wrapper {
  width: 100%;
  max-height: 33rem;
}

.case__item-image {
  width: 100%;
  height: 22rem;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px 10px 0 0;
}
@media screen and (max-width: 767px) {
  .case__item-image {
    height: 14rem;
  }
}

.case__item-content {
  padding: 1.6rem 1.4rem 3rem;
}

.case__item-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #1d3b67;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .case__item-title {
    font-size: 1.6rem;
  }
}

.case__item-desc {
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .case__item-desc {
    font-size: 1.4rem;
  }
}

.demo__inner {
  padding-top: 11rem;
  padding-bottom: 12rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .demo__inner {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.demo__title,
.demo__desc {
  color: #fff;
}

.demo__desc {
  margin-top: 8rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .demo__desc {
    margin-top: 6rem;
  }
}

.demo__cta-wrapper {
  margin-top: 8rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .demo__cta-wrapper {
    margin-top: 3rem;
  }
}

.price {
  background: #fff;
}

.price__inner {
  padding-top: 11rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .price__inner {
    padding-top: 5rem;
  }
}

.price__desc {
  text-align: center;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .price__desc {
    margin-bottom: 3rem;
  }
}

.price__comparison {
  margin-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .price__comparison {
    margin-bottom: 5rem;
  }
}

.price__table-bottom .table-table:after {
  display: none;
}

.table-title-wrapper {
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .table-title-wrapper {
    margin-bottom: 2rem;
  }
}

.table-title {
  font-size: 2.4rem;
  padding: 1.2rem 3rem;
  color: #fff;
  border-radius: 10px;
  font-weight: 500;
  background: #5397dd;
  margin: 0 auto;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .table-title {
    font-size: 2rem;
    border-radius: 5px;
  }
}

.table-table {
  width: 100%;
  position: relative;
  background: #f4f4f4;
  border-radius: 1rem;
}
@media screen and (max-width: 1239px) {
  .table-table {
    padding-bottom: 0.6rem;
  }
}
.table-table tr:nth-child(odd) {
  background: #fbfbfb;
}
.table-table tr:nth-child(even) {
  background: #fff;
}
.table-table tr:first-child th:first-child {
  border-radius: 10px 0 0 0;
}
.table-table tr:first-child th:last-child {
  border-radius: 0 10px 0 0;
}
.table-table tr:last-child th:first-child {
  border-radius: 0 0 0 10px;
}
.table-table tr:last-child td:last-child {
  border-radius: 0 0 10px 0;
}
.table-table th,
.table-table td {
  width: 20%;
  text-align: center;
  padding: 1.2rem;
  vertical-align: middle;
  line-height: 1.3;
  font-weight: 500;
  font-size: 1.6rem;
}
.table-table th .num,
.table-table td .num {
  font-size: 2.2rem;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}
@media screen and (max-width: 1239px) {
  .table-table th,
  .table-table td {
    width: 10%;
    font-size: 1.6rem;
    max-width: 22.5rem;
  }
}
.table-table .aline-left td li {
  text-align: left;
  margin-left: 1em;
  text-indent: -1em;
}
.table-table .frist-th {
  background: #a0a0a0;
  color: #fff;
}
.table-table .aai-th {
  background: #5397dd;
  color: #fff;
  font-size: 1.8rem;
}
.table-table .aai {
  background: #f0f5ff;
  font-weight: bold;
  color: #5397dd;
  font-size: 1.8rem;
}
.table-table .aai .num {
  font-size: 2.4rem;
}
@media screen and (max-width: 1239px) {
  .table-table .aai {
    font-size: 1.6rem;
  }
}
.table-table .aai li {
  font-weight: bold;
}
.table-table th {
  font-size: 1.6rem;
}
.table-table:after {
  position: absolute;
  content: "";
  top: -3px;
  left: 29.7rem;
  height: 51.5rem;
  width: 29.5rem;
  border: #5397dd 5px solid;
  border-radius: 1rem;
  -webkit-box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
          box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
}
@media screen and (max-width: 1239px) {
  .table-table:after {
    left: 20rem;
    height: 55rem;
    width: 22.9rem;
  }
}

@media screen and (max-width: 1239px) {
  .table__cont {
    width: 100%;
    overflow: hidden;
  }
  .table__scroll {
    overflow-x: scroll;
    width: 100%;
  }
  .table-table {
    width: 90rem;
    margin: 1rem auto 0;
  }
  .scroll {
    text-align: center;
    margin-top: 3rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 16rem;
  }
}
.table-desc {
  line-height: 1.6;
  margin-top: 3rem;
}

.table-desc__head {
  font-size: 2rem;
  font-weight: 500;
  color: #1d3b67;
}
@media screen and (max-width: 767px) {
  .table-desc__head {
    font-size: 1.8rem;
  }
}

.footer {
  background: #1d3b67;
  color: #fff;
  position: relative;
  z-index: 10;
}

.footer__inner {
  margin-top: 53.6rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2rem;
    margin-top: 50rem;
  }
}

.footer__inner--page {
  margin-top: 0;
}

.footer__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .footer__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.6rem;
  }
}
.footer__nav .link {
  padding-right: 2rem;
  margin-right: 2rem;
  color: #fff;
  display: block;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .footer__nav .link {
    padding: 0;
    margin: 0;
  }
}
.footer__nav .link:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.footer__nav .link::after {
  position: absolute;
  width: 1px;
  height: 16px;
  background: #fff;
  right: 0;
  top: 7%;
  content: "";
}
@media screen and (max-width: 767px) {
  .footer__nav .link::after {
    display: none;
  }
}
.footer__nav .link:last-child {
  margin-right: 0;
  padding-right: 0;
}
.footer__nav .link:last-child::after {
  display: none;
}

.footer__copyright {
  font-size: 1.2rem;
  font-family: "Poppins", sans-serif;
}

#page-loader {
  position: fixed;
  inset: 0;
  background: -webkit-gradient(linear, left top, right top, from(#85bcfb), to(#3f9ce8));
  background: -webkit-linear-gradient(left, #85bcfb 0%, #3f9ce8 100%);
  background: linear-gradient(to right, #85bcfb 0%, #3f9ce8 100%);
  z-index: 9999;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 1;
  pointer-events: none;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}

#page-loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.spinner {
  width: 60px;
  height: 60px;
  -webkit-animation: rotator 1.4s linear infinite;
          animation: rotator 1.4s linear infinite;
}

@-webkit-keyframes rotator {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
  }
}

@keyframes rotator {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
  }
}
.path {
  stroke: white;
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash 1.4s ease-in-out infinite;
          animation: dash 1.4s ease-in-out infinite;
}

@-webkit-keyframes dash {
  0% {
    stroke-dashoffset: 187;
  }
  50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
  }
}

@keyframes dash {
  0% {
    stroke-dashoffset: 187;
  }
  50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
  }
}
.privacy {
  font-size: 1.6rem;
  line-height: 1.7;
  padding: 5rem 0;
  background-color: #fff;
  margin-top: 14.5rem;
}

.privacy__inner {
  max-width: 90rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.privacy__title {
  font-size: 2.8rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
}

.privacy__list {
  counter-reset: number;
  list-style: none;
  padding-left: 0;
}

.privacy__item {
  margin-bottom: 3rem;
  position: relative;
  padding-left: 3rem;
}

.privacy__heading {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #1d3b67;
}

.privacy__text {
  margin-bottom: 1.2rem;
  font-size: 1.6rem;
}

.privacy__note {
  margin-top: 2rem;
}

.privacy__subheading {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 2rem 0 1rem;
  color: #1d3b67;
}

dl {
  margin-top: 1.5rem;
  font-size: 1.6rem;
}

dl dt {
  font-weight: 600;
  margin-top: 1.2rem;
}

dl dd {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.privacy__links {
  margin-top: 1.5rem;
  font-size: 1.4rem;
}

.privacy__links li {
  margin-bottom: 0.6rem;
}

.privacy__contact {
  font-style: normal;
  font-size: 1.5rem;
  line-height: 1.8;
  margin-top: 1rem;
  padding: 1rem 2rem;
  border: 1px solid #cccccc;
}

.privacy__contact a {
  color: #1d3b67;
  text-decoration: underline;
}

.privacy__box {
  margin-top: 2rem;
  margin-bottom: 2rem;
  font-size: 1.6rem;
  line-height: 1.6;
}
.privacy__box dl {
  padding: 1rem 2rem;
  border: 1px solid #cccccc;
}

.privacy__box dl dt {
  font-weight: 500;
  margin-top: 1.2rem;
}

.privacy__box dl dd {
  margin-left: 2rem;
  margin-bottom: 1rem;
}

.company__inner {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
@media screen and (max-width: 767px) {
  .company__inner {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.page-footer__inner {
  margin-top: 0;
}

.company__inner {
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .company__inner {
    margin-top: 4rem;
  }
}

.contact {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .contact {
    font-size: 1.6rem;
  }
}

.contact__inner {
  max-width: 96rem;
  margin: 0 auto;
  padding-top: 20rem;
  padding-bottom: 10rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media screen and (max-width: 767px) {
  .contact__inner {
    padding-top: 10rem;
  }
}

.contact__en-title,
.contact__title {
  text-align: center;
}

.contact__desc {
  font-size: 1.6rem;
  line-height: 2;
}

.contact__container {
  background: #fff;
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .contact__container {
    margin-top: 0;
    padding: 4rem 0;
  }
}

.contact__label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 3.3rem;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .contact__label {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
  }
}
.contact__label:first-child {
  margin-top: 0;
}

.contact__label__head-cont {
  width: 22rem;
}

.contact__item__head {
  display: inline-block;
  font-weight: bold;
  width: 15rem;
}
@media screen and (max-width: 1239px) {
  .contact__item__head {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .contact__item__head {
    width: auto;
  }
}

.req {
  width: 5.8rem;
  text-align: center;
  font-size: 1.6rem;
  color: #fff;
  line-height: 2.6rem;
  background: #c72323;
  color: #fff;
  margin-left: 1.2rem;
  display: inline-block;
  height: 2.9rem;
}
@media screen and (max-width: 767px) {
  .req {
    font-size: 1.4rem;
    height: 2.4rem;
    line-height: 2.4rem;
  }
}

.contact__input,
.contact__textarea {
  width: 100%;
  max-width: 66.7rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  background-image: none;
  border: 1px solid #878787;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: 1.6rem;
  padding: 0.4em 0.8em;
}
.contact__input:focus,
.contact__textarea:focus {
  border: 1px solid rgba(0, 0, 0, 0.32);
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}
.contact__input::-webkit-input-placeholder, .contact__textarea::-webkit-input-placeholder {
  color: #aaa;
}
.contact__input::-moz-placeholder, .contact__textarea::-moz-placeholder {
  color: #aaa;
}
.contact__input:-ms-input-placeholder, .contact__textarea:-ms-input-placeholder {
  color: #aaa;
}
.contact__input::-ms-input-placeholder, .contact__textarea::-ms-input-placeholder {
  color: #aaa;
}
.contact__input::placeholder,
.contact__textarea::placeholder {
  color: #aaa;
}

.contact__input {
  max-width: 40rem;
}

.contact__textarea {
  height: 22rem;
}

.contact__btn-cont {
  text-align: center;
}

.contact__btn {
  background-color: #cfcfcf;
  background-image: none;
  border: none;
  border-radius: 4rem;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 1.8rem;
  margin: 0;
  font-weight: bold;
  padding: 1.8rem 8rem;
  text-decoration: none;
  margin-top: 5rem;
  cursor: not-allowed;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.contact__btn.active {
  background-color: #1d3b67;
  cursor: pointer;
}
.contact__btn.active:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .contact__btn {
    margin-top: 3rem;
  }
}

.submitbtn {
  background-color: #cfcfcf;
  background-image: none;
  border: none;
  border-radius: 4rem;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 1.8rem;
  margin: 0;
  font-weight: bold;
  padding: 1.8rem 8rem;
  text-decoration: none;
  margin-top: 5rem;
  background: #1d3b67;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.submitbtn:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.contact__btn:hover,
.contact__btn:focus {
  outline: none;
}

.contact__btn::-moz-foucus-inner {
  border: none;
  padding: 0;
}

.contact__privacy {
  margin-top: 4rem;
  display: block;
}
.contact__privacy a {
  text-decoration: underline;
  color: #1d3b67;
}
.contact__privacy a:hover {
  opacity: 0.7;
}

.privacy-check {
  display: none;
}

.privacy-check + span {
  cursor: pointer;
  display: inline-block;
  margin: 0 0.2em 0;
  padding: 0 0 0 1.4em;
  position: relative;
}

.privacy-check + span::before {
  -webkit-transform: translateY(-50%);
  background: #fff;
  border: 1px solid #878787;
  border-radius: 0;
  content: "";
  display: block;
  height: 1em;
  left: 0;
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  width: 1em;
}

.privacy-check + span::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  border-bottom: 3px solid #1d3b67;
  border-left: 3px solid #1d3b67;
  content: "";
  display: block;
  height: 0.6em;
  left: 0;
  margin-top: -0.2em;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 1em;
}

.privacy-check:checked + span::after {
  opacity: 1;
}

.thanks {
  background: #fff;
}

.thanks-header {
  background: #333;
}

.thanks__inner {
  padding: 20rem 2rem 14rem;
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .thanks__inner {
    padding: 14rem 2rem 10rem;
  }
}

.thanks__btn-container {
  text-align: center;
}

.thanks__btn {
  margin-top: 6rem;
  color: #fff;
  background: #1d3b67;
  padding: 1.6rem 5rem;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .thanks__btn {
    margin-top: 4rem;
  }
}

.back__btn {
  background-color: #d5d5d5;
  color: #fff;
  cursor: pointer;
  padding: 1.8rem 3rem;
  margin-right: 2.4rem;
  color: #555;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.back__btn:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.page__inner {
  max-width: 100rem;
  margin: 0 auto;
  padding-top: 21rem;
  padding-bottom: 8rem;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media screen and (max-width: 767px) {
  .page__inner {
    padding-top: 10rem;
    padding-bottom: 5rem;
  }
}

.page-container {
  margin-top: 10rem;
  line-height: 2;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .page-container {
    margin-top: 6rem;
    font-size: 1.4rem;
  }
}

.card-body {
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
  text-align: left;
}
.card-body p {
  margin-bottom: 2rem;
}
.card-body th {
  padding-right: 2rem;
}
.card-body ol {
  margin-left: 2rem;
  list-style-type: decimal;
}
@media screen and (max-width: 767px) {
  .card-body ol {
    margin-left: 1rem;
  }
}
.card-body ol li {
  margin-left: 4rem;
}
@media screen and (max-width: 767px) {
  .card-body ol li {
    margin-left: 2rem;
  }
}
.card-body ol > li {
  margin-bottom: 2rem;
}