@charset "UTF-8";
/* ===========================================
共通設定
=========================================== */
body {
  font-size: 16px;
  line-height: 1.6;
  color: #2D2D32;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  position: relative;
}

.inline-block {
  display: inline-block;
  font-weight: inherit;
}

@media not screen and (min-width: 768px) {
  .hidden-sp {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .hidden-pc {
    display: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .hidden-tb {
    display: none;
  }
}

.inner {
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1240px;
  margin-inline: auto;
}
@media not screen and (min-width: 768px) {
  .inner {
    padding-inline: 20px;
    max-width: initial;
    margin-inline: 0;
  }
}

.heading {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  text-align: center;
}
@media not screen and (min-width: 768px) {
  .heading {
    gap: 9px;
  }
}

.heading-ja {
  color: #64629D;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media not screen and (min-width: 768px) {
  .heading-ja {
    font-size: 30px;
    line-height: 1.4;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .heading-ja {
    font-size: 40px;
  }
}

.heading-en {
  color: #9F9EC1;
  font-family: "Hind", sans-serif;
  font-size: 36px;
  font-weight: 700;
}
@media not screen and (min-width: 768px) {
  .heading-en {
    font-size: 25px;
    line-height: 1;
  }
}

/* ===========================================
/共通設定
=========================================== */
:root {
  --header-height: 72px;
  --flow-card-gap: clamp(60px, 13.253vw - 75.843px, 115px);
}
@media not screen and (min-width: 768px) {
  :root {
    --header-height: 52px;
  }
}

.scroll-prevent {
  position: fixed;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  height: var(--header-height);
  z-index: 100;
}

.header__inner {
  height: 100%;
}

.header__container {
  margin-right: 13px;
  display: grid;
  grid-template-columns: 83px auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
@media not screen and (min-width: 768px) {
  .header__container {
    grid-template-columns: 71px auto;
    margin-right: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header__container {
    margin-right: 0;
  }
}

.header__logo {
  position: relative;
  z-index: 51;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .header__logo {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .header__logo:hover {
    opacity: 0.7;
  }
}

.header__logo-link {
  display: block;
  width: 100%;
}
.header__logo-link img {
  width: 100%;
}

.header__menu-button {
  display: none;
}
@media not screen and (min-width: 768px) {
  .header__menu-button {
    display: grid;
    grid-template-columns: 21px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 6px;
    z-index: 51;
    cursor: pointer;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header__menu-button {
    display: grid;
    grid-template-columns: 21px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 6px;
    z-index: 51;
    cursor: pointer;
  }
}
.header__menu-button.is-checked .header__menu-text {
  opacity: 0;
}
.header__menu-button.is-checked .header__menu-bar:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 4px;
  width: 24px;
}
.header__menu-button.is-checked .header__menu-bar:nth-of-type(2) {
  opacity: 0;
}
.header__menu-button.is-checked .header__menu-bar:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 5px;
  width: 24px;
}

.header__menu-text {
  color: #64629D;
  text-align: center;
  font-size: 6px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
}

.header__menu-bars {
  position: relative;
  height: 23px;
}

.header__menu-bar {
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s;
}
.header__menu-bar:nth-of-type(1) {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 21px;
  height: 3px;
  background: #64629D;
  border-radius: 1.5px;
}
.header__menu-bar:nth-of-type(2) {
  position: absolute;
  content: "";
  top: 9px;
  right: 0;
  width: 13px;
  height: 3px;
  background: #64629D;
  border-radius: 1.5px;
}
.header__menu-bar:nth-of-type(3) {
  position: absolute;
  content: "";
  top: 18px;
  left: 0;
  width: 21px;
  height: 3px;
  background: #64629D;
  border-radius: 1.5px;
}

.header__nav {
  display: grid;
  grid-auto-flow: column;
  gap: 14px;
}
@media not screen and (min-width: 768px) {
  .header__nav {
    grid-auto-flow: initial;
    -ms-flex-line-pack: start;
        align-content: start;
    gap: 60px;
    position: absolute;
    top: -100vh;
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    padding-block: 83px;
    overflow-y: scroll;
    text-align: center;
    background: #EDECFC;
    z-index: 40;
    -webkit-transition: top 0.3s;
    transition: top 0.3s;
  }
  .header__nav.is-checked {
    top: var(--header-height);
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header__nav {
    grid-auto-flow: initial;
    -ms-flex-line-pack: start;
        align-content: start;
    gap: 60px;
    position: absolute;
    top: -100vh;
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    padding-block: 80px;
    overflow-y: scroll;
    text-align: center;
    background: #EDECFC;
    z-index: 40;
    -webkit-transition: top 0.3s;
    transition: top 0.3s;
  }
  .header__nav.is-checked {
    top: var(--header-height);
  }
}

.header__list {
  display: grid;
  grid-auto-flow: column;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media not screen and (min-width: 768px) {
  .header__list {
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 287px;
    padding-inline: 20px;
    margin-inline: auto;
    text-align: left;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header__list {
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 287px;
    padding-inline: 20px;
    margin-inline: auto;
    text-align: left;
  }
}

.header__link {
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  position: relative;
}
@media not screen and (min-width: 768px) {
  .header__link {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.03em;
    padding-left: 41px;
    position: relative;
  }
  .header__link::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
    width: 20px;
    height: 20px;
    background: none;
    border: 2px solid #64629D;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header__link {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.03em;
    padding-left: 41px;
    position: relative;
  }
  .header__link::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
    width: 20px;
    height: 20px;
    background: none;
    border: 2px solid #64629D;
  }
}
.header__link::after {
  position: absolute;
  content: "";
  bottom: -8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 1.3px;
  background: #64629D;
  -webkit-transition: width 0.5s ease;
  transition: width 0.5s ease;
}
@media not screen and (min-width: 768px) {
  .header__link::after {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header__link::after {
    display: none;
  }
}
.header__link:hover::after {
  width: 50%;
}
.header__link.header__link-button::after {
  display: none;
}

.header__item-buttons {
  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: 24px;
}

.header__link-button {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 25px;
  color: #ffffff;
  background: #64629D;
  font-weight: 700;
  line-height: 1;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.header__link-button:hover {
  background-color: #9F9EC1;
}
@media not screen and (min-width: 768px) {
  .header__link-button {
    padding: 18px 0 22px;
    border-radius: 29px;
    -webkit-box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.24);
            box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.24);
    font-size: 18px;
    min-width: 300px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header__link-button {
    padding: 18px 0 22px;
    border-radius: 29px;
    -webkit-box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.24);
            box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.24);
    font-size: 18px;
    min-width: 300px;
  }
}
.header__link-button--white {
  padding: 10px 24px;
  color: #64629D;
  border: 2px solid #64629D;
  background: #ffffff;
}
@media not screen and (min-width: 768px) {
  .header__link-button--white {
    padding: 16px 0 20px;
    min-width: 300px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header__link-button--white {
    padding: 16px 0 20px;
    min-width: 300px;
  }
}
.header__link-button.hidden-pc {
  display: none;
}
@media not screen and (min-width: 768px) {
  .header__link-button.hidden-pc {
    display: inline-block;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header__link-button.hidden-pc {
    display: inline-block;
  }
}
.header__link-button.hidden-sp, .header__link-button.hidden-tb {
  display: inline-block;
}
@media not screen and (min-width: 768px) {
  .header__link-button.hidden-sp, .header__link-button.hidden-tb {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header__link-button.hidden-sp, .header__link-button.hidden-tb {
    display: none;
  }
}

.header__bg-wrapper {
  background: #fff;
  position: absolute;
  content: "";
  z-index: 49;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .header__bg-wrapper {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .header__bg-wrapper {
    display: block;
  }
}

.fv {
  margin-top: var(--header-height);
  background: #EDECFC;
}

.fv__container {
  padding-top: 33px;
  padding-bottom: 32px;
  margin-right: 13px;
  display: grid;
  grid-template-columns: 1fr clamp(305px, 31.25vw + 65px, 515px);
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media not screen and (min-width: 768px) {
  .fv__container {
    padding-top: 60px;
    padding-bottom: 60px;
    margin-right: 0;
    grid-template-columns: 1fr;
    gap: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .fv__container {
    margin-right: 0;
  }
}

.fv__title {
  margin-top: 5px;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  grid-column: 1;
  grid-row: 2/3;
  font-size: clamp(30px, 4.464vw - 4.286px, 60px);
  font-weight: 700;
  line-height: 1.5;
}
@media not screen and (min-width: 768px) {
  .fv__title {
    margin-top: 0;
    font-size: 30px;
    grid-row: 1;
  }
}

.fv__text {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  grid-column: 1;
  grid-row: 3/4;
  margin-top: 18px;
  font-size: 18px;
  line-height: 1.8;
}
@media not screen and (min-width: 768px) {
  .fv__text {
    grid-row: 2;
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.6;
  }
}

.fv__image-wrapper {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  grid-column: 2;
  grid-row: 1/6;
}
@media not screen and (min-width: 768px) {
  .fv__image-wrapper {
    grid-column: 1;
    grid-row: 3;
    margin-top: -25px;
    text-align: center;
  }
}

.fv__image {
  max-width: 515px;
  width: 100%;
}
@media not screen and (min-width: 768px) {
  .fv__image {
    max-width: 305px;
    width: 100%;
    -webkit-transform: translateX(11px);
            transform: translateX(11px);
  }
}

.fv__buttons {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
  grid-column: 1;
  grid-row: 4/5;
  margin-top: 33px;
  display: grid;
  grid-auto-flow: column;
  justify-self: start;
  gap: 37px;
}
@media not screen and (min-width: 768px) {
  .fv__buttons {
    grid-row: 4;
    margin-top: -14px;
    grid-template-columns: 1fr;
    grid-auto-flow: initial;
    justify-self: stretch;
    justify-items: center;
    gap: 32px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .fv__buttons {
    grid-template-columns: 1fr;
    grid-auto-flow: initial;
  }
}

.fv__button {
  display: inline-block;
  padding: 18px 26px;
  border-radius: 27px;
  color: #ffffff;
  background: #64629D;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  -webkit-box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.24);
          box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.24);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.fv__button:hover {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
}
@media not screen and (min-width: 768px) {
  .fv__button {
    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;
    padding: 18px 0 22px;
    border-radius: 29px;
    font-size: 18px;
    width: 100%;
    max-width: 300px;
  }
}
.fv__button--white {
  padding: 16px 24px;
  color: #64629D;
  border: 2px solid #64629D;
  background: #ffffff;
}
@media not screen and (min-width: 768px) {
  .fv__button--white {
    padding: 16px 0 20px;
    width: 100%;
    max-width: 300px;
  }
}

.about {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media not screen and (min-width: 768px) {
  .about {
    padding-top: 80px;
    padding-bottom: 60px;
  }
}

.about__text {
  margin-top: 29px;
  text-align: center;
  line-height: 1.8;
}
.about__text .is-bold {
  font-weight: 700;
}
@media not screen and (min-width: 768px) {
  .about__text {
    margin-top: 25px;
    line-height: 1.6;
  }
}

.about__buttons {
  margin-top: 40px;
  text-align: center;
}
@media not screen and (min-width: 768px) {
  .about__buttons {
    margin-top: 23px;
  }
}

.about__button {
  display: inline-block;
  padding: 23px 56px;
  border-radius: 50px;
  color: #ffffff;
  background: #64629D;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  -webkit-box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.24);
          box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.24);
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.about__button:hover {
  background-color: #9F9EC1;
}
@media not screen and (min-width: 768px) {
  .about__button {
    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: 100%;
    max-width: 300px;
    padding: 18px 0 22px;
    border-radius: 29px;
    font-size: 18px;
  }
}

.feature {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #F9F9F9;
}
@media not screen and (min-width: 768px) {
  .feature {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media not screen and (min-width: 768px) {
  .feature__inner {
    padding-inline: 0;
  }
}

.feature__container {
  margin-right: 12px;
}
@media not screen and (min-width: 768px) {
  .feature__container {
    margin-right: auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .feature__container {
    margin-right: auto;
  }
}

.feature__blocks {
  margin-top: 256px;
}
@media not screen and (min-width: 768px) {
  .feature__blocks {
    margin-top: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .feature__blocks {
    margin-top: 102px;
  }
}

.feature-block {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
}
@media not screen and (min-width: 768px) {
  .feature-block {
    -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;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .feature-block {
    -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;
  }
}
.feature-block:nth-of-type(1) .feature-image {
  bottom: 0;
  right: 21px;
}
@media not screen and (min-width: 768px) {
  .feature-block:nth-of-type(1) .feature-image {
    bottom: auto;
    right: auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .feature-block:nth-of-type(1) .feature-image {
    bottom: auto;
    right: auto;
  }
}
@media not screen and (min-width: 768px) {
  .feature-block:nth-of-type(1) .feature-card {
    margin-top: -75px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .feature-block:nth-of-type(1) .feature-card {
    margin-top: -75px;
  }
}
.feature-block:nth-of-type(2) {
  margin-top: 153px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media not screen and (min-width: 768px) {
  .feature-block:nth-of-type(2) {
    margin-top: 60px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .feature-block:nth-of-type(2) {
    margin-top: 60px;
  }
}
.feature-block:nth-of-type(2) .feature-image {
  top: 25px;
  left: 0;
}
@media not screen and (min-width: 768px) {
  .feature-block:nth-of-type(2) .feature-image {
    top: auto;
    left: auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .feature-block:nth-of-type(2) .feature-image {
    top: auto;
    left: auto;
  }
}
.feature-block:nth-of-type(2) .feature-card {
  padding: 65px 19px 65px 40px;
}
@media not screen and (min-width: 768px) {
  .feature-block:nth-of-type(2) .feature-card {
    padding: 38px 0px 39px 20px;
    margin-top: -82px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .feature-block:nth-of-type(2) .feature-card {
    padding: 38px 0px 39px 20px;
    margin-top: -82px;
  }
}
.feature-block:nth-of-type(2) .feature-card__text {
  padding-right: 105px;
}
@media not screen and (min-width: 768px) {
  .feature-block:nth-of-type(2) .feature-card__text {
    padding-right: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .feature-block:nth-of-type(2) .feature-card__text {
    padding-right: 20px;
  }
}
.feature-block:nth-of-type(3) {
  margin-top: 263px;
}
@media not screen and (min-width: 768px) {
  .feature-block:nth-of-type(3) {
    margin-top: 60px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .feature-block:nth-of-type(3) {
    margin-top: 60px;
  }
}
.feature-block:nth-of-type(3) .feature-image {
  bottom: 0;
  right: 0;
}
@media not screen and (min-width: 768px) {
  .feature-block:nth-of-type(3) .feature-image {
    bottom: auto;
    right: auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .feature-block:nth-of-type(3) .feature-image {
    bottom: auto;
    right: auto;
  }
}
@media not screen and (min-width: 768px) {
  .feature-block:nth-of-type(3) .feature-card {
    margin-top: -75px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .feature-block:nth-of-type(3) .feature-card {
    margin-top: -75px;
  }
}

.feature-card {
  width: 742px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #ffffff;
  padding: 65px 124px 64px 40px;
  border-radius: 30px;
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  gap: 18px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
@media not screen and (min-width: 768px) {
  .feature-card {
    max-width: 375px;
    width: 100%;
    padding: 47px 20px 40px;
    border-radius: 16px;
    grid-template-columns: 1fr;
    gap: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .feature-card {
    width: 742px;
    padding: 47px 20px 40px;
    border-radius: 16px;
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.feature-card__num {
  color: #64629D;
  font-family: "Hind", sans-serif;
  font-size: 72px;
  font-weight: 700;
}
@media not screen and (min-width: 768px) {
  .feature-card__num {
    font-size: 47px;
    line-height: 1;
  }
}

.feature-card__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 17px;
}
@media not screen and (min-width: 768px) {
  .feature-card__body {
    gap: 8px;
  }
}

.feature-card__title {
  font-size: 36px;
  font-weight: 700;
}
@media not screen and (min-width: 768px) {
  .feature-card__title {
    margin-top: -5px;
    font-size: 22px;
  }
}

.feature-card__text {
  line-height: 1.8;
}
@media not screen and (min-width: 768px) {
  .feature-card__text {
    margin-top: -3px;
    font-size: 14px;
    line-height: 1.6;
  }
}

.feature-image {
  display: inline-block;
  position: absolute;
  width: clamp(280px, 57.831vw - 312.771px, 520px);
}
@media not screen and (min-width: 768px) {
  .feature-image {
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .feature-image {
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.feature-image img {
  max-width: 520px;
  width: 100%;
}
@media not screen and (min-width: 768px) {
  .feature-image img {
    max-width: 280px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .feature-image img {
    max-width: 520px;
  }
}

.cta {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #2D2D32;
}
@media not screen and (min-width: 768px) {
  .cta {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.cta__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media not screen and (min-width: 768px) {
  .cta__container {
    gap: 24px;
  }
}

.cta__text {
  color: #FFF;
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
@media not screen and (min-width: 768px) {
  .cta__text {
    font-size: 18px;
  }
}

.cta__buttons {
  text-align: center;
}

.cta__button {
  display: inline-block;
  padding: 23px 53px;
  border-radius: 50px;
  color: #ffffff;
  background: #64629D;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.cta__button:hover {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
}
@media not screen and (min-width: 768px) {
  .cta__button {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 18px 0 22px;
    width: 100%;
    max-width: 300px;
    border-radius: 29px;
    font-size: 18px;
    -webkit-box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.24);
            box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.24);
  }
}

.users {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media not screen and (min-width: 768px) {
  .users {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.users__inner {
  max-width: 1012px;
  padding-inline: 20px;
  margin-inline: auto;
}

.users__cards {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media not screen and (min-width: 768px) {
  .users__cards {
    margin-top: 24px;
    -webkit-column-gap: 11px;
       -moz-column-gap: 11px;
            column-gap: 11px;
    row-gap: 12px;
  }
}

.users__image {
  width: 100%;
}

.flow {
  padding-top: 100px;
  padding-bottom: 80px;
  background: #F9F9F9;
}
@media not screen and (min-width: 768px) {
  .flow {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.flow__inner {
  max-width: 1125px;
  padding-inline: 20px;
  margin-inline: auto;
}
@media not screen and (min-width: 768px) {
  .flow__inner {
    max-width: 375px;
    padding-inline: 20px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .flow__inner {
    max-width: 375px;
    padding-inline: 20px;
  }
}

.flow__cards {
  margin-top: 55px;
  margin-left: 15px;
  display: grid;
  grid-template-columns: repeat(3, 280px);
  gap: var(--flow-card-gap);
}
@media not screen and (min-width: 768px) {
  .flow__cards {
    margin-top: 58px;
    margin-left: 0;
    grid-template-columns: 1fr;
    gap: 84px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .flow__cards {
    margin-top: 58px;
    margin-left: 0;
    grid-template-columns: 1fr;
    gap: 84px;
  }
}

.flow-card {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 191px auto;
  gap: 16px;
  position: relative;
}

.flow-card + .flow-card {
  position: relative;
}
.flow-card + .flow-card::before {
  position: absolute;
  content: "";
  top: 64px;
  left: calc((var(--flow-card-gap) / 2 + 11px) * -1);
  width: 0;
  height: 0;
  border-top: 28px solid transparent;
  border-right: none;
  border-bottom: 28px solid transparent;
  border-left: 28px solid #C4C4C4;
}
@media not screen and (min-width: 768px) {
  .flow-card + .flow-card::before {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .flow-card + .flow-card::before {
    display: none;
  }
}

.flow-card__num {
  color: #64629D;
  font-family: "Hind", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  top: -15px;
  left: -15px;
}
@media not screen and (min-width: 768px) {
  .flow-card__num {
    top: -24px;
    left: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .flow-card__num {
    top: -24px;
    left: 0;
  }
}

.flow-card__image {
  border-radius: 30px;
  background: #EDECFC;
  padding: 21px 40px;
}
.flow-card__image img {
  width: 100%;
}
@media not screen and (min-width: 768px) {
  .flow-card__image {
    padding-inline: 68px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .flow-card__image {
    padding-inline: 68px;
  }
}

.flow-card__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.flow-card__title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
}
@media not screen and (min-width: 768px) {
  .flow-card__title {
    font-size: 20px;
    line-height: 1;
  }
}

.flow-card__text {
  line-height: 1.8;
}

.price {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media not screen and (min-width: 768px) {
  .price {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.price__inner {
  max-width: 1060px;
  padding-inline: 20px;
  margin-inline: auto;
}

.price-table__wrapper {
  max-width: 1060px;
  padding-inline: 20px;
  margin-inline: auto;
  overflow-x: scroll;
  scrollbar-width: none;
}

.price-table {
  margin-top: 68px;
  width: 1020px;
  table-layout: fixed;
  border-collapse: collapse;
}
@media not screen and (min-width: 768px) {
  .price-table {
    margin-top: 32px;
    width: 727px;
  }
}

.price-table__head .price-table__th {
  vertical-align: bottom;
}
.price-table__head .price-table__buttons {
  margin-top: 28px;
}
@media not screen and (min-width: 768px) {
  .price-table__head .price-table__buttons {
    margin-top: 11px;
  }
}

.price-table__body .price-table__row:nth-of-type(2n + 1) {
  background: #EDECFC;
}
.price-table__body .price-table__row.has-buttons {
  background: #ffffff;
}
.price-table__body .price-table__row.has-buttons .price-table__th, .price-table__body .price-table__row.has-buttons .price-table__td {
  padding-top: 17px;
  padding-bottom: 14px;
  padding-left: 0;
  padding-right: 0;
}
@media not screen and (min-width: 768px) {
  .price-table__body .price-table__row.has-buttons .price-table__th, .price-table__body .price-table__row.has-buttons .price-table__td {
    padding-top: 9px;
    padding-bottom: 9px;
  }
}
.price-table__body .price-table__th, .price-table__body .price-table__td {
  padding: 19px 32px;
  font-size: 22px;
  line-height: 1;
  vertical-align: middle;
}
@media not screen and (min-width: 768px) {
  .price-table__body .price-table__th, .price-table__body .price-table__td {
    padding-top: 11px;
    padding-bottom: 11px;
    padding-left: 18px;
    padding-right: 0px;
  }
}
.price-table__body .price-table__th {
  text-align: left;
}
@media not screen and (min-width: 768px) {
  .price-table__body .price-table__th {
    font-size: 15px;
    height: 42px;
  }
}
.price-table__body .price-table__td {
  text-align: center;
}
@media not screen and (min-width: 768px) {
  .price-table__body .price-table__td {
    font-size: 14px;
    height: 42px;
    padding-right: 18px;
  }
}

.price-table__th:nth-child(1), .price-table__td:nth-child(1) {
  width: 240px;
}
@media not screen and (min-width: 768px) {
  .price-table__th:nth-child(1), .price-table__td:nth-child(1) {
    width: 151px;
  }
}
@media not screen and (min-width: 768px) {
  .price-table__th:nth-child(3), .price-table__td:nth-child(3) {
    width: 216px;
  }
}

.price-table__td.is-highlight {
  font-size: 24px;
  font-weight: 700;
}
@media not screen and (min-width: 768px) {
  .price-table__td.is-highlight {
    font-size: 20px;
  }
}

.price-table__plan {
  background: #2D2D32;
  color: #ffffff;
  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: 0;
  padding: 47px 0 41px;
}
@media not screen and (min-width: 768px) {
  .price-table__plan {
    padding: 28px 0 28px;
  }
}
.price-table__plan.is-highlight {
  background: #64629D;
  -webkit-box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.6);
          box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.6);
  padding-top: 58px;
}
@media not screen and (min-width: 768px) {
  .price-table__plan.is-highlight {
    padding-top: 54px;
  }
}
.price-table__plan.is-highlight .price-table__plan-name {
  font-size: 28px;
}
@media not screen and (min-width: 768px) {
  .price-table__plan.is-highlight .price-table__plan-name {
    font-size: 24px;
  }
}
.price-table__plan.is-highlight .price-table__price {
  margin-top: 7px;
}
@media not screen and (min-width: 768px) {
  .price-table__plan.is-highlight .price-table__price {
    margin-top: 2px;
  }
}
.price-table__plan.is-highlight .price-table__month {
  font-size: 26px;
}
@media not screen and (min-width: 768px) {
  .price-table__plan.is-highlight .price-table__month {
    font-size: 20px;
  }
}
.price-table__plan.is-highlight .price-table__value {
  font-size: 42px;
}
@media not screen and (min-width: 768px) {
  .price-table__plan.is-highlight .price-table__value {
    font-size: 36px;
  }
}
.price-table__plan.is-highlight .price-table__yen {
  font-size: 24px;
}
@media not screen and (min-width: 768px) {
  .price-table__plan.is-highlight .price-table__yen {
    font-size: 18px;
  }
}

.price-table__plan-name {
  font-size: 24px;
  font-weight: 700;
}
@media not screen and (min-width: 768px) {
  .price-table__plan-name {
    font-size: 20px;
  }
}

.price-table__price {
  margin-top: 17px;
}
@media not screen and (min-width: 768px) {
  .price-table__price {
    margin-top: 11px;
  }
}

.price-table__month {
  font-size: 20px;
  font-weight: 700;
}
@media not screen and (min-width: 768px) {
  .price-table__month {
    font-size: 14px;
  }
}

.price-table__value {
  font-size: 36px;
  font-weight: 700;
}
@media not screen and (min-width: 768px) {
  .price-table__value {
    font-size: 30px;
  }
}

.price-table__yen {
  font-size: 18px;
  font-weight: 700;
}
@media not screen and (min-width: 768px) {
  .price-table__yen {
    font-size: 12px;
  }
}

.price-table__buttons {
  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;
}

.price-table__button {
  padding: 14px 43px;
  border-radius: 50px;
  border: 2px solid #2D2D32;
  background: #ffffff;
  color: #2D2D32;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  max-width: 243px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.price-table__button:hover {
  background-color: #2D2D32;
  color: #ffffff;
  border-color: #ffffff;
}
@media not screen and (min-width: 768px) {
  .price-table__button {
    padding: 11px 17px;
    border-radius: 21px;
    font-size: 16px;
    max-width: 166px;
  }
}
.price-table__button.price-table__button--blue {
  background: #64629D;
  color: #ffffff;
  border-color: #ffffff;
}
.price-table__button.price-table__button--blue:hover {
  background-color: #ffffff;
  color: #64629D;
  border-color: #64629D;
}
.price-table__button.price-table__button--border-none {
  border-color: #64629D;
}

.question {
  padding-top: 100px;
  padding-bottom: 100px;
  background: #F9F9F9;
}
@media not screen and (min-width: 768px) {
  .question {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.question__inner {
  max-width: 960px;
  padding-inline: 20px;
  margin-inline: auto;
}

.qa-list {
  margin-top: 60px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media not screen and (min-width: 768px) {
  .qa-list {
    margin-top: 40px;
  }
}

.qa-list__item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.qa-list__question, .qa-list__answer {
  padding: 22px 25px 22px 56px;
  border-radius: 10px;
  position: relative;
}
@media not screen and (min-width: 768px) {
  .qa-list__question, .qa-list__answer {
    border-radius: 4px;
  }
}

.qa-list__question {
  background: #64629D;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
@media not screen and (min-width: 768px) {
  .qa-list__question {
    padding: 10px 10px 8px 47px;
    font-size: 16px;
    line-height: 1.6;
  }
}

.qa-list__q-icon {
  position: absolute;
  top: 20px;
  left: 24px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}
@media not screen and (min-width: 768px) {
  .qa-list__q-icon {
    top: 10px;
    left: 15px;
  }
}

.qa-list__answer {
  background: #ffffff;
  font-size: 18px;
  line-height: 1.8;
}
@media not screen and (min-width: 768px) {
  .qa-list__answer {
    padding: 12px 16px 12px 41px;
    font-size: 16px;
    line-height: 1.6;
  }
}

.qa-list__a-icon {
  position: absolute;
  top: 23px;
  left: 25px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}
@media not screen and (min-width: 768px) {
  .qa-list__a-icon {
    top: 12px;
    left: 15px;
  }
}

.footer {
  padding-top: 27px;
  padding-bottom: 27px;
  background: #000000;
}
@media not screen and (min-width: 768px) {
  .footer {
    padding-top: 35px;
    padding-bottom: 40px;
  }
}

.footer__container {
  margin-right: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media not screen and (min-width: 768px) {
  .footer__container {
    margin-right: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .footer__container {
    margin-right: 0;
  }
}

.footer__left {
  display: grid;
  grid-template-columns: auto;
}
@media not screen and (min-width: 768px) {
  .footer__left {
    grid-template-columns: 1fr;
  }
}

@media not screen and (min-width: 768px) {
  .footer__logo {
    text-align: center;
  }
}
.footer__logo img {
  max-width: 69px;
  width: 100%;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.footer__logo img:hover {
  opacity: 0.7;
}
@media not screen and (min-width: 768px) {
  .footer__logo img:hover {
    opacity: 1;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .footer__logo img:hover {
    opacity: 1;
  }
}

.footer__list {
  margin-top: 19px;
  display: grid;
  grid-auto-flow: column;
  gap: 14px;
}
@media not screen and (min-width: 768px) {
  .footer__list {
    margin-top: 8px;
    grid-auto-flow: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 3px;
  }
}

@media not screen and (min-width: 768px) {
  .footer__item {
    text-align: center;
  }
}

.footer__link {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.footer__link:hover {
  opacity: 0.7;
}
@media not screen and (min-width: 768px) {
  .footer__link:hover {
    opacity: 1;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .footer__link:hover {
    opacity: 1;
  }
}

.footer__copyright {
  margin-top: 19px;
}
@media not screen and (min-width: 768px) {
  .footer__copyright {
    margin-top: 21px;
  }
}

.footer__copyright-text {
  color: #ffffff;
  display: grid;
  grid-template-columns: -webkit-max-content -webkit-max-content;
  grid-template-columns: max-content max-content;
  grid-auto-flow: column;
  gap: 14px;
  color: #ffffff;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.03em;
}
@media not screen and (min-width: 768px) {
  .footer__copyright-text {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    gap: 10px;
    text-align: center;
  }
}

.footer__right {
  display: grid;
  grid-template-columns: -webkit-max-content;
  grid-template-columns: max-content;
  grid-template-rows: -webkit-max-content -webkit-max-content;
  grid-template-rows: max-content max-content;
  row-gap: 12px;
}
@media not screen and (min-width: 768px) {
  .footer__right {
    row-gap: 3px;
  }
}

.footer__sns-text {
  margin-top: 20px;
  color: #ffffff;
  font-family: "Hind", sans-serif;
  font-size: 18px;
  font-weight: 700;
}
@media not screen and (min-width: 768px) {
  .footer__sns-text {
    font-size: 21px;
    margin-top: 0;
  }
}

.footer__sns-icons {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: repeat(3, 24px);
  gap: 18px;
}
@media not screen and (min-width: 768px) {
  .footer__sns-icons {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer__sns-icon {
  color: #ffffff;
  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-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.footer__sns-icon:hover {
  opacity: 0.7;
}
@media not screen and (min-width: 768px) {
  .footer__sns-icon:hover {
    opacity: 1;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .footer__sns-icon:hover {
    opacity: 1;
  }
}