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

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

ol,
ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

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

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

button {
  margin: 0;
  padding: 0;
  border: none;
  box-shadow: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
  vertical-align: top;
}

/* (フォント変数)
***************************************************************/
/* (カラー変数テキスト)
***************************************************************/
/* (背景カラー変数背景)
***************************************************************/
/*(z-index)
***************************************************************/
/* rem使用時のルートフォント設定(SPファースト)
***************************************************************/
/* rem使用時のルートフォント設定(PCファースト)
***************************************************************/
html {
  font-size: 62.5%;
}
@media screen and (max-width: 1280px) and (min-width: 768px) {
  html {
    font-size: calc(10 / 1280 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 62.5%;
  }
}
@media screen and (max-width: 767px) {
  html {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  html::-webkit-scrollbar {
    display: none;
  }
}

/* base（基本）設定
***************************************************************/
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #2D2D32;
}
body.no-scroll {
  overflow: hidden !important;
}
body.is-drawerActive {
  overflow: hidden;
}

/*下からふわっ（強め） */
.fade-in-up--strong {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s, transform 1s;
}
.fade-in-up--strong.js-show {
  opacity: 1;
  transform: translateY(0);
}

/*下からふわっ */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s, transform 1s;
}
.fade-in-up.js-show {
  opacity: 1;
  transform: translateY(0);
}

/*時間差でふわっふわっ（GSAP用） */
.fadeIn-delay {
  transform: translateY(30px);
  opacity: 0;
}

/*その場でふわっ */
.fade-in {
  opacity: 0;
  transition: opacity 1s;
}
.fade-in.js-show {
  opacity: 1;
}

/*左下からパタ */
.flipLeftTop.js-show {
  animation-name: flipLeftTopAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes flipLeftTopAnime {
  from {
    transform: translate(-20px, 60px) rotate(-10deg);
    opacity: 0;
  }
  to {
    transform: translate(0, 0) rotate(0deg);
    opacity: 1;
  }
}

/*Y軸（横へくるっ） */
.rotateY.js-show {
  animation-name: rotateYAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
@keyframes rotateYAnime {
  from {
    transform: rotateY(-90deg);
    opacity: 0;
  }
  to {
    transform: rotateY(-360deg);
    opacity: 1;
  }
}

/*ホバーでキラっ*/
.kira {
  display: inline-block;
  position: relative;
  transition: 0.3s;
  overflow: hidden;
  cursor: pointer;
}
.kira::before {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
  transition: 0.5s;
}
.kira:hover::before {
  animation: flash 0.75s;
}

@keyframes flash {
  100% {
    left: 120%;
  }
}
/* 左からしゅっと出現 */
.fadeLeft.js-show {
  animation-name: fadeLeftAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 右からしゅっと出現 */
.fadeRight.js-show {
  animation-name: fadeRightAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.l-inner {
  width: 1280px;
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 4rem;
}
@media screen and (max-width: 767px) {
  .l-inner {
    width: 40rem;
    padding-inline: 2rem;
  }
}

.l-header {
  width: 100%;
  position: fixed; /*header固定*/
  top: 0;
  left: 0;
  z-index: 100;
  background: #fefefe;
  height: 7.2rem;
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 5.2rem;
  }
}

body { /*drawerOPEN時背景を固定*/ }
body.drawer-active {
  height: 100%;
  overflow: hidden;
}

.l-header__inner {
  display: grid;
  grid-template-columns: 8.3rem 1fr;
  padding-inline: 4rem;
  padding-block: 1.6rem;
  max-width: 128rem;
  margin-inline: auto;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    grid-template-columns: 7.1rem 1fr;
    padding-inline: 2rem;
    padding-block: 1.4rem;
  }
}

.l-header__logo {
  width: 8.3rem;
  height: auto;
}
.l-header__logo img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    width: 7.1rem;
  }
}

.l-header__nav {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 1rem;
  padding-right: 1.3rem;
}
@media screen and (max-width: 767px) {
  .l-header__nav {
    display: none;
  }
}

.l-header__list {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.l-header__list > li a {
  color: #2D2D32;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  padding-inline: 0.4rem;
  transition: all 0.3s ease;
  position: relative;
}
.l-header__list > li a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background: #64629D;
  left: 0;
  top: calc(100% + 0.3rem);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
@media (any-hover: hover) {
  .l-header__list > li a:hover::after {
    transform: scale(1, 1);
  }
}

.l-header__drawer-icon {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-header__drawer-icon {
    position: fixed;
    top: 1rem;
    right: 2rem;
    width: 2.1rem;
    height: 3.3rem;
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
  }
  .l-header__drawer-icon .l-header__drawer-icon-text {
    text-align: center;
    font-size: 0.6rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    color: #64629D;
    transition: opacity 0.3s linear;
  }
  .l-header__drawer-icon .l-header__drawer-icon-bars {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.6rem;
  }
  .l-header__drawer-icon .l-header__drawer-icon-bars .l-header__drawer-icon-bar {
    background: #64629D;
    border-radius: 2px;
    height: 0.3rem;
    transition: all 0.3s linear;
  }
  .l-header__drawer-icon .l-header__drawer-icon-bars .l-header__drawer-icon-bar:nth-of-type(1) {
    width: 100%;
  }
  .l-header__drawer-icon .l-header__drawer-icon-bars .l-header__drawer-icon-bar:nth-of-type(2) {
    width: 62%;
  }
  .l-header__drawer-icon .l-header__drawer-icon-bars .l-header__drawer-icon-bar:nth-of-type(3) {
    width: 100%;
  }
  .l-header__drawer-icon.is-checked .l-header__drawer-icon-text {
    opacity: 0;
  }
  .l-header__drawer-icon.is-checked .l-header__drawer-icon-bars .l-header__drawer-icon-bar:nth-of-type(1) {
    transform: rotate(45deg);
    translate: 0 0.3rem;
  }
  .l-header__drawer-icon.is-checked .l-header__drawer-icon-bars .l-header__drawer-icon-bar:nth-of-type(2) {
    display: none;
  }
  .l-header__drawer-icon.is-checked .l-header__drawer-icon-bars .l-header__drawer-icon-bar:nth-of-type(3) {
    transform: rotate(-45deg);
    translate: 0 -0.6rem;
  }
}

/* (ドロワー中身）
***************************************************************/
.l-header__drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  background: #EDECFC;
  z-index: 20;
  overflow-y: scroll;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}
.l-header__drawer.is-checked {
  opacity: 1;
  pointer-events: auto;
}

.l-header__drawer-body {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  padding-block: 13.4rem 4rem;
  padding-inline: 2rem;
}

.l-header__drawer-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  flex-wrap: wrap;
  align-content: center;
}
.l-header__drawer-list li a {
  color: #2D2D32;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  padding-left: 4.1rem;
  position: relative;
}
.l-header__drawer-list li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 2.8rem;
  height: 2.8rem;
  aspect-ratio: 0;
  background: url("../img/icon_drawer-menu.png") no-repeat center center/cover;
}

.l-header__drawer-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.4rem;
  margin-top: 6.2rem;
}

.l-footer {
  background: #000;
}

.l-footer__inner {
  padding-block: 2.9rem 2.7rem;
}
@media screen and (max-width: 767px) {
  .l-footer__inner {
    padding-block: 4rem;
  }
}

.l-footer__container {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .l-footer__container {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
    gap: 3.2rem;
  }
}

.l-footer__company {
  display: flex;
  flex-direction: column;
  gap: 1.9rem;
}
@media screen and (max-width: 767px) {
  .l-footer__company {
    gap: 0;
  }
}

.l-footer__logo {
  width: 6.9rem;
}
@media screen and (max-width: 767px) {
  .l-footer__logo {
    margin-inline: auto;
  }
}

.l-footer__company-list {
  display: flex;
  gap: 1.4rem;
}
@media screen and (max-width: 767px) {
  .l-footer__company-list {
    flex-direction: column;
    margin-top: 1.4rem;
    text-align: center;
  }
}

.l-footer__company-list li a {
  color: #FFF;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
}

.l-footer__copy {
  display: flex;
  gap: 1.4rem;
}
.l-footer__copy li {
  color: #FFF;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  .l-footer__copy {
    margin-top: 2.8rem;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

.l-footer__sns {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding-right: 1.6rem;
  margin-top: 1.7rem;
}
@media screen and (max-width: 767px) {
  .l-footer__sns {
    padding-right: 0;
    margin-top: 0;
  }
}

.l-footer__sns-text {
  color: #FFF;
  font-family: "Jost", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
}

.l-footer__sns-list {
  display: flex;
  gap: 1.8rem;
}
@media screen and (max-width: 767px) {
  .l-footer__sns-list {
    gap: 2.2rem;
  }
}

.c-button {
  display: inline-block;
  color: #FFF;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  transition: all 0.3s ease;
  border: 2px solid #64629D;
  padding-block: 1.6rem;
  background: #64629D;
  border-radius: 2.7rem;
  box-shadow: 0px 0.4rem 0.6rem 0px rgba(0, 0, 0, 0.24);
  width: 25rem;
}
@media screen and (max-width: 767px) {
  .c-button {
    width: 30rem;
    padding-block: 1.6rem 2rem;
  }
}
.c-button:hover {
  transform: translateY(-0.5rem);
}

.c-button--white {
  background: #fff;
  border: 2px solid currentColor;
  color: #64629D;
}

.c-button--large {
  width: 40rem;
  border-radius: 5rem;
  padding-block: 2.1rem;
  font-size: 2.4rem;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .c-button--large {
    font-size: 1.8rem;
    width: 30rem;
    padding-block: 1.6rem 2rem;
  }
}

.c-button__header {
  display: inline-block;
  border-radius: 2.5rem;
  color: #FFF;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  background: #64629D;
  padding-block: 1.2rem;
  width: 18rem;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .c-button__header:hover {
    transform: translateY(-0.5rem);
  }
}

.c-button__price {
  display: inline-block;
  background: #FFFFFF;
  color: #2D2D32;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  border: 2px solid currentColor;
  transition: all 0.3s ease;
  width: 23.4rem;
  padding-block: 1.4rem;
  border-radius: 5rem;
}
@media screen and (max-width: 767px) {
  .c-button__price {
    font-size: 1.6rem;
    width: 16.6rem;
    padding-block: 1.1rem;
  }
}
.c-button__price:hover {
  background: #2D2D32;
  color: #FFFFFF;
}

.c-button__price--clear {
  color: #FFFFFF;
  background: transparent;
}
.c-button__price--clear:hover {
  background: #FFFFFF;
  color: #64629D;
}

.c-button__price--purple {
  color: #FFFFFF;
  background: #64629D;
  border: 2px solid #64629D;
}
.c-button__price--purple:hover {
  background: #FFFFFF;
  color: #64629D;
}

.c-section-head {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-section-head {
    gap: 1.2rem;
  }
}

.c-section-head__sub {
  font-family: "Jost", sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1;
  color: #9F9EC1;
}
@media screen and (max-width: 767px) {
  .c-section-head__sub {
    font-size: 2.2rem;
  }
}

.c-section-head__title {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #64629D;
}
@media screen and (max-width: 767px) {
  .c-section-head__title {
    font-size: 3rem;
    line-height: 1.4;
    letter-spacing: 0.05em;
  }
  .p-users .c-section-head__title {
    line-height: 1;
  }
  .p-flow .c-section-head__title {
    line-height: 1;
  }
  .p-price .c-section-head__title {
    line-height: 1;
  }
  .p-faq .c-section-head__title {
    line-height: 1;
  }
}
.c-section-head__title span {
  font-size: 6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #64629D;
}
@media screen and (max-width: 767px) {
  .c-section-head__title span {
    font-size: 3.8rem;
  }
}

.p-mv {
  background: #EDECFC;
  margin-top: 7.2rem;
}
@media screen and (max-width: 767px) {
  .p-mv {
    margin-top: 5.2rem;
  }
}

.p-mv__inner {
  padding-block: 3.3rem 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-mv__inner {
    padding-block: 6rem;
    min-height: 100vh;
    min-height: 100svh;
  }
}

.p-mv__contents {
  display: flex;
  -moz-column-gap: 1.6rem;
       column-gap: 1.6rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-mv__contents {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

.p-mv__body {
  margin-top: 0.4rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-mv__body {
    display: contents;
  }
}

.p-mv__title {
  font-size: 6rem;
  font-weight: 700;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .p-mv__title {
    font-size: 3rem;
    line-height: 1.6;
    order: 1;
  }
}

.p-mv__text {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.8;
  margin-top: 2.4rem;
}
@media screen and (max-width: 767px) {
  .p-mv__text {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-top: 1.6rem;
    order: 2;
  }
}

.p-mv__link {
  margin-top: 3.3rem;
  display: flex;
  gap: 3.7rem;
}
@media screen and (max-width: 767px) {
  .p-mv__link {
    flex-direction: column;
    gap: 3.2rem;
    margin-top: -1.5rem;
    order: 4;
    margin-inline: auto;
  }
}

.p-mv__img {
  width: 51.5rem;
  height: 51.5rem;
  aspect-ratio: 1/1;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .p-mv__img {
    width: 30.5rem;
    height: 30.5rem;
    order: 3;
    margin-top: -2.5rem;
    text-align: center;
    margin-left: 1.1rem;
  }
}

.p-about__inner {
  padding-block: 10rem;
}
@media screen and (max-width: 767px) {
  .p-about__inner {
    padding-block: 8rem 6rem;
  }
}

.p-about__text {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.8;
  text-align: center;
  margin-top: 2.9rem;
}
.p-about__text span {
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-about__text {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-top: 2.4rem;
  }
}

.p-about__link {
  text-align: center;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-about__link {
    margin-top: 2.4rem;
  }
}

.p-feature {
  background: #F9F9F9;
  overflow-x: hidden;
}

.p-feature__inner {
  padding-block: 9.5rem 10rem;
}
@media screen and (max-width: 767px) {
  .p-feature__inner {
    padding-block: 6rem;
  }
}

.p-feature__container {
  margin-top: 25rem;
}
@media screen and (max-width: 767px) {
  .p-feature__container {
    margin-top: 24.1rem;
  }
}

.p-feature__contents {
  position: relative;
}
.p-feature__contents:nth-of-type(2) {
  margin-top: 15.3rem;
}
.p-feature__contents:nth-of-type(3) {
  margin-top: 26.3rem;
}
@media screen and (max-width: 767px) {
  .p-feature__contents:nth-of-type(2) {
    margin-top: 25.8rem;
  }
  .p-feature__contents:nth-of-type(3) {
    margin-top: 26.5rem;
  }
}

.p-feature__card {
  background: #fff;
  border-radius: 3rem;
  width: 74.2rem;
  max-width: 100%;
  min-height: 36.7rem;
  padding: 6.5rem 1rem 4rem 4rem;
}
.contents--02 .p-feature__card {
  margin-right: 1rem;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-feature__card {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    max-width: 100vw;
    min-height: auto;
    border-radius: 1.6rem;
    padding: 4rem 1rem 4rem 2rem;
  }
  .contents--01 .p-feature__card {
    padding: 4.9rem 1rem 4rem 2rem;
  }
  .contents--02 .p-feature__card {
    margin: 0 calc(50% - 50vw);
  }
}

.p-feature__card-inner {
  display: flex;
  -moz-column-gap: 1.8rem;
       column-gap: 1.8rem;
}
@media screen and (max-width: 767px) {
  .p-feature__card-inner {
    flex-direction: column;
    -moz-column-gap: 0;
         column-gap: 0;
    width: 40rem;
    max-width: 100%;
    margin-inline: auto;
  }
}

.p-feature__card-number {
  font-family: "Jost", sans-serif;
  color: #64629D;
  font-size: 7.2rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-feature__card-number {
    font-size: 4.2rem;
  }
}

.p-feature__card-body {
  display: flex;
  flex-direction: column;
  row-gap: 1.7rem;
}
@media screen and (max-width: 767px) {
  .p-feature__card-body {
    row-gap: 0.8rem;
    margin-top: 0.1rem;
  }
}

.p-feature__card-title {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: normal;
}
.contents--02 .p-feature__card-title {
  font-feature-settings: "palt" 1;
}
@media screen and (max-width: 767px) {
  .p-feature__card-title {
    font-size: 2.2rem;
  }
}

.p-feature__card-text {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
  width: 47rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .p-feature__card-text {
    font-size: 1.4rem;
    line-height: 1.6;
  }
}

.p-feature__img {
  width: 52rem;
  height: 52rem;
  aspect-ratio: 1/1;
  max-width: 100%;
  position: absolute;
  z-index: 10;
}
@media screen and (max-width: 767px) {
  .p-feature__img {
    width: 28rem;
    height: 28rem;
  }
}
.contents--01 .p-feature__img {
  bottom: 0;
  right: 3.4rem;
}
@media screen and (max-width: 767px) {
  .contents--01 .p-feature__img {
    top: -20.2rem;
    left: 50%;
    transform: translateX(-50%);
  }
}
.contents--02 .p-feature__img {
  top: 2.2rem;
  left: 0;
}
@media screen and (max-width: 767px) {
  .contents--02 .p-feature__img {
    top: -19.4rem;
    left: 50%;
    transform: translateX(-50%);
  }
}
.contents--03 .p-feature__img {
  top: -16.6rem;
  right: 1rem;
}
@media screen and (max-width: 767px) {
  .contents--03 .p-feature__img {
    top: -20.3rem;
    left: 50%;
    transform: translateX(-50%);
  }
}

.p-cta {
  background: #2D2D32;
}

.p-cta__inner {
  padding-block: 6rem;
}
@media screen and (max-width: 767px) {
  .p-cta__inner {
    padding-block: 4rem;
  }
}

.p-cta__title {
  color: #FFF;
  text-align: center;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .p-cta__title {
    font-size: 1.8rem;
    line-height: 1.6;
  }
}

.p-cta__link {
  text-align: center;
  margin-top: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-cta__link {
    margin-top: 2.4rem;
  }
}

.p-users__inner {
  padding-block: 10rem;
}
@media screen and (max-width: 767px) {
  .p-users__inner {
    padding-block: 6rem;
  }
}

.p-users__container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 5rem 4rem;
  margin-top: 4rem;
  width: 97.2rem;
  max-width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-users__container {
    gap: 1.25rem 1.1rem;
    margin-top: 2.4rem;
  }
}

.p-flow {
  background: #F9F9F9;
}

.p-flow__inner {
  padding-block: 10rem 8rem;
}
@media screen and (max-width: 767px) {
  .p-flow__inner {
    padding-block: 6rem;
  }
}

.p-flow__container {
  display: flex;
  gap: 11.5rem;
  justify-content: center;
  margin-top: 5.5rem;
  padding-left: 1rem;
}
@media screen and (max-width: 767px) {
  .p-flow__container {
    flex-direction: column;
    gap: 8.4rem;
    margin-top: 6.4rem;
    padding-left: 0;
  }
}

.p-flow__card {
  position: relative;
  width: 28rem;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .p-flow__card {
    width: 100%;
  }
}
.p-flow__card:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 28px 0 28px 22px;
  border-color: transparent transparent transparent #C4C4C4;
  top: 18%;
  left: 119%;
}
@media screen and (max-width: 767px) {
  .p-flow__card:not(:last-child)::after {
    display: none;
  }
}

.p-flow__card-number {
  color: #64629D;
  font-family: "Jost", sans-serif;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  top: -2.1rem;
  left: -1.5rem;
}
@media screen and (max-width: 767px) {
  .p-flow__card-number {
    top: -2.5rem;
    left: 0;
  }
}

.p-flow__card-img {
  min-height: 19.1rem;
  background: #EDECFC;
  border-radius: 3rem;
  text-align: center;
  padding-top: 2.1rem;
}
.card--01 .p-flow__card-img img {
  width: 19.9rem;
  height: 14.8rem;
}
.card--02 .p-flow__card-img img {
  width: 19.9rem;
  height: 14.8rem;
}
.card--03 .p-flow__card-img {
  padding-top: 2.5rem;
}
.card--03 .p-flow__card-img img {
  width: 19.2rem;
  height: 14.3rem;
}

.p-flow__card-body {
  margin-top: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.p-flow__card-title {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4583333333;
}
@media screen and (max-width: 767px) {
  .p-flow__card-title {
    font-size: 2rem;
    line-height: 1;
  }
}

.p-flow__card-text {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
}

.p-price__inner {
  width: 102rem;
  max-width: 100%;
  padding-block: 10rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-price__inner {
    padding-block: 6rem;
  }
}

.p-price__container {
  width: 100%;
  padding-top: 6.8rem;
}
@media screen and (max-width: 767px) {
  .p-price__container {
    overflow-x: scroll;
    padding-top: 4rem;
    padding-inline: 2rem;
  }
}

.p-price__link {
  margin-top: 2.8rem;
}
@media screen and (max-width: 767px) {
  .p-price__link {
    margin-top: 1.9rem;
  }
}

.p-price__contents {
  width: 102rem;
}
@media screen and (max-width: 767px) {
  .p-price__contents {
    width: 72.7rem;
  }
}

.p-price__head {
  text-align: center;
  color: #fff;
  display: grid;
  grid-template-columns: 24rem repeat(3, 1fr);
  gap: 0;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-price__head {
    grid-template-columns: 15.1rem 18rem 21.6rem 18rem;
  }
}

.p-price__head-card + .card--02,
.p-price__head-card + .card--04 {
  background: #2D2D32;
  padding-block: 4.7rem 4.1rem;
  margin-top: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-price__head-card + .card--02,
  .p-price__head-card + .card--04 {
    padding-block: 2.8rem;
    margin-top: 3.2rem;
  }
}
.p-price__head-card + .card--02 .p-price__head-plan,
.p-price__head-card + .card--04 .p-price__head-plan {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4583333333;
}
@media screen and (max-width: 767px) {
  .p-price__head-card + .card--02 .p-price__head-plan,
  .p-price__head-card + .card--04 .p-price__head-plan {
    font-size: 2rem;
    line-height: 1.45;
  }
}
.p-price__head-card + .card--02 .p-price__head-price,
.p-price__head-card + .card--04 .p-price__head-price {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 1.7rem;
}
.p-price__head-card + .card--02 .p-price__head-price .price--large,
.p-price__head-card + .card--04 .p-price__head-price .price--large {
  font-size: 3.6rem;
  font-weight: inherit;
  line-height: 1.4444444444;
  margin-inline: 0.5rem;
}
.p-price__head-card + .card--02 .p-price__head-price .price--small,
.p-price__head-card + .card--04 .p-price__head-price .price--small {
  font-size: 1.8rem;
  font-weight: inherit;
}
@media screen and (max-width: 767px) {
  .p-price__head-card + .card--02 .p-price__head-price,
  .p-price__head-card + .card--04 .p-price__head-price {
    font-size: 1.4rem;
    margin-top: 1.1rem;
  }
  .p-price__head-card + .card--02 .p-price__head-price .price--large,
  .p-price__head-card + .card--04 .p-price__head-price .price--large {
    font-size: 3rem;
  }
  .p-price__head-card + .card--02 .p-price__head-price .price--small,
  .p-price__head-card + .card--04 .p-price__head-price .price--small {
    font-size: 1.2rem;
  }
}

.p-price__head-card + .card--03 {
  background: #64629D;
  padding-block: 5.8rem 4.1rem;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.6);
}
@media screen and (max-width: 767px) {
  .p-price__head-card + .card--03 {
    padding-block: 5.4rem 2.8rem;
  }
}
.p-price__head-card + .card--03 .p-price__head-plan {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4642857143;
}
@media screen and (max-width: 767px) {
  .p-price__head-card + .card--03 .p-price__head-plan {
    font-size: 2.4rem;
    line-height: 1.4583333333;
  }
}
.p-price__head-card + .card--03 .p-price__head-price {
  font-size: 2.6rem;
  font-weight: 700;
  margin-top: 0.7rem;
}
.p-price__head-card + .card--03 .p-price__head-price .price--large {
  font-size: 4.2rem;
  font-weight: inherit;
  line-height: 1.4523809524;
  margin-inline: 0.5rem;
}
.p-price__head-card + .card--03 .p-price__head-price .price--small {
  font-size: 2.4rem;
  font-weight: inherit;
}
@media screen and (max-width: 767px) {
  .p-price__head-card + .card--03 .p-price__head-price {
    font-size: 2rem;
    margin-top: 0.2rem;
  }
  .p-price__head-card + .card--03 .p-price__head-price .price--large {
    font-size: 3.6rem;
  }
  .p-price__head-card + .card--03 .p-price__head-price .price--small {
    font-size: 1.8rem;
  }
}

.p-price__table {
  border-collapse: collapse;
  background-color: #fff;
  position: relative;
  z-index: 1;
}

.p-price__table-tr {
  height: 6rem;
}
@media screen and (max-width: 767px) {
  .p-price__table-tr {
    height: 4.2rem;
  }
}

.p-price__table-tr:nth-child(odd) {
  background-color: #EDECFC;
}

.p-price__table-th {
  width: 24rem;
  vertical-align: middle;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1;
  text-align: left;
  padding-left: 3.2rem;
}
@media screen and (max-width: 767px) {
  .p-price__table-th {
    width: 15.1rem;
    font-size: 1.5rem;
    padding-left: 1.8rem;
  }
}

.p-price__table-td1,
.p-price__table-td2,
.p-price__table-td3 {
  text-align: center;
  width: 26rem;
  vertical-align: middle;
}

.p-price__table-td1,
.p-price__table-td3 {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-price__table-td1,
  .p-price__table-td3 {
    width: 18rem;
    font-size: 1.4rem;
  }
}

.p-price__table-td2 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-price__table-td2 {
    width: 21.6rem;
    font-size: 2rem;
  }
}

.p-price__tfoot-tr {
  height: 8.1rem;
}
@media screen and (max-width: 767px) {
  .p-price__tfoot-tr {
    height: 6rem;
  }
}

.p-price__tfoot-td {
  vertical-align: middle;
  text-align: center;
}

.p-faq {
  background: #F9F9F9;
}

.p-faq__inner {
  padding-block: 10rem;
}
@media screen and (max-width: 767px) {
  .p-faq__inner {
    padding-block: 6rem;
  }
}

.p-faq__container {
  width: 92rem;
  max-width: 100%;
  margin-inline: auto;
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .p-faq__container {
    margin-top: 4rem;
  }
}

summary {
  display: block;
}
summary::-webkit-details-marker {
  display: none;
}

.p-faq__items {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.p-faq__question {
  background: #64629D;
  border-radius: 1rem;
  padding-block: 2.2rem;
  padding-left: 2.4rem;
  position: relative;
  margin-bottom: 1.4rem;
}
@media (any-hover: hover) {
  .p-faq__question:hover {
    cursor: pointer;
  }
}
@media screen and (max-width: 767px) {
  .p-faq__question {
    border-radius: 0.4rem;
    padding-block: 1rem 0.8rem;
    padding-left: 1.5rem;
    margin-bottom: 1.6rem;
  }
}

.p-faq__question-text {
  position: relative;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  padding-inline: 3.2rem 5rem;
}
.p-faq__question-text::before {
  content: "Q";
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 0;
  font-size: 2.2rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-faq__question-text {
    font-size: 1.6rem;
    line-height: 1.6;
    padding-inline: 3.2rem 1rem;
  }
  .p-faq__question-text::before {
    top: 0;
    translate: 0 0;
  }
}

.p-faq__answer {
  background: #fff;
  border-radius: 1rem;
  padding-block: 2.1rem 2.2rem;
  padding-inline: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-faq__answer {
    border-radius: 0.4rem;
    padding-block: 1.2rem;
    padding-inline: 1.5rem 1.6rem;
  }
}

.p-faq__answer-text {
  position: relative;
  padding-left: 3.1rem;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.8;
}
.p-faq__answer-text::before {
  content: "A";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 2.2rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-faq__answer-text {
    padding-left: 2.6rem;
    font-size: 1.6rem;
    line-height: 1.6;
  }
  .p-faq__answer-text::before {
    top: 0;
    left: 0;
  }
}

@media screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }
}

.u-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-sp {
    display: block;
  }
}

.u-hidden-pc {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-hidden-pc {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .u-hidden-sp {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */
