@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, tt, var,
u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

* {
  box-sizing: border-box;
}

sup {
  font-size: 9px;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 999px;
  border: 1px solid #6b66ff;
  background: linear-gradient(180deg, #424242 0%, #212121 70%);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 5px 30px 1px rgba(107, 102, 255, 0.6);
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, #212121 85%, #6b66ff 100%);
  opacity: 0;
  z-index: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.btn:hover {
  box-shadow: 0 0 10px 2px rgba(107, 102, 255, 0.8);
}
.btn:hover::after {
  opacity: 1;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.06) 0px, rgba(255, 255, 255, 0.06) 1px, transparent 1px, transparent 6px);
  z-index: 1;
  pointer-events: none;
}
.btn.large {
  padding: clamp(6px, 0.8vw, 7px) clamp(24px, 3vw, 40px);
}
.btn.large span {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
}
.btn.small {
  padding: 5px 25px;
  display: inline-flex;
}
.btn.small span {
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  line-height: 1.3;
}
.btn.center {
  display: flex;
  width: fit-content;
  margin: 0 auto;
  padding: clamp(6px, 0.8vw, 7px) clamp(34px, 5vw, 60px);
}
.btn.center span {
  font-size: clamp(26px, 2vw, 36px);
}
.btn span {
  position: relative;
  z-index: 2;
  color: #fff;
  letter-spacing: -0.02em;
}

html {
  font-family: "Noto Sans JP", "メイリオ", "Meiryo", sans-serif;
  line-height: 1.8;
  letter-spacing: 0.05rem;
  font-size: 62.5%;
  height: 100%;
  font-feature-settings: "palt";
}

body {
  font-size: 14px;
  font-weight: 400;
  color: #212121;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 90;
  transition: opacity 0.3s ease-out, visibility 0s linear 0.3s;
}
body.menu-open {
  overflow: hidden;
}
body.menu-open::before {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease-out, visibility 0s linear 0s;
}

.inner {
  max-width: 1400px;
  width: 100%;
  padding: 0 60px;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  .inner {
    padding: 0 30px;
  }
}
@media screen and (max-width: 600px) {
  .inner {
    padding: 0 15px;
  }
}

header {
  position: fixed;
  top: 0;
  z-index: 100;
  isolation: isolate;
  background: rgba(255, 255, 255, 0);
  width: 100%;
  height: 76px;
  padding: 17px 0;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
@media screen and (max-width: 450px) {
  header {
    height: 46px;
    padding: 0;
  }
}
header.scrolled {
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}
header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 600px) {
  header .inner {
    gap: 15px;
  }
}
header .inner .logo_header {
  display: flex;
  align-items: center;
  width: 240px;
  height: auto;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  position: relative;
  z-index: 1;
  overflow: visible;
}
header .inner .logo_header::before {
  content: "";
  position: absolute;
  left: -378px;
  top: -157px;
  width: 645px;
  height: 200px;
  background: url("../img/bg_polygon_header.svg") no-repeat;
  background-size: contain;
  pointer-events: none;
  z-index: -1;
  transform: rotate(0deg) scale(1);
  animation: floatPolygonHeader 6s ease-in-out infinite;
  transform-origin: center center;
}
@keyframes floatPolygonHeader {
  0%, 100% {
    top: -157px;
    transform: rotate(0deg) scale(1);
  }
  50% {
    top: -160px;
    transform: rotate(3deg) scale(1.05);
  }
}
@media screen and (max-width: 1000px) {
  header .inner .logo_header {
    width: 200px;
  }
}
header .inner .logo_header img {
  position: relative;
  z-index: 2;
}
header .inner .logo_header:hover {
  transform: translateY(-2px);
}
header .inner .btn.hide {
  display: none;
}
@media screen and (max-width: 768px) {
  header .inner .btn.hide {
    display: inline-flex;
  }
}
@media screen and (max-width: 450px) {
  header .inner .btn.hide {
    display: none;
  }
}
header .inner .menu_wrap {
  display: flex;
  gap: 25px;
}
header .inner .menu_btn {
  display: none;
}
@media screen and (max-width: 768px) {
  header .inner .menu_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 44px;
    height: 44px;
    margin-right: -15px;
    cursor: pointer;
  }
}
header .inner .menu_btn::before, header .inner .menu_btn::after,
header .inner .menu_btn span {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #69a1fe, #6b66ff);
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
header .inner .menu_btn::before {
  top: 14px;
}
header .inner .menu_btn span {
  top: 21px;
}
header .inner .menu_btn::after {
  top: 28px;
}
header .inner .menu_btn:hover::before {
  transform: translateY(-1px);
}
header .inner .menu_btn:hover::after {
  transform: translateY(1px);
}
header .inner .menu_btn.is-open::before {
  top: 21px;
  transform: rotate(45deg);
}
header .inner .menu_btn.is-open span {
  opacity: 0;
  transform: scaleX(0);
}
header .inner .menu_btn.is-open::after {
  top: 21px;
  transform: rotate(-45deg);
}
@media screen and (max-width: 768px) {
  header .inner nav {
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.6);
    border-top: 1px solid rgba(107, 102, 255, 0.25);
    border-bottom: 1px solid rgba(107, 102, 255, 0.35);
    box-shadow: 0 12px 30px rgba(107, 102, 255, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.3s ease-out, transform 0.3s ease-out, visibility 0s linear 0.3s;
    z-index: 101;
  }
}
@media screen and (max-width: 450px) {
  header .inner nav {
    top: 45px;
  }
}
@media screen and (max-width: 768px) {
  header .inner nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    transition: opacity 0.3s ease-out, transform 0.3s ease-out, visibility 0s linear 0s;
  }
}
header .inner nav ul {
  display: flex;
  align-items: center;
  gap: 60px;
  transition: gap 0.2s ease-out;
}
@media screen and (max-width: 1000px) {
  header .inner nav ul {
    gap: 25px;
  }
}
@media screen and (max-width: 768px) {
  header .inner nav ul {
    flex-direction: column;
    gap: 0;
    padding: 18px 30px 22px;
    transition: none;
  }
}
header .inner nav ul li {
  list-style: none;
}
@media screen and (max-width: 768px) {
  header .inner nav ul li:last-child {
    border-bottom: none;
    padding-top: 10px;
  }
}
header .inner nav ul li a {
  display: block;
  text-decoration: none;
  color: #212121;
}
@media screen and (max-width: 768px) {
  header .inner nav ul li a {
    padding: 14px 0;
    font-size: 15px;
  }
}
header .inner nav ul li a:not(.btn) {
  position: relative;
  padding: 6px 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media screen and (max-width: 768px) {
  header .inner nav ul li a:not(.btn) {
    display: inline-block;
    width: fit-content;
  }
}
header .inner nav ul li a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #69a1fe, #6b66ff);
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
@media screen and (max-width: 768px) {
  header .inner nav ul li a:not(.btn)::after {
    bottom: 8px;
  }
}
header .inner nav ul li a:not(.btn):hover {
  background: linear-gradient(90deg, #69a1fe, #6b66ff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  transform: translateY(-2px);
}
header .inner nav ul li a:not(.btn):hover::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}
header .inner nav ul li:has(a:not(.btn)) {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  header .inner nav ul li .btn.small br {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  body.is-resizing header nav {
    transition: none;
  }
}

main .main_vis {
  position: relative;
  overflow: hidden;
  border-bottom: 5px solid #6b66ff;
  box-shadow: 0 5px 30px 1px rgba(107, 102, 255, 0.4);
  background: url("../img/bg_dot.png") repeat, linear-gradient(180deg, #fff 75%, #e6e7fb 100%);
}
@media screen and (max-width: 600px) {
  main .main_vis {
    min-height: 100vh;
    min-height: 100dvh;
    height: auto;
  }
}
main .main_vis .inner {
  padding-top: 170px;
  padding-bottom: 120px;
  position: relative;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 600px) {
  main .main_vis .inner {
    min-height: calc(100dvh - 5px);
    padding-top: 70px;
    padding-bottom: 15px;
    flex-direction: column;
    justify-content: space-evenly;
  }
}
main .main_vis .inner .main_vis_l {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 415px;
  width: 50%;
  z-index: 10;
}
@media screen and (max-width: 600px) {
  main .main_vis .inner .main_vis_l {
    max-width: 100%;
    width: 100%;
  }
}
main .main_vis .inner .main_vis_l h1 img {
  width: clamp(240px, 24vw, 325px);
  height: auto;
}
main .main_vis .inner .main_vis_l h2 {
  text-align: left;
  font-size: clamp(32px, 3vw, 38px);
  font-weight: 600;
  line-height: 1.3;
  margin-top: clamp(18px, 2.4vw, 30px);
}
@media screen and (max-width: 1000px) {
  main .main_vis .inner .main_vis_l h2 br {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  main .main_vis .inner .main_vis_l h2 {
    text-align: center;
  }
  main .main_vis .inner .main_vis_l h2 br {
    display: block;
  }
}
@media screen and (max-width: 400px) {
  main .main_vis .inner .main_vis_l h2 br {
    display: none;
  }
}
main .main_vis .inner .main_vis_l p.main_vis_lead {
  text-align: justify;
  font-size: clamp(13px, 1.8vw, 16px);
  margin: clamp(10px, 1.2vw, 15px) 0 clamp(20px, 2.4vw, 30px);
}
@media screen and (max-width: 768px) {
  main .main_vis .inner .main_vis_l p.main_vis_lead br {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  main .main_vis .inner .main_vis_l p.main_vis_lead {
    text-align: center;
  }
}
main .main_vis .inner .main_vis_l p.main_vis_note {
  font-size: clamp(11px, 1vw, 13px);
  margin-top: 10px;
}
main .main_vis .inner .main_vis_r {
  position: relative;
  max-width: 520px;
  width: 50%;
  aspect-ratio: 1/1;
  height: auto;
  left: -50px;
  z-index: 5;
}
@media screen and (max-width: 600px) {
  main .main_vis .inner .main_vis_r {
    left: -30px;
  }
}
main .main_vis .inner .main_vis_r .bg_polygon {
  position: absolute;
  inset: 0;
  width: min(1700px, 150vw);
  left: 70%;
  transform: translateX(-50%);
  transform-origin: center center;
  top: -50px;
  max-width: none;
  z-index: 2;
  animation: floatPolygon 6s ease-in-out infinite;
}
main .main_vis .inner .main_vis_r .report {
  position: absolute;
}
main .main_vis .inner .main_vis_r .report img {
  width: 100%;
  display: block;
}
main .main_vis .inner .main_vis_r .report_front,
main .main_vis .inner .main_vis_r .report_back {
  backface-visibility: hidden;
  will-change: transform;
}
main .main_vis .inner .main_vis_r .report_back {
  left: 9.92%;
  top: 8.62%;
  width: 82.54%;
  z-index: 1;
  animation: floatBack 5s ease-in-out infinite;
}
main .main_vis .inner .main_vis_r .report_front {
  left: 44.62%;
  top: -7.69%;
  width: 76.92%;
  z-index: 3;
  animation: floatFront 4s ease-in-out infinite;
}
main .main_vis .inner .main_vis_r .shadow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 109.62%;
  z-index: 0;
}
@keyframes floatFront {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
@keyframes floatBack {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
@keyframes floatPolygon {
  0%, 100% {
    transform: translateX(-50%) rotate(0deg) scale(1);
  }
  50% {
    transform: translateX(-50%) rotate(3deg) scale(1.05);
  }
}
main .main_vis .inner p.note {
  position: absolute;
  bottom: 15px;
  right: 60px;
  padding: 0;
  margin: 0;
  max-width: none;
  width: auto;
}
main .main_vis .inner p.note::before {
  display: none;
}
main .main_vis .inner p.note br {
  display: none;
}
@media screen and (max-width: 1000px) {
  main .main_vis .inner p.note {
    right: 30px;
  }
}
@media screen and (max-width: 768px) {
  main .main_vis .inner p.note {
    text-align: right;
  }
  main .main_vis .inner p.note br {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  main .main_vis .inner p.note {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    text-align: left;
    margin-top: -30px;
  }
}
main span.marker {
  font-weight: 600;
  background: linear-gradient(transparent 65%, rgb(128, 235, 245) 65%) left/0% 100% no-repeat;
  transition: background-size 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}
main span.marker.is-show {
  background-size: 100% 100%;
}
main p.note {
  font-size: 12px;
}
main p.note span.bold {
  font-weight: 600;
}
main .subtitle {
  display: block;
  width: fit-content;
  position: relative;
  background: linear-gradient(90deg, #69a1fe, #6b66ff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  font-size: clamp(20px, 2.3vw, 30px);
  font-weight: 600;
  line-height: 1.4;
  margin: 0 auto 30px auto;
}
main .subtitle::after {
  content: "";
  position: absolute;
  left: -5px;
  bottom: -5px;
  width: calc(100% + 5px);
  height: 5px;
  background: linear-gradient(90deg, #69a1fe, #6b66ff);
  clip-path: polygon(5px 0, 100% 0, 100% 100%, 0 100%);
}
main span.note {
  display: block;
  color: #5f697b;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 400;
  margin: -20px 0 30px 0;
  padding: 0;
  max-width: none;
}
main span.note::before {
  display: none;
}
main h2 {
  color: #212121;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 768px) {
  main h2 br {
    display: none;
  }
}
main .note {
  color: #455a64;
  position: relative;
  border-radius: 5px;
  padding: 15px 30px;
  margin: 30px auto 0;
  max-width: 715px;
  width: 100%;
}
main .note::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  background: linear-gradient(90deg, #69a1fe, #6b66ff);
  pointer-events: none;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
main .note span.bold {
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  main .note br {
    display: none;
  }
}
main .subject {
  padding: 90px 0 30px;
}
main .subject .inner {
  text-align: center;
}
main .subject .inner .subtitle {
  display: inline-block;
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 600;
  color: #6b66ff;
  border-bottom: 2px solid #6b66ff;
  margin-bottom: 10px;
}
main .subject .inner .subtitle::after {
  display: none;
}
main .subject .inner h2 {
  color: #161d41;
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 600;
  line-height: 1.4;
}
main .subject .inner .subjects_wrap {
  display: flex;
  justify-content: space-evenly;
  margin: 45px 0 30px;
  gap: 30px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 600px) {
  main .subject .inner .subjects_wrap {
    flex-direction: column;
    gap: 15px;
  }
}
main .subject .inner .subjects_wrap div {
  max-width: 300px;
  width: 33%;
  height: auto;
  aspect-ratio: 1/1;
  background: #fff;
  box-shadow: 0 5px 20px 1px rgba(0, 0, 0, 0.3);
  border-radius: 25px;
  padding: 20px 15px;
  font-size: clamp(14px, 1.56px + 1.62vw, 21px);
  font-weight: 600;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(28px) rotate(-1.5deg);
  filter: blur(6px);
  transition: opacity 0.45s ease-out, transform 0.6s cubic-bezier(0.2, 1.25, 0.35, 1), filter 0.45s ease-out;
}
main .subject .inner .subjects_wrap div.is-show {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
  filter: blur(0);
}
main .subject .inner .subjects_wrap div:nth-child(1) {
  transition-delay: 0s;
}
main .subject .inner .subjects_wrap div:nth-child(2) {
  transition-delay: 0.12s;
}
main .subject .inner .subjects_wrap div:nth-child(3) {
  transition-delay: 0.24s;
}
@media screen and (max-width: 1000px) {
  main .subject .inner .subjects_wrap div {
    padding: 15px 10px;
    border-radius: 20px;
  }
}
@media screen and (max-width: 768px) {
  main .subject .inner .subjects_wrap div br {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  main .subject .inner .subjects_wrap div {
    max-width: none;
    width: 100%;
    aspect-ratio: auto;
    background: none !important;
    font-size: 18px;
    box-shadow: 0 5px 10px 1px rgba(0, 0, 0, 0.3);
  }
}
main .subject .inner .subjects_wrap div.subject1 {
  color: #69a1fe;
  background: url("../img/subject1.svg") no-repeat bottom 5px center;
  background-size: 50%;
}
@media screen and (max-width: 768px) {
  main .subject .inner .subjects_wrap div.subject1 {
    background-size: 45%;
  }
}
main .subject .inner .subjects_wrap div.subject2 {
  color: #6b66ff;
  background: url("../img/subject2.svg") no-repeat bottom 5px center;
  background-size: 100% 58%;
}
@media screen and (max-width: 768px) {
  main .subject .inner .subjects_wrap div.subject2 {
    background-size: 100% 50%;
  }
}
main .subject .inner .subjects_wrap div.subject3 {
  color: #158546;
  background: url("../img/subject3.svg") no-repeat bottom 5px center;
  background-size: 50%;
}
@media screen and (max-width: 768px) {
  main .subject .inner .subjects_wrap div.subject3 {
    background-size: 45%;
  }
}
main .subject .inner .subject_arrow {
  display: block;
  width: 42px;
  height: auto;
  margin: 0 auto 25px;
  opacity: 0;
  transform: translateY(-28px) scaleY(0.45);
  transform-origin: top center;
  transition: opacity 0.25s ease-out, transform 0.45s cubic-bezier(0.2, 1.4, 0.35, 1);
  position: relative;
  z-index: 1;
}
main .subject .inner .subject_arrow.is-show {
  opacity: 1;
  transform: translateY(0) scaleY(1);
}
@media screen and (max-width: 600px) {
  main .subject .inner .subject_arrow {
    width: 30px;
  }
}
main .subject .inner .subject_text {
  display: inline;
  position: relative;
  z-index: 1;
  padding: 0.08em 0.28em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  color: #fff;
  font-size: clamp(24px, -11.56px + 4.63vw, 44px);
  font-weight: 600;
  line-height: 1.7;
  background: linear-gradient(90deg, #69a1fe, #6b66ff) left/0% 100% no-repeat;
  opacity: 0;
  transition: opacity 0.15s ease-out 0.2s, background-size 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}
main .subject .inner .subject_text.is-show {
  opacity: 1;
  background-size: 100% 100%;
}
@media screen and (max-width: 768px) {
  main .subject .inner .subject_text br {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  main .subject .inner .subject_text {
    font-size: 22px;
  }
}
main .features {
  position: relative;
  padding: 60px 0 120px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #fff 14%, rgba(255, 255, 255, 0.82) 25%, rgba(255, 255, 255, 0) 38%, rgba(255, 255, 255, 0) 72%, rgba(255, 255, 255, 0.9) 88%, #fff 100%), radial-gradient(circle at 22% 46%, rgba(128, 235, 245, 0.24) 0%, rgba(128, 235, 245, 0) 36%), radial-gradient(circle at 78% 42%, rgba(105, 161, 254, 0.22) 0%, rgba(105, 161, 254, 0) 40%), radial-gradient(circle at 55% 70%, rgba(107, 102, 255, 0.18) 0%, rgba(107, 102, 255, 0) 42%), linear-gradient(180deg, rgba(105, 161, 254, 0.06) 0%, rgba(107, 102, 255, 0.08) 100%);
}
@media screen and (max-width: 600px) {
  main .features {
    padding: 60px 0 0;
  }
}
main .features::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/bg_dot.png") repeat;
  opacity: 0.45;
  pointer-events: none;
  mask-image: linear-gradient(180deg, transparent 0%, transparent 16%, #000 34%, #000 76%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, transparent 16%, #000 34%, #000 76%, transparent 100%);
}
main .features::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 62%;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle at 35% 35%, rgba(128, 235, 245, 0.28) 0%, rgba(128, 235, 245, 0) 32%), radial-gradient(circle at 65% 45%, rgba(105, 161, 254, 0.22) 0%, rgba(105, 161, 254, 0) 35%), radial-gradient(circle at 55% 70%, rgba(107, 102, 255, 0.18) 0%, rgba(107, 102, 255, 0) 38%);
  filter: blur(50px);
  transform: translate(-50%, -50%);
  opacity: 0.75;
  pointer-events: none;
  mask-image: linear-gradient(180deg, transparent 0%, transparent 18%, #000 34%, #000 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, transparent 18%, #000 34%, #000 80%, transparent 100%);
}
main .features .inner {
  position: relative;
  z-index: 1;
  padding-top: 0;
}
@media screen and (max-width: 600px) {
  main .features .inner {
    padding: 0 5px 70px;
  }
}
main .features .inner .features_wrap {
  position: relative;
  overflow: hidden;
  max-width: 980px;
  margin: 0 auto;
  padding: 70px clamp(24px, 6vw, 60px);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(14px);
  border: 1px solid #fff;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(107, 102, 255, 0.16), 0 8px 24px rgba(0, 0, 0, 0.08);
}
@media screen and (max-width: 600px) {
  main .features .inner .features_wrap {
    padding: 70px 10px;
  }
}
main .features .inner .features_wrap::before {
  content: "";
  position: absolute;
  right: -115px;
  top: -70px;
  width: 475px;
  height: 240px;
  background: url("../img/bg_polygon_header.svg") no-repeat;
  background-size: contain;
  pointer-events: none;
  transform: rotate(0deg) scale(1);
  animation: floatPolygonRight 6s ease-in-out infinite;
  transform-origin: center center;
}
@keyframes floatPolygonRight {
  0%, 100% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(3deg) scale(1.05);
  }
}
@media screen and (max-width: 600px) {
  main .features .inner .features_wrap {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  main .features .inner .features_wrap .inner .features_wrap {
    padding: 45px 20px;
    border-radius: 14px;
  }
  main .features .inner .features_wrap .inner .features_wrap .subtitle {
    margin-bottom: 18px;
  }
  main .features .inner .features_wrap .inner .features_wrap h2 {
    text-align: left;
  }
}
main .features .inner .features_wrap .feature_wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  max-width: 570px;
  width: 100%;
  margin: 60px auto;
  transform: translateX(18px);
  gap: 60px;
}
@media screen and (max-width: 600px) {
  main .features .inner .features_wrap .feature_wrap {
    transform: none;
    max-width: 100%;
    gap: 30px;
  }
}
main .features .inner .features_wrap .feature_wrap .feature {
  display: flex;
  align-items: center;
  gap: 25px;
  width: 100%;
  opacity: 0;
  transform: translateY(26px);
  filter: blur(5px);
  transition: opacity 0.45s ease-out, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease-out;
}
main .features .inner .features_wrap .feature_wrap .feature.is-show {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
main .features .inner .features_wrap .feature_wrap .feature:nth-child(1) {
  transition-delay: 0s;
}
main .features .inner .features_wrap .feature_wrap .feature:nth-child(2) {
  transition-delay: 0.12s;
}
main .features .inner .features_wrap .feature_wrap .feature:nth-child(3) {
  transition-delay: 0.24s;
}
main .features .inner .features_wrap .feature_wrap .feature img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  flex: 0 0 90px;
}
main .features .inner .features_wrap .feature_wrap .feature .feature_text_wrap {
  flex: 1;
  padding-top: 2px;
}
main .features .inner .features_wrap .feature_wrap .feature .feature_text_wrap .feature_lead {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.45;
  margin-bottom: 8px;
}
main .features .inner .features_wrap .feature_wrap .feature .feature_text_wrap .feature_text {
  color: #424242;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  main .features .inner .features_wrap .feature_wrap .feature .feature_text_wrap .feature_text br {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  main .features .inner .features_wrap .feature_wrap .feature {
    align-items: flex-start;
  }
  main .features .inner .features_wrap .feature_wrap .feature img {
    width: 64px;
    height: 64px;
    flex-basis: 64px;
  }
}
@media screen and (max-width: 600px) {
  main .features .inner .features_wrap .feature_wrap .feature {
    gap: 18px;
    align-items: flex-start;
  }
  main .features .inner .features_wrap .feature_wrap .feature img {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }
  main .features .inner .features_wrap .feature_wrap .feature .feature_text_wrap {
    padding-top: 0;
  }
  main .features .inner .features_wrap .feature_wrap .feature .feature_text_wrap .feature_lead {
    font-size: 20px;
  }
}
main .features .inner .features_wrap .overview > p {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  margin: 60px 0;
}
@media screen and (max-width: 768px) {
  main .features .inner .features_wrap .overview > p br {
    display: none;
  }
}
main .features .inner .features_wrap .overview .overview_fig {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
main .features .inner .features_wrap .overview .overview_fig .fig_title {
  display: inline-flex;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 0.08em 0.28em;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.7;
  background: linear-gradient(90deg, #69a1fe, #6b66ff) left/0% 100% no-repeat;
  opacity: 0;
  transition: opacity 0.15s ease-out 0.2s, background-size 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}
main .features .inner .features_wrap .overview .overview_fig .fig_title.is-show {
  opacity: 1;
  background-size: 100% 100%;
}
main .features .inner .features_wrap .overview .overview_fig .fig {
  display: flex;
  align-items: center;
  gap: 5px;
}
@media screen and (max-width: 600px) {
  main .features .inner .features_wrap .overview .overview_fig .fig {
    flex-direction: column;
  }
}
main .features .inner .features_wrap .overview .overview_fig .fig > div {
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(22px) scale(0.96);
  filter: blur(5px);
  transition: opacity 0.42s ease-out, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), filter 0.42s ease-out;
}
main .features .inner .features_wrap .overview .overview_fig .fig > div.is-show {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
main .features .inner .features_wrap .overview .overview_fig .fig .arrow {
  height: 50px;
  margin: -30px 15px 0;
  opacity: 0;
  filter: blur(4px);
  transform: rotate(-90deg) translateY(-10px) scale(0.9);
  transition: opacity 0.35s ease-out, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease-out;
}
main .features .inner .features_wrap .overview .overview_fig .fig .arrow.is-show {
  opacity: 1;
  filter: blur(0);
  transform: rotate(-90deg) translateY(0) scale(1);
}
@media screen and (max-width: 600px) {
  main .features .inner .features_wrap .overview .overview_fig .fig .arrow {
    transform: rotate(0deg) translateY(-10px) scale(0.9);
  }
  main .features .inner .features_wrap .overview .overview_fig .fig .arrow.is-show {
    transform: rotate(0deg) translateY(0) scale(1);
  }
}
main .features .inner .features_wrap .overview .overview_fig .fig > *:nth-child(1) {
  transition-delay: 0s;
}
main .features .inner .features_wrap .overview .overview_fig .fig > *:nth-child(2) {
  transition-delay: 0.12s;
}
main .features .inner .features_wrap .overview .overview_fig .fig > *:nth-child(3) {
  transition-delay: 0.24s;
}
main .features .inner .features_wrap .overview .overview_fig .fig > *:nth-child(4) {
  transition-delay: 0.36s;
}
main .features .inner .features_wrap .overview .overview_fig .fig > *:nth-child(5) {
  transition-delay: 0.48s;
}
main .features .inner .features_wrap .overview .overview_fig .fig div:nth-of-type(1) {
  margin-top: -10px;
  margin-right: -10px;
  margin-left: 60px;
}
@media screen and (max-width: 600px) {
  main .features .inner .features_wrap .overview .overview_fig .fig div:nth-of-type(1) {
    margin: 0;
    margin-bottom: 30px;
  }
}
main .features .inner .features_wrap .overview .overview_fig .fig div:nth-of-type(1) img {
  width: 100px;
}
main .features .inner .features_wrap .overview .overview_fig .fig div:nth-of-type(1) p {
  font-weight: 600;
  margin-top: -10px;
}
main .features .inner .features_wrap .overview .overview_fig .fig div:nth-of-type(2) {
  width: 200px;
}
main .features .inner .features_wrap .overview .overview_fig .fig div:nth-of-type(2) img {
  display: block;
  width: 200px;
  border-radius: 9px;
  box-shadow: 0 5px 30px 1px rgba(107, 102, 255, 0.6);
}
main .features .inner .features_wrap .overview .overview_fig .fig div:nth-of-type(2) p {
  font-size: 12px;
  line-height: 1.3;
  margin-top: 10px;
}
@media screen and (max-width: 600px) {
  main .features .inner .features_wrap .overview .overview_fig .fig div:nth-of-type(2) p {
    margin-bottom: 30px;
  }
}
main .features .inner .features_wrap .overview .overview_fig .fig div:nth-of-type(3) {
  display: flex;
  align-items: flex-start;
  margin-top: -30px;
}
@media screen and (max-width: 600px) {
  main .features .inner .features_wrap .overview .overview_fig .fig div:nth-of-type(3) {
    margin-right: -60px;
  }
}
main .features .inner .features_wrap .overview .overview_fig .fig div:nth-of-type(3) img {
  width: 150px;
}
main .features .inner .features_wrap .overview .overview_fig .fig div:nth-of-type(3) p {
  font-weight: 600;
  margin-top: -30px;
  margin-left: -7px;
}
main .score_report {
  position: relative;
  padding: 60px 0 100px;
  background: url("../img/bg_dot.png") repeat;
}
@media screen and (max-width: 600px) {
  main .score_report {
    padding: 60px 0 0;
  }
}
main .score_report::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 140px;
  background: linear-gradient(180deg, white 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 0;
}
main .score_report::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 140px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, white 100%);
  pointer-events: none;
  z-index: 0;
}
main .score_report .inner {
  position: relative;
  z-index: 1;
}
main .score_report .inner .element_wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  max-width: 715px;
  width: 100%;
  margin: 60px auto;
  gap: 30px;
}
@media screen and (max-width: 600px) {
  main .score_report .inner .element_wrap {
    gap: 45px;
  }
}
main .score_report .inner .element_wrap > div {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  opacity: 0;
  transform: translateY(26px);
  filter: blur(5px);
  transition: opacity 0.45s ease-out, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease-out;
}
@media screen and (max-width: 600px) {
  main .score_report .inner .element_wrap > div {
    flex-direction: column;
    gap: 7px;
  }
}
main .score_report .inner .element_wrap > div.is-show {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
main .score_report .inner .element_wrap > div:nth-child(1) {
  transition-delay: 0s;
}
main .score_report .inner .element_wrap > div:nth-child(2) {
  transition-delay: 0.12s;
}
main .score_report .inner .element_wrap > div:nth-child(3) {
  transition-delay: 0.24s;
}
main .score_report .inner .element_wrap > div img {
  width: 240px;
  height: auto;
  background: #eee;
}
@media screen and (max-width: 600px) {
  main .score_report .inner .element_wrap > div img {
    aspect-ratio: 16/9;
    width: 100%;
    height: auto;
  }
}
main .score_report .inner .element_wrap > div .element_text .element_title {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 5px;
}
main .score_report .inner .element_wrap > div .element_text .element_title span:nth-of-type(1) {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding: 0.08em 0.28em;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.4;
  background: linear-gradient(90deg, #69a1fe, #6b66ff) left/0% 100% no-repeat;
  opacity: 0;
  transition: opacity 0.15s ease-out 0.2s, background-size 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}
@media screen and (max-width: 768px) {
  main .score_report .inner .element_wrap > div .element_text .element_title span:nth-of-type(1) {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  main .score_report .inner .element_wrap > div .element_text .element_title span:nth-of-type(1) {
    font-size: 17px;
  }
}
main .score_report .inner .element_wrap > div .element_text .element_title span:nth-of-type(1).is-show {
  opacity: 1;
  background-size: 100% 100%;
}
main .score_report .inner .element_wrap > div .element_text .element_title span:nth-of-type(2) {
  display: inline-block;
  line-height: 1.5;
  color: #212121;
  font-size: 16px;
  font-weight: 600;
  background: none !important;
}
@media screen and (max-width: 768px) {
  main .score_report .inner .element_wrap > div .element_text .element_title span:nth-of-type(2) {
    font-size: 15px;
  }
}
@media screen and (max-width: 600px) {
  main .score_report .inner .element_wrap > div .element_text .element_title span:nth-of-type(2) {
    font-size: 14px;
  }
}
main .score_report .inner .element_wrap > div .element_text p span.bold {
  font-weight: 600;
}
main .score_report .inner .note span {
  display: block;
  margin-bottom: 15px;
}
main .score_report .inner .note span.bold {
  display: inline;
  margin-bottom: 0;
}
main .score_report .inner .note span:last-child {
  margin-bottom: 0;
}
main .score_report .inner .crestec {
  display: block;
  background: #fff;
  box-shadow: 0 5px 30px 1px rgba(131, 166, 255, 0.6);
  border: 1px solid #69a1fe;
  border-radius: 20px;
  margin: 45px 0;
  padding: 30px 45px;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
@media screen and (max-width: 768px) {
  main .score_report .inner .crestec {
    padding: 30px;
  }
}
@media screen and (max-width: 600px) {
  main .score_report .inner .crestec {
    padding: 15px;
  }
}
main .score_report .inner .crestec:hover {
  box-shadow: 0 10px 40px 1px rgba(131, 166, 255, 0.8);
  transform: translateY(-5px);
}
main .score_report .inner .crestec p {
  color: #5f697b;
  font-size: 20px;
  font-weight: 600;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  main .score_report .inner .crestec p {
    font-size: 18px;
    line-height: 1.8;
  }
  main .score_report .inner .crestec p br {
    display: none;
  }
}
main .score_report .inner .crestec img {
  display: block;
  width: 300px;
  height: auto;
  margin: 30px auto 0;
}
main .plan {
  padding: 60px 0;
}
main .plan .inner h2 + p {
  font-size: 18px;
  font-weight: 600;
  margin: 30px auto;
  max-width: 720px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  main .plan .inner h2 + p br {
    display: none;
  }
}
main .plan .inner .plan_fig {
  display: flex;
  align-items: stretch;
  gap: 30px;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  main .plan .inner .plan_fig {
    gap: 15px;
  }
}
main .plan .inner .plan_fig .process_bar {
  --bar-wid: 60px;
  width: var(--bar-wid);
  flex: 0 0 var(--bar-wid);
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: scaleY(0.15);
  transform-origin: top center;
  filter: blur(5px);
  transition: opacity 0.35s ease-out, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s ease-out;
}
@media screen and (max-width: 768px) {
  main .plan .inner .plan_fig .process_bar {
    --bar-wid: 40px;
  }
}
@media screen and (max-width: 600px) {
  main .plan .inner .plan_fig .process_bar {
    display: none;
  }
}
main .plan .inner .plan_fig .process_bar.is-show {
  opacity: 1;
  transform: scaleY(1);
  filter: blur(0);
}
main .plan .inner .plan_fig .process_bar span {
  writing-mode: vertical-rl;
  color: #fff;
  font-weight: 600;
  font-size: 20px;
  line-height: 1;
}
main .plan .inner .plan_fig .process_bar_main,
main .plan .inner .plan_fig .process_bar_sub {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  background: #cfd8dc;
}
main .plan .inner .plan_fig .process_bar_main {
  width: var(--bar-wid);
  flex: 1 1 auto;
  min-height: 0;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, #cfd8dc 0%, #b0c2cc 100%);
  overflow: visible;
  z-index: 2;
  margin-bottom: -1px;
}
main .plan .inner .plan_fig .process_bar_main::before {
  display: none;
}
main .plan .inner .plan_fig .process_bar_main::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 74px;
  height: 86px;
  background: #fff;
  clip-path: polygon(0 0, 50% 82%, 100% 0, 100% 16%, 50% 100%, 0 16%);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 3;
}
main .plan .inner .plan_fig .process_bar_sub {
  width: var(--bar-wid);
  height: 190px;
  margin-top: 0;
  background: linear-gradient(180deg, #b0c2cc 0%, #8fa6b3 100%);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 60px), 50% 100%, 0 calc(100% - 60px));
  z-index: 1;
}
main .plan .inner .plan_fig .process_bar_sub span {
  margin-top: -30px;
}
main .plan .inner .plan_fig .process_bar_goal {
  color: #6b7788;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.2;
  margin-top: 5px;
}
main .plan .inner .plan_fig .order_flow {
  width: auto;
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
main .plan .inner .plan_fig .order_flow img.arrow {
  width: 35px;
  height: auto;
}
main .plan .inner .plan_fig .order_flow .order {
  width: 100%;
  background: #69a1fe;
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  border-radius: 25px 25px 0 0;
  opacity: 0;
  transform: translateY(20px);
  filter: blur(5px);
  transition: opacity 0.4s ease-out, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease-out;
}
main .plan .inner .plan_fig .order_flow .order.is-show {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
main .plan .inner .plan_fig .order_flow .upload {
  display: flex;
  align-items: center;
  margin-left: 90px;
  gap: 15px;
  opacity: 0;
  transform: translateY(20px);
  filter: blur(5px);
  transition: opacity 0.4s ease-out 0.08s, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.08s, filter 0.4s ease-out 0.08s;
}
main .plan .inner .plan_fig .order_flow .upload.is-show {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
main .plan .inner .plan_fig .order_flow .upload img.pdf {
  width: 100px;
  height: auto;
}
main .plan .inner .plan_fig .order_flow .upload p {
  font-size: 16px;
  font-weight: 600;
  color: #424242;
}
main .plan .inner .plan_fig .order_flow .ai-ru_block {
  border-radius: 12px;
  box-shadow: 0 5px 30px 1px rgba(107, 102, 255, 0.6);
  opacity: 0;
  transform: translateY(22px) scale(0.96);
  filter: blur(5px);
  transition: opacity 0.45s ease-out 0.16s, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.16s, filter 0.45s ease-out 0.16s;
}
main .plan .inner .plan_fig .order_flow .ai-ru_block.is-show {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
main .plan .inner .plan_fig .order_flow .plans {
  --plans-gap: 70px;
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  width: 100%;
  padding-bottom: 100px;
  margin-top: -30px;
}
@media screen and (max-width: 1000px) {
  main .plan .inner .plan_fig .order_flow .plans {
    --plans-gap: 60px;
  }
}
@media screen and (max-width: 768px) {
  main .plan .inner .plan_fig .order_flow .plans {
    --plans-gap: 30px;
  }
}
@media screen and (max-width: 600px) {
  main .plan .inner .plan_fig .order_flow .plans {
    --plans-gap: 0;
    padding-bottom: 0;
  }
}
main .plan .inner .plan_fig .order_flow .plans .plan1, main .plan .inner .plan_fig .order_flow .plans .plan2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc((100% - var(--plans-gap)) / 2);
  flex: 0 1 calc((100% - var(--plans-gap)) / 2);
  min-width: 0;
  opacity: 0;
  filter: blur(5px);
  transition: opacity 0.45s ease-out, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s ease-out;
}
main .plan .inner .plan_fig .order_flow .plans .plan1.is-show, main .plan .inner .plan_fig .order_flow .plans .plan2.is-show {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}
main .plan .inner .plan_fig .order_flow .plans .plan1.is-show .upgrade, main .plan .inner .plan_fig .order_flow .plans .plan2.is-show .upgrade {
  opacity: 1;
  transform: translateX(0);
  filter: blur(0);
}
main .plan .inner .plan_fig .order_flow .plans .plan1.plan1, main .plan .inner .plan_fig .order_flow .plans .plan2.plan1 {
  transform: translateY(24px) scale(0.97);
  transition-delay: 0.24s;
}
main .plan .inner .plan_fig .order_flow .plans .plan1.plan2, main .plan .inner .plan_fig .order_flow .plans .plan2.plan2 {
  transform: translateY(24px) scale(0.97);
  transition-delay: 0.34s;
}
main .plan .inner .plan_fig .order_flow .plans .plan1 .plan_inner, main .plan .inner .plan_fig .order_flow .plans .plan2 .plan_inner {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.2);
  margin: -10px -10px 15px;
  padding: 15px;
}
main .plan .inner .plan_fig .order_flow .plans .plan1 .plan_inner .plan_title, main .plan .inner .plan_fig .order_flow .plans .plan2 .plan_inner .plan_title {
  font-size: clamp(18px, 2.4vw, 24px);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 5px;
}
main .plan .inner .plan_fig .order_flow .plans .plan1 .plan_inner .price, main .plan .inner .plan_fig .order_flow .plans .plan2 .plan_inner .price {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
}
main .plan .inner .plan_fig .order_flow .plans .plan1 .plan_inner .price span, main .plan .inner .plan_fig .order_flow .plans .plan2 .plan_inner .price span {
  font-size: 18px;
  letter-spacing: 0;
}
main .plan .inner .plan_fig .order_flow .plans .plan1 .plan_inner .plan_title2, main .plan .inner .plan_fig .order_flow .plans .plan2 .plan_inner .plan_title2 {
  font-size: clamp(15px, 1.6vw, 16px);
  font-weight: 600;
  margin-top: 12px;
  margin-bottom: 2px;
}
main .plan .inner .plan_fig .order_flow .plans .plan1 .plan_inner .plan_text, main .plan .inner .plan_fig .order_flow .plans .plan2 .plan_inner .plan_text {
  font-size: clamp(13px, 1.4vw, 14px);
  color: #5f697b;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  main .plan .inner .plan_fig .order_flow .plans .plan1 .plan_inner .plan_text br, main .plan .inner .plan_fig .order_flow .plans .plan2 .plan_inner .plan_text br {
    display: none;
  }
}
main .plan .inner .plan_fig .order_flow .plans .plan1 .plan_bottom, main .plan .inner .plan_fig .order_flow .plans .plan2 .plan_bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 30px 0 15px;
  gap: 7px;
}
main .plan .inner .plan_fig .order_flow .plans .plan1 .plan_bottom img, main .plan .inner .plan_fig .order_flow .plans .plan2 .plan_bottom img {
  width: 100px;
  height: auto;
  box-shadow: 0 2px 10px 1px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 600px) {
  main .plan .inner .plan_fig .order_flow .plans .plan1 .plan_bottom img, main .plan .inner .plan_fig .order_flow .plans .plan2 .plan_bottom img {
    width: 75px;
  }
}
main .plan .inner .plan_fig .order_flow .plans .plan1 .plan_bottom img.clip, main .plan .inner .plan_fig .order_flow .plans .plan2 .plan_bottom img.clip {
  width: 200px;
  box-shadow: none;
  margin-left: 80px;
  margin-top: -55px;
}
@media screen and (max-width: 600px) {
  main .plan .inner .plan_fig .order_flow .plans .plan1 .plan_bottom img.clip, main .plan .inner .plan_fig .order_flow .plans .plan2 .plan_bottom img.clip {
    margin-left: 59px;
    margin-top: -42px;
    width: 150px;
  }
}
main .plan .inner .plan_fig .order_flow .plans .plan1 .plan_bottom p, main .plan .inner .plan_fig .order_flow .plans .plan2 .plan_bottom p {
  font-size: clamp(15px, 1.8vw, 18px);
  line-height: 1.4;
  font-weight: 600;
  color: #5f697b;
}
main .plan .inner .plan_fig .order_flow .plans .plan1 .plan_bottom .clip + p, main .plan .inner .plan_fig .order_flow .plans .plan2 .plan_bottom .clip + p {
  margin-top: -45px;
}
@media screen and (max-width: 600px) {
  main .plan .inner .plan_fig .order_flow .plans .plan1 .plan_bottom .clip + p, main .plan .inner .plan_fig .order_flow .plans .plan2 .plan_bottom .clip + p {
    margin-top: -40px;
  }
}
main .plan .inner .plan_fig .order_flow .plans .plan1 .date, main .plan .inner .plan_fig .order_flow .plans .plan2 .date {
  display: none;
  background: #8fa6b3;
  margin-top: 10px;
  color: #fff;
  border-radius: 999px;
}
@media screen and (max-width: 600px) {
  main .plan .inner .plan_fig .order_flow .plans .plan1 .date, main .plan .inner .plan_fig .order_flow .plans .plan2 .date {
    display: block;
  }
}
main .plan .inner .plan_fig .order_flow .plans .plan1 .plus, main .plan .inner .plan_fig .order_flow .plans .plan2 .plus {
  width: 30px;
  height: auto;
}
main .plan .inner .plan_fig .order_flow .plans .plan1 .consul, main .plan .inner .plan_fig .order_flow .plans .plan2 .consul {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 600px) {
  main .plan .inner .plan_fig .order_flow .plans .plan1 .consul, main .plan .inner .plan_fig .order_flow .plans .plan2 .consul {
    flex-direction: column;
    gap: 5px;
  }
}
main .plan .inner .plan_fig .order_flow .plans .plan1 .consul img, main .plan .inner .plan_fig .order_flow .plans .plan2 .consul img {
  width: 100px;
  height: auto;
}
main .plan .inner .plan_fig .order_flow .plans .plan1 .consul p, main .plan .inner .plan_fig .order_flow .plans .plan2 .consul p {
  text-align: left;
  font-size: clamp(14px, 1.6vw, 16px);
  font-weight: 600;
  line-height: 1.5;
  color: #5f697b;
}
@media screen and (max-width: 600px) {
  main .plan .inner .plan_fig .order_flow .plans .plan1 .consul p, main .plan .inner .plan_fig .order_flow .plans .plan2 .consul p {
    text-align: center;
  }
}
main .plan .inner .plan_fig .order_flow .plans .plan1 .free, main .plan .inner .plan_fig .order_flow .plans .plan1 .otegaru, main .plan .inner .plan_fig .order_flow .plans .plan2 .free, main .plan .inner .plan_fig .order_flow .plans .plan2 .otegaru {
  background: #f8faff;
  position: relative;
  border-radius: 20px;
  padding: 15px;
  margin: 5px 0 15px;
  max-width: 700px;
  width: 100%;
  box-shadow: 0 5px 20px 1px rgba(0, 0, 0, 0.2);
  text-align: center;
}
main .plan .inner .plan_fig .order_flow .plans .plan1 .free .plan_title, main .plan .inner .plan_fig .order_flow .plans .plan2 .free .plan_title {
  background: linear-gradient(90deg, #01d7eb, #69a1fe);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
main .plan .inner .plan_fig .order_flow .plans .plan1 .free::before, main .plan .inner .plan_fig .order_flow .plans .plan2 .free::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 5px;
  border-radius: inherit;
  background: linear-gradient(180deg, #80ebf5, #69a1fe);
  pointer-events: none;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
main .plan .inner .plan_fig .order_flow .plans .plan1 .otegaru .plan_title, main .plan .inner .plan_fig .order_flow .plans .plan2 .otegaru .plan_title {
  background: linear-gradient(90deg, #69a1fe, #6b66ff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
main .plan .inner .plan_fig .order_flow .plans .plan1 .otegaru::before, main .plan .inner .plan_fig .order_flow .plans .plan2 .otegaru::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 5px;
  border-radius: inherit;
  background: linear-gradient(180deg, #69a1fe, #6b66ff);
  pointer-events: none;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
main .plan .inner .plan_fig .order_flow .plans .plan1 .upgrade, main .plan .inner .plan_fig .order_flow .plans .plan2 .upgrade {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  opacity: 0;
  transform: translateX(-18px);
  filter: blur(4px);
  transition: opacity 0.4s ease-out, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease-out;
}
@media screen and (max-width: 768px) {
  main .plan .inner .plan_fig .order_flow .plans .plan1 .upgrade, main .plan .inner .plan_fig .order_flow .plans .plan2 .upgrade {
    gap: 5px;
  }
}
@media screen and (max-width: 600px) {
  main .plan .inner .plan_fig .order_flow .plans .plan1 .upgrade, main .plan .inner .plan_fig .order_flow .plans .plan2 .upgrade {
    flex-direction: column;
    gap: 10px;
  }
}
main .plan .inner .plan_fig .order_flow .plans .plan1 .upgrade .upgrade_inner, main .plan .inner .plan_fig .order_flow .plans .plan2 .upgrade .upgrade_inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
main .plan .inner .plan_fig .order_flow .plans .plan1 .upgrade .upgrade_inner p, main .plan .inner .plan_fig .order_flow .plans .plan2 .upgrade .upgrade_inner p {
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 600;
  color: #5f697b;
  line-height: 1.4;
}
@media screen and (max-width: 600px) {
  main .plan .inner .plan_fig .order_flow .plans .plan1 .upgrade .upgrade_inner p, main .plan .inner .plan_fig .order_flow .plans .plan2 .upgrade .upgrade_inner p {
    text-align: center;
  }
}
main .plan .inner .plan_fig .order_flow .plans .plan1 .upgrade .upgrade_inner .plus_price, main .plan .inner .plan_fig .order_flow .plans .plan2 .upgrade .upgrade_inner .plus_price {
  display: flex;
  align-items: center;
  gap: 5px;
}
main .plan .inner .plan_fig .order_flow .plans .plan1 .upgrade .upgrade_inner .plus_price img.plus, main .plan .inner .plan_fig .order_flow .plans .plan2 .upgrade .upgrade_inner .plus_price img.plus {
  width: 25px;
  height: auto;
  margin-top: 8px;
}
@media screen and (max-width: 1000px) {
  main .plan .inner .plan_fig .order_flow .plans .plan1 .upgrade .upgrade_inner .plus_price img.plus, main .plan .inner .plan_fig .order_flow .plans .plan2 .upgrade .upgrade_inner .plus_price img.plus {
    width: 15px;
    margin-top: 5px;
  }
}
main .plan .inner .plan_fig .order_flow .plans .plan1 .upgrade .upgrade_inner .plus_price p, main .plan .inner .plan_fig .order_flow .plans .plan2 .upgrade .upgrade_inner .plus_price p {
  font-size: clamp(20px, 3vw, 40px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.03em;
}
main .plan .inner .plan_fig .order_flow .plans .plan1 .upgrade .upgrade_inner .plus_price p span, main .plan .inner .plan_fig .order_flow .plans .plan2 .upgrade .upgrade_inner .plus_price p span {
  font-size: clamp(12px, 2vw, 18px);
  letter-spacing: 0;
}
main .plan .inner .plan_fig .order_flow .plans .plan1 .upgrade > img, main .plan .inner .plan_fig .order_flow .plans .plan2 .upgrade > img {
  width: 25%;
  height: auto;
}
@media screen and (max-width: 600px) {
  main .plan .inner .plan_fig .order_flow .plans .plan1 .upgrade > img, main .plan .inner .plan_fig .order_flow .plans .plan2 .upgrade > img {
    min-width: 60px;
    width: 30%;
    margin-left: 15%;
  }
}
main .plan .inner table.plan_note {
  border-collapse: collapse;
  max-width: 900px;
  width: 100%;
  margin: 60px auto;
  color: #5f697b;
}
main .plan .inner table.plan_note tr:nth-child(odd) {
  background: #f5f7f8;
}
main .plan .inner table.plan_note tr:nth-child(even) {
  background: #e7ebed;
}
main .plan .inner table.plan_note td {
  padding: 10px 15px;
}
@media screen and (max-width: 768px) {
  main .plan .inner table.plan_note td {
    padding: 10px;
  }
}
@media screen and (max-width: 600px) {
  main .plan .inner table.plan_note td {
    padding: 5px 5px 5px 10px;
  }
}
main .plan .inner table.plan_note td:first-child {
  text-align: right;
  font-weight: 600;
  border-right: 2px solid #fff;
  padding: 10px;
  min-width: 105px;
}
main .plan .inner table.plan_note .plan_wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}
main .plan .inner table.plan_note .plan_wrap .plan_title {
  display: inline-block;
  background: #f8faff;
  position: relative;
  border-radius: 20px;
  padding: 5px 15px;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #424242;
}
@media screen and (max-width: 600px) {
  main .plan .inner table.plan_note .plan_wrap .plan_title {
    font-size: 14px;
    padding: 5px 10px;
  }
}
main .plan .inner table.plan_note .plan_wrap .plan_title::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  pointer-events: none;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
main .plan .inner table.plan_note .plan_wrap .plan_title.free::before {
  background: linear-gradient(180deg, #80ebf5, #69a1fe);
}
main .plan .inner table.plan_note .plan_wrap .plan_title.otegaru::before {
  background: linear-gradient(180deg, #69a1fe, #6b66ff);
}
main .plan .inner table.plan_note .plan_wrap p {
  color: #424242;
  font-size: 16px;
  font-weight: 600;
  padding: 0;
}
@media screen and (max-width: 600px) {
  main .plan .inner table.plan_note .plan_wrap p {
    font-size: 14px;
  }
}
main .plan .inner table.plan_note p {
  padding-left: 15px;
}
@media screen and (max-width: 768px) {
  main .plan .inner table.plan_note p br {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  main .plan .inner table.plan_note p {
    font-size: 12px;
    line-height: 1.5;
    padding-left: 5px;
  }
}
main .plan .inner table.plan_note p + .plan_wrap {
  margin-top: 20px;
}

footer {
  position: relative;
  background: #212121;
  color: #fff;
  padding: 15px 0 10px;
  overflow: hidden;
}
footer:after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: -150px;
  width: 545px;
  height: 240px;
  background: url("../img/bg_polygon_header.svg") no-repeat;
  background-size: contain;
  pointer-events: none;
  transform: rotate(0deg) scale(1);
  animation: floatPolygonRight 6s ease-in-out infinite;
  transform-origin: center center;
}
footer .inner .footer_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  footer .inner .footer_wrap {
    flex-direction: column;
    gap: 30px;
  }
}
footer .inner .footer_wrap img.footer_logo {
  width: 200px;
  height: auto;
}
@media screen and (max-width: 1000px) {
  footer .inner .footer_wrap img.footer_logo {
    width: 150px;
  }
}
@media screen and (max-width: 600px) {
  footer .inner .footer_wrap img.footer_logo {
    width: 200px;
  }
}
footer .inner .footer_wrap ul.footer_nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 1000px) {
  footer .inner .footer_wrap ul.footer_nav {
    gap: 20px;
    font-size: 13px;
  }
}
@media screen and (max-width: 600px) {
  footer .inner .footer_wrap ul.footer_nav {
    flex-direction: column;
    gap: 15px;
    font-size: 14px;
  }
}
footer .inner .footer_wrap ul.footer_nav li {
  list-style: none;
}
footer .inner .footer_wrap ul.footer_nav li a:not(.footer_btn) {
  display: block;
  text-decoration: none;
  color: #fff;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
footer .inner .footer_wrap ul.footer_nav li a:not(.footer_btn):hover {
  background: linear-gradient(90deg, #69a1fe, #6b66ff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  transform: translateY(-2px);
}
footer .inner .footer_wrap ul.footer_nav li a.footer_btn {
  text-decoration: none;
  color: #fff;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #69a1fe, #6b66ff);
  border-radius: 999px;
  padding: 5px 30px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
@media screen and (max-width: 1000px) {
  footer .inner .footer_wrap ul.footer_nav li a.footer_btn {
    padding: 5px 15px;
  }
}
@media screen and (max-width: 600px) {
  footer .inner .footer_wrap ul.footer_nav li a.footer_btn {
    padding: 5px 30px;
  }
}
footer .inner .footer_wrap ul.footer_nav li a.footer_btn:hover {
  transform: translateY(-2px);
}
footer .inner .crestec {
  display: block;
  width: fit-content;
  text-decoration: none;
  color: #fff;
  margin-left: auto;
  margin-top: 20px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -ms-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
@media screen and (max-width: 768px) {
  footer .inner .crestec {
    margin: 20px auto;
  }
}
footer .inner .crestec:hover {
  background: linear-gradient(90deg, #69a1fe, #6b66ff);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  transform: translateY(-2px);
}
footer .inner .copy {
  text-align: center;
  font-size: 10px;
  margin-top: 60px;
}

.back_to_top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 80;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 1px solid rgba(107, 102, 255, 0.35);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(107, 102, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out, visibility 0s linear 0.3s;
}
@media screen and (max-width: 600px) {
  .back_to_top {
    right: 15px;
    bottom: 15px;
    width: 48px;
    height: 48px;
  }
}
.back_to_top.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out, visibility 0s linear 0s;
}
.back_to_top:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(107, 102, 255, 0.28);
}
.back_to_top span {
  position: relative;
  width: 14px;
  height: 14px;
  border-top: 3px solid #6b66ff;
  border-left: 3px solid #6b66ff;
  transform: rotate(45deg);
  margin-top: 6px;
}