@charset "UTF-8";

html {
  scroll-behavior: smooth;
}

body {
  font-family: AEqpB-游ゴシック体 Pr6N M, sans-serif;
}

/* Backgrounds */
.blue-bg {
  background-color: #3a76d8;
  padding: 80px 60px;
}

.gray-bg {
  background-color: #f7f7f7;
  padding: 80px;
}

.white-bg {
  background-color: #fff;
  padding: 80px;
}

/* Utilities */
.sp {
  display: none;
}

br.block-500 {
  display: none;
}

.pc {
  display: block;
}

p {
  line-height: 160%;
}

a {
  text-decoration: none;
}

/* Button */
.btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: 560px;
  margin: 0 auto;
  padding: 20px 28px;
  color: #fff;
  font-size: 29px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  border-radius: 50px;
  background: linear-gradient(to right, #356fcf, #28cccf);
  transition: all 0.3s ease;
  overflow: hidden;
  cursor: pointer;
  /* State */
  opacity: 0;
  transform: translateY(0);
  animation: btnPop 1s ease 0.4s forwards;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  background: linear-gradient(90deg, #6f9de1 0%, #98fbff 25%, #6f9de1 50%, #98fbff 75%, #6f9de1 100%);
  background-size: 300% 100%;
  animation: borderFlow 6s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.btn:hover {
  transform: translateY(-4px) scale(1.02);
  opacity: 0.95;
  box-shadow: 0 8px 25px rgb(132, 176, 217);
  transition: all 0.3s ease;
}

.btn:hover::before {
  animation-duration: 2.5s;
}

.btn span {
  background-color: #fff;
  border-radius: 6px;
  color: #3a91d8;
  font-size: 21px;
  padding: 6px 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: inset 0 1px 2px rgb(190, 206, 212);
}

@keyframes borderFlow {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 300% 50%;
  }
}

/* Typography Headings */
h5 {
  font-size: 50px;
  text-align: center;
  margin-bottom: 50px;
  color: #3b4370;
  left: -20px;
  position: relative;
}

h5 span {
  color: #2ac2cf;
}

h5 img {
  width: 100px;
}

/* Header */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.site-header.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-header__logo img {
  height: 36px;
  width: auto;
}

.site-header__btn {
  display: inline-flex;
  align-items: center;
  padding: 7px 44px;
  gap: 0;
  background: linear-gradient(to right, #356fcf, #28cccf);
  color: #fff;
  font-size: 19px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.site-header__btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

.site-header__btn-pc {
  margin: 0;
  padding: 0;
}

/* MV Section */
.mv-wrapper {
  width: 100%;
  margin: 64px 0px 120px;
  background-image: url();
  position: relative;
}

.mv-wrapper:before {
  content: "";
  position: absolute;
  top: -140px;
  left: 44%;
  transform: translateX(calc(-50% - 200px));
  width: 870px;
  height: 844px;
  background-image: url("../img/mv/circle-mv-left.webp");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  opacity: 0;
  transform: translateX(calc(-50% - 200px)) translateY(40px);
  animation: mvScaleFade 1.2s cubic-bezier(0.2, 0.6, 0.2, 1) 0.8s forwards;
}

.mv-wrapper:after {
  content: "";
  position: absolute;
  bottom: -184px;
  right: 0;
  width: 100px;
  height: 300px;
  background-image: url(../img/mv/circle-mv-right.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}

.mv-wrapper .mv {
  max-width: 900px;
  margin: 0px auto 0px;
  text-align: center;
  padding-top: 70px;
}

.mv-wrapper .mv:before {
  content: "";
  position: absolute;
  top: 16px;
  left: -70px;
  width: 210px;
  height: 210px;
  background-image: url(../img/mv/triangle-2.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  opacity: 0;
  transform: translateX(60px);
  animation: mvLeftFade 1.2s cubic-bezier(0.2, 0.6, 0.2, 1) 1s forwards;
}

.mv-wrapper .mv:after {
  content: "";
  position: absolute;
  bottom: 66px;
  right: 0px;
  width: 20px;
  height: 70px;
  background-image: url(../img/mv/triangle-1.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.mv-wrapper h2 {
  opacity: 0;
  transform: translateY(20px);
  font-size: 70px;
  font-weight: 600;
  background: linear-gradient(to right, #2bcf75 0%, #166069 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  position: relative;
}

.mv-wrapper h2:after {
  content: "";
  position: absolute;
  bottom: 46px;
  right: 112px;
  width: 20px;
  height: 70px;
  background-image: url(../img/mv/small-triangle-1.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.mv-wrapper .hero-animate h2 {
  animation: fadeUp 0.8s ease forwards;
}

.mv-wrapper .hero-animate h3,
.mv-wrapper .hero-animate p {
  animation: fadeUp 0.8s ease 0.2s forwards;
  opacity: 0;
  transform: translateY(20px);
}

.mv-wrapper .hero-animate .btn {
  animation: btnPop 1s ease 0.4s forwards;
  opacity: 0;
  transform: translateY(20px);
}

.mv-wrapper h3 {
  font-size: 55px;
  color: #4b4b4b;
  line-height: 120%;
}

.mv-wrapper p {
  margin-top: 20px;
  margin-bottom: 30px;
  font-size: 22px;
  color: #4b4b4b;
}

.mv-wrapper .blur {
  position: absolute;
  width: 530px;
  right: 4%;
  top: 70px;
}

.mv-wrapper .blur2 {
  position: absolute;
  width: 350px;
  left: 0px;
  top: 70px;
}

.mv-wrapper .btn {
  position: relative;
  z-index: 2;
  overflow: initial;
}

.mv-wrapper .btn:after {
  content: "";
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 200, 230, 0.35) 0%, rgba(0, 200, 230, 0.25) 40%, rgba(0, 200, 230, 0) 80%);
  filter: blur(80px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.7;
}

/* News Section */
.new-wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 0px;
  text-align: center;
}

.new-wrapper .new-title {
  font-size: 36px;
  margin-bottom: 30px;
  margin-top: 70px;
  color: #3a4370;
  font-weight: 600;
  position: relative;
}

.new-wrapper .new-title::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 28px;
  background-color: #3a4370;
  vertical-align: middle;
  left: 50%;
  top: -37px;
  transform: translateX(-50%);
  position: absolute;
}

.job-section {
  padding: 60px 0px 80px;
  overflow: visible;
}

.job-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 32px;
}

/* Jobs Swiper */
.jobs-swiper {
  width: 100%;
  max-width: none;
  margin-left: 0;
  padding: 20px 0 40px 0 !important;
  position: relative;
  box-sizing: border-box;
  overflow: visible;
  margin-left: -100px !important;
  width: calc(100% + 100px) !important;
}

.jobs-swiper .swiper-slide {
  width: 280px;
  opacity: 1 !important;
  transform: none !important;
}

.jobs-swiper .swiper-wrapper {
  align-items: stretch;
  justify-content: flex-start;
}

/* カスタムページネーション */
.custom-pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
}

.custom-pagination .bullet {
  width: 22px;
  height: 6px;
  background: #ccc;
  border-radius: 0;
  cursor: pointer;
  transition: 0.3s;
}

.custom-pagination .bullet.active {
  background: #3a76d8;
}

.custom-pagination .bullet:hover {
  background: #999;
}

/* Job Section */
.job {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  display: flex;
  gap: 40px;
  justify-content: space-evenly;
}

.job .job-item-img {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.job .job-item-img .job-item-img-tool {
  position: absolute;
  left: 0px;
  background-color: #f98c33;
  border-bottom-right-radius: 6px;
  padding: 3px 8px 0px 9px;
  color: #fff;
  font-weight: 600;
  font-size: 11px;
}

.job .job-item-img img {
  width: 100%;
}

.job-item {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 3px 11px #f7f7f7;
  transition: transform 0.5s, box-shadow 0.5s;
}

.job-item:hover {
  box-shadow: 0 3px 11px #e6e6e6;
  transform: translateY(-10px);
}

.job-item-box {
  padding: 16px;
  text-align: left;
  background-color: #fff;
}

.job-item-box h4 {
  color: #3a76d8;
  font-size: 16px;
  text-align: left;
  height: 42px;
  line-height: 120%;
}

.job-item-box img.icon {
  width: 18px;
}

.job-item-box ul {
  display: flex;
  row-gap: 4px;
  flex-direction: column;
}

.job-item-box ul li.job-item-box-price {
  font-size: 15px;
  display: flex;
  gap: 5px;
  color: #444444;
}

.job-item-box ul li.job-item-box-price b {
  color: #d83a3d;
}

.job-item-box ul li {
  text-align: left;
  list-style: none;
  font-size: 12px;
  display: flex;
  gap: 5px;
  color: #444444;
}

.job-item-box span {
  font-size: 11px;
  background-color: #e7f0ff;
  padding: 4px 8px;
  border-radius: 20px;
  color: #3a76d8;
  margin-top: 10px;
  display: inline-block;
  line-height: 100%;
}

/* Reason Section */
.reason-wrapper {
  background-color: #f7faff;
  max-width: 1020px;
  width: calc(100% - 40px);
  padding: 50px;
  margin: 90px auto;
  border-radius: 60px;
  position: relative;
}

.reason-wrapper:before {
  content: "";
  position: absolute;
  top: 200px;
  left: -210px;
  width: 420px;
  height: 420px;
  background-image: url(../img/reason/circle-left.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.reason-wrapper:after {
  content: "";
  position: absolute;
  top: 500px;
  right: -40px;
  width: 200px;
  height: 300px;
  background-image: url(../img/reason/circle-right.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.reason-wrapper h5 {
  font-size: 36px;
  text-align: center;
  color: #3b4370;
  margin: 0px 0px 30px;
  position: relative;
}

.reason-wrapper h5 span.reason-title-top {
  color: #3b4370;
  font-size: 36px;
  position: relative;
}

.reason-wrapper h5 span.reason-title-top:after {
  content: "";
  position: absolute;
  top: -71px;
  right: 0px;
  width: 20px;
  height: 30px;
  background-image: url(../img/reason/green-01.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.reason-wrapper h5 span.reason-title-top:before {
  content: "";
  position: absolute;
  top: 20px;
  left: -110px;
  width: 30px;
  height: 30px;
  background-image: url(../img/reason/triangle.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.reason-wrapper h5 b {
  font-size: 56px;
  position: relative;
}

.reason-wrapper h5 b:after {
  content: "";
  position: absolute;
  top: -61px;
  left: -40px;
  width: 8px;
  height: 8px;
  background-image: url(../img/reason/orange-02.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.reason-wrapper h5 b:before {
  content: "";
  position: absolute;
  bottom: 0px;
  right: -40px;
  width: 8px;
  height: 8px;
  background-image: url(../img/reason/green-02.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.reason-wrapper h5 span.span02 {
  color: #2ac2cf;
  position: relative;
}

.reason-wrapper h5 span.span02:before {
  content: "";
  position: absolute;
  top: -44px;
  right: -54px;
  width: 130px;
  height: 130px;
  background-image: url(../img/reason/blur01.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.reason-wrapper h5 span.span02:after {
  content: "";
  position: absolute;
  left: -310px;
  bottom: -20px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f3ae01;
  filter: blur(26px);
  pointer-events: none;
}

.reason-wrapper .reason-01-wrap {
  position: relative;
}

.reason-wrapper .reason-01-wrap::after {
  content: "";
  position: absolute;
  top: -19px;
  right: -10px;
  width: 40px;
  height: 40px;
  background-image: url(../img/reason/green.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 0;
}

.reason-wrapper .reason {
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(12px);
  background: linear-gradient(to right, rgba(249, 252, 255, 0.15), rgba(255, 255, 255, 0.7), rgba(249, 252, 255, 0.15));
  border-radius: 30px;
  padding: 40px 50px;
  margin-bottom: 60px;
  display: flex;
  gap: 20px;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.reason-wrapper .reason .reason-title {
  position: relative;
}

.reason-wrapper .reason .reason-title h6 {
  color: #3b4370;
  font-size: 28px;
}

.reason-wrapper .reason .reason-title img {
  position: absolute;
  right: 0px;
  top: -55px;
  width: 220px;
}

.reason-wrapper .reason p {
  font-size: 16px;
  line-height: 160%;
  color: #1d1f32;
  clear: both;
  margin: 0px;
}

.reason-wrapper .reason p b {
  background-color: #fff6de;
  padding: 3px 1px;
  line-height: 170%;
}

.reason-wrapper .reason .reason-even h6 {
  float: right;
}

.reason-wrapper .reason .reason-even img {
  left: 30px;
}

/* Flow Section */
.flow-wrapper {
  width: calc(100% - 40px);
  max-width: 1020px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.flow-wrapper::before {
  content: "";
  position: absolute;
  top: 200px;
  left: -410px;
  width: 710px;
  height: 710px;
  background-image: url(../img/flow/circle-01.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.flow-wrapper h5 {
  color: #fff;
}

.flow-wrapper h5 span {
  color: #C6FFF1;
}

.flow-wrapper h5 img {
  width: 70px;
  height: 90px;
  margin-right: 10px;
}

.flow-wrapper .flow {
  background-color: #fff;
  border-radius: 20px;
  text-align: left;
  padding: 20px 20px 20px 60px;
  margin-bottom: 30px;
  position: relative;
  display: flex;
  gap: 6px;
  flex-direction: column;
}

.flow-wrapper .flow .flow-number {
  background-color: #3976d8;
  border-radius: 110px;
  width: 60px;
  height: 60px;
  font-size: 30px;
  position: absolute;
  display: flex;
  left: -20px;
  border: 3px solid #fff;
  align-items: center;
  color: #fff;
  text-align: center;
  justify-content: center;
  font-weight: 600;
  font-style: italic;
  padding-right: 5px;
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
}

.flow-wrapper .flow b {
  font-size: 25px;
  color: #3a76d8;
}

.flow-wrapper .flow p {
  font-size: 16px;
  color: #121c55;
}

/* Voice Section */
.voice {
  margin: 80px;
}

.voice h5 {
  color: #3b4370;
  left: -20px;
  position: relative;
}

.voice h5 span {
  color: #2ac2cf;
}

.voice .voice-wrapper {
  max-width: 1020px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.voice .voice-wrapper .voice-item {
  padding: 30px 0px;
  border-radius: 40px;
  position: relative;
}

.voice .voice-wrapper .voice-item img {
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 40px;
  width: 160px;
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
  z-index: 1;
}

.voice .voice-wrapper .voice-item-right {
  background: linear-gradient(to bottom right, #eff5ff 0%, #ffffff 100%);
  float: right;
  width: calc(100% - 70px);
  padding: 30px 30px 30px 120px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.voice .voice-wrapper .voice-item-right .voice-item-title {
  display: flex;
  font-size: 23px;
  justify-content: space-between;
  font-weight: 600;
  color: #3b4370;
}

.voice .voice-wrapper .voice-item-right .voice-item-title span {
  font-size: 13px;
}

.voice .voice-wrapper .voice-item-right .voice-item-title .voice-item-title-right {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.voice .voice-wrapper .voice-item-right p {
  color: #121c55;
}

.voice .voice-wrapper .voice-item-right p b {
  background-color: #fff6de;
  padding: 1px;
  line-height: 170%;
}

/* Jobs Wrapper */
.jobs-wrapper h5 img {
  width: 84px;
}

.jobs-wrapper .jobs-title {
  display: contents;
}

.jobs-wrapper h6 {
  color: #3b4370;
  font-size: 40px;
  text-align: center;
  margin-top: 50px;
}

.jobs-wrapper h7 {
  color: #3b4370;
  font-size: 31px;
  font-weight: 600;
  text-align: center;
  display: block;
  margin-bottom: 30px;
}

.jobs-wrapper .job {
  max-width: 1020px;
  flex-wrap: wrap;
}

.jobs-wrapper .job .job-item {
  max-width: 280px;
  transition: all 0.5s;
}

.jobs-wrapper .btn {
  margin: 40px auto 0px;
}

/* Question Section */
.question-wrapper {
  max-width: 1020px;
  margin: 0 auto;
}

.question-wrapper .question {
  background-color: #f2f8ff;
  color: #356fcf;
  font-size: 17px;
  border-radius: 10px;
  padding: 20px 0px 10px 30px;
  margin-bottom: 30px;
  gap: 10px;
  position: relative;
  cursor: pointer;
}

.question-wrapper .question::before {
  content: "Q.";
  position: absolute;
  left: 29px;
  top: 19px;
  font-size: 18px;
  font-weight: 600;
}

.question-wrapper .question::after {
  content: "";
  position: absolute;
  right: 30px;
  width: 20px;
  height: 20px;
  background-image: url(../img/common/plus.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: 25px;
}

.question-wrapper .question b {
  padding-left: 30px;
  padding-right: 50px;
  display: block;
}

.question-wrapper .question .answer {
  background-color: #fff;
  border-radius: 4px;
  margin-bottom: 10px;
  display: block;
  box-sizing: border-box;
  margin-right: 20px;
  max-height: 0;
  overflow: hidden;
  padding: 0 10px;
  transition: max-height 0.4s ease-in-out, margin-top 0.4s ease-in-out, padding 0.3s ease;
  width: calc(100% - 20px);
}

.question-wrapper .question .answer p {
  margin: 10px;
  font-size: 15px;
  color: #121c55;
}

.question-wrapper .question.active .answer {
  max-height: 500px;
}

.question-wrapper .question.active::after {
  background-image: url(../img/common/minus.svg);
}

/* Register Section */
.register {
  max-width: 770px;
  margin: 0 auto;
}

.register .last-date {
  text-align: right;
  font-size: 12px;
}

.register h5 {
  color: #fff;
}

.register h5 span {
  color: #c6fff1;
}

.register h5 .register-icon {
  width: 80px;
  top: -5px;
  position: relative;
}

.register p {
  color: #fff;
}

.register form {
  max-width: 600px;
  margin: 40px auto 0px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.register form dl {
  display: flex;
  gap: 30px;
  align-items: center;
  margin: 0px;
}

.register form dl dt {
  font-size: 17px;
  color: #fff;
  margin: 0px;
  display: flex;
  align-items: center;
  gap: 4px;
  width: 170px;
}

.register form dl dt span {
  background-color: #ff7373;
  color: #fff;
  font-size: 10px;
  border-radius: 4px;
  padding: 2px 4px;
}

.register form dl dt span.tel {
  font-size: 11px;
  background: none;
}

.register form dl dd {
  margin: 0px;
  display: flex;
  gap: 20px;
  width: calc(100% - 190px);
}

.register form dl dd .input-wrap {
  width: calc(50% - 10px);
  position: relative;
}

.register form dl dd input {
  width: 100%;
  background-color: #fff;
  border-radius: 6px;
  outline: none;
  border: none;
  height: 56px;
  padding-left: 10px;
  color: #3b4370;
  font-size: 16px;
  position: relative;
}

.register form dl dd input::-moz-placeholder {
  color: #cccccc;
  font-size: 16px;
}

.register form dl dd input::placeholder {
  color: #cccccc;
  font-size: 16px;
}

.register form dl.mail .input-wrap,
.register form dl.mail input {
  width: 100%;
}

.register span.caution {
  font-size: 11px;
  color: #fff;
  text-align: center;
  display: block;
}

.register span.caution a {
  color: #fff;
}

.register span.caution a:hover {
  text-decoration: none;
}

.register .send button {
  color: #3a76d8;
  font-size: 28px;
  height: 60px;
  font-weight: 600;
  background: linear-gradient(to top right, #fcffbb, #ffdb9c);
  border: none;
  border-radius: 8px;
  padding: 22px 20px 22px 0px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  width: 290px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 0px;
  border-radius: 30px;
  gap: 22px;
  box-shadow: 0 20px 30px rgba(50, 77, 137, 0.35);
}

.register .send button img {
  width: 50px;
}

.register .send button b {
  margin-right: 20px;
}

.register .send-btn {
  position: relative;
  padding: 16px 32px;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  background: linear-gradient(135deg, #2563eb, #38bdf8);
  overflow: visible;
}

.register .send-btn.is-sent .plane {
  animation: planeFly 1.6s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.register .send-btn.is-sent .spinner {
  animation: spin 0.8s linear infinite, fadeInSpinner 0.3s ease 0.6s forwards;
}

.register .send-btn .icon-slot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
}

.register .send-btn .spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(58, 118, 216, 0.2);
  border-top-color: #3a76d8;
  border-radius: 50%;
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes fadeInSpinner {
  to {
    opacity: 1;
  }
}

.register a {
  text-decoration: underline;
}

.register .plane {
  width: 22px;
  height: auto;
  transform: rotate(15deg);
  pointer-events: none;
}

.register {
  /* Initial state plane */
}

.register .send-btn .plane {
  transform: translate(0, 0) rotate(35deg);
  opacity: 1;
}

@keyframes planeFly {
  from {
    transform: translate(0, 0) rotate(35deg);
    opacity: 1;
  }

  to {
    transform: translate(120px, -80px) rotate(10deg) scale(1.05);
    opacity: 0;
  }
}

@keyframes fly {
  from {
    offset-distance: 0%;
    opacity: 1;
  }

  to {
    offset-distance: 100%;
    opacity: 0;
    transform: scale(1.18);
  }
}

.register .popupComplete {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, calc(-50% - 40px)) scale(0.9);
  background: rgba(66, 66, 66, 0.9);
  color: #fff;
  font-size: 20px;
  padding: 24px 32px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16, 0.84, 0.44, 1);
  z-index: 9999;
}

.register .popupComplete.is-show {
  opacity: 1;
  transform: translate(-50%, calc(-50% - 40px)) scale(1);
}

.register .input-tooltip {
  position: absolute;
  top: -11px;
  left: 5px;
  transform: translateY(-50%);
  background: #ffffff;
  color: #ff7373;
  font-size: 11px;
  padding: 0px 5px;
  border-radius: 76px;
  border-radius: 3px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.register .input-tooltip.show {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.register .input-tooltip::before {
  content: "";
  position: absolute;
  bottom: -11px;
  left: 20px;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #fff;
}

.register input.error {
  border: 2px solid #ff4b4b;
  background: #fff0f0;
}

/* Footer */
footer {
  position: relative;
  z-index: 10;
}

footer ul {
  display: flex;
  gap: 20px;
  margin: 20px auto;
  text-align: center;
  justify-content: center;
}

footer ul li {
  list-style: none;
}

footer ul li a {
  color: #3a76d8;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  pointer-events: auto;
  transition: opacity 0.3s ease;
}

footer ul li a:hover {
  opacity: 0.7;
}

footer p {
  font-size: 13px;
  text-align: center;
  color: #747474;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  color: #56596f;
}

.modal.is-show {
  display: flex;
}

.modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.modal__content {
  position: relative;
  width: 90%;
  max-width: 850px;
  max-height: 85vh;
  background: #fff;
  padding: 24px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.modal__title {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  border-bottom: 1px dashed #e1ebff;
  padding-bottom: 10px;
}

.modal__close {
  position: absolute;
  right: -6px;
  top: -42px;
  border: none;
  background: transparent;
  font-size: 40px;
  cursor: pointer;
  color: #fff;
}

.modal__section {
  margin-bottom: 28px;
  padding-top: 16px;
}

/* Modal Content Details */
.policy-heading {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 12px;
}

.policy-text {
  height: 200px;
  overflow-y: auto;
  font-size: 14px;
  line-height: 1.7;
  padding: 10px;
  border: 1px solid #e7efff;
  background: #f9fbff;
}

.policy-links a {
  font-size: 12px;
  text-decoration: underline;
  cursor: pointer;
}

.terms-inner {
  font-size: 13px;
  line-height: 160%;
  margin: 10px 0px;
}

.terms-inner>ul {
  list-style-type: cjk-ideographic;
  margin-left: 30px;
}

.terms-inner ul ul {
  list-style-type: decimal;
}

.terms-inner h4 {
  margin-top: 20px;
  padding: 4px 10px;
  background-color: #eff2f8;
  margin-bottom: 6px;
}

.terms-inner a {
  color: #56596f;
  text-decoration: underline;
}

body.is-fixed {
  overflow: hidden;
  height: 100vh;
}