@charset "UTF-8";
/*=========================*/
/*base*/
/*=========================*/
html {
  scroll-behavior: smooth;
}

* {
  list-style-type: none;
  color: #1A202C;
}

body {
  background-color: #F7FAFC;
}

a {
  text-decoration: none;
}

.contentsBlock {
  width: 70%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 1100px) {
  .contentsBlock {
    width: 80%;
  }
}
@media only screen and (max-width: 750px) {
  .contentsBlock {
    width: 90%;
  }
}

.problems,
.features,
.testimonials,
.flow,
.pricing,
.faq {
  padding-top: 10rem;
  padding-bottom: 4rem;
  overflow: hidden;
}
@media only screen and (max-width: 750px) {
  .problems,
  .features,
  .testimonials,
  .flow,
  .pricing,
  .faq {
    padding-top: 4rem;
  }
}

.problems h2,
.testimonials h2,
.pricing h2 {
  position: relative;
  text-align: center;
  padding-top: 5rem;
  margin-bottom: 3rem;
}
.problems h2 span,
.testimonials h2 span,
.pricing h2 span {
  position: absolute;
  z-index: -1;
  text-align: center;
  transform: translateX(-50%);
  left: 50%;
  font-size: 12rem;
  color: rgba(66, 153, 225, 0.1);
  bottom: -50px;
  letter-spacing: 1rem;
}
@media only screen and (max-width: 750px) {
  .problems h2 span,
  .testimonials h2 span,
  .pricing h2 span {
    font-size: 6rem;
    bottom: 0;
  }
}

.features,
.flow,
.faq {
  background-color: #D9F4FF;
  background-image: linear-gradient(to bottom, #D9F4FF, #4299E1);
}
.features h2,
.flow h2,
.faq h2 {
  position: relative;
  text-align: center;
  padding-top: 5rem;
  margin-bottom: 3rem;
  isolation: isolate;
}
.features h2 span,
.flow h2 span,
.faq h2 span {
  position: absolute;
  z-index: -1;
  text-align: center;
  transform: translateX(-50%);
  left: 50%;
  font-size: 12rem;
  color: rgba(255, 255, 255, 0.7);
  bottom: -50px;
  letter-spacing: 1rem;
}
@media only screen and (max-width: 750px) {
  .features h2 span,
  .flow h2 span,
  .faq h2 span {
    font-size: 6rem;
    bottom: 0;
  }
}

.features {
  position: relative;
}
.features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  /* ボーダーで三角形を作る */
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-top: 40px solid #F7FAFC;
}

p {
  text-align: justify;
}

/*=========================*/
/*フェードアニメ*/
/*=========================*/
/* フェードアップのスタイル */
.fadeUp {
  animation: fadeUpAnime 0.8s forwards; /* fadeUpAnimeを0.8秒で一回実行 */
  opacity: 0;
}
.fadeUp--2 {
  animation-delay: 0.4s;
}
.fadeUp--3 {
  animation-delay: 0.8s;
}

/* フェードレフトのスタイル */
.fadeLeft {
  animation: fadeLeftAnime 1.4s forwards; /* fadeLeftAnimeを0.8秒で一回実行 */
  animation-delay: 0.3s;
  opacity: 0;
}

/* フェードライトのスタイル */
.fadeRight {
  animation: fadeRightAnime 0.8s forwards; /* fadeRightAnimeを0.8秒で一回実行 */
  opacity: 0;
}

/* トリガーアニメーションのスタイル */
.fadeUpTrigger,
.fadeUpTrigger--2,
.fadeUpTrigger--3,
.fadeLeftTrigger,
.fadeRightTrigger {
  opacity: 0; /* 最初は非表示 */
}

@keyframes fadeUpAnime {
  from {
    opacity: 0; /* 最初は非表示 */
    transform: translateY(100px); /* 100px下に動かす */
  }
  to {
    opacity: 1; /* 可視化する */
    transform: translateY(0); /* 元の位置に戻す */
  }
}
@keyframes fadeLeftAnime {
  from {
    opacity: 0; /* 最初は非表示 */
    transform: translateX(100px); /* 100px右に動かす */
  }
  to {
    opacity: 1; /* 可視化する */
    transform: translateX(0); /* 元の位置に戻す */
  }
}
@keyframes fadeRightAnime {
  from {
    opacity: 0; /* 最初は非表示 */
    transform: translateX(-100px); /* 100px左に動かす */
  }
  to {
    opacity: 1; /* 可視化する */
    transform: translateX(0); /* 元の位置に戻す */
  }
}
/*=========================*/
/*header*/
/*=========================*/
header {
  background-color: #F7FAFC;
  height: 80px;
  width: 100%;
  position: fixed;
  z-index: 1000;
}

header .contentsBlock {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
@media only screen and (max-width: 750px) {
  header .contentsBlock {
    justify-content: start;
    gap: 1rem;
  }
}

h1 img {
  width: 200px;
}
@media only screen and (max-width: 750px) {
  h1 img {
    width: 120px;
  }
}
h1 img a {
  display: block;
  width: 100%;
  height: 100%;
}

.header-rightBlock {
  display: flex;
  justify-content: end;
  align-items: center;
  height: 100%;
}
.header-rightBlock #g-nav {
  height: 100%;
}
.header-rightBlock #g-nav ul {
  display: flex;
  justify-content: end;
  align-items: center;
  height: 100%;
}
.header-rightBlock #g-nav ul li {
  height: 100%;
  font-size: clamp(12px, 1vw, 14px);
  white-space: nowrap;
}
.header-rightBlock #g-nav ul li a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  transition: ease-in-out 0.4s;
}
.header-rightBlock #g-nav ul li a:hover {
  background-color: #2D3748;
  color: #ffffff;
  transition: ease-in-out 0.4s;
}
.header-rightBlock .header-cta {
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  background-color: #4299E1;
  padding: 5px 1rem;
  color: #ffffff;
  transition: ease-in-out 0.4s;
  font-size: clamp(12px, 1vw, 14px);
  white-space: nowrap;
}
.header-rightBlock .header-cta:hover {
  background-color: #2D3748;
  transition: ease-in-out 0.4s;
}

/*=========================*/
/*Nav*/
/*=========================*/
@media only screen and (max-width: 1100px) {
  #g-nav {
    position: fixed;
    z-index: 3000;
    top: 0;
    right: -120%;
    width: 80%;
    height: 100vh;
    background-color: #F7FAFC;
    transition: all 0.6s;
  }
  #g-nav.panelactive {
    right: 0;
  }
  #g-nav ul {
    flex-direction: column;
    justify-content: center;
  }
  #g-nav ul li {
    height: 100px;
    width: 100%;
    font-size: 14px;
    border-bottom: 1px dotted #4299E1;
  }
  .openbtn {
    position: fixed;
    z-index: 3100;
    top: 10px;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
  }
  .openbtn span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #4299E1;
    width: 45%;
  }
  .openbtn span:nth-of-type(1) {
    top: 15px;
  }
  .openbtn span:nth-of-type(2) {
    top: 23px;
  }
  .openbtn span:nth-of-type(3) {
    top: 31px;
  }
  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn.active span:nth-of-type(3) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(45deg);
    width: 30%;
  }
}
#js-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(24, 47, 66, 0.7);
  z-index: 2900;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s, visibility 0.6s;
}
#js-overlay.active {
  opacity: 1;
  visibility: visible;
}

.only-sp {
  display: none;
}
@media only screen and (max-width: 750px) {
  .only-sp {
    display: block;
  }
}
@media only screen and (max-width: 750px) {
  .only-sp a {
    background-color: #4299E1;
    color: #ffffff;
    display: block;
    font-size: 1rem;
  }
}

/*=========================*/
/*footer*/
/*=========================*/
footer {
  background-color: #2D3748;
  padding: 2rem;
  margin-top: 10rem;
}
footer img {
  width: 260px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
footer ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}
@media only screen and (max-width: 750px) {
  footer ul li {
    font-size: 10px;
  }
}
footer ul li + li::before {
  content: "|";
  color: #ffffff;
  margin: 0 1rem;
}
footer ul li a {
  color: #ffffff;
}
footer .copy-right {
  text-align: center;
  margin-top: 2rem;
}
footer .copy-right small {
  color: #ffffff;
}
@media only screen and (max-width: 750px) {
  footer .copy-right small {
    font-size: 10px;
  }
}

#page-top {
  position: fixed;
  right: 10px;
  z-index: 20;
  opacity: 0;
  transform: translateY(100px);
}
#page-top a {
  display: block;
  width: 52px;
  height: 52px;
  background-color: #2D3748;
  position: relative;
}
#page-top a::before {
  position: absolute;
  content: "";
  top: 55%;
  left: 50%;
  width: 25%;
  height: 25%;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  transform: translate(-50%, -50%) rotate(-45deg);
  transition: all 0.3s;
}

/*　上に上がる動き　*/
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　下に下がる動き　*/
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
.main-visual {
  height: 100vh;
  background-image: url("../img/mv.png");
  background-repeat: no-repeat;
  background-size: auto 100%;
  background-color: #2D3748;
  /* アニメーション名: slide-animation
  時間: 40秒かけて1往復
  速度: ease-in-out (開始と終了が滑らか)
  繰り返し: infinite (無限)
  進行方向: alternate (往復)
  */
  animation: slide-animation 40s ease-in-out infinite alternate;
}

@keyframes slide-animation {
  /* 開始時（左端に表示） */
  0% {
    background-position: 0% 50%;
  }
  /* 終了時（右端に表示） */
  100% {
    background-position: 100% 50%;
  }
}
.main-cc {
  text-align: center;
  font-size: 4rem;
  text-shadow: 1px 1px 10px #2D3748;
  padding-top: 14%;
  font-weight: 700;
}
@media only screen and (max-width: 1100px) {
  .main-cc {
    padding-top: 12rem;
  }
}
@media only screen and (max-width: 750px) {
  .main-cc {
    font-size: 2rem;
    padding-top: 30%;
  }
}
.main-cc .emphasis {
  font-size: 6rem;
  color: #ffffff;
}
@media only screen and (max-width: 750px) {
  .main-cc .emphasis {
    font-size: 4rem;
  }
}
.main-cc .line-group {
  white-space: nowrap;
  color: #ffffff;
}

.main-cc-2 {
  text-align: center;
  transform: translateY(20%);
  color: #ffffff;
  font-size: 1.2rem;
  padding: 1rem;
  background-color: #2D3748;
  border: 1px solid #ffffff;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 1100px) {
  .main-cc-2 {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 750px) {
  .main-cc-2 {
    font-size: 1rem;
  }
}
.main-cc-2 br {
  display: none;
}

.main-cc-3 {
  text-align: left;
  color: #ffffff;
  font-weight: 500;
  font-size: 1.2rem;
  margin-top: 10%;
}
@media only screen and (max-width: 1100px) {
  .main-cc-3 {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 750px) {
  .main-cc-3 {
    font-size: 1rem;
    padding-top: 10%;
  }
}

.mv-cta {
  background-color: rgba(255, 255, 255, 0.7);
  width: 30%;
  min-width: 350px;
  margin-top: 2rem;
  display: block;
  height: 100%;
  padding: 2rem;
}
@media only screen and (max-width: 1100px) {
  .mv-cta {
    width: 60%;
  }
}
@media only screen and (max-width: 750px) {
  .mv-cta {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    min-width: auto;
  }
}
.mv-cta .mv-cta-cc {
  text-align: center;
  background-color: #2D3748;
  color: #ffffff;
  padding: 1rem;
  font-weight: 500;
  font-size: 1.2rem;
}
@media only screen and (max-width: 1100px) {
  .mv-cta .mv-cta-cc {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 750px) {
  .mv-cta .mv-cta-cc {
    font-size: 1.2rem;
  }
}
.mv-cta .mv-cta-cc-2 {
  text-align: center;
  position: relative;
}
@media only screen and (max-width: 1100px) {
  .mv-cta .mv-cta-cc-2 {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 750px) {
  .mv-cta .mv-cta-cc-2 {
    font-size: 1rem;
  }
}
.mv-cta .mv-cta-cc-2::before, .mv-cta .mv-cta-cc-2::after {
  position: absolute;
  content: "";
  height: 30px;
  width: 2px;
  background-color: #2D3748;
}
.mv-cta .mv-cta-cc-2::before {
  transform: rotate(45deg);
  left: 15px;
}
.mv-cta .mv-cta-cc-2::after {
  transform: rotate(-45deg);
  right: 15px;
}

/*=========================*/
/*Problems*/
/*=========================*/
.flexBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 3rem;
  align-items: stretch;
}
@media only screen and (max-width: 750px) {
  .flexBox {
    flex-direction: column;
  }
}

.problems-box {
  --image-width: 8rem;
  height: auto;
  flex-basis: 48%;
  background-color: #4299E1;
  background-image: linear-gradient(to bottom right, #4299E1, #24547B);
  margin-top: 4em;
  padding: 0 1rem 2rem 1rem;
  box-shadow: 1px 1px 10px rgba(24, 47, 66, 0.7);
}
.problems-box img {
  width: var(--image-width);
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: calc(var(--image-width) / 2 * -1);
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.problems-box h3 {
  color: #ffffff;
  margin-top: 2rem;
  margin-bottom: 1rem;
  text-align: center;
  letter-spacing: 0.1rem;
}
.problems-box p {
  color: #ffffff;
}

/*=========================*/
/*Features*/
/*=========================*/
.features-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  align-items: stretch;
}
@media only screen and (max-width: 750px) {
  .features-block {
    flex-direction: column;
    gap: 2rem;
  }
}
.features-block li {
  background-color: #ffffff;
  padding: 2rem 1rem;
  flex: 1;
}
.features-block li img {
  width: 6rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
}
.features-block li h3 {
  text-align: center;
  margin-bottom: 1rem;
}

/*=========================*/
/*Testimonials*/
/*=========================*/
.testimonials-block {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 750px) {
  .testimonials-block {
    flex-direction: column;
    position: relative;
  }
}
.testimonials-block:nth-child(even) {
  flex-direction: row-reverse;
  margin-top: 3rem;
}
@media only screen and (max-width: 750px) {
  .testimonials-block:nth-child(even) {
    flex-direction: column;
    margin-top: 5rem;
  }
}
.testimonials-block:nth-child(even) .testimonials-block-textBlock {
  margin-left: 0;
  margin-right: -5rem;
}
@media only screen and (max-width: 750px) {
  .testimonials-block:nth-child(even) .testimonials-block-textBlock {
    margin-right: 0;
  }
}
.testimonials-block img {
  width: 55%;
}
@media only screen and (max-width: 750px) {
  .testimonials-block img {
    width: 100%;
  }
}
.testimonials-block .testimonials-block-textBlock {
  width: 55%;
  /* テキストブロックの幅 */
  background-color: white;
  padding: 2.5rem;
  position: relative;
  z-index: 10;
  margin-left: -5rem;
  background-color: transparent;
  background-image: linear-gradient(143deg, rgba(233, 240, 250, 0.2), rgba(168, 202, 240, 0.7));
}
@media only screen and (max-width: 750px) {
  .testimonials-block .testimonials-block-textBlock {
    margin-left: 0;
    position: static;
    padding: 1.5rem;
    width: 90%;
    margin-top: -5rem;
    margin-left: auto;
    margin-right: auto;
    z-index: 10;
  }
}
.testimonials-block h3 {
  margin-bottom: 2rem;
  text-align: center;
  font-size: 1.4rem;
}
@media only screen and (max-width: 750px) {
  .testimonials-block h3 {
    font-size: 1.1rem;
  }
}
.testimonials-block p {
  text-align: justify;
}

/*=========================*/
/*Flow*/
/*=========================*/
.flow-block {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
  position: relative;
  margin-bottom: 32px;
}
@media only screen and (max-width: 750px) {
  .flow-block {
    flex-direction: column;
    justify-content: space-evenly;
    gap: 2rem;
    width: 100%;
    padding: 2rem;
  }
}
.flow-block:last-child {
  margin-bottom: 0;
}
.flow-block:not(:last-child)::after {
  /* 最後の要素"以外"の .flow-block の後ろに三角形を追加 */
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-top: 30px solid #1A202C;
}
.flow-block-leftBox {
  width: 30%;
  min-width: 250px;
  padding-left: 1rem;
}
@media only screen and (max-width: 750px) {
  .flow-block-leftBox {
    width: 100%;
    padding-left: 0;
  }
}
.flow-block-leftBox p {
  font-weight: bold;
}
.flow-block-rightBox {
  width: 70%;
  max-width: calc(100% - 250px);
  padding-right: 1rem;
}
@media only screen and (max-width: 750px) {
  .flow-block-rightBox {
    width: 100%;
    max-width: 100%;
    padding-right: 0;
  }
}

/*=========================*/
/*pricing*/
/*=========================*/
.pricing-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
@media only screen and (max-width: 750px) {
  .pricing-block {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 0 7.5%;
    gap: 0;
    -webkit-overflow-scrolling: touch;
    /* Firefox用のスクロールバー */
    scrollbar-width: thin; /* スクロールバーを細く表示 */
    scrollbar-color: #4299E1 #F7FAFC; /* [つまみ] [背景(トラック)] の色 */
    /* Chrome, Safari, EdgeなどWebKit系のブラウザ用 */
    /* スクロールバーの背景部分（トラック） */
    /* スクロールバーのつまみ部分（サム） */
  }
  .pricing-block::-webkit-scrollbar {
    height: 8px; /* スクロールバーの高さ */
  }
  .pricing-block::-webkit-scrollbar-track {
    background-color: #F7FAFC; /* 背景色 */
    border-radius: 4px;
  }
  .pricing-block::-webkit-scrollbar-thumb {
    background-color: #4299E1; /* つまみの色 */
    border-radius: 4px;
  }
  .pricing-block::-webkit-scrollbar-thumb:hover {
    background-color: #2D3748; /* マウスホバー時のつまみの色 */
  }
}
.pricing-block h3 {
  color: #ffffff;
  text-align: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
  width: 100%;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.pricing-block .pricing-block-box {
  flex: 1;
  border: 1px solid #4299E1;
}
@media only screen and (max-width: 750px) {
  .pricing-block .pricing-block-box {
    flex: 0 0 85%; /* 伸び縮みせず、幅85%を維持 */
    scroll-snap-align: center; /* 中央でスナップする */
  }
  .pricing-block .pricing-block-box:not(:last-child) {
    margin-right: 2rem;
  }
}
.pricing-block .pricing-block-box:nth-child(1) h3 {
  background-color: #4299E1;
}
.pricing-block .pricing-block-box:nth-child(2) h3 {
  background-color: #4299E1;
  background-image: linear-gradient(to bottom right, #4299E1, #24547B);
}
.pricing-block .pricing-block-box:nth-child(2) h3 span {
  color: #ffffff;
}
.pricing-block .pricing-block-box:nth-child(3) h3 {
  background-color: #24547B;
}
.pricing-block .pricing-block-box > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border: 1px dotted #4299E1;
  padding-left: 1rem;
  padding-right: 1rem;
}
.pricing-block .pricing-block-box > div > p {
  font-size: clamp(12px, 1vw, 14px);
  white-space: nowrap;
}
.pricing-block .pricing-block-box > div > p > span {
  font-size: clamp(10px, 1vw, 11px);
}
.pricing-block .pricing-block-box > a {
  color: #ffffff;
  background-color: #24547B;
  display: block;
  margin-top: 2rem;
  margin-bottom: 2rem;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1rem;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #4299E1;
  transition: ease-in-out 0.2s;
  box-shadow: 2px 2px 4px rgba(24, 47, 66, 0.7);
}
.pricing-block .pricing-block-box > a:hover {
  background-color: #4299E1;
  transition: ease-in-out 0.2s;
  border: 1px solid #2D3748;
  box-shadow: none;
}

/*=========================*/
/*FAQ*/
/*=========================*/
.faq .accordion-area li {
  border: 1px solid #4299E1;
  margin-top: 2rem;
}
.faq .accordion-area li section .title {
  position: relative;
  cursor: pointer;
  padding: 1rem 2rem;
  transition: ease-in-out 0.2s;
  background-color: #24547B;
  color: #ffffff;
}
@media only screen and (max-width: 750px) {
  .faq .accordion-area li section .title {
    font-size: 1.1rem;
  }
}
.faq .accordion-area li section .title::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  transition: 0.2s ease-in-out;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 5px 0 5px;
  border-color: #ffffff transparent transparent transparent;
  transform: translateY(-50%);
}
.faq .accordion-area li section .title.close::before {
  transform: translateY(-50%) rotate(180deg);
}
.faq .accordion-area li .box {
  padding: 1rem;
  background-color: #ffffff;
  display: none;
}
@media only screen and (max-width: 750px) {
  .faq .accordion-area li .box {
    font-size: 14px;
  }
}

/*=========================*/
/*CTA*/
/*=========================*/
.cta {
  background-color: #4299E1;
  background-image: linear-gradient(to bottom right, #4299E1, #24547B);
  margin-top: 6rem;
  padding: 4rem 3rem;
}
@media only screen and (max-width: 1100px) {
  .cta {
    padding: 3rem 2rem;
  }
}
@media only screen and (max-width: 750px) {
  .cta {
    padding: 2rem 1rem;
  }
}
.cta .cta-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
@media only screen and (max-width: 750px) {
  .cta .cta-block {
    flex-direction: column;
  }
}
.cta .cta-block-box:nth-child(1) {
  flex: 0 0 60%;
}
@media only screen and (max-width: 1100px) {
  .cta .cta-block-box:nth-child(1) {
    flex: 0 0 55%;
  }
}
.cta .cta-block-box:nth-child(1) h2 {
  text-align: center;
  font-size: clamp(30px, 1vh, 34px);
  color: #ffffff;
  text-wrap: pretty;
}
.cta .cta-block-box:nth-child(1) h2 span {
  display: inline-block;
  color: #ffffff;
}
.cta .cta-block-box:nth-child(1) p {
  margin-top: 2rem;
  text-align: center;
  color: #ffffff;
  line-height: 2;
  font-size: clamp(14px, 1vw, 16px);
}
@media only screen and (max-width: 750px) {
  .cta .cta-block-box:nth-child(1) p {
    font-size: 12px;
  }
}
.cta .cta-block-box:nth-child(2) {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  flex: 1;
}
.cta .cta-block-box:nth-child(2) img {
  width: 70%;
}
.cta .cta-block-box:nth-child(2) a {
  display: block;
  background-color: #ffffff;
  color: #4299E1;
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(30px, 1vh, 34px);
  padding: 1rem;
  text-align: center;
  font-weight: 700;
}
@media only screen and (max-width: 750px) {
  .cta .cta-block-box:nth-child(2) a {
    font-size: 1.6rem;
  }
}
.cta .cta-block-box:nth-child(2) a span {
  color: #4299E1;
  font-size: 1.2rem;
}
.cta .cta-block-box:nth-child(2) p {
  color: #ffffff;
  position: relative;
  margin-top: 1rem;
}
.cta .cta-block-box:nth-child(2) p::before, .cta .cta-block-box:nth-child(2) p::after {
  position: absolute;
  content: "";
  top: 0;
  background-color: #ffffff;
  height: 110%;
  width: 2px;
}
.cta .cta-block-box:nth-child(2) p::before {
  transform: rotate(45deg);
  left: -1rem;
}
.cta .cta-block-box:nth-child(2) p::after {
  transform: rotate(-45deg);
  right: -1rem;
}