@charset "UTF-8";
/*===========================================
    変数
===========================================*/
/*===========================================
    共通
===========================================*/
html {
  margin: 0;
  padding: 0;
  scrollbar-gutter: stable;
}
@media screen and (max-width: 1020px) {
  html {
    overflow-x: clip;
    overflow-x: hidden;
  }
}

body * {
  font-family: "Noto Sans JP", sans-serif;
  color: #07264e;
  line-height: 1.5;
}

body {
  overflow-x: hidden !important;
  position: relative;
  margin: 0;
  padding: 0;
}

picture {
  display: block;
}
picture img {
  width: 100%;
}

@media screen and (max-width: 1020px) {
  main {
    overflow-x: hidden !important;
  }
}

.wrap {
  position: relative;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1250px) {
  .inner {
    margin: auto;
    width: 90%;
  }
}

.title {
  position: relative;
  text-align: center;
  font-weight: 900;
  font-size: 28px;
}
@media screen and (max-width: 768px) {
  .title {
    font-size: 21px;
  }
}
.title_main.white {
  color: #fff;
}
.title_sub {
  font-size: 0.6em;
  color: #22b3e7;
}
.title_sub.yellow {
  color: #fff43b;
}

.subtitle {
  font-size: 21px;
  font-weight: 700;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .subtitle {
    font-size: 18px;
  }
}
.subtitle::before {
  content: "";
  display: block;
  background-color: #fff43b;
  height: 1.2em;
  width: 0.4em;
  margin-right: 0.5em;
}

.description {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  margin: 40px auto 20px;
}
@media screen and (max-width: 768px) {
  .description {
    font-size: clamp(13px, 3.2vw, 16px);
    margin: 30px auto 20px;
  }
}

.cta {
  display: table;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .cta {
    margin: 30px auto 0;
  }
}
.cta_text {
  color: #22b3e7;
  font-weight: 700;
  font-size: 16px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.3em;
}
@media screen and (max-width: 768px) {
  .cta_text {
    font-size: 14px;
  }
}
.cta_text::before, .cta_text::after {
  content: "";
  display: block;
  background-color: #22b3e7;
  width: 3px;
  height: 1.3em;
}
.cta_text::before {
  transform: rotate(150deg);
  margin-right: 0.6em;
}
.cta_text::after {
  transform: rotate(30deg);
  margin-left: 0.6em;
}
.cta_btn {
  background-color: #22b3e7;
  padding: 8px 60px;
  display: inline-block;
  position: relative;
  border-radius: 50px;
  text-decoration: none;
  font-size: 24px;
  white-space: nowrap;
  box-shadow: 0px 0px 5px rgba(13, 52, 64, 0.2);
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .cta_btn {
    border-radius: 100px;
    font-size: 18px;
    padding: 8px 0;
    width: 100%;
  }
}
.cta_btn::before {
  content: "";
  display: block;
  height: 110%;
  background-image: url("../img/sp_line.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  aspect-ratio: 44/85;
  left: 0;
  bottom: 0;
}
.cta_btn-text {
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta_btn-text::before {
  content: "無料";
  font-size: 0.8em;
  color: #22b3e7;
  background-color: #fff;
  padding: 0 0.3em;
  border-radius: 2px;
  margin-right: 0.4em;
}
.cta_btn-subtext {
  font-weight: 700;
  font-size: 0.6em;
  color: #fff43b;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta_baloon {
  font-size: 15px;
  padding: 0.4em 0;
  width: 100%;
  border-radius: 5px;
  background-color: #dfe5e8;
  text-align: center;
  font-weight: 900;
  position: relative;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .cta_baloon {
    font-size: 14px;
    border-radius: 3px;
  }
}
.cta_baloon::before {
  content: "";
  display: block;
  position: absolute;
  background-color: #dfe5e8;
  width: 8px;
  height: 15px;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.notice {
  font-size: 15px;
  color: #9b9b9b;
  text-align: center;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .notice {
    font-size: 12px;
    margin-top: 30px;
    text-align: left;
  }
}

.mockup {
  max-width: 320px;
}
.mockup img {
  position: relative;
  z-index: 1;
  max-height: 100%;
}
.mockup::after {
  content: "";
  mix-blend-mode: multiply;
  width: 175%;
  height: 15%;
  border-radius: 50%;
  position: absolute;
  bottom: 3%;
  right: 0;
  transform: rotate(10deg);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.fade {
  transition: opacity 1s ease;
  will-change: opacity;
  opacity: 0;
}
.fade.animated {
  opacity: 1;
}

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

@media screen and (min-width: 769px) {
  .only-sp {
    display: none !important;
  }
}

/*===========================================
    ローディング
===========================================*/
.load {
  position: fixed;
  inset: 0;
  background: #eff2f4;
  display: grid;
  place-items: center;
  transition: opacity 0.3s ease;
  z-index: 1500;
  overflow: hidden;
  contain: layout paint size;
  touch-action: none;
  overscroll-behavior: none;
}
.load.completed {
  opacity: 0;
  visibility: hidden;
}
.load_wrap {
  width: 150px;
  max-width: 90vw;
}
.load_text {
  color: #22b3e7;
  font-weight: 700;
  font-size: 21px;
  margin-top: 0.5em;
  text-align: center;
  animation: flash 1s linear infinite;
}

@keyframes flash {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
/*===========================================
    nav
===========================================*/
.nav {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 15px 30px;
  position: fixed;
  top: 0;
  z-index: 10;
  background-color: #fff;
  box-shadow: 0px 0px 10px -6px rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 768px) {
  .nav {
    padding: 10px 5%;
  }
}
.nav_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  width: 100%;
  max-width: 1200px;
}
.nav_logo {
  width: 135px;
  display: flex;
}
@media screen and (max-width: 768px) {
  .nav_logo {
    width: 35%;
    max-width: 100px;
  }
}
.nav_logo a {
  width: 100%;
}
.nav_logo img {
  height: auto;
}
.nav_cta {
  display: flex;
  gap: 0.5em;
}
@media screen and (max-width: 1080px) {
  .nav_cta {
    margin: 0 0 0 auto;
  }
}
.nav_cta .cta_btn {
  padding: 0.4em 1.2em;
  background-color: #fff43b;
}
@media screen and (max-width: 1080px) {
  .nav_cta .cta_btn {
    padding: 0.4em 1.2em;
  }
  .nav_cta .cta_btn::before {
    content: none;
  }
}
.nav_cta .cta_btn::before {
  content: none;
}
.nav_cta .cta_btn-text {
  font-size: 14px;
  min-width: auto;
  color: #07264e;
}
.nav_cta .cta_btn-text::before {
  content: none;
}
.nav_cta .cta_btn-text::after {
  content: url("../img/dl.svg");
  display: block;
  width: 1em;
  height: 1.3em;
  margin-left: 0.5em;
}

/*===========================================
    MV
===========================================*/
.mv {
  padding: 80px 0 100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  text-align: left;
  overflow: visible;
  background-color: #22b3e7;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .mv {
    padding: 80px 0 0;
  }
}
.mv_circle {
  background-color: #fff;
  border-radius: 50%;
  width: 1350px;
  aspect-ratio: 1/1;
  position: absolute;
  top: -90%;
  left: 50%;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  transform: scale(0) translateX(-65%);
  transform-origin: 0 0;
}
@media screen and (max-width: 1020px) {
  .mv_circle {
    transform: scale(0) translateX(-65%);
  }
}
@media screen and (max-width: 768px) {
  .mv_circle {
    width: 240vw;
    top: -25%;
    transform: scale(0) translateX(-65%);
  }
}
.mv_circle.scale {
  animation-name: scale;
}
.mv_content {
  display: flex;
  width: 100%;
  align-items: center;
  max-width: 1000px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .mv_content {
    flex-direction: column;
    gap: 30px;
  }
}
.mv_left {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .mv_left {
    width: 100%;
  }
}
.mv_right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .mv_right {
    width: 55%;
    justify-content: center;
  }
}
.mv_img {
  width: 100%;
  position: relative;
}
@media screen and (max-width: 1020px) {
  .mv_img img {
    left: 50%;
    transform: translateX(-50%);
  }
}
.mv .mockup::after {
  background-image: radial-gradient(#1389c2 0%, rgba(19, 137, 194, 0) 60%);
}
.mv_catch {
  font-size: 45px;
  font-weight: 900;
  line-height: 1.2;
}
.mv_catch .marker {
  background: linear-gradient(transparent 50%, #fff43b 50%);
  display: inline;
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size 0.5s;
}
.mv_catch .marker.on {
  background-size: 100% 100%;
}
.mv_catch span {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}
@media screen and (max-width: 768px) {
  .mv_catch {
    font-size: 11vw;
  }
}
.mv_subcatch {
  font-size: 18px;
  font-weight: 900;
  margin-top: 1.5em;
  white-space: nowrap;
}
@media (max-width: 1020px) and (min-width: 769px) {
  .mv_subcatch {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .mv_subcatch {
    font-size: 4.5vw;
  }
}
.mv_subcatch span {
  font-size: inherit;
  color: #fff43b;
}
.mv .cta {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .mv .cta {
    margin: 20px auto 0;
    width: 100%;
  }
}
.mv_fade {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}
.mv_fade.animated {
  opacity: 1;
  transform: none;
}

@keyframes scale {
  100% {
    transform: scale(1) translateX(-75%);
  }
}
@media screen and (max-width: 1020px) {
  @keyframes scale {
    100% {
      transform: scale(1) translateX(-65%);
    }
  }
}
/*===========================================
    TARGET
===========================================*/
.target {
  padding: 60px 0 0;
  background-color: #22b3e7;
}
@media (max-width: 1020px) and (min-width: 769px) {
  .target {
    padding: 30px 0 0;
  }
}
.target_list {
  display: flex;
  gap: 30px;
  margin: 60px auto 0;
}
@media screen and (max-width: 1020px) {
  .target_list {
    flex-direction: column;
    margin: 40px auto 0;
  }
}
.target_item {
  flex: 1;
  background-color: #fff;
  padding: 30px;
  border-radius: 400px 400px 20px 20px;
}
@media (max-width: 1020px) and (min-width: 769px) {
  .target_item {
    width: 60%;
    margin: auto;
  }
}
.target_img {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 30px auto 0;
}
.target_img img {
  max-width: 80%;
}
.target_title {
  font-size: 18px;
  font-weight: 900;
  margin-top: 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.target_title::before {
  padding: 0.1em 0.6em;
  font-size: 0.8em;
  font-weight: inherit;
  background-color: #fff43b;
  margin: 0 auto 0.5em;
}
.target_title.title-1::before {
  content: "CASE 1";
}
.target_title.title-2::before {
  content: "CASE 2";
}
.target_title.title-3::before {
  content: "CASE 3";
}
.target_title.title-4::before {
  content: "CASE 4";
}
.target_title.title-5::before {
  content: "CASE 5";
}
.target_title.title-6::before {
  content: "CASE 6";
}
.target_title.title-7::before {
  content: "CASE 7";
}
.target_title.title-8::before {
  content: "CASE 8";
}
.target_title.title-9::before {
  content: "CASE 9";
}
.target_title.title-10::before {
  content: "CASE 10";
}

/*===========================================
    INSIGHT
===========================================*/
.insight {
  padding: 100px 0 120px;
  background-color: #22b3e7;
}
@media screen and (max-width: 768px) {
  .insight {
    padding: 60px 0;
  }
}
.insight_content {
  max-width: 800px;
  margin: 40px auto 0;
}
.insight_list {
  padding: 15px 30px 0;
  background-color: #fff;
  position: relative;
  border-radius: 10px 10px 0 0;
}
@media screen and (max-width: 768px) {
  .insight_list {
    padding: 10px 25px 0;
  }
}
.insight_list::after {
  content: "";
  display: block;
  width: 100%;
  height: 25px;
  background-color: #fff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  left: 0px;
  bottom: -25px;
}
.insight_item {
  display: flex;
  align-items: center;
  padding: 0.7em 0.25em;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .insight_item {
    font-size: 16px;
  }
}
.insight_item::before {
  content: "";
  display: block;
  width: 2em;
  height: 1.5em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 1em;
  flex-shrink: 0;
}
.insight_item:not(:last-of-type) {
  border-bottom: 1px solid #22b3e7;
}
.insight_item:nth-of-type(1)::before {
  background-image: url("../img/insight_1.svg");
}
.insight_item:nth-of-type(2)::before {
  background-image: url("../img/insight_2.svg");
}
.insight_item:nth-of-type(3)::before {
  background-image: url("../img/insight_3.svg");
}
.insight_item:nth-of-type(4)::before {
  background-image: url("../img/insight_4.svg");
}
.insight_item:nth-of-type(5)::before {
  background-image: url("../img/insight_5.svg");
}
.insight_item:nth-of-type(6)::before {
  background-image: url("../img/insight_6.svg");
}
.insight_item:nth-of-type(7)::before {
  background-image: url("../img/insight_7.svg");
}
.insight_item:nth-of-type(8)::before {
  background-image: url("../img/insight_8.svg");
}
.insight_item:nth-of-type(9)::before {
  background-image: url("../img/insight_9.svg");
}
.insight_item:nth-of-type(10)::before {
  background-image: url("../img/insight_10.svg");
}
.insight_add {
  background-color: #dfe5e8;
  font-size: 18px;
  text-align: center;
  padding: 45px 30px 30px;
  border-radius: 0 0 10px 10px;
}
@media screen and (max-width: 768px) {
  .insight_add {
    font-size: 16px;
    padding: 40px 20px 20px;
  }
}
.insight_add span {
  font-size: inherit;
  font-weight: 900;
}

/*===========================================
    INTRO
===========================================*/
.intro {
  padding: 100px 0;
  background-color: #22b3e7;
}
@media screen and (max-width: 768px) {
  .intro {
    padding: 60px 0;
  }
}
.intro_bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #07264e;
  border-radius: 50px 50px 0 0;
}
.intro_text {
  color: #fff;
  font-size: 18px;
}
@media (max-width: 1200px) and (min-width: 1021px) {
  .intro_text {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .intro_text {
    font-size: 16px;
  }
}
.intro_text span {
  font-size: inherit;
  color: #fff43b;
}
.intro_img {
  position: absolute;
  top: -80%;
  right: 5%;
  display: flex;
  justify-content: center;
  width: 280px;
}
@media (max-width: 1200px) and (min-width: 1021px) {
  .intro_img {
    top: -70%;
    width: 25%;
  }
}
@media screen and (max-width: 1020px) {
  .intro_img {
    position: relative;
    top: auto;
    right: auto;
    width: 60%;
    margin: 30px auto 0;
  }
}
.intro .mockup::after {
  background-image: radial-gradient(#021129 0%, rgba(2, 17, 41, 0) 60%);
}

/*===========================================
    CONTENT
===========================================*/
.content {
  padding: 100px 0;
  background-color: #eff2f4;
}
@media screen and (max-width: 768px) {
  .content {
    padding: 60px 0;
  }
}
.content_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 40px auto 0;
}
@media screen and (max-width: 768px) {
  .content_list {
    flex-direction: column;
    gap: 15px;
    margin: 30px auto 0;
  }
}
.content_item {
  width: calc(20% - 16px);
  position: relative;
  background-color: #fff;
  padding: 50px 20px 20px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1020px) and (min-width: 769px) {
  .content_item {
    width: calc(33.333% - 13.333px);
  }
}
@media screen and (max-width: 768px) {
  .content_item {
    width: 100%;
    padding: 20px;
    border-radius: 10px;
    flex-direction: row;
  }
}
.content_item:nth-of-type(n + 6) {
  margin-top: 30px;
}
@media screen and (max-width: 1020px) {
  .content_item:nth-of-type(n + 6) {
    margin-top: 0;
  }
}
@media (max-width: 1020px) and (min-width: 769px) {
  .content_item:nth-of-type(n + 4) {
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .content_item:nth-of-type(n + 4) {
    margin-top: 0;
  }
}
.content_item::before {
  padding: 0.1em 0.6em;
  font-size: 15px;
  font-weight: 900;
  background-color: #fff43b;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 15px 0 5px 0;
}
@media screen and (max-width: 768px) {
  .content_item::before {
    font-size: 12px;
    left: auto;
    right: 0;
    border-radius: 0 10px 0 5px;
  }
}
.content_item:nth-of-type(1)::before {
  content: "content 1";
}
.content_item:nth-of-type(2)::before {
  content: "content 2";
}
.content_item:nth-of-type(3)::before {
  content: "content 3";
}
.content_item:nth-of-type(4)::before {
  content: "content 4";
}
.content_item:nth-of-type(5)::before {
  content: "content 5";
}
.content_item:nth-of-type(6)::before {
  content: "content 6";
}
.content_item:nth-of-type(7)::before {
  content: "content 7";
}
.content_item:nth-of-type(8)::before {
  content: "content 8";
}
.content_item:nth-of-type(9)::before {
  content: "content 9";
}
.content_item:nth-of-type(10)::before {
  content: "content 10";
}
.content_img {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1.16/1;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .content_img {
    width: 28%;
    margin-bottom: 0;
  }
}
.content_title {
  font-size: clamp(11px, 1vw, 15px);
  font-weight: 700;
  text-align: center;
  height: 3em;
  margin: auto 0 0;
}
@media screen and (max-width: 768px) {
  .content_title {
    font-size: 15px;
    text-align: left;
    height: auto;
    margin: auto auto auto 1.5em;
  }
}
.content_appendix {
  margin: 100px auto 0;
  border-radius: 15px;
  background-color: #dfe5e8;
  padding: 40px 60px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .content_appendix {
    border-radius: 10px;
    margin: 60px auto 0;
    padding: 45px 20px 30px;
  }
}
.content_appendix::before {
  content: "巻末付録";
  font-weight: 900;
  position: absolute;
  top: -0.5em;
  left: 50%;
  font-size: 24px;
  padding: 0.2em 1.5em;
  background-color: #fff43b;
  border-radius: 100px;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .content_appendix::before {
    font-size: 20px;
  }
}
.content_appendix-title {
  font-size: 24px;
  font-weight: 700;
  color: #22b3e7;
}
@media screen and (max-width: 768px) {
  .content_appendix-title {
    font-size: 18px;
  }
}
.content_appendix-text {
  font-size: 18px;
  margin-top: 1em;
}
@media screen and (max-width: 768px) {
  .content_appendix-text {
    font-size: 16px;
  }
}
@media (max-width: 1250px) and (min-width: 1021px) {
  .content_appendix-text br.only-sp {
    display: block !important;
  }
}
.content_appendix-img {
  position: absolute;
  height: 120%;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1020px) {
  .content_appendix-img {
    position: relative;
    height: auto;
    right: auto;
    top: auto;
    transform: none;
    width: 80%;
    margin: 30px auto 0;
  }
}
.content_appendix-img img {
  max-height: 100%;
}
@media screen and (min-width: 769px) {
  .content .cta {
    margin: 40px auto 0;
  }
}
@media screen and (max-width: 768px) {
  .content .cta {
    width: 100%;
  }
}

/*===========================================
    PROFILE
===========================================*/
.profile {
  padding: 100px 0;
  background-color: #eff2f4;
  position: relative;
}
@media screen and (max-width: 768px) {
  .profile {
    padding: 60px 0;
  }
}
.profile_bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #07264e;
  border-radius: 50px 50px 0 0;
}
.profile_content {
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 1020px) {
  .profile_content {
    flex-direction: column;
    gap: 40px;
  }
}
.profile_img {
  width: 35%;
  height: 100%;
  position: sticky;
  display: flex;
  justify-content: center;
  top: 100px;
}
@media screen and (max-width: 1020px) {
  .profile_img {
    width: 50%;
    height: auto;
    position: static;
    margin: auto;
  }
}
.profile_img img {
  border-radius: 10px;
}
.profile_list {
  flex: 1;
}
.profile_item:not(:first-of-type) {
  margin-top: 40px;
}
@media screen and (min-width: 769px) {
  .profile_item .title {
    text-align: left;
  }
}
.profile_position {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-top: 0.6em;
}
@media screen and (max-width: 768px) {
  .profile_position {
    font-size: 18px;
  }
}
.profile_position span {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}
.profile_text {
  font-size: 18px;
  color: #fff;
  margin-top: 0.8em;
}
@media screen and (max-width: 768px) {
  .profile_text {
    font-size: 16px;
  }
}

/*===========================================
    REGISTER
===========================================*/
.register {
  background-color: #eff2f4;
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .register {
    padding: 60px 0;
  }
}
.register .title:not(:first-of-type) {
  margin-top: 80px;
}
.register_content {
  width: 100%;
  max-width: 800px;
  margin: 40px auto;
}
@media screen and (min-width: 769px) {
  .register_content.flex {
    display: flex;
  }
}
.register_content .cta {
  margin: auto;
}
@media screen and (max-width: 768px) {
  .register_content .cta {
    width: 100%;
  }
}
.register_text {
  background-color: #dfe5e8;
  padding: 30px;
  border-radius: 15px 15px 0 0;
  font-size: 18px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .register_text {
    padding: 20px 15px;
    border-radius: 10px 10px 0 0;
    font-size: 15px;
  }
}
.register_text::after {
  content: "";
  display: block;
  width: 100%;
  height: 25px;
  background-color: #dfe5e8;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  left: 0;
  bottom: -25px;
}
@media screen and (max-width: 768px) {
  .register_text::after {
    height: 20px;
    bottom: -20px;
  }
}
@media screen and (min-width: 769px) {
  .register_text.flex {
    border-radius: 15px 0 0 15px;
    text-align: left;
    padding: 30px 0 30px 30px;
    width: 68%;
    display: flex;
    align-items: center;
  }
  .register_text.flex::after {
    width: 25px;
    height: 100%;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    left: auto;
    bottom: auto;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
  }
}
.register_info {
  background-color: #fff;
  padding: 50px 30px 20px;
  border-radius: 0 0 15px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .register_info {
    padding: 40px 15px 20px;
    border-radius: 0 0 10px 10px;
  }
}
@media screen and (min-width: 769px) {
  .register_info.flex {
    flex: 1;
    border-radius: 0 15px 15px 0;
    padding: 20px;
  }
}
.register_info img {
  width: 80%;
}
.register .subtitle {
  max-width: 800px;
  margin: 60px auto 0;
}
.register_flow {
  margin: 45px auto 0;
  width: 100%;
  max-width: 800px;
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .register_flow {
    flex-direction: column;
    margin: 30px auto 0;
  }
}
.register_flow-item {
  background-color: #fff;
  flex: 1;
  border-radius: 15px;
  position: relative;
  padding: 50px 30px 0;
}
@media screen and (max-width: 768px) {
  .register_flow-item {
    padding: 45px 20px 0;
  }
}
.register_flow-item::before {
  padding: 0.1em 0.6em;
  font-size: 16px;
  font-weight: 900;
  background-color: #fff43b;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 15px 0 5px 0;
}
@media screen and (max-width: 768px) {
  .register_flow-item::before {
    font-size: 15px;
  }
}
.register_flow-item:nth-of-type(1)::before {
  content: "STEP 1";
}
.register_flow-item:nth-of-type(2)::before {
  content: "STEP 2";
}
.register_flow-item:nth-of-type(3)::before {
  content: "STEP 3";
}
.register_flow-item:nth-of-type(4)::before {
  content: "STEP 4";
}
.register_flow-item:nth-of-type(5)::before {
  content: "STEP 5";
}
.register_flow-item:nth-of-type(6)::before {
  content: "STEP 6";
}
.register_flow-item:nth-of-type(7)::before {
  content: "STEP 7";
}
.register_flow-item:nth-of-type(8)::before {
  content: "STEP 8";
}
.register_flow-item:nth-of-type(9)::before {
  content: "STEP 9";
}
.register_flow-item:nth-of-type(10)::before {
  content: "STEP 10";
}
.register_flow-item:not(:last-of-type)::after {
  content: "";
  display: block;
  width: 15px;
  height: 35px;
  background-color: #22b3e7;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  position: absolute;
  top: 50%;
  right: -28px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .register_flow-item:not(:last-of-type)::after {
    width: 35px;
    height: 15px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    top: auto;
    bottom: -28px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}
.register_flow-text {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .register_flow-text {
    font-size: 15px;
  }
}
.register_flow-img {
  margin-top: 15px;
  display: flex;
}

/*===========================================
    FOOTER
===========================================*/
.footer {
  width: 100%;
  padding: 60px 0;
  background-color: #07264e;
  color: #fff;
}
.footer_copyright {
  color: #fff;
  text-align: center;
  font-size: 16px;
}