@charset "UTF-8";
/* リキッドレイアウト対応 */

body {
  font-family: "Noto Sans JP", sans-serif;
}

@media only screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
html {
  font-size: 16px;
}
@media (min-width: 768px) {
  html {
    font-size: 1.2307692308vw;
  }
}
@media (min-width: 1300px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: all;
  }
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

html {
  word-wrap: break-word;
}

.arrow {
  aspect-ratio: 1;
  width: 11px;
  width: 0.6875rem;
  background-color: #112732;
  -webkit-mask-image: url("../images/arrow.svg");
          mask-image: url("../images/arrow.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
}

.circle-arrow {
  aspect-ratio: 1;
  width: 38px;
  width: 2.375rem;
  border-radius: 50%;
  border: 1px solid #fff;
  position: relative;
}
.circle-arrow::after {
  content: "";
  display: block;
  position: absolute;
  aspect-ratio: 1;
  width: 12px;
  width: 0.75rem;
  background-color: #fff;
  -webkit-mask-image: url("../images/arrow.svg");
          mask-image: url("../images/arrow.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.cta-button {
  /*opacity: 0;*/
  /*visibility: hidden;*/
  position: fixed;
  bottom: 20px;
  bottom: 1.25rem;
  right: 20px;
  right: 1.25rem;
  aspect-ratio: 260/70;
  /*width: 260px;*/
  /*width: 16.25rem;*/
  width: 320px;
  width: 25rem;
  z-index: 6;
  border-radius: 0.3125rem;
  -webkit-box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, .16);
          box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, .16);
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
}
@media screen and (max-width: 767px) {
  .cta-button {
    /*width: 8.4375rem;*/
    width: 12rem;
    right: 0.75rem;
    bottom: 0.75rem;
  }
}

.cta-button img {
  -o-object-fit: contain;
     object-fit: contain;
}

@media (any-hover: hover) {
  .cta-button:hover {
    opacity: 0.8;
  }
}
.drawer {
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, .5);
  backdrop-filter: blur(10px);
  overflow: auto;
  overscroll-behavior: none;
  scrollbar-width: none;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
}

.drawer__inner {
  min-height: calc(100% + 1px);
  max-width: 530px;
  max-width: 33.125rem;
  margin-left: auto;
  background: #382a57;
  -webkit-clip-path: inset(0% 0% 0% 20%);
          clip-path: inset(0% 0% 0% 20%);
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
}

.js-drawer.is-active {
  opacity: 1;
  visibility: visible;
}
.js-drawer.is-active .drawer__inner {
  -webkit-clip-path: inset(0% 0% 0% 0%);
          clip-path: inset(0% 0% 0% 0%);
}

.drawer__container {
  padding: 120px 50px 150px;
  padding: 7.5rem 3.125rem 9.375rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .drawer__container {
    padding: 7.5rem 3.125rem 9.375rem;
  }
}

.drawer__menus {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  gap: 1.875rem;
}
@media screen and (max-width: 767px) {
  .drawer__menus {
    gap: 0.9375rem;
  }
}

.drawer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
  gap: 0.9375rem;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
  padding: 12px 0;
  padding: 0.75rem 0;
}
@media screen and (max-width: 767px) {
  .drawer__menu {
    gap: 0.625rem;
    padding: 0.625rem 0;
  }
}
.drawer__menu .text {
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  width: 50%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .drawer__menu .text {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .drawer__menu .circle-arrow {
    width: 2rem;
  }
}

@media (any-hover: hover) {
  .drawer__menu:hover {
    opacity: 0.8;
  }
}
footer .footer__top {
  background: #eba3a3;
  padding: 90px 16px 60px;
  padding: 5.625rem 1rem 3.75rem;
}
@media screen and (max-width: 768px) {
  footer .footer__top {
    padding: 3rem 1rem;
  }
}
footer .footer__top-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  footer .footer__top-sns {
    gap: 1rem;
  }
}
footer .footer__top-sns a {
  width: 5%;
}
@media screen and (max-width: 768px) {
  footer .footer__top-sns a {
    width: 18%;
  }
}
footer .footer__top-logo {
  display: block;
  width: 100%;
  max-width: 333px;
  max-width: 20.8125rem;
  margin: 72px auto 24px;
  margin: 4.5rem auto 1.5rem;
}
@media screen and (max-width: 768px) {
  footer .footer__top-logo {
    margin: 2rem auto 1rem;
  }
}
footer .footer__top p {
  color: #fff;
  text-align: center;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  footer .footer__top p {
    font-size: 0.875em;
  }
}
footer .footer__top p:first-of-type {
  font-size: 1.125em;
  font-weight: bold;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
}
@media screen and (max-width: 768px) {
  footer .footer__top p:first-of-type {
    font-size: 1em;
  }
}
footer .footer__top p a {
  display: inline;
  text-decoration: underline !important;
}
footer .footer__copy {
  background: #666666;
  color: #fff;
  display: block;
  font-size: 12px;
  font-size: 0.75rem;
  text-align: center;
  padding: 10px 16px;
  padding: 0.625rem 1rem;
}

html,
body {
  scroll-padding-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  html,
  body {
    scroll-padding-top: 5rem;
  }
}

.header {
  background: #fff;
  -webkit-box-shadow: 0 0 1.25rem rgba(0, 0, 0, .13);
          box-shadow: 0 0 1.25rem rgba(0, 0, 0, .13);
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
}

.header__inner {
  padding-left: 24px;
  padding-left: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 80px;
  min-height: 5rem;
}
@media screen and (max-width: 767px) {
  .header__inner {
    min-height: 3rem;
    padding-left: 0.625rem;
  }
}

.header__logo {
  display: block;
  width: 210px;
  width: 13.125rem;
  height: 34px;
  height: 2.125rem;
  background: url("../images/header-logo.png") no-repeat left center/contain;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 5.75rem;
    height: 0.9375rem;
  }
}

.header__logo img {
  -o-object-fit: contain;
     object-fit: contain;
}

@media (any-hover: hover) {
  .header__logo:hover {
    opacity: 0.8;
  }
}
.header__nav-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__nav {
  width: 468px;
  width: 29.25rem;
}
@media screen and (max-width: 767px) {
  .header__nav {
    width: 14.1875rem;
  }
}

.header__links {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 1px;
}

.header__link {
  display: grid;
  place-items: center;
  min-height: 80px;
  min-height: 5rem;
  padding: 0 10px;
  padding: 0 0.625rem;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
  background: #3a2f58;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
}
@media screen and (max-width: 767px) {
  .header__link {
    min-height: 3rem;
    line-height: 1;
    padding: 0.125rem;
    font-size: 0.625rem;
    letter-spacing: -0.05em;
  }
}

@media (any-hover: hover) {
  .header__link:hover {
    opacity: 0.8;
  }
}
.header__menu {
  width: 80px;
  width: 5rem;
  display: grid;
  place-content: center;
}
@media screen and (max-width: 767px) {
  .header__menu {
    width: 2.25rem;
  }
}

.header__menu-lines {
  aspect-ratio: 26/20;
  width: 25px;
  width: 1.5625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .header__menu-lines {
    width: 1.1875rem;
  }
}

.header__menu-line {
  width: 100%;
  height: 2px;
  background-color: #382a57;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
}

.header__menu-line:nth-of-type(1) {
  -webkit-transform: translate(-50%, calc(-50% - 0.5rem));
          transform: translate(-50%, calc(-50% - 0.5rem));
}
@media screen and (max-width: 767px) {
  .header__menu-line:nth-of-type(1) {
    -webkit-transform: translate(-50%, calc(-50% - 0.3125rem));
            transform: translate(-50%, calc(-50% - 0.3125rem));
  }
}

.header__menu-line:nth-of-type(2) {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.header__menu-line:nth-of-type(3) {
  -webkit-transform: translate(-50%, calc(50% + 0.4375rem));
          transform: translate(-50%, calc(50% + 0.4375rem));
}
@media screen and (max-width: 767px) {
  .header__menu-line:nth-of-type(3) {
    -webkit-transform: translate(-50%, calc(50% + 0.1875rem));
            transform: translate(-50%, calc(50% + 0.1875rem));
  }
}

.js-hamburger.is-open .header__menu-line:nth-of-type(1) {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.js-hamburger.is-open .header__menu-line:nth-of-type(2) {
  opacity: 0;
}
.js-hamburger.is-open .header__menu-line:nth-of-type(3) {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.inner {
  max-width: 1196px;
  max-width: 74.75rem;
  padding: 0 50px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .inner {
    max-width: 37.5rem;
    padding: 0 24px;
  }
}

.modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1000;
  height: 100vh;
  overflow: auto;
  overscroll-behavior: none;
  scrollbar-width: none;
  display: grid;
  place-content: center;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
}
@media screen and (max-width: 767px) {
  .modal {
    width: 100%;
  }
}

.modal[hidden] {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  height: calc(100% + 1px);
}

.modal__content {
  position: relative;
  width: min(90vw, 852px);
  width: min(90vw, 53.25rem);
  min-height: 309px;
  min-height: 19.3125rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background: #fff;
  border-radius: 1.25rem;
  -webkit-box-shadow: 0 0 1.25rem rgba(0, 0, 0, .15);
          box-shadow: 0 0 1.25rem rgba(0, 0, 0, .15);
  padding: 25px 25px 60px;
  padding: 1.5625rem 1.5625rem 3.75rem;
}
@media screen and (max-width: 767px) {
  .modal__content {
    width: 90%;
    margin: 0 5%;
    border-radius: 0.625rem;
    padding: 1.125rem 0.75rem 1.875rem;
    max-height: 80vh;
    overflow: auto;
  }
}

.modal__title {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  color: #382a57;
  padding: 0 50px;
  padding: 0 3.125rem;
}
@media screen and (max-width: 767px) {
  .modal__title {
    font-size: 1.25rem;
    padding: 0;
  }
}

.modal__title--small {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.2777777778;
}
@media screen and (max-width: 767px) {
  .modal__title--small {
    font-size: 0.875rem;
  }
}

.modal__divider {
  height: 1px;
  background-color: #382a57;
  margin: 16px 50px 0;
  margin: 1rem 3.125rem 0;
}
@media screen and (max-width: 767px) {
  .modal__divider {
    margin: 0.75rem 0;
  }
}

.modal__body {
  margin-top: 20px;
  margin-top: 1.25rem;
  color: #382a57;
  line-height: 1.8;
  font-size: 16px;
  font-size: 1rem;
  padding: 0 50px;
  padding: 0 3.125rem;
}
@media screen and (max-width: 767px) {
  .modal__body {
    font-size: 1rem;
    padding: 0;
    line-height: 1.6;
  }
}

.modal__section {
  margin-top: 18px;
  margin-top: 1.125rem;
  padding: 0 50px;
  padding: 0 3.125rem;
}
@media screen and (max-width: 767px) {
  .modal__section {
    padding: 0;
  }
}

.modal__section-title {
  position: relative;
  padding-left: 18px;
  padding-left: 1.125rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #382a57;
}
@media screen and (max-width: 767px) {
  .modal__section-title {
    font-size: 0.875rem;
  }
}

.modal__section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  background: #382a57;
  border-radius: 50%;
}

.modal__text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.875;
  margin-top: 8px;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .modal__text {
    font-size: 0.875rem;
  }
}

.modal__close {
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
  margin-left: auto;
  width: 26px;
  width: 1.625rem;
  height: 26px;
  height: 1.625rem;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.modal .modal__close::before,
.modal .modal__close::after {
  background-color: #382a57;
  width: 25px;
  width: 1.5625rem;
  height: 3px;
}

.toggle {
  position: relative;
  aspect-ratio: 1;
  width: 38px;
  width: 2.375rem;
}
.toggle::after, .toggle::before {
  content: "";
  display: block;
  position: absolute;
  width: 16px;
  width: 1rem;
  height: 2px;
  background-color: #fff;
  top: 50%;
  left: 50%;
}
.toggle::after {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.toggle::before {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

.abilities {
  margin-bottom: 130px;
  margin-bottom: 8.125rem;
}
@media screen and (max-width: 767px) {
  .abilities {
    margin-bottom: 3.75rem;
  }
}

.abilities__inner {
  max-width: 1174px;
  max-width: 73.375rem;
  padding: 0 50px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .abilities__inner {
    max-width: 37.5rem;
    padding: 0 24px;
  }
}

.abilities__head {
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
}
@media screen and (max-width: 767px) {
  .abilities__head {
    margin-bottom: 1.875rem;
  }
}

.abilities__badge {
  margin-inline: auto;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 6px 14px;
  padding: 0.375rem 0.875rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  background: -webkit-gradient(linear, right top, left top, from(#434c9e), color-stop(48.3%, #ea518f), to(#fa8458));
  background: linear-gradient(to left, #434c9e 0%, #ea518f 48.3%, #fa8458 100%);
}
@media screen and (max-width: 767px) {
  .abilities__badge {
    font-size: 1rem;
  }
}

.abilities__title {
  margin-top: 16px;
  margin-top: 1rem;
  font-size: 50px;
  font-size: 3.125rem;
  font-weight: 700;
  color: #382a57;
  line-height: 1.2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .abilities__title {
    font-size: 1.75rem;
  }
}

.admission {
  margin-bottom: 120px;
  margin-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .admission {
    margin-bottom: 3.75rem;
  }
}

.admission__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 767px) {
  .admission__wrap {
    grid-template-columns: 1fr;
  }
}

.admission__panel {
  position: relative;
  padding: 90px 52px 40px;
  padding: 5.625rem 3.25rem 2.5rem;
  background: -webkit-gradient(linear, left top, right top, from(#112732), to(#024269));
  background: linear-gradient(90deg, #112732 0%, #024269 100%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 767px) {
  .admission__panel {
    padding: 2.5rem 1.5rem 2.5rem;
  }
}

.admission__title {
  color: #fff;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .admission__title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}

.admission__button {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 322px;
  min-width: 20.125rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  gap: 1rem;
  padding: 6px 12px;
  padding: 0.375rem 0.75rem;
  background: #fff;
  border-radius: 62.5rem;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
}
@media screen and (max-width: 767px) {
  .admission__button {
    padding: 0.625rem 0.75rem;
  }
}

@media (any-hover: hover) {
  .admission__button:hover {
    opacity: 0.8;
  }
}
.admission__button-text {
  font-size: 15px;
  font-size: 0.9375rem;
  color: #112732;
  font-weight: 700;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .admission__button-text {
    font-size: 1rem;
  }
}

.admission__button-icon {
  aspect-ratio: 1;
  width: 11px;
  width: 0.6875rem;
  background-color: #112732;
  -webkit-mask-image: url("../images/arrow.svg");
          mask-image: url("../images/arrow.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
}
@media screen and (max-width: 767px) {
  .admission__button-icon {
    width: 0.8125rem;
  }
}

.admission__button2-wrap {
  margin-top: 30px;
}
.admission__button2 {
  margin-top: 1rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 500px;
  min-width: 31.25rem;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  gap: 1rem;
  padding: 12px 24px;
  padding: 0.75rem 1.5rem;
  color: #333;
  border-radius: 62.5rem;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
  background: linear-gradient(to right,  #f7dd18 0%,#f7f06c 100%);
}
@media screen and (max-width: 767px) {
  .admission__button2 {
    width: 100%;
    min-width: initial;
    display: flex;
    flex-direction: column;
    padding: 0.625rem 0.75rem;
    font-weight: 700;
    gap: 7px;
    gap: 0.4rem;
  }
}

@media (any-hover: hover) {
  .admission__button2:hover {
    opacity: 0.8;
  }
}
.admission__button2-text {
  font-size: 20px;
  font-size: 1.25rem;
  color: 33  font-weight: 700;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .admission__button2-text {
    font-size: 1.2rem;
    text-align: center;
  }
}

.admission__button2-text2 {
  display: flex;
  justify-content: center;
  align-items: baseline;
  margin-top: 0;
  color: #333;
}
.admission__button2-text2::after {
  display: block;
  content: "";
  aspect-ratio: 1;
  margin-left: 0.5rem;
  width: 11px;
  width: 0.6875rem;
  background-color: #333;
  -webkit-mask-image: url("../images/arrow.svg");
          mask-image: url("../images/arrow.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
}
@media screen and (max-width: 767px) {
  .admission__button2-text2::after {
    width: 0.8125rem;
  }
}

.admission__note {
  margin-top: 12px;
  margin-top: 0.75rem;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .admission__note {
    margin-top: 1.25rem;
  }
}
.admission__note a {
  text-decoration: underline;
  -webkit-text-decoration-color: #fff;
          text-decoration-color: #fff;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
}
@media (any-hover: hover) {
  .admission__note a:hover {
    -webkit-text-decoration-color: transparent;
            text-decoration-color: transparent;
  }
}

.admission__img {
  /*max-height: 430px;*/
  /*max-height: 26.875rem;*/
  max-height: 450px;
  max-height: 28.175rem;
}

.admission__img img {
  -o-object-position: top;
     object-position: top;
}

.career-movie {
  padding-bottom: 130px;
  padding-bottom: 8.125rem;
}
@media screen and (max-width: 767px) {
  .career-movie {
    padding-bottom: 3.75rem;
  }
}

.career-movie__inner {
  max-width: 1124px;
  max-width: 70.25rem;
  padding: 0 50px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .career-movie__inner {
    max-width: 37.5rem;
    padding: 0 24px;
  }
}

.career-movie__title {
  text-align: center;
  font-size: 48px;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 45px;
  margin-bottom: 2.8125rem;
  line-height: 1.3;
  font-family: "Outfit", sans-serif;
  text-transform: uppercase;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .career-movie__title {
    font-size: 1.75rem;
    margin-bottom: 1.875rem;
  }
}

.career-movie__frame {
  aspect-ratio: 1074/588;
}

.career-movie__frame iframe {
  width: 100%;
  height: 100%;
}

.career-bg {
  position: relative;
  z-index: 4;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, transparent), color-stop(8.125rem, #434c9e));
  background: linear-gradient(to bottom, transparent 0 8.125rem, #434c9e 8.125rem 100%);
}
.career-bg::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  min-height: 883px;
  min-height: 55.1875rem;
  background-image: url("../images/career-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .career-bg::before {
    min-height: 12.5rem;
  }
}

.career {
  color: #fff;
  padding: 130px 0;
  padding: 8.125rem 0;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .career {
    padding: 5rem 0;
  }
}

.career__inner {
  position: relative;
  z-index: 2;
  max-width: 1186px;
  max-width: 74.125rem;
  padding: 0 50px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .career__inner {
    max-width: 37.5rem;
    padding: 0 24px;
  }
}

.career__title {
  text-align: center;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 50px;
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 767px) {
  .career__title {
    font-size: 1.75rem;
    margin-bottom: 1.875rem;
  }
}

.career__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  gap: 2.25rem;
}
@media screen and (max-width: 767px) {
  .career__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
  }
}

.career-card {
  padding: 16px;
  padding: 1rem;
  border-radius: 1.25rem;
  text-align: center;
  font-weight: 700;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  aspect-ratio: 355/200;
  display: grid;
  place-content: center;
}
@media screen and (max-width: 767px) {
  .career-card {
    aspect-ratio: 3/2;
    border-radius: 0.625rem;
  }
}
.career-card::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  border-radius: 1.25rem;
  border: 5px solid rgba(213, 198, 247, .5);
  border: 0.3125rem solid rgba(213, 198, 247, .5);
  background: rgba(56, 42, 87, .5);
  z-index: 2;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
}
@media screen and (max-width: 767px) {
  .career-card::after {
    border-radius: 0.625rem;
  }
}
.career-card .text {
  position: relative;
  z-index: 4;
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .career-card .text {
    -webkit-transform: translateY(-0.3125rem);
            transform: translateY(-0.3125rem);
    font-size: 0.9375rem;
  }
}
.career-card .toggle {
  border-radius: 50%;
  border: 1px solid #fff;
  position: absolute;
  bottom: 16px;
  bottom: 1rem;
  right: 16px;
  right: 1rem;
  z-index: 4;
}
@media screen and (max-width: 767px) {
  .career-card .toggle {
    bottom: 0.5rem;
    right: 0.5rem;
    width: 1.375rem;
  }
}
@media screen and (max-width: 767px) {
  .career-card .toggle::after, .career-card .toggle::before {
    width: 0.75rem;
  }
}
.career-card .img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
}

@media (any-hover: hover) {
  .career-card:hover::after {
    background: rgba(56, 42, 87, .8);
  }
  .career-card:hover .img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.cta-links {
  margin-bottom: 120px;
  margin-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .cta-links {
    margin-bottom: 3.75rem;
  }
}

.cta-links__inner {
  max-width: 1346px;
  max-width: 84.125rem;
  padding: 0 50px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .cta-links__inner {
    max-width: 37.5rem;
    padding: 0 24px;
  }
}

.cta-links__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  gap: 2.25rem;
}
@media screen and (max-width: 767px) {
  .cta-links__grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 0.625rem;
  }
}

.cta-links__item {
  border-radius: 1rem;
  background: #3a2f58;
  color: #fff;
  font-weight: 700;
  padding: 38px 14px;
  padding: 2.375rem 0.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  gap: 0.875rem;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
}
@media screen and (max-width: 767px) {
  .cta-links__item {
    gap: 0.625rem;
    border-radius: 0.5rem;
    padding: 1rem 0.625rem;
  }
}
.cta-links__item .text {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (max-width: 1024px) {
  .cta-links__item .text {
    font-size: 1.1875rem;
  }
}
@media screen and (max-width: 767px) {
  .cta-links__item .text {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .cta-links__item .circle-arrow {
    width: 1.625rem;
  }
}

@media (any-hover: hover) {
  .cta-links__item:hover {
    background-color: #64538b;
  }
}
.faculty {
  padding: 130px 0 260px;
  padding: 8.125rem 0 16.25rem;
  position: relative;
  z-index: 2;
  margin-bottom: -130px;
  margin-bottom: -8.125rem;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, transparent), color-stop(8.125rem, #f4efff));
  background: linear-gradient(to bottom, transparent 0 8.125rem, #f4efff 8.125rem 100%);
}
@media screen and (max-width: 767px) {
  .faculty {
    padding: 5rem 0 10rem;
    margin-bottom: -4.375rem;
  }
}
.faculty::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-image: url("../images/member-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  min-height: 883px;
  min-height: 55.1875rem;
}
@media screen and (max-width: 767px) {
  .faculty::after {
    min-height: 12.5rem;
  }
}

.faculty__inner {
  position: relative;
  z-index: 2;
  max-width: 1196px;
  max-width: 74.75rem;
  padding: 0 50px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .faculty__inner {
    max-width: 37.5rem;
    padding: 0 24px;
  }
}

.faculty__title {
  font-size: 50px;
  font-size: 3.125rem;
  font-weight: 700;
  color: #382a57;
  text-align: center;
  margin-bottom: 80px;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .faculty__title {
    font-size: 1.75rem;
    margin-bottom: 2.5rem;
  }
}

.faculty__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  gap: 2.125rem;
}
@media screen and (max-width: 767px) {
  .faculty__list {
    gap: 1.875rem;
  }
}

.faculty-card {
  display: grid;
  grid-template-columns: 10rem 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 60px;
  padding: 3.75rem;
  border-radius: 1.25rem;
  background: #fff;
  gap: 70px;
  gap: 4.375rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .faculty-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.25rem;
    padding: 3.125rem 1.25rem 2.1875rem;
  }
}

.faculty-card__dec {
  position: absolute;
  aspect-ratio: 1;
  width: 122px;
  width: 7.625rem;
  border-radius: 50%;
  -webkit-box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, .16);
          box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, .16);
  top: -25px;
  top: -1.5625rem;
  left: -25px;
  left: -1.5625rem;
  --scale: 1;
  --opacity: 1;
}
@media screen and (max-width: 767px) {
  .faculty-card__dec {
    width: 6.875rem;
    top: -1.25rem;
    left: -1.25rem;
  }
}

.faculty-card__dec::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(var(--scale));
          transform: translate(-50%, -50%) scale(var(--scale));
  width: 100%;
  height: 100%;
  border: 1px solid #62daf7;
  border-radius: 50%;
  opacity: var(--opacity);
}

.faculty-card__media {
  width: 160px;
  width: 10rem;
  height: 160px;
  height: 10rem;
  border-radius: 50%;
  background: #e9e9f7;
}

.faculty-card__role {
  font-size: 14px;
  font-size: 0.875rem;
  color: #6b5e8d;
  margin-bottom: 1px;
  margin-bottom: 0.0625rem;
}

.faculty-card__name {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  color: #382a57;
  margin-bottom: 32px;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .faculty-card__name {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
  }
}

.faculty-card__heading {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #382a57;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  gap: 0.875rem;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
}

.faculty-card__dot {
  width: 10px;
  width: 0.625rem;
  height: 10px;
  height: 0.625rem;
  background: #382a57;
  border-radius: 50%;
  display: inline-block;
}

.faculty-card__topics {
  display: grid;
  gap: 12px;
  gap: 0.75rem;
}

.faculty-card__topics li {
  cursor: pointer;
  padding: 12px 20px;
  padding: 0.75rem 1.25rem;
  border: 1px solid #382a57;
  border-radius: 0.625rem;
  border: 1px solid #382a57;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  gap: 1.25rem;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
}
@media screen and (max-width: 767px) {
  .faculty-card__topics li {
    padding: 0.75rem;
    gap: 0.9375rem;
  }
}
.faculty-card__topics li .toggle::after, .faculty-card__topics li .toggle::before {
  background-color: #382a57;
}

@media (any-hover: hover) {
  .faculty-card__topics li:hover {
    background-color: #f4efff;
  }
}
.features {
  padding: 130px 0 260px;
  padding: 8.125rem 0 16.25rem;
  margin-top: -120px;
  margin-top: -7.5rem;
  margin-bottom: -130px;
  margin-bottom: -8.125rem;
  position: relative;
  z-index: 1;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, transparent), color-stop(8.125rem, #8456eb));
  background: linear-gradient(to bottom, transparent 0 8.125rem, #8456eb 8.125rem 100%);
}
@media screen and (max-width: 767px) {
  .features {
    padding: 5rem 0 10rem;
    margin-bottom: -4.375rem;
    margin-top: -3.75rem;
  }
}
.features::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-image: url("../images/features-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  min-height: 883px;
  min-height: 55.1875rem;
}
@media screen and (max-width: 767px) {
  .features::after {
    min-height: 12.5rem;
  }
}

.features__inner {
  position: relative;
  z-index: 2;
  max-width: 1246px;
  max-width: 77.875rem;
  padding: 0 50px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .features__inner {
    max-width: 37.5rem;
    padding: 0 24px;
  }
}

.features-intro {
  margin-bottom: 80px;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .features-intro {
    margin-bottom: 3.125rem;
  }
}

.features-intro__title {
  text-align: center;
  font-size: 50px;
  font-size: 3.125rem;
  line-height: 1.3;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .features-intro__title {
    font-size: 1.75rem;
  }
}

.feature {
  margin-top: 105px;
  margin-top: 6.5625rem;
  background-color: #fff;
  padding: 88px 60px 60px;
  padding: 5.5rem 3.75rem 3.75rem;
  border-radius: 1.25rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .feature {
    padding: 3.125rem 1.25rem 2.1875rem;
    margin-top: 3.125rem;
    border-radius: 0.625rem;
  }
}

.feature:first-child {
  margin-top: unset;
}

.feature__number {
  position: absolute;
  height: 90px;
  height: 5.625rem;
  top: -45px;
  top: -2.8125rem;
  left: -54px;
  left: -3.375rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .feature__number {
    width: 6.25rem;
    height: 3.125rem;
    top: -1.5625rem;
    left: -0.8125rem;
  }
}

.feature__number img {
  -o-object-fit: contain;
     object-fit: contain;
}

.feature__head {
  margin-bottom: 44px;
  margin-bottom: 2.75rem;
}
@media screen and (max-width: 767px) {
  .feature__head {
    margin-bottom: 1.25rem;
  }
}

.feature__badge {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 6px;
  margin-bottom: 0.375rem;
  padding: 5px 10px;
  padding: 0.3125rem 0.625rem;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#8456eb), to(#c432c4));
  background: linear-gradient(to right, #8456eb 0%, #c432c4 100%);
}
@media screen and (max-width: 767px) {
  .feature__badge {
    font-size: 1rem;
    padding: 0.25rem 0.4375rem;
    margin-bottom: 0.25rem;
  }
}

.feature__note {
  margin-top: 22px;
  margin-top: 1.375rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  color: #382a57;
}
@media screen and (max-width: 767px) {
  .feature__note {
    font-size: 1rem;
    margin-top: 0.75rem;
  }
}

.feature__board {
  margin-top: 36px;
  margin-top: 2.25rem;
  padding: 36px;
  padding: 2.25rem;
  border-radius: 1.25rem;
  background: #fff;
  border: 1px solid #d5c6f7;
}
@media screen and (max-width: 767px) {
  .feature__board {
    padding: 1.25rem 0.625rem;
    border-radius: 0.625rem;
  }
}

@media screen and (max-width: 767px) {
  .feature01__graf {
    overflow: auto;
  }
}

@media screen and (max-width: 767px) {
  .feature01__graf img {
    width: 31.25rem;
    max-width: unset;
  }
}

.feature01__curriculum-title {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4285714286;
  color: #8456eb;
}
@media screen and (max-width: 767px) {
  .feature01__curriculum-title {
    font-size: 1.25rem;
  }
}
.feature01__curriculum-title small {
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .feature01__curriculum-title small {
    font-size: 0.875rem;
  }
}

.feature01__tag {
  display: inline-block;
  padding: 2px 10px 3px;
  padding: 0.125rem 0.625rem 0.1875rem;
  border-radius: 62.5rem;
  font-size: 12px;
  font-size: 0.75rem;
  color: #fff;
  background: #434c9e;
}

.feature01__tag--basic {
  background: #434c9e;
}

.feature01__tag--medical {
  background: #62d9f7;
}

.feature01__tag--sports {
  background: #1ec791;
}

.feature01__tag--welfare {
  background: #f7d462;
}

.feature01__tag--business {
  background: #bc82fd;
}

.feature01__content {
  padding: 10px 14px;
  padding: 0.625rem 0.875rem;
}

.feature01__name {
  font-weight: 700;
  color: #8456eb;
}

.feature01__desc {
  margin-top: 6px;
  margin-top: 0.375rem;
  font-size: 14px;
  font-size: 0.875rem;
  color: #382a57;
  line-height: 1.6;
}

/* table layout for feature01 */
@media screen and (max-width: 767px) {
  .feature01__table-wrapper {
    overflow: auto;
  }
}
.feature01__table-wrapper .scroll-hint-icon {
  top: 40px;
  top: 2.5rem;
}

.feature01__note {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  text-align: right;
  color: #382a57;
}
@media screen and (max-width: 767px) {
  .feature01__note {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .feature01__table-wrap {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.feature01__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 14px;
  margin-top: 0.875rem;
}
@media screen and (max-width: 767px) {
  .feature01__table {
    width: 36.25rem;
  }
}

.feature01__th,
.feature01__td {
  border: 1px solid #d5c6f7;
  text-align: left;
  vertical-align: top;
  padding: 5px 14px;
  padding: 0.3125rem 0.875rem;
  color: #382a57;
  line-height: 1.25;
}
@media screen and (max-width: 767px) {
  .feature01__th,
  .feature01__td {
    padding: 0.3125rem 0.5rem;
  }
}

.feature01__td {
  vertical-align: middle;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.25;
}
@media screen and (max-width: 767px) {
  .feature01__td {
    font-size: 0.875rem;
  }
}

.feature01__td:nth-child(1) {
  background: #faf8fd;
  width: 238px;
  width: 14.875rem;
}
@media screen and (max-width: 767px) {
  .feature01__td:nth-child(1) {
    width: 13.125rem;
  }
}

.feature01__td--tag {
  width: 100px;
  width: 6.25rem;
  text-align: center;
  margin-inline: auto;
}

.feature01__tag {
  margin-top: 1px;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.feature02__items {
  margin-top: 40px;
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 33px;
  gap: 2.0625rem;
  margin-bottom: 50px;
  margin-bottom: 3.125rem;
}
@media screen and (max-width: 767px) {
  .feature02__items {
    gap: 1.875rem;
    margin-bottom: 1.875rem;
    grid-template-columns: 1fr;
  }
}

.feature02__item {
  border: 1px solid #d5c6f7;
  display: grid;
  place-content: center;
  position: relative;
  min-height: 150px;
  min-height: 9.375rem;
  padding: 30px 15px;
  padding: 1.875rem 0.9375rem;
  border-radius: 1.25rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#ddd5f0));
  background: linear-gradient(to bottom, #fff, #ddd5f0);
}
@media screen and (max-width: 767px) {
  .feature02__item {
    padding: 1.25rem;
    min-height: 6.25rem;
    border-radius: 0.625rem;
  }
}

.feature02__item-text {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #a850d8;
  line-height: 1.4444444444;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .feature02__item-text {
    font-size: 1rem;
  }
}

.feature02__item-link {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
  padding: 3px 15px 4px;
  padding: 0.1875rem 0.9375rem 0.25rem;
  min-width: 187px;
  min-width: 11.6875rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #382a57;
  border-radius: 6.25rem;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
}
@media screen and (max-width: 767px) {
  .feature02__item-link {
    padding: 0.1875rem 1.25rem 0.1875rem;
  }
}
.feature02__item-link .text {
  text-align: center;
  width: 100%;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.7333333333;
}
@media screen and (max-width: 767px) {
  .feature02__item-link .text {
    font-size: 0.875rem;
  }
}
.feature02__item-link .arrow {
  position: absolute;
  right: 12px;
  right: 0.75rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: white;
}

@media (any-hover: hover) {
  .feature02__item-link:hover {
    opacity: 0.8;
  }
}
.feature02__lists {
  margin-top: 50px;
  margin-top: 3.125rem;
  border: 1px solid #d5c6f7;
  border-radius: 1.25rem;
  background-color: #ece7f7;
  padding: 36px 25px 40px;
  padding: 2.25rem 1.5625rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .feature02__lists {
    padding: 1.25rem 1.25rem 1.5625rem;
    border-radius: 0.625rem;
    margin-top: 3.125rem;
  }
}

.feature02__lists-title {
  text-align: center;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  color: #a850d8;
}
@media screen and (max-width: 767px) {
  .feature02__lists-title {
    font-size: 1.25rem;
  }
}

.feature02__lists-list {
  margin-top: 14px;
  margin-top: 0.875rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px 25px;
  gap: 0.75rem 1.5625rem;
}
@media screen and (max-width: 767px) {
  .feature02__lists-list {
    gap: 0.625rem 1.25rem;
    margin-top: 0.625rem;
    grid-template-columns: 1fr;
  }
}

.feature02__lists-item {
  position: relative;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  color: #382a57;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  gap: 0.625rem;
}
@media screen and (max-width: 1300px) {
  .feature02__lists-item {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .feature02__lists-item {
    font-size: 0.875rem;
    gap: 0.625rem;
  }
}
.feature02__lists-item::before {
  content: "";
  display: block;
  top: 0.5lh;
  left: 0;
  aspect-ratio: 1/1;
  width: 8px;
  width: 0.5rem;
  background-color: #a850d8;
  border-radius: 50%;
}

.feature03__content {
  margin-top: 42px;
  margin-top: 2.625rem;
}
@media screen and (max-width: 767px) {
  .feature03__content {
    margin-top: 1.875rem;
  }
}

.feature03__slider-wrap {
  margin: 0 87px;
  margin: 0 5.4375rem;
  position: relative;
  overflow: visible;
}
@media screen and (max-width: 767px) {
  .feature03__slider-wrap {
    margin: 0;
  }
}

.feature03__buttons {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: calc(100% + 10.9375rem);
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .feature03__buttons {
    width: 100%;
    z-index: 4;
  }
}

.feature03__button {
  cursor: pointer;
  pointer-events: auto;
  width: 70px;
  width: 4.375rem;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
  border-color: #382a57;
}
@media screen and (max-width: 767px) {
  .feature03__button {
    width: 2.1875rem;
  }
}
.feature03__button::after {
  background-color: #382a57;
}

@media (any-hover: hover) {
  .feature03__button:hover {
    background-color: #ddd5f0;
  }
}
.feature03__button-prev {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
@media screen and (max-width: 767px) {
  .feature03__button-prev {
    -webkit-transform: translateX(-50%) scaleX(-1);
            transform: translateX(-50%) scaleX(-1);
  }
}

@media screen and (max-width: 767px) {
  .feature03__button-next {
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}

.feature03__button.circle-arrow::after {
  width: 21px;
  width: 1.3125rem;
}
@media screen and (max-width: 767px) {
  .feature03__button.circle-arrow::after {
    width: 0.8125rem;
  }
}

.feature03__texts {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, transparent), color-stop(0.25rem, #fff));
  background: linear-gradient(to bottom, transparent 0 0.25rem, #fff 0.25rem 100%);
  padding: 0px 5px;
  padding: 0rem 0.3125rem;
  margin-top: -30px;
  margin-top: -1.875rem;
  position: relative;
  z-index: 5;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .feature03__texts {
    margin-top: 0.9375rem;
  }
}

.feature03__read {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  color: #8456eb;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
  line-height: 1.45;
}
@media screen and (max-width: 767px) {
  .feature03__read {
    font-size: 1.25rem;
    margin-bottom: 0.3125rem;
    line-height: 1.4;
  }
}
.feature03__read small {
  font-size: 20px;
  font-size: 1.25rem;
}

.feature03__text {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #382a57;
}

.feature02__badge {
  display: inline-block;
  margin-top: 10px;
  margin-top: 0.625rem;
  padding: 8px 14px;
  padding: 0.5rem 0.875rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#6d56c9), color-stop(50%, #a774fb), to(#decfff));
  background: linear-gradient(90deg, #6d56c9 0%, #a774fb 50%, #decfff 100%);
}

.feature02__note {
  margin-top: 8px;
  margin-top: 0.5rem;
  font-size: 14px;
  font-size: 0.875rem;
  color: #382a57;
}

.feature02__visual {
  position: relative;
  margin-top: 16px;
  margin-top: 1rem;
}

.feature02__slider {
  height: 552px;
  height: 34.5rem;
  background: #eee;
  border-radius: 0.75rem;
}
@media screen and (max-width: 767px) {
  .feature02__slider {
    height: 18.75rem;
  }
}

.feature02__nav {
  position: absolute;
  top: 50%;
  width: 70px;
  width: 4.375rem;
  height: 70px;
  height: 4.375rem;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #382a57;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.feature02__nav--prev {
  left: -20px;
  left: -1.25rem;
}

.feature02__nav--next {
  right: -20px;
  right: -1.25rem;
}

.feature02__caption {
  margin-top: 16px;
  margin-top: 1rem;
  text-align: center;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  color: #6d56c9;
}

.feature02__note-small {
  margin-top: 8px;
  margin-top: 0.5rem;
  text-align: center;
  font-size: 12px;
  font-size: 0.75rem;
  color: #382a57;
}

.fields {
  margin-top: -45px;
  margin-top: -2.8125rem;
  padding: 0px 0 0;
  padding: 0rem 0 0;
  margin-bottom: 90px;
  margin-bottom: 5.625rem;
}
@media screen and (max-width: 767px) {
  .fields {
    padding: 3.125rem 0 0;
    margin-bottom: 3.125rem;
  }
}

.fields__title {
  font-weight: 700;
  text-align: center;
  line-height: 1.35;
}

.fields__title-line {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  display: block;
  font-size: 34px;
  font-size: 2.125rem;
  line-height: 1.2;
  letter-spacing: 0.06em;
  background: -webkit-gradient(linear, left top, right top, from(#434c9e), color-stop(48.3%, #ea518f), to(#fa8458));
  background: linear-gradient(90deg, #434c9e 0%, #ea518f 48.3%, #fa8458 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media screen and (max-width: 767px) {
  .fields__title-line {
    font-size: 1.375rem;
  }
}

.fields__list {
  margin-top: 24px;
  margin-top: 1.5rem;
  max-width: 584px;
  max-width: 36.5rem;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .fields__list {
    grid-template-columns: 6.25rem 6.25rem;
    max-width: unset;
    gap: 0.625rem 1rem;
    place-content: center;
  }
}

.fields__link {
  display: grid;
  place-items: center;
  width: 122px;
  width: 7.625rem;
  height: 122px;
  height: 7.625rem;
  border-radius: 50%;
  -webkit-box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, .16);
          box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, .16);
  text-align: center;
  -webkit-transition: 0.3s ease-in-out opacity;
  transition: 0.3s ease-in-out opacity;
}
@media screen and (max-width: 767px) {
  .fields__link {
    width: 100%;
    height: auto;
  }
}

@media (any-hover: hover) {
  .fields__link:hover {
    opacity: 0.6;
  }
}
.icon-bg {
  background-image: url("../images/icon-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .icon-bg {
    background-size: 100%;
    background-repeat: repeat;
  }
}

.movie {
  padding-bottom: 260px;
  padding-bottom: 16.25rem;
}
@media screen and (max-width: 767px) {
  .movie {
    padding-bottom: 10rem;
  }
}

.movie__inner {
  max-width: 1174px;
  max-width: 73.375rem;
  padding: 0 50px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .movie__inner {
    max-width: 37.5rem;
    padding: 0 24px;
  }
}

.movie__title {
  font-size: 40px;
  font-size: 2.5rem;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  color: #18174a;
  text-align: center;
  margin-bottom: 44px;
  margin-bottom: 2.75rem;
}
@media screen and (max-width: 767px) {
  .movie__title {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
  }
}

.movie__frame {
  aspect-ratio: 1074/588;
}

.movie__frame iframe {
  width: 100%;
  height: 100%;
}

.mv {
  position: relative;
  z-index: 3;
  aspect-ratio: 1366/772;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .mv {
    aspect-ratio: 375/609;
  }
}

.mv__img {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
}

.mv__inner {
  padding: 0 62px;
  padding: 0 3.875rem;
  margin-inline: auto;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 3;
  gap: 20px;
  gap: 1.25rem;
  -webkit-mask-image: url("../images/mv-img-pc.png");
          mask-image: url("../images/mv-img-pc.png");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: 0 -0.5rem;
          mask-position: 0 -0.5rem;
}
@media screen and (max-width: 767px) {
  .mv__inner {
    -webkit-mask-image: url("../images/mv-img-sp.png");
            mask-image: url("../images/mv-img-sp.png");
    padding: 4.375rem 2.25rem 0 3.0625rem;
    display: block;
    -webkit-mask-position: 0 -0.5625rem;
            mask-position: 0 -0.5625rem;
  }
}

.mv__text {
  width: 46%;
  margin-top: 20px;
  margin-top: 1.25rem;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .mv__text {
    width: 100%;
    margin-top: 0rem;
  }
}

.mv__img {
  width: 100%;
}

.mv__labels {
  position: absolute;
  width: 100%;
  bottom: 120px;
  bottom: 7.5rem;
  left: 0;
  z-index: 2;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .mv__labels {
    bottom: 3.125rem;
    width: 20.3125rem;
    left: 1.625rem;
    right: unset;
  }
}

@-webkit-keyframes mv-labels-animation {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-50% + 23vw));
            transform: translateX(calc(-50% + 23vw));
  }
}

@keyframes mv-labels-animation {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-50% + 23vw));
            transform: translateX(calc(-50% + 23vw));
  }
}
.mv__labels-wrap {
  gap: 300px;
  gap: 18.75rem;
  display: grid;
  grid-template-columns: repeat(5, 46vw);
  place-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-animation: mv-labels-animation 25s linear infinite;
          animation: mv-labels-animation 25s linear infinite;
}
@media screen and (max-width: 767px) {
  .mv__labels-wrap {
    gap: 10.625rem;
  }
}

@media screen and (max-width: 767px) {
  .mv__label {
    width: 20.3125rem;
  }
}

.mv__persons {
  position: absolute;
  bottom: 20px;
  bottom: 1.25rem;
  right: -10px;
  right: -0.625rem;
  z-index: 1;
  width: 72vw;
  aspect-ratio: 1;
}
@media screen and (max-width: 767px) {
  .mv__persons {
    width: 140vw;
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    bottom: 0;
  }
}

.mv__person {
  position: absolute;
  opacity: 0;
}

.mv__person--1 {
  aspect-ratio: 543/561;
  width: 40vw;
  z-index: 2;
  left: 0;
  bottom: 20px;
  bottom: 1.25rem;
}
@media screen and (max-width: 767px) {
  .mv__person--1 {
    width: 79vw;
    bottom: 0.625rem;
  }
}

.mv__person--2 {
  aspect-ratio: 556/623;
  width: 40vw;
  z-index: 3;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .mv__person--2 {
    width: 81.8vw;
  }
}

.mv__person--3 {
  aspect-ratio: 669/1245;
  width: 49vw;
  z-index: 1;
  right: 0;
  bottom: 50%;
  -webkit-transform: translateY(81%);
          transform: translateY(81%);
}
@media screen and (max-width: 767px) {
  .mv__person--3 {
    width: 98vw;
    bottom: 55%;
  }
}

.shortage {
  color: #fff;
  padding: 130px 0 340px;
  padding: 8.125rem 0 21.25rem;
  margin-bottom: -130px;
  margin-bottom: -8.125rem;
  z-index: 3;
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, transparent), color-stop(8.125rem, #382a57));
  background: linear-gradient(to bottom, transparent 0 8.125rem, #382a57 8.125rem 100%);
}
@media screen and (max-width: 767px) {
  .shortage {
    padding: 5rem 0 11.25rem;
    margin-bottom: -4.375rem;
  }
}
.shortage::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-image: url("../images/data-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  width: 100%;
  min-height: 883px;
  min-height: 55.1875rem;
}
@media screen and (max-width: 767px) {
  .shortage::after {
    min-height: 12.5rem;
  }
}

.shortage__inner {
  max-width: 1196px;
  max-width: 74.75rem;
  padding: 0 50px;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .shortage__inner {
    max-width: 37.5rem;
    padding: 0 24px;
  }
}

.shortage__title {
  text-align: center;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .shortage__title {
    font-size: 1.75rem;
  }
}

.shortage__text {
  text-align: center;
  margin-top: 30px;
  margin-top: 1.875rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
  padding: 0 34px;
  padding: 0 2.125rem;
}
@media screen and (max-width: 767px) {
  .shortage__text {
    text-align: left;
    margin-top: 1.25rem;
    padding: 0;
  }
}
.shortage__text span {
  background-color: #434c9e;
  line-height: 1.2;
}

.shortage__graf {
  margin-top: 55px;
  margin-top: 3.4375rem;
  aspect-ratio: 1146/432;
}
@media screen and (max-width: 767px) {
  .shortage__graf {
    margin-top: 1.875rem;
    overflow: auto;
    aspect-ratio: unset;
  }
}

@media screen and (max-width: 767px) {
  .shortage__graf img {
    width: 50rem;
    max-width: unset;
  }
}

.shortage__note {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  color: #fff;
  margin-top: 43px;
  margin-top: 2.6875rem;
  padding: 2px 4px;
  padding: 0.125rem 0.25rem;
  background: -webkit-gradient(linear, left top, right top, from(#fa8458), color-stop(#ea518f), to(#434c9e));
  background: linear-gradient(to right, #fa8458, #ea518f, #434c9e);
}
@media screen and (max-width: 767px) {
  .shortage__note {
    margin-top: 1.875rem;
    font-size: 0.8125rem;
  }
}

.xcard {
  position: relative;
  display: grid;
  grid-template-columns: 48% 52%;
  margin-top: 48px;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .xcard {
    grid-template-columns: 1fr;
  }
}
.xcard .circle-arrow {
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
}

div.xcard .xcard__cta {
  opacity: 0;
}
@media screen and (max-width: 767px) {
  div.xcard .xcard__cta {
    display: none;
  }
}

@media (any-hover: hover) {
  a.xcard:hover .xcard__media video {
    scale: 1.05;
  }
  a.xcard:hover .circle-arrow {
    background-color: #382a57;
  }
}
.xcard__dec-img {
  position: absolute;
  bottom: 0;
  left: -53px;
  left: -3.3125rem;
  aspect-ratio: 336/399;
  width: 336px;
  width: 21rem;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .xcard__dec-img {
    top: 0;
    bottom: unset;
    aspect-ratio: 4/3;
    width: 100%;
    left: -0.9375rem;
  }
}

.xcard__dec-img img {
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .xcard__dec-img img {
    width: 80%;
  }
}

.xcard__media {
  min-height: 260px;
  min-height: 16.25rem;
  background-color: rgba(56, 42, 87, .3);
  position: relative;
  border-radius: 1.25rem 0 0 1.25rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .xcard__media {
    aspect-ratio: 4/3;
    min-height: unset;
    border-radius: 0.625rem 0.625rem 0 0;
  }
}
.xcard__media::after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: #382a57;
  opacity: 0.3;
}

.xcard__media video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.3s ease-in-out all;
  transition: 0.3s ease-in-out all;
}

.xcard__body {
  padding: 50px 35px;
  padding: 3.125rem 2.1875rem;
  color: #fff;
  border-radius: 0 1.25rem 1.25rem 0;
  overflow: hidden;
  background: -webkit-gradient(linear, left top, right top, from(#6762ef), to(#62daf7));
  background: linear-gradient(90deg, #6762ef 0%, #62daf7 100%);
}
@media screen and (max-width: 767px) {
  .xcard__body {
    padding: 1.875rem 1.25rem;
    border-radius: 0 0 0.625rem 0.625rem;
  }
}

.xcard__title {
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 35px;
  margin-bottom: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .xcard__title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
}

.xcard__lead {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}

.xcard__bullets {
  border-top: 1px solid rgb(255, 255, 255);
  margin-bottom: 45px;
  margin-bottom: 2.8125rem;
}
@media screen and (max-width: 767px) {
  .xcard__bullets {
    margin-bottom: 1.875rem;
  }
}

.xcard__bullets li {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  padding: 10px 15px;
  padding: 0.625rem 0.9375rem;
  border-bottom: 1px solid rgb(255, 255, 255);
}
@media screen and (max-width: 767px) {
  .xcard__bullets li {
    font-size: 0.9375rem;
    padding: 0.625rem 0;
  }
}

.xcard__cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 8px;
  gap: 0.5rem;
  margin-top: 16px;
  margin-top: 1rem;
  color: #fff;
  margin-right: -25px;
  margin-right: -1.5625rem;
  margin-bottom: -20px;
  margin-bottom: -1.25rem;
}
@media screen and (max-width: 767px) {
  .xcard__cta {
    margin-right: unset;
    margin-bottom: unset;
  }
}

.xcard__cta-text {
  font-size: 14px;
  font-size: 0.875rem;
}

.xcard__cta-icon {
  rotate: 90deg;
}

.xcard__label {
  position: absolute;
  left: 56px;
  left: 3.5rem;
  bottom: 24px;
  bottom: 1.5rem;
  display: grid;
  gap: 4px;
  gap: 0.25rem;
  z-index: 4;
}
@media screen and (max-width: 767px) {
  .xcard__label {
    bottom: unset;
    top: 33vw;
    left: unset;
    right: -0.9375rem;
  }
}

.xcard__tag {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  font-size: 1.125rem;
  padding: 6px 14px;
  padding: 0.375rem 0.875rem;
  background: -webkit-gradient(linear, left top, right top, from(#6762ef), to(#649ef3));
  background: linear-gradient(90deg, #6762ef 0%, #649ef3 100%);
}
@media screen and (max-width: 767px) {
  .xcard__tag {
    font-size: 0.875rem;
  }
}

.xcard__tag--strong {
  font-size: 26px;
  font-size: 1.625rem;
}
@media screen and (max-width: 767px) {
  .xcard__tag--strong {
    font-size: 1.125rem;
  }
}

/* Variants */
.xcard--medical .xcard__body {
  background: -webkit-gradient(linear, left top, left bottom, from(#6762ef), to(#62daf7));
  background: linear-gradient(to bottom, #6762ef 0%, #62daf7 100%);
}

.xcard--welfare .xcard__body {
  background: -webkit-gradient(linear, left top, left bottom, from(#f7664c), to(#f7d562));
  background: linear-gradient(to bottom, #f7664c 0%, #f7d562 100%);
}

.xcard--sports .xcard__body {
  background: -webkit-gradient(linear, left top, left bottom, from(#07d16c), to(#62acf7));
  background: linear-gradient(to bottom, #07d16c 0%, #62acf7 100%);
}

.xcard--business .xcard__body {
  background: -webkit-gradient(linear, left top, left bottom, from(#513bf4), to(#bb82fd));
  background: linear-gradient(to bottom, #513bf4 0%, #bb82fd 100%);
}

.xcard--welfare .xcard__tag {
  background: -webkit-gradient(linear, left top, right top, from(#f7664c), to(#f79f57));
  background: linear-gradient(90deg, #f7664c 0%, #f79f57 100%);
}

.xcard--sports .xcard__tag {
  background: -webkit-gradient(linear, left top, right top, from(#07d16c), to(#37bdb6));
  background: linear-gradient(90deg, #07d16c 0%, #37bdb6 100%);
}

.xcard--business .xcard__tag {
  background: -webkit-gradient(linear, left top, right top, from(#513bf4), to(#ae67ff));
  background: linear-gradient(90deg, #513bf4 0%, #ae67ff 100%);
}
/*# sourceMappingURL=styles.css.map */
