@charset "UTF-8";
.flex-center-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.flex-center-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex-between-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.circle {
  position: relative;
}
.circle span {
  border-radius: 50%;
  width: 1.85rem;
  height: 1.85rem;
  margin-left: -0.5rem;
  display: inline-block;
}

.circle-xl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.circle-xl span {
  background-color: #705496;
  color: white;
  font-size: 2rem;
  line-height: 2rem;
  border-radius: 50%;
  padding: 0.25rem 0.35rem 0.35rem 0.35rem;
  margin-left: -0.45rem;
}
@media screen and (max-width: 768px) {
  .circle-xl span {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
}

.circle-sm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.circle-sm span {
  background-color: #F2E529;
  font-size: 1.1rem;
  line-height: 1.1rem;
  border-radius: 50%;
  padding: 0.3rem;
  margin-left: -0.45rem;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-container > iframe, .video-container > object, .video-container > embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*	使用方式
 * .video-container
 * iframe(src="https://www.youtube.com/embed/YygVVvuIWm4", frameborder="0", allowfullscreen) */
.player-container {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16/9;
  max-width: 800px;
}

#topbar {
  background: #6E71C7;
}
#topbar .item a {
  padding-bottom: 2px;
}
#topbar .item a:hover {
  color: #F2E529;
}
#topbar .item a:last-child:hover {
  color: #F2E529;
}
@media screen and (max-width: 1024px) {
  #topbar {
    padding-right: 15px;
  }
  #topbar .burger-trigger {
    z-index: 999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 40px;
    height: 40px;
    outline: 0;
  }
  #topbar .burger-trigger, #topbar .burger-trigger span {
    -webkit-transition: 0.2s;
    transition: 0.2s;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
  }
  #topbar .burger-trigger span {
    position: relative;
    display: block;
    width: 100%;
    height: 2px;
    background: white;
  }
  #topbar .burger-trigger.active .first, #topbar .burger-trigger.active .last {
    background: white;
  }
  #topbar .burger-trigger.active .middle {
    opacity: 0;
  }
  #topbar .burger-trigger.active .first {
    top: 13px;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  #topbar .burger-trigger.active .last {
    bottom: 13px;
    -webkit-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  #topbar .nav-wrap {
    z-index: 100;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    opacity: 0;
    -webkit-transform-origin: right top;
        -ms-transform-origin: right top;
            transform-origin: right top;
    -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
            transform: translateY(-100%);
    -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
    transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
    transition: transform 0.4s ease, opacity 0.4s ease;
    transition: transform 0.4s ease, opacity 0.4s ease, -webkit-transform 0.4s ease;
    background-color: #6E71C7;
  }
  #topbar .nav-wrap.active {
    opacity: 1;
    z-index: 100;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
  #topbar .nav-wrap .nav {
    z-index: 100;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #topbar .nav-wrap .item {
    min-width: 300px;
  }
  #topbar .nav-wrap .item a {
    display: block;
    text-align: center;
    font-size: 1.35rem;
    margin-bottom: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }
  #topbar .nav-wrap .item a:hover {
    background: white;
    color: #6E71C7;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
  }
}
@media screen and (max-width: 540px) {
  #topbar .burger-trigger {
    width: 30px;
    height: 30px;
  }
  #topbar .burger-trigger.active .first {
    top: 10px;
  }
  #topbar .burger-trigger.active .last {
    bottom: 10px;
  }
}

.catalog {
  margin-bottom: 1.25rem;
  border-radius: 1rem;
  overflow: hidden;
  background: white;
}

.catalog-thead {
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}

.catalog-thead, .catalog-td {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  text-align: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media screen and (max-width: 768px) {
  .catalog-thead, .catalog-td {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}

.catalog-thead {
  padding: 0.75rem 0 0.75rem 1rem;
  z-index: 1;
  position: relative;
  cursor: pointer;
}
.thead-section {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.thead-name {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  padding-left: 1rem;
  padding-right: 3.5rem;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .thead-name {
    font-size: 1.25rem;
    line-height: 1.45rem;
  }
  .thead-name span {
    display: inline;
    line-height: 1.5;
  }
}
@media screen and (max-width: 480px) {
  .thead-name {
    line-height: 1.25rem;
  }
}

.catalog-tr {
  padding: 1rem;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .catalog-tr {
    padding: 0.5rem;
  }
}

.catalog-td {
  padding: 0.35rem 0;
}
@media screen and (max-width: 768px) {
  .catalog-td {
    margin-bottom: 0.25rem;
    padding: 0.25rem 0;
  }
}

.td-name {
  font-size: 22px;
  -ms-flex-line-pack: center;
      align-content: center;
  padding-left: 1rem;
}
@media screen and (max-width: 768px) {
  .td-name {
    font-size: 20px;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}
@media screen and (max-width: 480px) {
  .td-name {
    font-size: 19px;
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
}

.td-no {
  text-align: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.catalog-switch.close::before, .catalog-switch.open::before {
  width: 35px;
  height: 35px;
  position: absolute;
  right: 1rem;
  top: calc(50% - 17px);
}
.catalog-switch.close::before {
  content: "";
  background: url("../../dist/img/close.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.catalog-switch.open::before {
  content: "";
  background: url("../../dist/img/open.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.preview-btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #911E4C;
  color: white;
  padding: 0rem 0.75rem;
  border-radius: 1rem;
  margin-left: 0.5rem;
  font-size: 1rem;
}
.preview-btn .icon {
  font-size: 0.75rem;
  vertical-align: middle;
}

.price-bar {
  background: #6E71C7;
}

.discount {
  background-color: #D40000;
  margin-top: -1.5rem;
}
@media screen and (max-width: 768px) {
  .discount {
    margin-top: -1rem;
  }
}

.triangle {
  height: 30px;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.triangle::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  right: -25px;
  top: 0;
  border-top: 30px solid transparent;
  border-right: 25px solid transparent;
  border-top: 30px solid #D40000;
}

.point-time b {
  width: 32px;
  letter-spacing: -1px;
  display: inline-block;
  font-size: 22px;
  height: 26px;
  text-align: center;
  color: #F2E529;
}

.count {
  text-align: left;
}
.count .circle {
  background-color: #F2E529;
  color: black;
  border-radius: 100%;
  width: 20px;
  height: 20px;
  display: inline-block;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
  margin-left: -2px;
}

.join {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-shadow: 0px 0px 4px black;
  background: -webkit-gradient(linear, left top, left bottom, from(#9F7B2D), color-stop(33%, #E9D67D), color-stop(52%, #F5ECA6), color-stop(73%, #E9D67D), color-stop(74%, #E5D178), color-stop(92%, #B29342), to(#9F7B2D));
  background: linear-gradient(180deg, #9F7B2D 0%, #E9D67D 33%, #F5ECA6 52%, #E9D67D 73%, #E5D178 74%, #B29342 92%, #9F7B2D 100%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.join a {
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.join a:hover, .join a:focus {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.join .cursor {
  position: absolute;
  bottom: 10%;
  right: 5%;
  -webkit-animation: opacity-cursor 1s infinite;
          animation: opacity-cursor 1s infinite;
}
@media screen and (max-width: 1024px) {
  .join {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
  .join a, .join span {
    display: inline-block;
    width: 100%;
    text-align: center;
  }
  .join .cursor {
    right: 35%;
    bottom: 5%;
  }
}
@media screen and (max-width: 480px) {
  .join .cursor {
    right: 30%;
    bottom: 5%;
  }
}

@-webkit-keyframes opacity-cursor {
  50% {
    opacity: 0;
  }
}

@keyframes opacity-cursor {
  50% {
    opacity: 0;
  }
}
#price.fixed-bottom {
  z-index: 20;
}
@media screen and (max-width: 1024px) {
  #price.fixed-bottom .count {
    display: none;
  }
}

#progressContainer {
  position: relative;
  border-radius: 25px;
  background-color: white;
  overflow: hidden;
  min-width: 220px;
}

#progressBar {
  height: 25px;
  background: #F2E529;
  width: 0;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

#percentageText {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-size: 16px;
  color: #D40000;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 101;
}

.popup-content {
  width: 90%;
  max-width: 800px;
  -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  position: relative;
}
@media screen and (max-width: 480px) {
  .popup-content {
    width: 92%;
  }
}

.close-btn {
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  background: rgba(0, 0, 0, 0.75);
  color: white;
  font-size: 1.5rem;
  font-weight: bold;
  border: 0px;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  cursor: pointer;
  z-index: 102;
}
@media screen and (max-width: 480px) {
  .close-btn {
    top: -3.5rem;
    right: -0.5rem;
  }
}

.video-content {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-content > iframe, .video-content > object, .video-content > embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.spartan, .point-time b {
  font-family: Spartan, sans-serif;
  font-weight: 500;
}

.fixed-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
}

.fix {
  position: fixed;
  top: 40%;
  right: -0.25rem;
  z-index: 10;
  width: 90px;
}
.fix .robot {
  position: absolute;
  top: -2.75rem;
  left: -0.5rem;
  z-index: -1;
  -webkit-animation: ani-filter 3s infinite ease;
          animation: ani-filter 3s infinite ease;
}
.fix:hover {
  -webkit-filter: drop-shadow(0px 0px 14px rgba(51, 231, 252, 0.5));
          filter: drop-shadow(0px 0px 14px rgba(51, 231, 252, 0.5));
}
@media screen and (max-width: 768px) {
  .fix {
    width: 80px;
  }
  .fix .robot {
    width: 60px;
    top: -1.35rem;
    left: 0.15rem;
  }
}
@media screen and (max-width: 480px) {
  .fix {
    width: 70px;
  }
}

.ani-bright {
  -webkit-animation: ani-filter 3s infinite ease;
          animation: ani-filter 3s infinite ease;
}

@-webkit-keyframes ani-filter {
  50% {
    -webkit-filter: brightness(130%);
            filter: brightness(130%);
  }
}

@keyframes ani-filter {
  50% {
    -webkit-filter: brightness(130%);
            filter: brightness(130%);
  }
}
.ttl {
  font-size: 1.95rem;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 1.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ttl img {
  display: inline-block;
  margin-right: 0.75rem;
}
.ttl .style {
  color: white;
  text-shadow: 2px 2px 10px #3791D0;
  margin-right: 0.5rem;
}
@media screen and (max-width: 768px) {
  .ttl {
    font-size: 1.5rem;
  }
}

.purple-border {
  background: url("../../dist/img/point-bg.svg"), url("../../dist/img/point-bg-2.svg"), -webkit-gradient(linear, left bottom, left top, color-stop(40%, #6e71c7), to(#c9acf2));
  background: url("../../dist/img/point-bg.svg"), url("../../dist/img/point-bg-2.svg"), linear-gradient(0deg, #6e71c7 40%, #c9acf2 100%);
  background-repeat: no-repeat;
  background-position: -10% center, 140% top;
  border-radius: 10rem;
  border: 2px solid #F2E529;
}
@media screen and (max-width: 768px) {
  .purple-border {
    border-radius: 3rem;
    background: url("../../dist/img/point-bg-2.svg"), -webkit-gradient(linear, left bottom, left top, color-stop(40%, #6e71c7), to(#c9acf2));
    background: url("../../dist/img/point-bg-2.svg"), linear-gradient(0deg, #6e71c7 40%, #c9acf2 100%);
    background-position: -300px bottom, center;
    background-repeat: no-repeat;
  }
}

.dialog-1 {
  font-size: 1.25rem;
  width: 48%;
  padding: 1.25rem 1.5rem;
  border-radius: 1rem;
  background: linear-gradient(60deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);
  color: #003966;
}
@media screen and (max-width: 768px) {
  .dialog-1 {
    width: 80%;
  }
}
.dialog-1.text-right {
  position: relative;
  -ms-flex-item-align: end;
      -ms-grid-row-align: end;
      align-self: end;
  text-align: left;
}
.dialog-1.text-right::after {
  content: "▶";
  color: rgba(255, 255, 255, 0.4);
  right: -1.15rem;
  top: 0.5rem;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .dialog-1.text-right::after {
    font-size: 0.875rem;
    right: -0.8rem;
  }
}
.dialog-1.text-left {
  position: relative;
  margin-top: -2rem;
}
.dialog-1.text-left::after {
  content: "◀";
  color: rgba(255, 255, 255, 0.7);
  left: -1.1rem;
  top: 0.5rem;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .dialog-1.text-left {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  .dialog-1.text-left::after {
    font-size: 0.875rem;
    left: -0.75rem;
  }
}

main {
  background: url("../../dist/img/point-bg.svg"), url("../../dist/img/point-bg-2.svg"), url("../../dist/img/point-bg-2.svg"), -webkit-gradient(linear, left top, left bottom, color-stop(30%, #9EB8D8), color-stop(80%, #DDB0D2));
  background: url("../../dist/img/point-bg.svg"), url("../../dist/img/point-bg-2.svg"), url("../../dist/img/point-bg-2.svg"), linear-gradient(180deg, #9EB8D8 30%, #DDB0D2 80%);
  background-repeat: no-repeat;
  background-position: left 12%, 110% 28%, 8% 42%, center;
}
@media screen and (max-width: 1024px) {
  main {
    background-size: 40% auto, 70% auto, 70% auto, auto;
    background-position: left 12%, 110% 28%, 8% 50%, center;
  }
}

#home {
  background: url("../../dist/img/kv-bg-point-l.svg"), url("../../dist/img/kv-bg-point-r.svg");
  background-position: left center, right center;
  background-repeat: no-repeat;
}
#home .txt {
  position: relative;
}
#home .line {
  position: absolute;
  mix-blend-mode: color-dodge;
  right: 16%;
  bottom: 23%;
}
@media screen and (max-width: 1024px) {
  #home {
    background-position: 0% 130%, 105% 0%;
  }
  #home .line {
    right: 18%;
    bottom: 18%;
    width: 180px;
  }
}
@media screen and (max-width: 768px) {
  #home .line {
    width: 130px;
  }
}
@media screen and (max-width: 480px) {
  #home .line {
    width: 100px;
  }
}
@media screen and (max-width: 380px) {
  #home .line {
    width: 70px;
  }
}

#info {
  background: url("../../dist/img/point-bg-5.svg");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
@media screen and (max-width: 1024px) {
  #info {
    background-size: 150% auto;
  }
}
@media screen and (max-width: 768px) {
  #info {
    background-size: 200% auto;
  }
}
#info .content {
  position: relative;
}
#info .content .line {
  width: 150px;
  position: absolute;
  mix-blend-mode: color-dodge;
  top: -3.25rem;
  left: 0.25rem;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #info .content .line {
    width: 90px;
    top: -2rem;
    left: 0.75rem;
  }
}
#info .robot-3 {
  position: absolute;
  left: -1.25rem;
  top: -6rem;
}
@media screen and (max-width: 768px) {
  #info .robot-3 {
    width: 100px;
    left: -1rem;
    top: -4rem;
  }
}

.info-bg {
  position: relative;
}
.info-bg .round {
  position: absolute;
  z-index: 0;
  left: 1%;
  top: 50%;
  -webkit-transform: translate(-1%, -42%);
      -ms-transform: translate(-1%, -42%);
          transform: translate(-1%, -42%);
}
@media screen and (max-width: 480px) {
  .info-bg .round {
    top: 0%;
    left: 50%;
    -webkit-transform: translate(-45%, -15%);
        -ms-transform: translate(-45%, -15%);
            transform: translate(-45%, -15%);
  }
}

.info-item {
  background: linear-gradient(35deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.6) 75%);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  position: relative;
  padding: 1.5rem;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .info-item {
    margin-top: 3rem;
  }
}
.info-item .txt {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(40%, #f2e529), color-stop(40%, rgba(242, 229, 41, 0)));
  background: linear-gradient(0deg, #f2e529 40%, rgba(242, 229, 41, 0) 40%);
}

.after-item {
  width: 310px;
}
.after-item .txt, .after-item .top {
  background: linear-gradient(35deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.6) 75%);
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.after-item .top {
  margin-bottom: -1px;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
}
.after-item .txt {
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
  min-height: 180px;
}

#who .item {
  position: relative;
  z-index: 1;
}
#who .item::after {
  content: "";
  width: 250px;
  height: 250px;
  display: block;
  position: absolute;
  bottom: 20%;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
      -ms-transform: translate(-50%, 0%);
          transform: translate(-50%, 0%);
  z-index: -1;
  border-radius: 100%;
  background: linear-gradient(-35deg, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0.4) 75%);
  border: 1px solid rgba(255, 255, 255, 0.85);
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-animation: ani-scale 5s infinite ease-out;
          animation: ani-scale 5s infinite ease-out;
}
@media screen and (max-width: 1200px) {
  #who .item::after {
    width: 290px;
    height: 290px;
  }
}
@media screen and (max-width: 768px) {
  #who .item::after {
    width: 230px;
    height: 230px;
  }
}
@media screen and (max-width: 480px) {
  #who .item::after {
    width: 260px;
    height: 260px;
  }
}

@-webkit-keyframes ani-scale {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, 0%) scale(0.85, 0.85);
            transform: translate(-50%, 0%) scale(0.85, 0.85);
  }
  70% {
    opacity: 1;
    -webkit-transform: translate(-50%, 0%) scale(1, 1);
            transform: translate(-50%, 0%) scale(1, 1);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(-50%, 0%) scale(1.1, 1.1);
            transform: translate(-50%, 0%) scale(1.1, 1.1);
  }
}

@keyframes ani-scale {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, 0%) scale(0.85, 0.85);
            transform: translate(-50%, 0%) scale(0.85, 0.85);
  }
  70% {
    opacity: 1;
    -webkit-transform: translate(-50%, 0%) scale(1, 1);
            transform: translate(-50%, 0%) scale(1, 1);
  }
  100% {
    opacity: 0;
    -webkit-transform: translate(-50%, 0%) scale(1.1, 1.1);
            transform: translate(-50%, 0%) scale(1.1, 1.1);
  }
}
#teacher .robot-4 {
  position: absolute;
  right: -4rem;
  top: -3.5rem;
}
@media screen and (max-width: 768px) {
  #teacher .robot-4 {
    width: 140px;
    right: -1rem;
    top: -2rem;
  }
}
#teacher .line {
  position: absolute;
  mix-blend-mode: screen;
  top: -2rem;
  right: -5.5rem;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #teacher .line {
    display: none;
  }
}
#teacher .round img {
  position: absolute;
  z-index: -1;
}
#teacher .round img:nth-child(1) {
  left: -2%;
  top: 22%;
  -webkit-animation: shake-horizontal 30s infinite ease-in-out alternate;
          animation: shake-horizontal 30s infinite ease-in-out alternate;
  -webkit-animation-delay: -2s;
          animation-delay: -2s;
}
@media screen and (max-width: 768px) {
  #teacher .round img:nth-child(1) {
    top: 52%;
  }
}
#teacher .round img:nth-child(2) {
  width: 50px;
  right: -1%;
  top: 52%;
  -webkit-animation: shake-horizontal 30s infinite ease-in-out alternate;
          animation: shake-horizontal 30s infinite ease-in-out alternate;
  -webkit-animation-delay: -6s;
          animation-delay: -6s;
}
@media screen and (max-width: 768px) {
  #teacher .round img:nth-child(2) {
    top: 22%;
  }
}
#teacher .round img:nth-child(3) {
  width: 90px;
  left: 36%;
  bottom: 10%;
  -webkit-animation: shake-horizontal 30s infinite ease-in-out alternate;
          animation: shake-horizontal 30s infinite ease-in-out alternate;
  -webkit-animation-delay: -10s;
          animation-delay: -10s;
}
@media screen and (max-width: 768px) {
  #teacher .round img:nth-child(3) {
    left: 70%;
  }
}
#teacher .content {
  background: linear-gradient(35deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.6) 75%);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  position: relative;
}
#teacher .content ul {
  padding-left: 1.5rem;
}
#teacher .content li {
  list-style-position: outside;
}
#teacher .content li::before {
  content: "★";
  color: #705496;
  font-size: 1rem;
  margin-left: -1.5rem;
  margin-right: 0.5rem;
}

#mov {
  background: url("../../dist/img/point-bg-3.svg");
  background-repeat: no-repeat;
  background-position: right top;
}

#catalog {
  background: url("../../dist/img/point-bg-4.svg");
  background-repeat: no-repeat;
  background-position: center top;
}

@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0.85;
  }
  60% {
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0.85;
  }
  60% {
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
}
.ani-fade {
  -webkit-animation: fade-in 3s infinite ease-in-out alternate;
          animation: fade-in 3s infinite ease-in-out alternate;
}

@-webkit-keyframes vibrate-1 {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  20% {
    -webkit-transform: translate(-4px, 4px);
            transform: translate(-4px, 4px);
  }
  40% {
    -webkit-transform: translate(-4px, -4px);
            transform: translate(-4px, -4px);
  }
  60% {
    -webkit-transform: translate(4px, 4px);
            transform: translate(4px, 4px);
  }
  80% {
    -webkit-transform: translate(4px, -4px);
            transform: translate(4px, -4px);
  }
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

@keyframes vibrate-1 {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  20% {
    -webkit-transform: translate(-4px, 4px);
            transform: translate(-4px, 4px);
  }
  40% {
    -webkit-transform: translate(-4px, -4px);
            transform: translate(-4px, -4px);
  }
  60% {
    -webkit-transform: translate(4px, 4px);
            transform: translate(4px, 4px);
  }
  80% {
    -webkit-transform: translate(4px, -4px);
            transform: translate(4px, -4px);
  }
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
@-webkit-keyframes shake-horizontal {
  0%, 100% {
    -webkit-transform: translateX(0) scale(1);
            transform: translateX(0) scale(1);
  }
  10%, 30%, 50%, 70% {
    -webkit-transform: translateX(-10px) translateY(10px) scale(0.9);
            transform: translateX(-10px) translateY(10px) scale(0.9);
  }
  20%, 40%, 60% {
    -webkit-transform: translateX(10px) translateY(-10px) scale(1);
            transform: translateX(10px) translateY(-10px) scale(1);
  }
  80% {
    -webkit-transform: translateX(8px) scale(0.95);
            transform: translateX(8px) scale(0.95);
  }
  90% {
    -webkit-transform: translateX(-8px);
            transform: translateX(-8px);
  }
}
@keyframes shake-horizontal {
  0%, 100% {
    -webkit-transform: translateX(0) scale(1);
            transform: translateX(0) scale(1);
  }
  10%, 30%, 50%, 70% {
    -webkit-transform: translateX(-10px) translateY(10px) scale(0.9);
            transform: translateX(-10px) translateY(10px) scale(0.9);
  }
  20%, 40%, 60% {
    -webkit-transform: translateX(10px) translateY(-10px) scale(1);
            transform: translateX(10px) translateY(-10px) scale(1);
  }
  80% {
    -webkit-transform: translateX(8px) scale(0.95);
            transform: translateX(8px) scale(0.95);
  }
  90% {
    -webkit-transform: translateX(-8px);
            transform: translateX(-8px);
  }
}
.ani-vibrate-1 {
  -webkit-animation: vibrate-1 10s infinite ease-in-out;
          animation: vibrate-1 10s infinite ease-in-out;
}

@-webkit-keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
.free-img {
  max-width: none;
  position: absolute;
  top: -4rem;
  left: -1.5rem;
}