@charset "UTF-8";
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  color: #0D2E3F;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
}
body.is-fixed {
  overflow: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

a:hover {
  opacity: 0.5;
}

*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Fix appearance for Firefox
 */
[type=number] {
  -moz-appearance: textfield;
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

.p-top-fv {
  position: relative;
  z-index: 10;
  overflow: hidden;
}
.p-top-fv__deco-img {
  position: absolute;
  z-index: -1;
}
.p-top-fv__deco-img:nth-of-type(1) {
  top: 6.2rem;
  left: 0;
}
.p-top-fv__deco-img:nth-of-type(2) {
  top: -7rem;
  left: 45rem;
}
.p-top-fv__deco-img:nth-of-type(3) {
  bottom: -10rem;
  left: 45%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.p-top-fv__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 768px) {
  .p-top-fv__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.p-top-fv__text-wrapper {
  padding-top: clamp(5rem, 13vw, 19.1rem);
  padding-left: 120px;
}
@media (max-width: 768px) {
  .p-top-fv__text-wrapper {
    padding-left: 0;
    padding-inline: 1.5rem;
    padding-top: 0;
  }
}
.p-top-fv__title {
  color: #0D2E3F;
  font-family: "Roboto", sans-serif;
  font-size: clamp(4.5rem, 5.2vw, 7.6rem);
  font-weight: 700;
}
.p-top-fv__title-sub {
  color: #0D2E3F;
  font-family: "Roboto", sans-serif;
  font-size: clamp(2.1rem, 2.5vw, 3.7rem);
  font-weight: 700;
}
.p-top-fv__title-catch {
  color: #00A7D3;
  font-size: clamp(2.2rem, 2vw, 3rem);
  font-weight: 700;
  margin-top: 4rem;
}
.p-top-fv__text {
  color: #0D2E3F;
  font-size: clamp(1.3rem, 1.2vw, 1.7rem);
  line-height: 1.5;
  margin-top: 3.2rem;
}
.p-top-fv__text strong {
  font-size: 1.5rem, 1.3vw, 2rem;
  font-weight: 700;
}
.p-top-fv__btn {
  margin-top: 4.8rem;
}
@media (max-width: 768px) {
  .p-top-fv__btn {
    margin-top: 1.6rem;
  }
}
.p-top-fv__main-img {
  margin-top: -7rem;
  width: clamp(50rem, 80vw, 80rem);
  min-width: 50rem;
  aspect-ratio: 1049/699;
}
@media (max-width: 768px) {
  .p-top-fv__main-img {
    margin-top: 1.3rem;
    width: 100%;
    min-width: 0;
  }
}
.p-top-fv__preview {
  display: inline-block;
  position: fixed;
  z-index: 100;
  bottom: 30rem;
  right: 25rem;
}
@media (max-width: 768px) {
  .p-top-fv__preview {
    bottom: 40%;
    right: 27%;
  }
}
.p-top-fv__preview:hover {
  opacity: 0.9;
}
.p-top-fv__preview-content {
  position: fixed;
  z-index: 50;
  width: 11rem;
}
@media (max-width: 1000px) {
  .p-top-fv__preview-content {
    width: 8rem;
  }
}
.p-top-fv__preview-text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #FFF;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
  text-align: center;
}
@media (max-width: 1000px) {
  .p-top-fv__preview-text {
    font-size: 0.7rem;
  }
}
.p-top-fv__preview-text img {
  margin-inline: auto;
  width: 2rem;
  margin-top: 5px;
}
@media (max-width: 1000px) {
  .p-top-fv__preview-text img {
    width: 1.5rem;
  }
}

.splide-01 {
  padding-top: 4.3rem;
  padding-bottom: 4rem;
}
@media (max-width: 768px) {
  .splide-01 {
    padding-top: 4rem;
  }
}

/* ページネーション全体の配置 */
.splide-01 .splide__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 2rem;
  gap: 1rem;
}

/* ドットの基本スタイル */
.splide-01 .splide__pagination__page {
  width: 20px;
  height: 10px;
  border: none;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  border-radius: 0;
  cursor: pointer;
  background: #D9D9D9;
}

/* アクティブなドット */
.splide-01 .splide__pagination__page.is-active {
  background: #AEE9F5;
}

.p-top-about {
  padding-top: 17.5rem;
}
@media (max-width: 768px) {
  .p-top-about {
    padding-top: 8.8rem;
  }
}
.p-top-about__inner {
  padding-left: 12rem;
}
@media (max-width: 768px) {
  .p-top-about__inner {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
  }
}
.p-top-about__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 768px) {
  .p-top-about__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-top-about__catch {
  color: #00A7D3;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.36px;
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .p-top-about__catch {
    margin-top: 2.4rem;
  }
}
.p-top-about__text-wrapper {
  margin-top: 3.2rem;
}
@media (max-width: 768px) {
  .p-top-about__text-wrapper {
    margin-top: 2.4rem;
  }
}
.p-top-about__text-wrapper .strong-01 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.2px;
}
@media (max-width: 768px) {
  .p-top-about__text-wrapper .strong-01 {
    font-size: 1.5rem;
  }
}
.p-top-about__text-wrapper .strong-02 {
  font-weight: 700;
}
@media (max-width: 768px) {
  .p-top-about__text-wrapper .strong-02 {
    font-size: 1.5rem;
  }
}
.p-top-about__text-wrapper .strong-03 {
  font-weight: 700;
  font-size: 1/8rem;
}
@media (max-width: 768px) {
  .p-top-about__text-wrapper .strong-03 {
    font-size: 1.5rem;
  }
}
.p-top-about__text-wrapper p {
  color: #0D2E3F;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.16px;
}
@media (max-width: 768px) {
  .p-top-about__text-wrapper p {
    font-size: 1.5rem;
  }
}
.p-top-about__text-wrapper p:nth-of-type(n + 2) {
  margin-top: 3rem;
}
@media (max-width: 768px) {
  .p-top-about__text-wrapper p:nth-of-type(n + 2) {
    margin-top: 1.6rem;
  }
}
.p-top-about__right {
  margin-top: -9.5rem;
}
@media (max-width: 768px) {
  .p-top-about__right {
    margin-top: 4.8rem;
    margin-left: auto;
  }
}
.p-top-about__img-wrapper-01 {
  width: 55.7rem;
}
@media (max-width: 768px) {
  .p-top-about__img-wrapper-01 {
    width: 32.9rem;
  }
}

.p-top-feature {
  margin-top: -7rem;
}
@media (max-width: 768px) {
  .p-top-feature {
    margin-top: -4rem;
  }
}
.p-top-feature__inner {
  padding-inline: 5rem;
}
@media (max-width: 768px) {
  .p-top-feature__inner {
    padding-inline: 0;
  }
}
.p-top-feature__container {
  border-radius: 54px;
  background: #F7F7F7;
  padding-block: 9rem;
  padding-inline: clamp(1.8rem, 5vw, 16rem);
}
.p-top-feature__content {
  margin-top: 8rem;
}
@media (max-width: 768px) {
  .p-top-feature__content {
    margin-top: 4.6rem;
  }
}
.p-top-feature__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: clamp(0.8rem, 3.4vw, 5rem);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 5rem;
}
@media (max-width: 768px) {
  .p-top-feature__list {
    row-gap: 2.3rem;
    -webkit-column-gap: 0.8rem;
       -moz-column-gap: 0.8rem;
            column-gap: 0.8rem;
  }
}
.p-top-feature__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  width: clamp(16.5rem, 20vw, 30.2rem);
  aspect-ratio: 302/302;
  border-radius: 50%;
  -webkit-box-shadow: -1px 4px 4px 0px rgba(0, 0, 0, 0.1);
          box-shadow: -1px 4px 4px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .p-top-feature__item {
    width: clamp(15.5rem, 11vw, 16.5rem);
    height: clamp(15.5rem, 11vw, 16.5rem);
  }
}
.p-top-feature__item-num {
  position: absolute;
  top: 10px;
  left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #FFF;
  background-color: #0D2E3F;
  font-family: "Roboto", sans-serif;
  font-size: clamp(1.8rem, 1.8vw, 2.6rem);
  font-weight: 600;
  width: clamp(3.4rem, 3.47vw, 5rem);
  aspect-ratio: 1/1;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .p-top-feature__item-num {
    width: 3.4rem;
    height: 3.4rem;
    font-size: 1.8rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.p-top-feature__item:nth-child(1) .p-top-feature__item-img {
  width: clamp(6.9rem, 11.5vw, 16.7rem);
}
@media (max-width: 768px) {
  .p-top-feature__item:nth-child(1) .p-top-feature__item-img {
    width: 6.9rem;
  }
}
.p-top-feature__item:nth-child(2) .p-top-feature__item-img {
  width: clamp(7.1rem, 10.4vw, 15.1rem);
}
@media (max-width: 768px) {
  .p-top-feature__item:nth-child(2) .p-top-feature__item-img {
    width: 7.1rem;
  }
}
.p-top-feature__item:nth-child(3) .p-top-feature__item-img {
  width: clamp(7rem, 11.8vw, 17rem);
}
@media (max-width: 768px) {
  .p-top-feature__item:nth-child(3) .p-top-feature__item-img {
    width: 7rem;
  }
}
.p-top-feature__item:nth-child(4) .p-top-feature__item-img {
  width: clamp(7.6rem, 12vw, 17.3rem);
}
@media (max-width: 768px) {
  .p-top-feature__item:nth-child(4) .p-top-feature__item-img {
    width: 7.6rem;
  }
}
.p-top-feature__item:nth-child(5) .p-top-feature__item-img {
  width: clamp(6.6rem, 9.86vw, 14.2rem);
}
@media (max-width: 768px) {
  .p-top-feature__item:nth-child(5) .p-top-feature__item-img {
    width: 6.6rem;
  }
}
.p-top-feature__item:nth-child(6) .p-top-feature__item-img {
  width: clamp(7.8rem, 11.8vw, 17rem);
}
@media (max-width: 768px) {
  .p-top-feature__item:nth-child(6) .p-top-feature__item-img {
    width: 7.8rem;
  }
}
.p-top-feature__item-text {
  text-align: center;
  font-size: clamp(1.2rem, 1.1vw, 1.7rem);
  font-weight: 600;
  line-height: 1.5;
}

.p-top-course {
  padding-top: 14.4rem;
  padding-bottom: 14.4rem;
}
@media (max-width: 768px) {
  .p-top-course {
    padding-top: 8.8rem;
    padding-bottom: 8.8rem;
  }
}
.p-top-course__inner {
  padding-inline: 160px;
}
@media (max-width: 768px) {
  .p-top-course__inner {
    padding-inline: 1.5rem;
  }
}
.p-top-course__lead-text {
  margin-top: 4.8rem;
  font-size: 2.6rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .p-top-course__lead-text {
    font-size: 1.8rem;
    line-height: 1.5;
    margin-top: 2.4rem;
  }
}
.p-top-course__content {
  margin-top: 8rem;
}
@media (max-width: 768px) {
  .p-top-course__content {
    margin-top: 3.2rem;
  }
}
.p-top-course__item {
  width: 290px;
  text-align: center;
}
@media (max-width: 768px) {
  .p-top-course__item {
    width: 19rem;
  }
}
.p-top-course__item-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 12.4rem;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .p-top-course__item-img {
    width: 10rem;
  }
}
.p-top-course__item-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 1.6rem;
}
.p-top-course__item-desc, .p-top-course__item-text {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .p-top-course__item-desc, .p-top-course__item-text {
    font-size: 1rem;
  }
}
.p-top-course__item-desc {
  text-align: center;
}
.p-top-course__item-text-wrapper {
  text-align: left;
  list-style-type: disc;
  list-style-position: inside;
  margin-top: 1.6rem;
}
.p-top-course__item-text {
  text-indent: -1.2em;
  padding-left: 1.2em;
}
.p-top-course__video-wrapper {
  width: 70%;
  margin-inline: auto;
  aspect-ratio: 16/9;
  margin-top: 9.6rem;
}
@media (max-width: 768px) {
  .p-top-course__video-wrapper {
    margin-top: 4rem;
    width: calc(100% - 1.5rem);
  }
}
.p-top-course__video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 30px;
}
.p-top-course__btn a {
  margin-inline: auto;
}

.splide-02 {
  margin-left: calc(50% - 50vw);
}
.splide-02 .splide__pagination {
  display: none;
}

.p-top-info {
  padding-block: 10.4rem;
  background-repeat: no-repeat;
  background-image: url(../../assets/imgs/top/black-bg.png);
  background-position: center center;
  background-size: cover;
}
@media (max-width: 768px) {
  .p-top-info {
    padding-top: 8.8rem;
    padding-bottom: 6.5rem;
  }
}
.p-top-info__inner {
  padding-inline: clamp(1.45rem, 8.3vw, 12rem);
}
@media (max-width: 768px) {
  .p-top-info__inner {
    padding-inline: 1.5rem;
  }
}
.p-top-info__lead-text {
  color: #FFF;
  text-align: center;
  font-size: 3rem;
  font-size: clamp(2.2rem, 2vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.6px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .p-top-info__lead-text {
    line-height: 1.7;
  }
}
.p-top-info__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 8rem;
  gap: 2%;
}
@media (max-width: 768px) {
  .p-top-info__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 4rem;
  }
}
.p-top-info__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  row-gap: 2rem;
}
@media (max-width: 768px) {
  .p-top-info__list {
    margin-top: 3.2rem;
  }
}
.p-top-info__item {
  position: relative;
  color: #FFF;
  font-size: 2rem;
  font-size: clamp(1.4rem, 1.3vw, 2rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.2px;
  padding-left: 46px;
}
@media (max-width: 768px) {
  .p-top-info__item {
    padding-left: 24px;
  }
}
.p-top-info__item::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  content: "";
  width: 3rem;
  aspect-ratio: 1/1;
  background-image: url(../../assets/imgs/top/info-icon-check.png);
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .p-top-info__item::before {
    width: 1.6rem;
  }
}
.p-top-info__plan {
  position: relative;
  width: clamp(35rem, 37.5vw, 54.1rem);
  max-width: 100%;
  padding-top: 7.1rem;
  padding-bottom: 6.1rem;
  background-color: #fff;
  border-radius: 30px;
}
@media (max-width: 768px) {
  .p-top-info__plan {
    padding-top: 4rem;
    padding-bottom: 4rem;
    border-radius: 16px;
  }
}
.p-top-info__plan-inner {
  max-width: calc(100% - 80px);
  margin-inline: auto;
}
@media (max-width: 768px) {
  .p-top-info__plan-inner {
    max-width: calc(100% - 31px);
  }
}
.p-top-info__plan-title {
  font-size: clamp(2.6rem, 2.5vw, 3.6rem);
  font-weight: 700;
  background: -webkit-gradient(linear, left top, right top, from(#FF00C8), to(#FF854E));
  background: linear-gradient(90deg, #FF00C8 0%, #FF854E 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}
@media (max-width: 768px) {
  .p-top-info__plan-title {
    text-align: left;
  }
}
.p-top-info__plan-subtitle {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 3.6rem;
}
@media (max-width: 768px) {
  .p-top-info__plan-subtitle {
    text-align: left;
    margin-top: 0.5rem;
    margin-bottom: 1.6rem;
  }
}
.p-top-info__plan-text {
  font-size: clamp(1.6rem, 1.7vw, 2.5rem);
  font-weight: 700;
}
.p-top-info__plan-text:last-child {
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .p-top-info__plan-text:last-child {
    margin-top: 0.9rem;
  }
}
.p-top-info__plan-text-num {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: clamp(2.4rem, 2.1vw, 3.1rem);
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #0D2E3F;
  font-family: "Roboto", sans-serif;
  font-size: clamp(1.4rem, 1.25vw, 1.8rem);
  font-weight: 600;
  color: #fff;
}
.p-top-info__plan-text-price {
  font-size: clamp(2.2rem, 2.3vw, 3.4rem);
  font-weight: 700;
}
.p-top-info__plan-img {
  position: absolute;
  top: 6.8rem;
  right: -5rem;
  width: clamp(10.2rem, 8.5vw, 12.3rem);
}
@media (max-width: 768px) {
  .p-top-info__plan-img {
    top: -3rem;
    right: -1rem;
  }
}
.p-top-info__link {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-radius: 30px;
  background: linear-gradient(93deg, #FF00C8 4.42%, #FF854E 94.08%);
  -webkit-box-shadow: 1px 3px 8px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 1px 3px 8px 0px rgba(0, 0, 0, 0.25);
  padding-block: 2rem;
  padding-inline: 7.2rem;
  margin-top: 9rem;
}
@media (max-width: 768px) {
  .p-top-info__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-inline: 6rem;
    border-radius: 50px;
    margin-top: 5.6rem;
  }
}
.p-top-info__link-left p {
  color: #FFF;
  font-size: clamp(1.8rem, 1.9vw, 2.8rem);
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .p-top-info__link-left p {
    text-align: center;
  }
}
.p-top-info__link-left span {
  display: block;
  color: #FFF;
  font-size: clamp(1.1rem, 1.11vw, 1.6rem);
  font-weight: 700;
  line-height: 1.5;
  margin-top: 0.4rem;
}
@media (max-width: 768px) {
  .p-top-info__link-left span {
    text-align: center;
  }
}
.p-top-info__link-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #FFF;
  font-size: clamp(2.4rem, 2.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .p-top-info__link-right {
    margin-top: 2rem;
  }
}
.p-top-info__link-right img {
  width: clamp(3.4rem, 3.47vw, 5rem);
  aspect-ratio: 1/1;
}

.p-top-message-block {
  padding-block: 14.4rem;
  background-image: url(../../assets/imgs/top/bg-01_pc.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media (max-width: 768px) {
  .p-top-message-block {
    padding-top: 111px;
    padding-bottom: 88px;
    background-image: url(../../assets/imgs/top/bg-01_sp.png);
  }
}
.p-top-message-block__text {
  text-align: center;
  font-size: clamp(1.8rem, 1.94vw, 2.8rem);
  font-weight: 700;
  line-height: 1.7;
}

.p-top-what-we-do .c-section-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  text-align: center;
}
.p-top-what-we-do .c-section-title__en {
  display: block;
}

.p-top-what-we-do__content {
  position: relative;
  padding-block: 6rem;
  margin-top: 68px;
  margin-bottom: 10rem;
  margin-inline: 5rem;
}
@media (max-width: 768px) {
  .p-top-what-we-do__content {
    margin-block: 5rem;
    margin-inline: 1rem;
  }
}
.p-top-what-we-do__bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 100%;
  aspect-ratio: 1340/617;
}
@media (max-width: 768px) {
  .p-top-what-we-do__bg {
    aspect-ratio: 355/1010;
  }
}
.p-top-what-we-do__content-inner {
  padding-inline: 3rem;
}
@media (max-width: 768px) {
  .p-top-what-we-do__content-inner {
    padding-inline: 1.4rem;
  }
}
.p-top-what-we-do__content-title {
  color: #FFF;
  font-size: 3.2rem;
  font-weight: 700;
  text-align: center;
}
@media (max-width: 768px) {
  .p-top-what-we-do__content-title {
    font-size: 2.4rem;
  }
}
.p-top-what-we-do__box-wrapper {
  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;
  padding-block: 5.6rem;
  gap: clamp(1rem, 2vw, 3rem);
}
@media (max-width: 768px) {
  .p-top-what-we-do__box-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-top-what-we-do__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: clamp(32.7rem, 23vw, 33.4rem);
  max-width: 100%;
  aspect-ratio: 334/282;
  background-color: #fff;
  border-radius: 20px;
}
.p-top-what-we-do__box:nth-child(1) img {
  width: clamp(17.1rem, 13vw, 19.2rem);
}
.p-top-what-we-do__box:nth-child(2) img {
  width: clamp(13rem, 11vw, 16rem);
}
.p-top-what-we-do__box:nth-child(3) img {
  width: clamp(14rem, 13vw, 18rem);
}
.p-top-what-we-do__box-text {
  color: #535353;
  text-align: center;
  font-size: clamp(1.4rem, 1.1vw, 1.6rem);
  font-weight: 700;
  margin-top: 16px;
}
.p-top-what-we-do__text-img {
  margin-inline: auto;
  width: clamp(32.2rem, 32.7vw, 47.2rem);
  max-width: 100%;
}

.p-top-future {
  margin-top: 120px;
}
@media (max-width: 768px) {
  .p-top-future {
    margin-top: 50px;
  }
}
.p-top-future__title-wrapper {
  text-align: center;
}
.p-top-future__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  font-size: 3.6rem;
  font-size: clamp(2.4rem, 2.5vw, 3.6rem);
  font-weight: 700;
  background: -webkit-gradient(linear, left top, right top, color-stop(2.06%, #FF0DBD), color-stop(37.33%, #FF448A), color-stop(71.71%, #FF6071), color-stop(96.9%, #FF7B58));
  background: linear-gradient(90deg, #FF0DBD 2.06%, #FF448A 37.33%, #FF6071 71.71%, #FF7B58 96.9%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.p-top-future__subtitle {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0D2E3F;
  margin-top: 24px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .p-top-future__subtitle {
    font-size: 1.6rem;
    margin-top: 16px;
  }
}
.p-top-future__main-img {
  margin-top: 36px;
}
@media (max-width: 768px) {
  .p-top-future__main-img {
    margin-top: 32px;
  }
}
.p-top-future__main-img img {
  margin-inline: auto;
}

.p-top-info2 {
  background-image: url(../../assets/imgs/top/info2-bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding-top: 13.8rem;
  padding-bottom: 10.3rem;
}
@media (max-width: 768px) {
  .p-top-info2 {
    padding-top: 8.7rem;
    padding-bottom: 8.7rem;
  }
}
.p-top-info2__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 50px;
  max-width: 1200px;
  margin-inline: auto;
  padding-left: clamp(3rem, 5vw, 12rem);
  padding-right: clamp(3rem, 5vw, 12rem);
}
@media (max-width: 768px) {
  .p-top-info2__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0;
  }
}
.p-top-info2__content p {
  color: #fff;
  font-family: "Noto Sans JP";
}
.p-top-info2__content p:nth-of-type(1) {
  font-size: clamp(1.8rem, 1.6vw, 2.4rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.48px;
}
.p-top-info2__content p:nth-of-type(2) {
  margin-top: 4rem;
  font-size: clamp(2.3rem, 1.6vw, 3.6rem);
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .p-top-info2__content p:nth-of-type(2) {
    margin-top: 3.2rem;
  }
}
.p-top-info2__content p:nth-of-type(3) {
  margin-top: 4rem;
  font-size: clamp(1.5rem, 1.3vw, 2rem);
  font-weight: 500;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .p-top-info2__content p:nth-of-type(3) {
    margin-top: 3.2rem;
  }
}
.p-top-info2__btn {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: clamp(32.7rem, 34vw, 49.6rem);
  max-width: 100%;
  margin-top: 52px;
  padding-block: 12px;
  border-radius: 30px;
  background: linear-gradient(93deg, #FF00C8 -11.54%, #FF854E 94.98%);
  -webkit-box-shadow: 1px 3px 8px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 1px 3px 8px 0px rgba(0, 0, 0, 0.25);
}
@media (max-width: 768px) {
  .p-top-info2__btn {
    margin-inline: auto;
  }
}
.p-top-info2__btn-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #FFF;
  font-family: "Noto Sans JP";
  font-weight: 700;
}
.p-top-info2__btn-text-main {
  display: block;
  font-size: 2.4rem;
  font-size: clamp(2rem, 1.6vw, 2.4rem);
  line-height: 1.5;
}
.p-top-info2__btn-text-sub {
  display: block;
  font-size: 1.4rem;
  font-size: clamp(1rem, 1vw, 1.4rem);
  line-height: 1.5;
}
.p-top-info2__btn img {
  width: 31px;
  height: 31px;
}
.p-top-info2__phone {
  width: clamp(20rem, 20vw, 30rem);
}
@media (max-width: 768px) {
  .p-top-info2__phone {
    margin-top: 24px;
    margin-inline: auto;
  }
}

.p-top-human {
  position: relative;
  margin-block: 14.5rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  .p-top-human {
    margin-block: 8.8rem;
  }
}
.p-top-human__inner {
  padding-inline: clamp(1.5rem, 8.3vw, 12rem);
}
@media (max-width: 768px) {
  .p-top-human__inner {
    padding-inline: 1.5rem;
  }
}
.p-top-human__catch {
  color: #00A7D3;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.36px;
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .p-top-human__catch {
    margin-top: 2.4rem;
  }
}
.p-top-human__text {
  margin-top: 3.2rem;
  color: #0D2E3F;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .p-top-human {
    font-size: 1.5rem;
  }
}
.p-top-human__deco-img-01 {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
}
@media (max-width: 768px) {
  .p-top-human__deco-img-01 {
    top: auto;
    bottom: 30px;
  }
}
.p-top-human__img-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-column-gap: clamp(1rem, 4.6vw, 5rem);
     -moz-column-gap: clamp(1rem, 4.6vw, 5rem);
          column-gap: clamp(1rem, 4.6vw, 5rem);
  margin-top: 7.2rem;
  margin-right: 5rem;
  margin-left: -45px;
}
@media (max-width: 768px) {
  .p-top-human__img-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 4rem;
    margin-top: 5.6rem;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (min-width: 1700px) {
  .p-top-human__img-container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-right: auto;
    margin-left: auto;
  }
}
.p-top-human__img-left {
  max-width: clamp(32.7rem, 65vw, 90rem);
}
@media (max-width: 768px) {
  .p-top-human__img-left {
    margin-left: auto;
    margin-right: -2.3rem;
  }
}
.p-top-human__img-right {
  max-width: 54.8rem;
  max-width: clamp(25.1rem, 40vw, 65rem);
}
@media (max-width: 768px) {
  .p-top-human__img-right {
    margin-right: auto;
    margin-left: -5px;
  }
}

.p-top-message {
  margin-block: 14.5rem;
}
@media (max-width: 768px) {
  .p-top-message {
    margin-top: 8.8rem;
    margin-bottom: 11.2rem;
  }
}
.p-top-message__inner {
  padding-inline: clamp(1.5rem, 8.3vw, 12rem);
}
@media (max-width: 768px) {
  .p-top-message__inner {
    padding-inline: 1.5rem;
  }
}
.p-top-message__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .p-top-message__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-top-message__text {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .p-top-message__text {
    font-size: 1.5rem;
  }
}
.p-top-message__text:nth-of-type(n + 2) {
  margin-top: 3.2rem;
}
@media (max-width: 768px) {
  .p-top-message__text:nth-of-type(n + 2) {
    margin-top: 1.6rem;
  }
}
.p-top-message__text strong {
  font-weight: 700;
}
.p-top-message__name {
  margin-top: 3.2rem;
  text-align: right;
  font-size: 2rem;
  font-weight: 500;
}
@media (max-width: 768px) {
  .p-top-message__name {
    margin-top: 2.4rem;
    font-size: 1.6rem;
  }
}
.p-top-message__img-shunpei {
  max-width: 51.3rem;
  -ms-flex-item-align: center;
      align-self: center;
}
@media (max-width: 768px) {
  .p-top-message__img-shunpei {
    margin-top: 4rem;
    margin-left: -1.5rem;
  }
}

.p-top-plan .c-section-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  text-align: center;
}
.p-top-plan .c-section-title__en {
  display: block;
}

.p-top-plan {
  margin-inline: 3rem;
  padding-top: 10.4rem;
  padding-bottom: 9.6rem;
  border-radius: 30px;
  background: #F7F7F7;
}
@media (max-width: 768px) {
  .p-top-plan {
    margin-inline: 0;
  }
}
.p-top-plan__inner {
  padding-inline: clamp(1.5rem, 8.3vw, 12rem);
}
@media (max-width: 768px) {
  .p-top-plan__inner {
    padding-inline: 1.5rem;
  }
}
.p-top-plan__subtitle {
  margin-inline: auto;
  margin-top: 3.2rem;
  text-align: center;
}
.p-top-plan__subtitle-main {
  display: block;
  font-size: clamp(1.8rem, 1.66vw, 2.4rem);
  font-weight: 700;
}
.p-top-plan__subtitle-sub {
  display: block;
  color: #000;
  font-size: clamp(1.4rem, 1.1vw, 1.6rem);
  line-height: 1.5;
}
.p-top-plan__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 4.8rem;
     -moz-column-gap: 4.8rem;
          column-gap: 4.8rem;
  margin-top: 5.5rem;
}
@media (max-width: 768px) {
  .p-top-plan__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    row-gap: 3.2rem;
  }
}
.p-top-plan__card {
  position: relative;
  width: 48.3rem;
  max-width: 100%;
  padding-top: 7.3rem;
  padding-bottom: 5.7rem;
  border-radius: 30px;
  background: #FFF;
  -webkit-box-shadow: 0px 4px 13px 0px rgba(74, 81, 75, 0.24);
          box-shadow: 0px 4px 13px 0px rgba(74, 81, 75, 0.24);
}
.p-top-plan__card-balloon {
  position: absolute;
  top: -12%;
  left: -15%;
  width: clamp(10.1rem, 12.5vw, 18.6rem);
}
@media (max-width: 768px) {
  .p-top-plan__card-balloon {
    top: -3%;
    left: -4%;
  }
}
.p-top-plan__card-inner {
  max-width: 35rem;
  margin-inline: auto;
  padding-inline: 2rem;
}
.p-top-plan .p-top-plan__card-plan-note {
  display: block;
  text-align: center;
  color: #0D2E3F;
  font-size: 1.6rem;
  font-weight: 700;
}
.p-top-plan .p-top-plan__card-plan {
  text-align: center;
  font-size: clamp(2.6rem, 2.5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.5;
  background: -webkit-gradient(linear, left top, right top, from(#FF00C8), to(#FF854E));
  background: linear-gradient(90deg, #FF00C8 0%, #FF854E 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.p-top-plan__card-price {
  margin-top: 0.8rem;
  text-align: center;
  font-size: clamp(3.6rem, 3.47vw, 5rem);
  font-weight: 700;
  line-height: 1.5;
}
.p-top-plan__card-price span {
  font-size: clamp(1.6rem, 1.38vw, 2rem);
  font-weight: 700;
  line-height: 1.5;
}
.p-top-plan__card-service-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  row-gap: 8px;
  margin-inline: auto;
  margin-top: 3.2rem;
}
.p-top-plan__card-service {
  position: relative;
  padding-left: 3.5rem;
  font-size: clamp(1.5rem, 1.38vw, 2rem);
  font-weight: 700;
  line-height: 1.5;
}
.p-top-plan__card-service::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  content: "";
  width: 2.5rem;
  height: 2.5rem;
  aspect-ratio: 1/1;
  background-image: url(../..//assets/imgs/top/plan-check-icon.png);
  background-size: contain;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .p-top-plan__card-service::before {
    width: 1.8rem;
    height: 1.8rem;
  }
}
.p-top-plan__card-recommendation {
  margin-top: 3.4rem;
  text-align: center;
  font-size: clamp(1.8rem, 1.8vw, 2.6rem);
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .p-top-plan__card-recommendation {
    margin-top: 2.4rem;
  }
}
.p-top-plan__card-for-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  row-gap: 8px;
  margin-top: 0.8rem;
  margin-inline: auto;
}
.p-top-plan__card-for {
  font-size: clamp(1.2rem, 1.11vw, 1.6rem);
  line-height: 1.5;
}
.p-top-plan__btn-wrapper {
  margin-top: 3.2rem;
}
.p-top-plan__btn-wrapper .c-btn-01 {
  width: clamp(27.9rem, 0vw, 32rem);
  margin-inline: auto;
}
.p-top-plan__bottom-text-wrapper {
  margin-top: 5.6rem;
  text-align: center;
}
@media (max-width: 768px) {
  .p-top-plan__bottom-text-wrapper {
    text-align: left;
  }
}
.p-top-plan__bottom-text-wrapper p:first-child {
  color: #000;
  font-size: clamp(1.8rem, 1.66vw, 2.4rem);
  font-weight: 700;
  line-height: 1.5;
}
.p-top-plan__bottom-text-wrapper p:last-child {
  margin-top: 1rem;
  color: #000;
  font-size: clamp(1.4rem, 1.1vw, 1.6rem);
  font-weight: 400;
  line-height: 1.5;
}

.p-top-flow .c-section-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  text-align: center;
}
@media (max-width: 768px) {
  .p-top-flow .c-section-title {
    width: 100%;
    margin-right: auto;
    text-align: left;
  }
}
.p-top-flow .c-section-title__en {
  display: block;
}
.p-top-flow .c-section-title img {
  left: -1rem;
}
@media (max-width: 768px) {
  .p-top-flow .c-section-title img {
    left: -3rem;
  }
}

.p-top-flow {
  margin-top: 12.8rem;
}
@media (max-width: 768px) {
  .p-top-flow {
    margin-top: 8.8rem;
  }
}
.p-top-flow__inner {
  padding-inline: clamp(1.5rem, 8.3vw, 12rem);
}
@media (max-width: 768px) {
  .p-top-flow__inner {
    padding-inline: 1.5rem;
  }
}
.p-top-flow__container {
  margin-top: 5.8rem;
}
@media (max-width: 768px) {
  .p-top-flow__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 3.4rem;
  }
}
.p-top-flow__num-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 5rem;
}
@media (max-width: 768px) {
  .p-top-flow__num-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 0;
  }
}
.p-top-flow__num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 43.24px;
  height: 43.24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 50%;
  color: #FFF;
  font-family: "Roboto", sans-serif;
  font-size: 2.6rem;
  font-weight: 600;
  background-color: #20B1D4;
}
.p-top-flow__num-line {
  display: inline-block;
  background-color: #20B1D4;
  height: 0.2rem;
  width: 31.5rem;
}
@media (max-width: 768px) {
  .p-top-flow__num-line {
    width: 0.2rem;
    height: 14rem;
  }
}
.p-top-flow__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 3.7rem;
     -moz-column-gap: 3.7rem;
          column-gap: 3.7rem;
}
@media (max-width: 768px) {
  .p-top-flow__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-top-flow__item {
  width: 30rem;
  max-width: 100%;
}
@media (max-width: 768px) {
  .p-top-flow__item__item-img:nth-of-type(1) {
    width: 300px;
  }
}
.p-top-flow__item-img img {
  margin-inline: auto;
}
@media (max-width: 768px) {
  .p-top-flow__item-img img {
    max-width: 8rem;
  }
}
.p-top-flow__item-text {
  margin-top: 2.4rem;
  text-align: center;
  font-size: clamp(1.5rem, 1.25vw, 1.8rem);
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.72px;
}
@media (max-width: 768px) {
  .p-top-flow__item-text {
    margin-top: 0.8rem;
  }
}

.p-top-faq {
  position: relative;
  margin-block: 18.4rem;
}
@media (max-width: 768px) {
  .p-top-faq {
    margin-block: 8.8rem;
  }
}
.p-top-faq__deco-img-01 {
  position: absolute;
  z-index: -1;
  top: 719px;
  left: 0;
}
.p-top-faq__deco-img-02 {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
}
.p-top-faq .c-section-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  text-align: center;
}
.p-top-faq .c-section-title__en {
  display: block;
}
.p-top-faq__inner {
  max-width: 880px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .p-top-faq__inner {
    padding-inline: 25px;
  }
}
.p-top-faq__list {
  margin-top: 5.6rem;
}
.p-top-faq__item {
  border: 1px solid #109CCD;
  border-radius: 10px;
}
.p-top-faq__item:nth-of-type(n + 2) {
  margin-top: 16px;
}
.p-top-faq__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 3rem;
  padding-right: 4rem;
  padding-block: 2.1rem;
  width: 100%;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .p-top-faq__head {
    padding-left: 1.6rem;
    padding-right: 3.4rem;
  }
}
.p-top-faq__head-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 3.6rem;
  height: 3.6rem;
  aspect-ratio: 1/1;
  color: #fff;
  font-family: "Roboto", sans-serif;
  background-color: #109CCD;
  border-radius: 50%;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.1;
}
.p-top-faq__head-text {
  margin-left: 1.9rem;
  font-size: clamp(1.4rem, 1.1vw, 1.6rem);
  font-weight: 700;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .p-top-faq__head-text {
    font-size: 1.5rem;
  }
}
.p-top-faq__head-icon {
  margin-left: auto;
  font-size: 1.6rem;
  color: #109CCD;
}
.p-top-faq__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-inline: 3rem;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.4s ease, margin-top 0.4s ease;
  transition: height 0.4s ease, margin-top 0.4s ease;
  margin-top: 0;
}
@media (max-width: 768px) {
  .p-top-faq__body {
    padding-inline: 1.6rem;
  }
}
.p-top-faq__body.is-show {
  margin-block: 1.6rem;
}
.p-top-faq__body-label {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 3.6rem;
  aspect-ratio: 1/1;
  color: #fff;
  font-family: "Roboto", sans-serif;
  background-color: #109CCD;
  border-radius: 50%;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.1;
}
.p-top-faq__body-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 1.6rem;
  padding-right: 4rem;
  color: #1e3638;
  font-size: 1.6rem;
  font-weight: 400;
}
@media (max-width: 768px) {
  .p-top-faq__body-text {
    font-size: 1.5rem;
    padding-right: 0;
  }
}

.p-top-cta .c-btn-01 {
  width: 418px;
  border: none;
}
@media (max-width: 768px) {
  .p-top-cta .c-btn-01 {
    width: clamp(32.7rem, 28vw, 41.5rem);
  }
}

.p-top-cta {
  padding-block: 8rem;
  background-image: url(../..//assets/imgs/top/cta-bg.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media (max-width: 768px) {
  .p-top-cta {
    padding-block: 6.4rem;
  }
}
.p-top-cta__inner {
  max-width: 736px;
  margin-inline: auto;
}
.p-top-cta__title {
  color: #FFF;
  line-height: 1.5;
  font-size: clamp(2.4rem, 2.2vw, 3.2rem);
  font-weight: 600;
  text-align: center;
}
.p-top-cta__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-self: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  margin-top: 5.6rem;
}
@media (max-width: 768px) {
  .p-top-cta__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 4rem;
  }
}
.p-top-cta__btn-mail-wrapper {
  position: relative;
  margin-top: 7.4rem;
  color: white;
}
.p-top-cta__btn-mail {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  width: clamp(32.7rem, 28vw, 41.5rem);
  max-width: 100%;
  padding-block: 12px;
  border-radius: 60px;
  border: 2px solid #FF06C2;
}
@media (max-width: 768px) {
  .p-top-cta__btn-mail {
    margin-inline: auto;
  }
}
.p-top-cta__btn-mail img {
  width: 22px;
  height: 17px;
}
@media (max-width: 768px) {
  .p-top-cta__btn-mail img {
    width: 17px;
    height: 13px;
  }
}
.p-top-cta__btn-mail-text {
  position: absolute;
  top: -30px;
  left: 50%;
  width: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
}
.p-top-cta__btn-mail-address {
  font-size: clamp(1.8rem, 1.25vw, 2.2rem);
  font-weight: 700;
  background: -webkit-gradient(linear, left top, right top, from(#FF01C8), to(#FE844E));
  background: linear-gradient(90deg, #FF01C8 0%, #FE844E 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.p-top-cta__right {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-top-cta__line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 1.6rem;
}
.p-top-cta__line-text {
  display: block;
  color: #FFF;
  font-size: clamp(1.6rem, 1.25vw, 1.8rem);
  font-weight: 500;
}
.p-top-cta__line img {
  max-width: 14.4rem;
}

.p-top-contact .c-section-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  text-align: center;
}
.p-top-contact .c-section-title__en {
  display: block;
}
.p-top-contact .c-section-title img {
  left: -1rem;
}
@media (max-width: 768px) {
  .p-top-contact .c-section-title img {
    left: -3rem;
  }
}

.p-top-contact {
  margin-top: 14.4rem;
  margin-bottom: 14.4rem;
  padding-inline: 5rem;
}
@media (max-width: 768px) {
  .p-top-contact {
    margin-top: 6.4rem;
    padding-inline: 2rem;
    margin-bottom: 8.8rem;
  }
}
.p-top-contact__subtitle {
  margin-top: 3.2rem;
  text-align: center;
  color: #343434;
  font-size: 1.6rem;
  line-height: 1.5;
}
.p-top-contact__container {
  width: 1064px;
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 9rem;
  padding-block: 8rem;
  border-radius: 30px;
  background: #FAFAFA;
  -webkit-box-shadow: 0px 0px 19px 2px rgba(74, 81, 75, 0.22);
          box-shadow: 0px 0px 19px 2px rgba(74, 81, 75, 0.22);
}
@media (max-width: 768px) {
  .p-top-contact__container {
    padding-inline: 1.6rem;
    padding-top: 6.4rem;
    padding-bottom: 6.4rem;
  }
}

.p-top-practice__form {
  max-width: 800px;
  margin-inline: auto;
  margin-top: 5rem;
}
.p-top-practice__form dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.4rem;
}
.p-top-practice__form dl .p-top-practice__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-top-practice__form dl .p-top-practice__label {
  color: #0D2E3F;
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 1.05rem;
  line-height: 1.6;
}
.p-top-practice__form dl .p-top-practice__label .is-required {
  display: inline-block;
  background: #109CCD;
  color: #fff;
  font-size: 1rem;
  padding: 0.2rem 0.6rem;
  margin-right: 0.8rem;
}
.p-top-practice__form dl .p-top-practice__label .is-optional {
  display: inline-block;
  background: #888;
  color: #fff;
  font-size: 1.2rem;
  padding: 0.2rem 0.6rem;
  margin-right: 0.5rem;
  border-radius: 4px;
}
.p-top-practice__form dl input[type=text],
.p-top-practice__form dl input[type=email],
.p-top-practice__form dl input[type=tel],
.p-top-practice__form dl select,
.p-top-practice__form dl textarea {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.6rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.p-top-practice__form dl input[type=text]:focus,
.p-top-practice__form dl input[type=email]:focus,
.p-top-practice__form dl input[type=tel]:focus,
.p-top-practice__form dl select:focus,
.p-top-practice__form dl textarea:focus {
  outline: none;
  border-color: #0D2E3F;
}
.p-top-practice__form dl textarea {
  min-height: 12rem;
  resize: vertical;
}

.p-top-practice__acceptance {
  margin-top: 3.2rem;
  text-align: left;
}

.wpcf7-acceptance input[type=checkbox] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 2rem;
  height: 2rem;
  margin-right: 1.6rem;
  border: 1px solid #999;
  border-radius: 0.2rem;
  position: relative;
  cursor: pointer;
  -webkit-transition: background 0.2s, border-color 0.2s;
  transition: background 0.2s, border-color 0.2s;
}
.wpcf7-acceptance input[type=checkbox]::after {
  content: "";
  position: absolute;
  top: 0.3rem;
  left: 0.7rem;
  width: 0.6rem;
  height: 1.2rem;
  border: solid white;
  border-width: 0 0.3rem 0.3rem 0;
  -webkit-transform: rotate(45deg) scale(0);
          transform: rotate(45deg) scale(0);
  opacity: 0;
  -webkit-transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: opacity 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease;
  transition: transform 0.2s ease, opacity 0.2s ease, -webkit-transform 0.2s ease;
}
.wpcf7-acceptance input[type=checkbox]:checked {
  background: #0D2E3F;
  border-color: #0D2E3F;
}
.wpcf7-acceptance input[type=checkbox]:checked::after {
  -webkit-transform: rotate(45deg) scale(1);
          transform: rotate(45deg) scale(1);
  opacity: 1;
}

input[type=submit] {
  width: 326px;
  max-width: 100%;
  padding-block: 1.5rem;
  color: #FFF;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 36px;
  background: -webkit-gradient(linear, left top, right top, from(#FF00C8), to(#FF854E));
  background: linear-gradient(90deg, #FF00C8 0%, #FF854E 100%);
}

.p-top-practice__submit {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-top: 5.6rem;
}
.p-top-practice__submit::after {
  content: "";
  display: inline-block;
  position: absolute;
  z-index: 10000;
  top: 50%;
  right: 5.5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 31px;
  height: 31px;
  background-image: url(../../assets/imgs/components/btn-arrow.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.wpcf7-spinner {
  display: none;
}

.footer {
  padding-top: 2.4rem;
  padding-bottom: 4rem;
  background: #1A202C;
  color: #fff;
}
.footer__inner {
  padding-inline: clamp(2rem, 8.3vw, 12rem);
}
.footer__img-top img {
  margin-inline: auto;
}
@media (max-width: 768px) {
  .footer__img-top img {
    margin-inline: 0;
    margin-left: auto;
  }
}
.footer__logo img {
  margin-inline: auto;
}
.footer__login-link {
  display: block;
  color: #FFF;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
}
.footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 3.2rem;
     -moz-column-gap: 3.2rem;
          column-gap: 3.2rem;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .footer__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 2.4rem;
    margin-top: 4rem;
  }
}
.footer__nav-link {
  color: #FFF;
  font-size: 1.4rem;
  font-weight: 400;
}
.footer__copyright {
  margin-top: 4.8rem;
  color: #FFF;
  font-family: "Roboto", sans-serif;
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: -0.2px;
}

.a-course-content {
  margin-bottom: 14rem;
}
.a-course-content__inner {
  padding-inline: clamp(2rem, 8.3vw, 12rem);
}
@media (max-width: 768px) {
  .a-course-content__inner {
    padding-inline: 2rem;
  }
}
.a-course-content__title {
  margin-bottom: 4rem;
  font-size: clamp(2.8rem, 2.7vw, 4rem);
  font-weight: 700;
}
.a-course-content__chapter {
  border-bottom: 1px solid #D9D9D9;
  background: #E3E3E3;
}
.a-course-content__chapter-heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding-block: 3.2rem;
  padding-left: 0.8rem;
  padding-right: clamp(2.4rem, 9.9vw, 14.3rem);
  cursor: pointer;
}
@media (max-width: 768px) {
  .a-course-content__chapter-heading {
    -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;
    padding-block: 2.4rem;
    padding-inline: 2.4rem;
  }
}
.a-course-content__chapter-heading.is-open .a-course-content__chapter-num {
  background: -webkit-gradient(linear, left top, right top, from(#FF00C8), to(#FF854E));
  background: linear-gradient(90deg, #FF00C8 0%, #FF854E 100%);
  color: #fff;
  -webkit-text-fill-color: unset;
  background-clip: border-box;
  -webkit-background-clip: border-box;
}
.a-course-content__chapter-heading.is-open .a-course-content__chapter-more svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.a-course-content__chapter-heading.is-open .a-course-content__chapter-more circle {
  fill: #000;
}
.a-course-content__chapter-heading.is-open .a-course-content__chapter-more path {
  fill: #fff;
}
.a-course-content__chapter-num {
  display: inline-block;
  width: 12rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-block: 0.6rem;
  padding-inline: 1.6rem;
  text-align: center;
  color: #FFF;
  font-family: "Roboto", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 30px;
  border: 1px solid #FF00C8;
  background: -webkit-gradient(linear, left top, right top, from(#FF00C8), to(#FF854E));
  background: linear-gradient(90deg, #FF00C8 0%, #FF854E 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.a-course-content__chapter-title {
  margin-left: clamp(5rem, 8.8vw, 12.8rem);
  font-size: clamp(1.8rem, 1.52vw, 2.2rem);
  font-weight: 700;
}
@media (max-width: 768px) {
  .a-course-content__chapter-title {
    margin-left: 0;
    margin-top: 1.6rem;
  }
}
.a-course-content__chapter-more {
  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;
  gap: 0.8rem;
  margin-left: auto;
  font-size: clamp(1.4rem, 1.52vw, 1.6rem);
  font-weight: 600;
  line-height: 1.5rem;
}
@media (max-width: 768px) {
  .a-course-content__chapter-more {
    margin-top: 1.6rem;
  }
}
.a-course-content__chapter-more svg {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.a-course-content__chapter-more circle {
  fill: none;
}
.a-course-content__chapter-more path {
  fill: black;
}
.a-course-content__chapter-body {
  display: none;
  padding-block: 3.2rem;
  padding-left: clamp(0rem, 18vw, 24rem);
  border-bottom: 1px solid #D9D9D9;
  background: #FAFAFA;
  -webkit-box-shadow: 0px 1px 7px 0px rgba(209, 211, 212, 0.3);
          box-shadow: 0px 1px 7px 0px rgba(209, 211, 212, 0.3);
}
@media (max-width: 768px) {
  .a-course-content__chapter-body {
    padding-block: 2.4rem;
    padding-inline: 3rem;
  }
}
.a-course-content__chapter-body.is-show {
  display: block;
}
.a-course-content__chapter-cot {
  color: #000;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 150%;
}
.a-course-content__chapter-list {
  margin-top: 1.6rem;
}
.a-course-content__chapter-item:nth-of-type(n + 2) {
  margin-top: 1.6rem;
}
.a-course-content__chapter-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: #000;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 150%;
}
.a-course-content__chapter-link-num {
  display: block;
  margin-right: 1rem;
}
.a-course-content__chapter-link-title {
  display: block;
}

.a-lesson-content__inner {
  max-width: 920px;
  margin-inline: auto;
  padding-inline: 4rem;
}
@media (max-width: 768px) {
  .a-lesson-content__inner {
    padding-inline: 2rem;
  }
}
.a-lesson-content__title-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-items: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
  font-size: clamp(2rem, 2.22vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
}
.a-lesson-content__video-container {
  position: relative;
  width: 100%;
  margin-top: 5rem;
  padding-top: 56.25%;
}
@media (max-width: 768px) {
  .a-lesson-content__video-container {
    margin-top: 2.4rem;
  }
}
.a-lesson-content__video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.a-lesson-content__desc-wrapper {
  margin-top: 5rem;
}
@media (max-width: 768px) {
  .a-lesson-content__desc-wrapper {
    margin-top: 2.4rem;
  }
}
.a-lesson-content__desc-wrapper-title {
  margin-bottom: 4rem;
  font-size: clamp(2rem, 0vw, 1.6rem);
  font-weight: 700;
}
@media (max-width: 768px) {
  .a-lesson-content__desc-wrapper-title {
    margin-top: 3.2rem;
  }
}
.a-lesson-content__desc-text-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.a-lesson-content__desc-text-item:nth-of-type(n + 2) {
  margin-top: 4rem;
}
@media (max-width: 768px) {
  .a-lesson-content__desc-text-item:nth-of-type(n + 2) {
    margin-top: 2.4rem;
  }
}
.a-lesson-content__desc-point {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 12rem;
  font-family: "Roboto", sans-serif;
  font-size: clamp(1.6rem, 1.25vw, 1.8rem);
  font-weight: 600;
  line-height: 150%;
  letter-spacing: 0.36px;
}
@media (max-width: 768px) {
  .a-lesson-content__desc-point {
    width: 10rem;
  }
}
.a-lesson-content__desc-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: clamp(1.6rem, 1.25vw, 1.8rem);
  font-weight: 400;
  line-height: 150%;
}
.a-lesson-content__btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2.4rem;
     -moz-column-gap: 2.4rem;
          column-gap: 2.4rem;
  margin-top: 8.8rem;
  margin-bottom: 16rem;
}
@media (max-width: 768px) {
  .a-lesson-content__btn-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 2.4rem;
    margin-top: 4rem;
    margin-bottom: 10.4rem;
  }
}
.a-lesson-content__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 0.8rem;
     -moz-column-gap: 0.8rem;
          column-gap: 0.8rem;
  width: 23.8rem;
  max-width: 100%;
  padding-block: 1.2rem;
  font-size: 1.8rem;
  font-weight: 700;
  background: -webkit-gradient(linear, left top, right top, from(#FF00C8), to(#FF854E));
  background: linear-gradient(90deg, #FF00C8 0%, #FF854E 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  border-radius: 30px;
  border: 1px solid #FF00C8;
}

.p-privacy .c-page-heading__title-en {
  font-size: 4rem;
}
@media (max-width: 768px) {
  .p-privacy .c-page-heading__title-en {
    font-size: 2.6rem;
  }
}

.p-privacy-content {
  margin-bottom: 16rem;
}
@media (max-width: 768px) {
  .p-privacy-content {
    margin-bottom: 6.4rem;
  }
}
.p-privacy-content__top-text, .p-privacy-content__desc-subtitle, .p-privacy-content__desc-item {
  color: #000A02;
  font-size: clamp(1.4rem, 1.1vw, 1.6rem);
  font-weight: 400;
  line-height: 1.8;
}
.p-privacy-content__inner {
  padding-inline: 120px;
}
@media (max-width: 768px) {
  .p-privacy-content__inner {
    padding-inline: 2rem;
  }
}
.p-privacy-content__desc-wrapper .p-privacy-content__desc-title {
  margin-top: 3.2rem;
}
.p-privacy-content__desc-title {
  color: #000A02;
  font-size: clamp(1.6rem, 1.25vw, 1.8rem);
  font-weight: 700;
  line-height: 2;
}
.p-privacy-content__desc-list {
  margin-top: 0.8rem;
}
.p-terms .c-page-heading__title-en {
  font-size: 4rem;
}
@media (max-width: 768px) {
  .p-terms .c-page-heading__title-en {
    font-size: 2.6rem;
  }
}

.p-terms-content {
  margin-bottom: 16rem;
}
@media (max-width: 768px) {
  .p-terms-content {
    margin-bottom: 6.4rem;
  }
}
.p-terms-content__top-text, .p-terms-content__desc-subtitle, .p-terms-content__desc-item {
  color: #000A02;
  font-size: clamp(1.4rem, 1.1vw, 1.6rem);
  font-weight: 400;
  line-height: 1.8;
}
.p-terms-content__inner {
  padding-inline: 120px;
}
@media (max-width: 768px) {
  .p-terms-content__inner {
    padding-inline: 2rem;
  }
}
.p-terms-content__desc-wrapper .p-terms-content__desc-title {
  margin-top: 3.2rem;
}
.p-terms-content__desc-title {
  color: #000A02;
  font-size: clamp(1.6rem, 1.25vw, 1.8rem);
  font-weight: 700;
  line-height: 2;
}
.p-terms-content__desc-list {
  margin-top: 0.8rem;
}
.p-terms-content__bottom-text-wrapper {
  margin-top: 3.2rem;
}
.p-terms-content__bottom-text {
  color: #000A02;
  font-size: clamp(1.4rem, 1.25vw, 1.8rem);
  font-weight: 400;
  line-height: 1.8;
}

.p-tokushoho .c-page-heading__title-en {
  font-size: 4rem;
}
@media (max-width: 768px) {
  .p-tokushoho .c-page-heading__title-en {
    font-size: 2.2rem;
  }
}

.p-tokushoho-content {
  margin-bottom: 16rem;
}
@media (max-width: 768px) {
  .p-tokushoho-content {
    margin-bottom: 6.4rem;
  }
}
.p-tokushoho-content__desc-subtitle, .p-tokushoho-content__desc-item {
  color: #000A02;
  font-size: clamp(1.4rem, 1.1vw, 1.6rem);
  font-weight: 400;
  line-height: 1.8;
}
.p-tokushoho-content__inner {
  padding-inline: 120px;
}
@media (max-width: 768px) {
  .p-tokushoho-content__inner {
    padding-inline: 2rem;
  }
}
.p-tokushoho-content__desc-wrapper .p-tokushoho-content__desc-title {
  margin-top: 3.2rem;
}
.p-tokushoho-content__desc-title {
  color: #000A02;
  font-size: clamp(1.6rem, 1.25vw, 1.8rem);
  font-weight: 700;
  line-height: 2;
}
.p-tokushoho-content__desc-list {
  margin-top: 0.8rem;
}

.p-company .c-page-heading__title-en {
  font-size: 4rem;
}
@media (max-width: 768px) {
  .p-company .c-page-heading__title-en {
    font-size: 2.6rem;
  }
}

.p-company {
  position: relative;
  padding-bottom: 24rem;
}
@media (max-width: 768px) {
  .p-company {
    padding-bottom: 10.4rem;
  }
}
.p-company__bottom-deco-left, .p-company__bottom-deco-right {
  position: absolute;
  z-index: -1;
}
.p-company__bottom-deco-left {
  bottom: -1rem;
  left: 0;
}
.p-company__bottom-deco-right {
  bottom: 16rem;
  right: 0;
}

.p-company-fv__inner {
  padding-inline: clamp(0rem, 3.47vw, 5rem);
}
@media (max-width: 768px) {
  .p-company-fv__inner {
    padding-inline: 0;
  }
}
.p-company-fv__container {
  margin-top: 4rem;
  padding-block: 64px;
  border-radius: 3rem;
  background: #F7F7F7;
  text-align: center;
}
@media (max-width: 768px) {
  .p-company-fv__container {
    margin-top: 0;
    padding-top: 4.8rem;
    padding-bottom: 2.4rem;
    border-radius: 1.5rem;
  }
}
.p-company-fv__logo {
  margin-inline: auto;
  max-width: clamp(13.5rem, 11.4vw, 16.3rem);
}
.p-company-fv__title {
  margin-top: 4rem;
  color: #0D2E3F;
  text-align: center;
  font-size: clamp(2rem, 1.66vw, 2.4rem);
  font-weight: 700;
}
@media (max-width: 768px) {
  .p-company-fv__title {
    margin-top: 2.4rem;
  }
}
.p-company-fv__subtitle {
  margin-top: 3.2rem;
  color: #0D2E3F;
  font-size: clamp(1.6rem, 1.38vw, 2rem);
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .p-company-fv__subtitle {
    margin-top: 1.6rem;
  }
}
.p-company-fv__text {
  margin-top: 1.6rem;
  color: #0D2E3F;
  text-align: center;
  font-size: clamp(1.6rem, 1.38vw, 2rem);
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .p-company-fv {
    margin-top: 0;
  }
}

.p-company-info {
  margin-top: 11.2rem;
}
@media (max-width: 768px) {
  .p-company-info {
    margin-top: 7.2rem;
  }
}
.p-company-info__inner {
  padding-inline: 12rem;
  padding-inline: clamp(2.4rem, 8.3vw, 12rem);
}
.p-company-info__content {
  margin-top: 5.6rem;
}
@media (max-width: 768px) {
  .p-company-info__content {
    margin-top: 2.4rem;
  }
}
.p-company-info__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-block: 2.4rem;
  border-bottom: 1px solid #8E9A9B;
}
@media (max-width: 768px) {
  .p-company-info__item {
    -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;
    padding-block: 1.6rem;
  }
}
.p-company-info__dt {
  min-width: 16rem;
  color: #0D2E3F;
  font-size: 1.8rem;
  font-size: clamp(1.6rem, 1.25vw, 1.8rem);
  font-weight: 700;
  line-height: 150%;
}
.p-company-info__dd {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  color: #0D2E3F;
  font-size: 1.6rem;
  font-size: clamp(1.4rem, 1.1vw, 1.6rem);
  font-weight: 400;
  line-height: 150%;
}
@media (max-width: 768px) {
  .p-company-info__dd {
    margin-top: 0.4rem;
    line-height: 1.7;
  }
}
.p-company-info__dd-child:not(:first-child) {
  margin-top: 1.6rem;
}
@media (max-width: 768px) {
  .p-company-info__dd-child:not(:first-child) {
    margin-top: 0.4rem;
  }
}

.p-company-access {
  margin-top: 11.2rem;
}
@media (max-width: 768px) {
  .p-company-access {
    margin-top: 8.8rem;
  }
}
.p-company-access__inner {
  padding-inline: 12rem;
  padding-inline: clamp(2.4rem, 8.3vw, 12rem);
}
.p-company-access__address {
  margin-top: 4rem;
  color: #0D2E3F;
  font-size: 2rem;
  font-weight: 400;
  line-height: 150%;
}
.p-company-access__gmap {
  margin-top: 4rem;
}
.p-company-access__gmap iframe {
  width: 100%;
  border-radius: 30px;
  aspect-ratio: 400/167;
}
@media (max-width: 768px) {
  .p-company-access__gmap iframe {
    height: 25.9rem;
  }
}

.p-company-history {
  margin-top: 11.2rem;
}
@media (max-width: 768px) {
  .p-company-history {
    margin-top: 8.8rem;
  }
}
.p-company-history__inner {
  padding-inline: clamp(2.3rem, 8.3vw, 12rem);
}
@media (max-width: 768px) {
  .p-company-history__inner {
    padding-inline: 2.4rem;
  }
}
.p-company-history__content {
  margin-top: 6.4rem;
}
@media (max-width: 768px) {
  .p-company-history__content {
    margin-top: 4rem;
  }
}
.p-company-history__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 8.3rem;
}
@media (max-width: 768px) {
  .p-company-history__item {
    min-height: 10.3rem;
  }
}
.p-company-history__item-date {
  min-width: 11rem;
  color: #0D2E3F;
  font-size: clamp(1.6rem, 1.25vw, 1.8rem);
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .p-company-history__item-date {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    min-width: 6.2rem;
    margin-left: 0.8rem;
  }
}
.p-company-history__item-dot {
  position: relative;
  z-index: 2;
  display: block;
  width: 2rem;
  height: 2rem;
  margin-inline: 4.8rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #20B1D4;
}
@media (max-width: 768px) {
  .p-company-history__item-dot {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-inline: 0;
  }
}
.p-company-history__item-dot::before {
  position: absolute;
  z-index: 1;
  top: 2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: "";
  width: 2px;
  height: 6.6rem;
  background-color: red;
  background-color: #20B1D4;
}
@media (max-width: 768px) {
  .p-company-history__item-dot::before {
    height: 8.6rem;
  }
}
.p-company-history__item:last-child .p-company-history__item-dot::before {
  content: none;
}
.p-company-history__item-text {
  color: #0D2E3F;
  font-size: clamp(1.4rem, 1.1vw, 1.6rem);
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .p-company-history__item-text {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin-left: 1.6rem;
  }
}

.p-404 {
  margin-bottom: 16rem;
}
.p-404 .c-page-heading__title-en {
  font-size: 4rem;
}
@media (max-width: 768px) {
  .p-404 .c-page-heading__title-en {
    font-size: 2.6rem;
  }
}

.p-404-content__message {
  text-align: center;
  font-size: clamp(2rem, 2.2vw, 3.2rem);
  font-weight: 600;
  line-height: 1.5;
}
.p-404-content__text-wrapper {
  margin-inline: auto;
  margin-top: 6.4rem;
  text-align: center;
  font-size: clamp(1.4rem, 1.1vw, 1.6em);
  font-weight: 400;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .p-404-content__text-wrapper {
    text-align: left;
  }
}
.p-404-content__text:nth-last-of-type(1) {
  margin-top: 2rem;
}
.p-404-content__btn-wrapper {
  margin-top: 13.2rem;
}
.p-404-content__btn-wrapper a {
  margin-inline: auto;
}

.l-page {
  max-width: 1000px;
  margin-inline: auto;
  margin-block: 10rem;
  padding-inline: 5rem;
}
@media (max-width: 768px) {
  .l-page {
    padding-inline: 1rem;
  }
}

.pmpro_btn {
  border-radius: 30px;
  border: 1px solid #FFF !important;
  background: linear-gradient(93deg, #FF00C8 -11.54%, #FF854E 94.98%);
  -webkit-box-shadow: 1px 3px 8px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 1px 3px 8px 0px rgba(0, 0, 0, 0.25);
  color: #fff !important;
}

.OrderDetails-item {
  display: none !important;
}

strong {
  font-weight: normal;
}

.inner {
  max-width: 1440px;
  margin-inline: auto;
}

.pc-only {
  display: block;
}
@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

.tb-only {
  display: none;
}
@media (min-width: 768px) and (max-width: 1000px) {
  .tb-only {
    display: block;
  }
}

.sp-only {
  display: none;
}
@media (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

.c-section-title {
  position: relative;
  z-index: 5;
}
.c-section-title img {
  position: absolute;
  z-index: -1;
  top: -1rem;
  left: -5rem;
  width: 7.9rem;
}
@media (max-width: 768px) {
  .c-section-title img {
    width: 4.3rem;
    top: 0rem;
    left: -3rem;
  }
}
.c-section-title__en {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  color: #0D2E3F;
  font-family: "Roboto", sans-serif;
  font-size: 5rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .c-section-title__en {
    font-size: 3.2rem;
  }
}
.c-section-title__jp {
  font-family: "Noto Sans JP";
  font-size: 2rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .c-section-title__jp {
    font-size: 1.6rem;
  }
}

.header {
  position: sticky;
  top: 0;
  z-index: 999;
  padding-block: 2.7rem;
  background-color: #fff;
  -webkit-box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.14);
          box-shadow: 0px 4px 11px 0px rgba(0, 0, 0, 0.14);
}
@media (max-width: 1000px) {
  .header {
    display: none;
  }
}
.header__inner {
  padding-left: clamp(2.5rem, 6.31vw, 9.1rem);
  padding-right: clamp(2.5rem, 2.84vw, 4.1rem);
}
.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__logo {
  width: clamp(15rem, 13vw, 20rem);
}
.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(1rem, 1vw, 3rem);
}
.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
.header__nav-item a {
  color: #0D2E3F;
  font-weight: 600;
  font-size: clamp(1.2rem, 1.1vw, 1.6rem);
}
.header__btn-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 1.6rem;
     -moz-column-gap: 1.6rem;
          column-gap: 1.6rem;
}
.header__btn {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: 20px;
  padding-block: 10px;
  border-radius: 30px;
  -webkit-box-shadow: 0px 4px 10px 0px rgba(74, 81, 75, 0.4);
          box-shadow: 0px 4px 10px 0px rgba(74, 81, 75, 0.4);
  width: clamp(15rem, 15vw, 21.9rem);
}
.header__btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: 30px;
  background: -webkit-gradient(linear, left top, right top, from(#FF00C8), to(#FF854E)) border-box;
  background: linear-gradient(90deg, #FF00C8, #FF854E) border-box;
  mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)), -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
  mask-clip: padding-box, border-box;
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)), -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
  -webkit-mask-clip: padding-box, border-box;
  -webkit-mask-composite: destination-out;
  z-index: 1;
}
.header__btn-icon--dl {
  width: clamp(2rem, 0.2vw, 3rem);
  margin-right: 1rem;
}
.header__btn-icon--login {
  width: clamp(1.8rem, 0.2vw, 2.3rem);
  margin-right: 2rem;
}
.header__btn-text-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__btn-text {
  font-size: clamp(1.2rem, 1.1vw, 1.6rem);
  background: -webkit-gradient(linear, left top, left bottom, from(#FF00C8), to(#FF854E));
  background: linear-gradient(180deg, #FF00C8 0%, #FF854E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.header__btn-text--small {
  font-size: clamp(0.8rem, 0.8vw, 1.2rem);
}

.sp-header {
  position: sticky;
  z-index: 999;
  top: 0;
  -webkit-box-shadow: 0px 2px 11px 0px rgba(0, 0, 0, 0.14);
          box-shadow: 0px 2px 11px 0px rgba(0, 0, 0, 0.14);
  display: none;
  height: 55px;
  background-color: #fff;
}
@media (max-width: 1000px) {
  .sp-header {
    display: block;
  }
}
.sp-header__inner {
  padding-left: 1.5rem;
  padding-right: 2.5rem;
  padding-block: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.sp-header__logo {
  display: block;
  width: 15rem;
}
.sp-header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.4rem;
}
.sp-header__icon-login {
  display: block;
  width: 2.6rem;
}
.sp-header__icon-menu {
  width: 3rem;
  height: 2.4rem;
  position: relative;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
}
.sp-header__bar {
  display: block;
  height: 3px;
  width: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#FF00C8), to(#FF854E));
  background: linear-gradient(90deg, #FF00C8, #FF854E);
  border-radius: 2px;
  -webkit-transition: opacity 0.4s, -webkit-transform 0.4s;
  transition: opacity 0.4s, -webkit-transform 0.4s;
  transition: transform 0.4s, opacity 0.4s;
  transition: transform 0.4s, opacity 0.4s, -webkit-transform 0.4s;
}
.sp-header__icon-menu.is-active {
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}
.sp-header__icon-menu.is-active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-45deg);
          transform: translateY(10px) rotate(-45deg);
}
.sp-header__icon-menu.is-active span:nth-of-type(2) {
  -webkit-transform: translateY(0) rotate(45deg);
          transform: translateY(0) rotate(45deg);
}
.sp-header__icon-menu.is-active span:nth-of-type(3) {
  opacity: 0;
}

.sp-header-content {
  position: relative;
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  background-color: #fff;
  height: 100svh;
}
.sp-header-content.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.sp-header-content__btns-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: linear-gradient(94deg, #FF00C8 0.15%, #FF854E 100.44%);
}
.sp-header-content__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  row-gap: 0.8rem;
  padding-top: 2.6rem;
  padding-bottom: 2.3rem;
}
.sp-header-content__btn:first-child {
  border-right: 1px solid #fff;
}
.sp-header-content__btn-text {
  color: #FFF;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 500;
}
.sp-header-content__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.4rem;
  margin-top: 4rem;
}
.sp-header-content__nav-item a {
  color: #1A202C;
  font-family: "Noto Sans JP";
  font-weight: 500;
  line-height: 1.5;
}

.footer {
  padding-top: 2.4rem;
  padding-bottom: 4rem;
  background: #1A202C;
  color: #fff;
}
.footer__inner {
  padding-inline: clamp(2rem, 8.3vw, 12rem);
}
.footer__img-top img {
  margin-inline: auto;
}
@media (max-width: 768px) {
  .footer__img-top img {
    margin-inline: 0;
    margin-left: auto;
  }
}
.footer__logo {
  width: 20rem;
  margin-inline: auto;
  margin-top: 5rem;
}
.footer__login-link {
  display: block;
  margin-top: 3rem;
  color: #FFF;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
}
.footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 3.2rem;
     -moz-column-gap: 3.2rem;
          column-gap: 3.2rem;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  .footer__nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 2.4rem;
    margin-top: 4rem;
  }
}
.footer__nav-link {
  color: #FFF;
  font-size: 1.4rem;
  font-weight: 400;
}
.footer__copyright {
  margin-top: 4.8rem;
  color: #FFF;
  font-family: "Roboto", sans-serif;
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: -0.2px;
}

.c-page-heading {
  padding-block: 10.4rem;
  text-align: center;
  background-image: url(../../assets/imgs/page/heading-bg_pc.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}
@media (max-width: 768px) {
  .c-page-heading {
    background-image: url(../../assets/imgs/page/heading-bg_sp.png);
    background-size: contain;
    padding-top: 8.6rem;
    padding-bottom: 9.2rem;
  }
}
.c-page-heading__title-en {
  font-family: "Roboto", sans-serif;
  font-size: 6.4rem;
  font-size: clamp(4rem, 4.4vw, 6.4rem);
  font-weight: 700;
}
.c-page-heading__title-jp {
  margin-top: 1.6rem;
  font-family: "Roboto", sans-serif;
  font-size: 2.4rem;
  font-size: clamp(1.6rem, 1.1vw, 2.4rem);
  font-weight: 700;
}

.c-btn-01 {
  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;
  -webkit-column-gap: 0.4rem;
     -moz-column-gap: 0.4rem;
          column-gap: 0.4rem;
  width: clamp(34rem, 34vw, 49.6rem);
  max-width: 100%;
  padding-block: 1.5rem;
  font-size: clamp(1.4rem, 1.3vw, 2rem);
  font-weight: 700;
  line-height: 1.5;
  border-radius: 30px;
  border: 1px solid;
  -webkit-box-shadow: 1px 3px 8px rgba(0, 0, 0, 0.25);
          box-shadow: 1px 3px 8px rgba(0, 0, 0, 0.25);
  text-align: center;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .c-btn-01 {
    margin-inline: auto;
    padding-block: 1.2rem;
  }
}
.c-btn-01 img {
  width: 3.1rem;
  height: 3.1rem;
}
.c-btn-01--filled {
  background: linear-gradient(93deg, #FF00C8 -11.54%, #FF854E 94.98%);
  color: #FFF;
  border-color: #FFF;
}
.c-btn-01--filled .c-btn-01__icon {
  background-image: url("../../../assets/imgs/components/btn-arrow.png");
}
.c-btn-01--filled:hover .c-btn-01__icon {
  background-image: url("../../../assets/imgs/components/btn-arrow-fill.png");
}
.c-btn-01--outline {
  background: transparent;
  color: transparent;
  background-image: linear-gradient(93deg, #FF00C8 -11.54%, #FF854E 94.98%);
  -webkit-background-clip: text;
  background-clip: text;
  -o-border-image: linear-gradient(93deg, #FF00C8 -11.54%, #FF854E 94.98%);
     border-image: linear-gradient(93deg, #FF00C8 -11.54%, #FF854E 94.98%);
  border-image-slice: 1;
  border: 2px solid #FF00C8;
}
.c-btn-01--outline:hover {
  background: linear-gradient(93deg, #FF00C8 -11.54%, #FF854E 94.98%);
  color: #FFF;
  -webkit-background-clip: border-box;
  background-clip: border-box;
}
.c-btn-01--outline:hover .c-btn-01__icon {
  background-image: url("../../../assets/imgs/components/btn-arrow.png");
}