@charset "UTF-8";
/* Foundation */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
  color-scheme: dark light;
  -moz-tab-size: 2;
    -o-tab-size: 2;
       tab-size: 2;
  scrollbar-gutter: stable;
  interpolate-size: allow-keywords;
  line-height: 1.5;
}

:where(html:has(dialog:modal[open])) {
  overflow: clip;
}

@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}
:where(body) {
  line-height: inherit;
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

:where(button) {
  all: unset;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
  -webkit-font-feature-settings: inherit;
          font-feature-settings: inherit;
  font-variation-settings: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled, label:has(> :disabled, + :disabled)) {
  cursor: not-allowed;
}

:where(a) {
  color: inherit;
  text-underline-offset: 0.2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg, video) {
  max-inline-size: 100%;
  block-size: auto;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + 0.5rem);
  text-wrap: balance;
}

:where(hr) {
  border: none;
  -webkit-border-before: 1px solid;
          border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(dialog, [popover]) {
  border: none;
  background: none;
  color: inherit;
  inset: unset;
  max-width: unset;
  max-height: unset;
  overflow: unset;
}

:where(dialog:not([open], [popover]), [popover]:not(:popover-open)) {
  display: none !important;
}

:where(:focus-visible) {
  outline: 3px solid CanvasText;
  -webkit-box-shadow: 0 0 0 5px Canvas;
          box-shadow: 0 0 0 5px Canvas;
  outline-offset: 1px;
}

:where(:focus-visible, :target) {
  scroll-margin-block: 8vh;
}

:where(.visually-hidden:not(:focus-within, :active)) {
  clip-path: inset(50%) !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden !important;
  position: absolute !important;
  white-space: nowrap !important;
  border: 0 !important;
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
      -ms-user-select: none !important;
          user-select: none !important;
}

body,
h1,
h2,
h3,
p,
ul,
li {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

body {
  font-family: "Jost", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  color: #000000;
  font-size: 16px;
  font-weight: 500;
  background: #fff;
  line-height: 1.7;
}

.container {
  width: min(100% - 4rem, 1140px);
  margin: auto;
}
@media (max-width: 768px) {
  .container {
    width: min(100% - 2rem, 1140px);
  }
}

.fadein {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
.fadein.in {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

a img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a:hover img {
  opacity: 0.65;
}

/* Layout */
@media (max-width: 768px) {
  :root {
    --header-height: 68px;
  }
}

header {
  background: #F8F8FF;
  width: 100%;
  color: #fff;
  padding: 16px;
  z-index: 2;
  position: fixed;
  margin-top: 0px;
  margin-bottom: 0px;
  top: 0px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
header .header-inner {
  max-width: 1450px;
  margin: 0 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;
  position: relative;
}
header .logo {
  max-width: 160px;
  min-width: 140px;
  width: 20%;
}
header .menu-btn {
  display: none;
  width: 25px;
  height: 18px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  position: relative;
}
header .menu-btn span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #200B41;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header .menu-btn span:nth-child(1) {
  top: 0;
}
header .menu-btn span:nth-child(2) {
  top: 8px;
}
header .menu-btn span:nth-child(3) {
  bottom: 0;
}
header .menu-btn.is-open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 8px;
}
header .menu-btn.is-open span:nth-child(2) {
  opacity: 0;
}
header .menu-btn.is-open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  bottom: 8px;
}
@media (max-width: 1140px) {
  header .menu-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 11;
  }
}
header .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 800px;
  margin-left: auto;
}
@media (max-width: 1140px) {
  header .nav {
    display: none;
    min-width: auto;
  }
}
header .nav.is-open {
  display: block;
  position: fixed;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  top: 0;
  right: 0;
  width: 70%;
  height: 100vh;
  background: #fff;
  padding: 80px 20px;
  z-index: 10;
}
header .nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  header .nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    border-top: solid 1px rgba(255, 255, 255, 0.3);
    margin-bottom: 2rem;
  }
}
header .nav ul li a {
  padding: 10px 10px;
  color: #000000;
  font-weight: 600;
  font-size: clamp(1rem, 1rem + 0vw, 1rem);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 768px) {
  header .nav ul li a {
    display: block;
  }
}
header .nav ul li {
  margin-right: 20px;
}
@media (max-width: 1140px) {
  header .nav ul li {
    margin-right: 9px;
  }
}
@media (max-width: 768px) {
  header .nav ul li {
    width: 100%;
    border-bottom: solid 1px #000000;
  }
}
@media (max-width: 768px) {
  header .nav ul li span {
    display: grid;
    grid-template-columns: 1fr 30px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
header .nav ul li span:after {
  content: " ";
  background: url(../images/icon-arrow-black.svg) no-repeat center center;
  display: inline-block;
  width: 5px;
  height: 8px;
  margin-left: 8px;
}
header .nav .nav-button {
  margin-left: 20px;
  max-width: 193px;
  width: 100%;
}
@media (max-width: 1140px) {
  header .nav .nav-button {
    display: none;
  }
}
@media (max-width: 768px) {
  header .nav .nav-button {
    display: block;
    max-width: 80%;
    margin: 0 auto;
  }
}

footer {
  background: #200B41;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  padding: 90px 0 100px 0;
  margin-top: -80px;
}
@media (max-width: 768px) {
  footer {
    padding: 2rem 0 4rem 0;
  }
}

.footer-inner {
  width: min(100% - 4rem, 1140px);
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 768px) {
  .footer-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    padding-inline: 2rem;
  }
}

.footer-menu .footer-logo {
  max-width: 144px;
}
@media (max-width: 768px) {
  .footer-menu .footer-logo {
    margin: 0 auto;
  }
}
.footer-menu .footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .footer-menu .footer-nav {
    display: none;
  }
}
.footer-menu .footer-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-menu .footer-nav ul li a {
  color: #fff;
  font-size: clamp(1rem, 0.92rem + 0.34vw, 1.1875rem);
  font-weight: 600;
  padding: 0 10px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.footer-menu .footer-nav ul li:after {
  content: "│";
  color: #fff;
}
.footer-menu .copyright {
  color: #839AB0;
  font-size: clamp(0.625rem, 0.57rem + 0.23vw, 0.75rem);
  margin: 0.5rem 0 0 0.5rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .footer-menu .copyright {
    margin-left: 0;
  }
}

.footer-info {
  max-width: 260px;
  color: #fff;
}
@media (max-width: 768px) {
  .footer-info {
    max-width: 100%;
    margin: 2rem auto 0 auto;
  }
}
.footer-info .clovertech-logo {
  line-height: 0;
  max-width: 150px;
  margin: 0rem auto 1.6rem auto;
  display: block;
}
@media (max-width: 768px) {
  .footer-info .clovertech-logo {
    margin-bottom: 1rem;
  }
}
.footer-info .clovertech-meta {
  font-size: clamp(0.75rem, 0.7rem + 0.23vw, 0.875rem);
  font-weight: 700;
  display: inline-block;
  margin-bottom: 0.5rem;
}
.footer-info .clovertech-text {
  font-size: clamp(0.625rem, 0.57rem + 0.23vw, 0.75rem);
  font-weight: 500;
  display: inline-block;
}

.mv {
  padding-top: 77px;
}

.mv-inner {
  width: min(100% - 4rem, 1400px);
  max-width: 1400px;
  margin: auto;
  padding: 4rem 0;
}
@media (max-width: 768px) {
  .mv-inner {
    padding: 2rem 0;
  }
}

.mv-inner.grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 768px) {
  .mv-inner.grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}

.gradient-border-mask {
  position: relative;
}

.gradient-border-mask::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 10px;
  border: 1px solid transparent;
  background: linear-gradient(90.69deg, #88C4FF 0.6%, #FB88FF 99.62%) border-box;
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) padding-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.mv-txt--subtitle {
  font-size: clamp(0.875rem, 0.82rem + 0.23vw, 1rem);
  margin-bottom: 10px;
  border-radius: 10px;
  padding: 14px 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mv-txt--subtitle::before {
  border-width: 2px;
  border-radius: 88px;
}

.mv-txt--01 {
  font-size: clamp(1.75rem, 1.02rem + 3.09vw, 3.5rem);
  line-height: 5rem;
  margin: 1rem 0;
}
@media (max-width: 768px) {
  .mv-txt--01 {
    line-height: 2.8rem;
  }
}

.mv-txt--02 {
  font-size: clamp(1.125rem, 0.97rem + 0.67vw, 1.5rem);
  margin-bottom: 30px;
}

.mv-btn {
  max-width: 283px;
  width: 100%;
  padding: 14px 23px !important;
}

/* -- 共通 -- */
.section {
  padding: 80px 0;
}
@media (max-width: 768px) {
  .section {
    padding: 48px 0;
  }
}

.section-bg {
  background: #F8F8FF;
}

.section-title {
  text-align: center;
}
.section-title-en {
  display: inline-block;
  color: #6D6EFD;
  font-size: clamp(0.75rem, 0.65rem + 0.44vw, 1rem);
}
.section-title-jp {
  display: block;
  font-size: clamp(1.75rem, 1.39rem + 1.56vw, 2.625rem);
  margin-bottom: 1.5rem;
}

.section-explanatory {
  text-align: center;
  font-size: clamp(0.875rem, 0.77rem + 0.44vw, 1.125rem);
  margin-bottom: 60px;
}

/* -- About Section -- */
@media (max-width: 768px) {
  .about-section .about-section-inner {
    width: calc(100% - 4rem);
  }
}
.about-section .about-section-logo {
  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;
  margin-bottom: 60px;
}
.about-section .about-section-logo img:nth-of-type(2) {
  margin: 0 2rem;
}
@media (max-width: 768px) {
  .about-section .about-section-logo {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 50%;
    margin: 0 auto 30px auto;
  }
  .about-section .about-section-logo img:nth-of-type(2) {
    margin: 20px 0;
    width: 40px;
  }
}
.about-section .about-section-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  max-width: 1000px;
  margin-inline: auto;
  margin-bottom: 70px;
}
@media (max-width: 768px) {
  .about-section .about-section-features {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }
}
.about-section .about-section-features .feature-item {
  text-align: center;
}
.about-section .about-section-features .feature-item-icon {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .about-section .about-section-features .feature-item-icon {
    margin-bottom: 0.5rem;
  }
}
.about-section .about-section-features .feature-item-title {
  font-size: clamp(1rem, 0.9rem + 0.44vw, 1.25rem);
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .about-section .about-section-features .feature-item-title {
    margin-bottom: 0.3rem;
  }
  .about-section .about-section-features .feature-item-title br {
    display: none;
  }
}
.about-section .about-section-features .feature-item-list {
  text-align: left;
  list-style: disc inside;
  margin-left: 29px;
}
.about-section .about-section-features .feature-item-list li {
  text-indent: -22px;
  font-size: clamp(0.875rem, 0.82rem + 0.23vw, 1rem);
}
.about-section .about-section-company {
  background: #fff;
  border-radius: 30px;
  padding: 60px 60px 50px 60px;
  text-align: center;
  width: min(100% - 4rem, 1280px);
  max-width: 1280px;
  margin: 0 auto 0px auto;
}
@media (max-width: 1140px) {
  .about-section .about-section-company {
    padding: 60px 10px 50px 10px;
  }
}
.about-section .about-section-company-title {
  margin-bottom: 30px;
}
.about-section .about-section-company-list {
  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;
  max-width: 1270px;
}
.about-section .about-section-company-list li {
  margin: 15px 30px 10px 30px;
}

/* -- Possible Section -- */
.possible-section-inner {
  width: min(100% - 4rem, 1200px);
  margin: 0 auto;
}

.possible-item {
  background: #E5F0FF;
  border-radius: 20px;
  padding: 45px 50px;
  display: grid;
  grid-template-columns: 1fr 568px;
  gap: 68px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 38px;
}
@media (max-width: 1140px) {
  .possible-item {
    padding: 25px 20px;
    grid-template-columns: 1fr 60%;
    gap: 20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .possible-item {
    grid-template-columns: 1fr;
  }
}

.possible-item > * {
  min-width: 0;
  min-height: 0;
}

.possible-item-swiper-container {
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  .possible-item-swiper-container {
    padding-bottom: 0;
  }
}

.possible-item-title {
  font-size: clamp(1.5rem, 1.34rem + 0.67vw, 1.875rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.possible-item-text {
  font-size: clamp(0.875rem, 0.82rem + 0.23vw, 1rem);
}

.possible-item-box-right {
  background: #fff;
  padding: 25px 20px;
}
@media (max-width: 768px) {
  .possible-item-box-right {
    padding: 20px 15px;
  }
}

.possible-item-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media (max-width: 1140px) {
  .possible-item-grid {
    gap: 20px;
    grid-template-columns: 1fr;
  }
}

.possible-item-grid-box {
  background: #E5F0FF;
  border-radius: 20px;
  padding: 45px 50px;
}
@media (max-width: 1140px) {
  .possible-item-grid-box {
    padding: 25px 20px;
  }
}

.possible-item-grid-video {
  background: #fff;
  padding: 20px;
}

.possible-item-grid-gif {
  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;
}
.possible-item-grid-gif p img {
  max-height: 293px;
  padding-inline: 10px;
}

.possible-item-video .swiper {
  padding-bottom: 50px;
  overflow: hidden;
  min-height: 1px;
}
@media (max-width: 768px) {
  .possible-item-video .swiper {
    min-height: 200px;
    padding-bottom: 40px;
  }
}
.possible-item-video .swiper-slide {
  padding: 30px 20px;
  background: #fff;
}
@media (max-width: 768px) {
  .possible-item-video .swiper-slide {
    padding: 20px 15px;
  }
}
.possible-item-video .swiper-slide-video {
  padding-inline: 50px;
  min-height: 295px;
}
@media (max-width: 768px) {
  .possible-item-video .swiper-slide-video {
    padding-inline: 0;
    min-height: auto;
  }
}
.possible-item-video .swiper-slide-video video {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
}
@media (max-width: 768px) {
  .possible-item-video .swiper-slide-video video {
    aspect-ratio: 6/4;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.possible-item-video .swiper-button-next, .possible-item-video .swiper-button-prev {
  color: #7733DE;
}
.possible-item-video .swiper-button-next:after, .possible-item-video .swiper-button-prev:after {
  font-size: clamp(1.75rem, 1.65rem + 0.44vw, 2rem);
  font-weight: bold;
}
.possible-item-video .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
}
@media (max-width: 768px) {
  .possible-item-video .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}
.possible-item-video .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .possible-item-video .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 8px;
}
@media (max-width: 768px) {
  .possible-item-video .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .possible-item-video .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px;
  }
}
.possible-item-video .swiper-pagination-bullet-active {
  background: #7733DE;
}
.possible-item-video .mv-txt--subtitle span {
  font-size: clamp(0.75rem, 0.54rem + 0.88vw, 1.25rem);
}

.possible-item-box-swiper {
  padding: 0;
  background: none;
}

/* -- intro Section -- */
.intro-section-content .intro-tableblock {
  margin: auto;
  overflow-x: auto;
  white-space: nowrap;
  width: 90%;
  padding-top: 30px;
}
.intro-section-content .intro-table {
  width: calc(100% - 4rem);
  max-width: 1400px;
  margin: 0 auto;
  border-collapse: collapse;
}
@media (max-width: 1140px) {
  .intro-section-content .intro-table {
    min-width: 800px;
  }
}
.intro-section-content .intro-table th, .intro-section-content .intro-table td {
  border-bottom: solid 1px #C4C4C4;
  padding: 12px 16px;
  text-align: center;
  font-size: clamp(0.875rem, 0.82rem + 0.23vw, 1rem);
}
.intro-section-content .intro-table th {
  font-weight: 700;
}
.intro-section-content .intro-table td {
  background: #fff;
}
.intro-section-content .intro-table thead tr th {
  border-bottom: none;
  font-size: clamp(1.125rem, 1.05rem + 0.34vw, 1.3125rem);
}
.intro-section-content .intro-table thead tr th:nth-of-type(2) {
  background: #D9D9D9;
  border-top-left-radius: 20px;
  padding: 20px 0;
}
.intro-section-content .intro-table thead tr th:nth-of-type(3) {
  background: #6D6EFD;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding: 20px 0;
  position: relative;
}
.intro-section-content .intro-table thead tr th:nth-of-type(3):before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  background: #6D6EFD;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding: 50px 0;
  width: 100%;
  height: 60px;
  z-index: 1;
}
.intro-section-content .intro-table thead tr th:nth-of-type(3) span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #fff;
  z-index: 2;
  height: 100%;
  margin-top: 10px;
  width: 100%;
}
.intro-section-content .intro-table tbody tr:first-child th {
  border-top-left-radius: 20px;
  border-top: none;
}
.intro-section-content .intro-table tbody tr:last-child th {
  border-bottom-left-radius: 20px;
  border-bottom: none;
}
.intro-section-content .intro-table tbody tr th {
  background: #200B41;
  color: #fff;
}
.intro-section-content .intro-table tbody td.dialogue {
  border-left: solid 2px #6D6EFD;
  border-right: solid 2px #6D6EFD;
  line-height: 1.6em;
}
.intro-section-content .intro-table tbody td.dialogue.last {
  border-bottom: solid 2px #6D6EFD;
}
.intro-section-content .intro-table tbody td.dialogue span {
  color: #6D6EFD;
  font-size: clamp(1.125rem, 1.05rem + 0.34vw, 1.3125rem);
  font-weight: 700;
}

/* -- FAQ Section -- */
.faq-item {
  border-radius: 20px;
  border: solid #CAA1FF 1px;
}
.faq-item.is-open {
  padding-bottom: 20px;
}
@media (max-width: 768px) {
  .faq-item.is-open {
    padding-bottom: 20px;
  }
}
.faq-item.is-open .faq-question {
  border-bottom: solid #CAA1FF 1px;
}
.faq-item.is-open .faq-question:after {
  content: "";
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.faq-item.is-open .faq-answer {
  height: auto;
  padding: 0px 3rem 0px 3rem;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .faq-item.is-open .faq-answer {
    padding: 0px 1.5rem 0px 1.5rem;
  }
}

.faq-item + .faq-item {
  margin-top: 1.5rem;
}

.faq-question {
  padding: 22px 3rem 20px 3rem;
  font-weight: 500;
  font-size: clamp(1rem, 0.95rem + 0.23vw, 1.125rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  position: relative;
}
@media (max-width: 768px) {
  .faq-question {
    padding: 20px 3.5rem 20px 1.5rem;
  }
}
.faq-question:before {
  content: "Q.";
  font-size: clamp(1.25rem, 0.94rem + 1.33vw, 2rem);
  font-weight: 500;
  margin-right: 1rem;
  color: #7733DE;
}
@media (max-width: 768px) {
  .faq-question:before {
    margin-right: 0.5rem;
  }
}
.faq-question:after {
  content: "";
  background: url(/images/icon-arrow.svg) no-repeat center center;
  position: absolute;
  right: 2.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: clamp(1.25rem, 0.73rem + 2.21vw, 2.5rem);
  font-weight: 200;
  width: 20px;
  height: 18px;
}
@media (max-width: 768px) {
  .faq-question:after {
    right: 1.5rem;
  }
}

.faq-answer {
  height: 0;
  overflow: hidden;
  -webkit-transition: height 300ms ease;
  transition: height 300ms ease;
  padding: 0 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: clamp(0.875rem, 0.82rem + 0.23vw, 1rem);
}
.faq-answer:before {
  content: "A.";
  font-size: clamp(1.25rem, 0.94rem + 1.33vw, 2rem);
  font-weight: 500;
  margin-right: 1rem;
  color: #7733DE;
}
@media (max-width: 768px) {
  .faq-answer:before {
    margin-right: 0.5rem;
  }
}

.faq-answer-text {
  padding-top: 1rem;
}
@media (max-width: 768px) {
  .faq-answer-text {
    padding-top: 0.5rem;
  }
}

/* -- Material Download Section -- */
.dl-section {
  background: radial-gradient(74.67% 93.56% at 50% 50%, #2869D2 0%, #200B40 100%);
  padding-bottom: 160px;
}
.dl-section .section-title {
  color: #fff;
}
.dl-section .section-title-en {
  color: #fff;
}

.dl-section-content .section-explanatory {
  color: #fff;
}

.dl-section-form {
  background: #fff;
  max-width: 780px;
  margin-inline: auto;
  padding: 80px 20px 40px 20px;
}

/* Components */
.button {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 6px;
  text-align: center;
  font-weight: bold;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}
.button:hover {
  opacity: 0.75;
}
@media (max-width: 768px) {
  .button {
    width: 100%;
    display: block;
  }
}

.button-dl {
  background: linear-gradient(93.36deg, #90C0FF 1.07%, #AAB2FF 50.53%, #CAA1FF 75.27%, #F38CFF 100%);
  border-radius: 10px;
  color: #fff;
  padding: 9px 23px;
  width: 100%;
}
.button-dl a {
  display: grid;
  grid-template-columns: 1fr 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.button-dl span:after {
  content: " ";
  background: url(../images/icon-arrow-white.svg) no-repeat center center;
  display: inline-block;
  width: 5px;
  height: 12px;
  margin-left: 10px;
}

.shine-animation {
  --anim-duration: 5s;
  --anim-speed: 0.65s;
  --shine-degree: 120deg;
  --shine-color: rgba(255, 255, 255, 0.5);
  --shine-effect: linear-gradient( var(--shine-degree), transparent, var(--shine-color), transparent );
}

.shine-animation::after {
  -webkit-animation: shine var(--anim-duration) ease-in-out infinite;
          animation: shine var(--anim-duration) ease-in-out infinite;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--shine-effect);
  z-index: 2;
}

@-webkit-keyframes shine {
  0% {
    left: -100%;
    -webkit-transition-property: left;
    transition-property: left;
  }
  13%, 100% {
    left: 100%;
    -webkit-transition-property: left;
    transition-property: left;
  }
}

@keyframes shine {
  0% {
    left: -100%;
    -webkit-transition-property: left;
    transition-property: left;
  }
  13%, 100% {
    left: 100%;
    -webkit-transition-property: left;
    transition-property: left;
  }
}
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

.section-title-block {
  text-align: center;
  margin-bottom: 3rem;
}

.section-subtitle {
  color: #200B41;
  font-size: clamp(0.875rem, 0.82rem + 0.23vw, 1rem);
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.section-title {
  font-size: clamp(1.25rem, 0.68rem + 2.44vw, 2.625rem);
  font-weight: 700;
}/*# sourceMappingURL=style.css.map */