* {
  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, aside, figure, figcaption {
  display: block;
}

body {
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  background: #FFFFFF;
  color: #2D2d32;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

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

ol, ul {
  list-style: none;
  list-style-type: none;
}

a {
  text-decoration: none;
  color: #2D2d32;
}
a:hover {
  opacity: 0.7;
}

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

header {
  width: 100%;
  height: 72px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #FFFFFF;
  z-index: 100;
}
@media screen and (max-width: 1279px) {
  header {
    height: 52px;
  }
}

.header__inner {
  width: 83.3%;
  display: flex;
  margin: 0 auto;
  height: 72px;
}
@media screen and (max-width: 1279px) {
  .header__inner {
    height: 52px;
  }
}
@media screen and (max-width: 767px) {
  .header__inner {
    width: 89.3%;
    height: 72px;
  }
}

.header__logo {
  color: #64629D;
  font-family: "Roboto", sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 900;
  line-height: 28px; /* 100% */
  letter-spacing: 1.4px;
  margin-top: 22px;
}
@media screen and (max-width: 1279px) {
  .header__logo {
    margin-top: 12px;
  }
}
@media screen and (max-width: 767px) {
  .header__logo {
    font-size: 22px;
  }
}

.header__nav {
  display: flex;
  margin-left: auto;
}

.header__nav-item a {
  display: block;
  margin-left: 16px;
  height: 72px;
  padding: 26px 0;
}
@media screen and (max-width: 1279px) {
  .header__nav-item a {
    display: none;
  }
}

.header__nav-title {
  color: #2D2D32;
  font-family: Noto Sans JP;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 14px; /* 100% */
  letter-spacing: 0.42px;
  display: block;
}

.header__button {
  width: 180px;
  margin-left: 14px;
  transition: all 0.5s ease-in-out;
  margin-top: 16px;
}
@media screen and (max-width: 1279px) {
  .header__button {
    display: none;
  }
}
.header__button:hover {
  transform: translateY(-5px);
}
.header__button a {
  display: block;
  width: 180px;
  height: 40px;
  border-radius: 25px;
  background: #64629D;
  color: #FFFFFF;
  padding: 12px 26px;
  text-align: center;
}

.drawer__icon {
  position: fixed;
  top: 10px;
  right: 20px;
  z-index: 100;
  transition: transform 0.5s ease 0s;
  display: none;
}
@media screen and (max-width: 1279px) {
  .drawer__icon {
    display: block;
  }
}
.drawer__icon.is-active {
  top: 20px;
  right: 40px;
}
.drawer__icon.is-active .drawer__icon-bar1 {
  transform: rotate(-45deg);
  top: 4px;
  background: #64629D;
}
.drawer__icon.is-active .drawer__icon-bar2 {
  display: none;
}
.drawer__icon.is-active .drawer__icon-bar3 {
  transform: rotate(45deg);
  top: 4px;
  background: #64629D;
}
.drawer__icon.is-active .drawer__text {
  display: none;
}

.drawer__icon-bars {
  width: 30px;
  height: 30px;
  display: block;
  position: relative;
}

.drawer__icon-bar1, .drawer__icon-bar2, .drawer__icon-bar3 {
  position: absolute;
  width: 21px;
  height: 2px;
  background: #64629D;
  top: 0;
  left: 7px;
}

.drawer__icon-bar1 {
  top: 12px;
}

.drawer__icon-bar2 {
  top: 18px;
  width: 16px;
  left: 11px;
}

.drawer__icon-bar3 {
  top: 24px;
}

.drawer__content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 52px;
  left: 0;
  right: 0;
  z-index: 100;
  font-size: 16px;
  display: none;
}
@media screen and (max-width: 1279px) {
  .drawer__content {
    display: block;
    transform: translateX(105%);
    transition: transform 0.5s ease 0S;
  }
  .drawer__content.is-active {
    transform: translateX(0);
  }
}

.drawer__content-items {
  width: 78.6%;
  margin: 80px auto 40px;
  z-index: 100;
}

.drawer__content-item {
  width: 215px;
}
.drawer__content-item a {
  display: flex;
  align-items: center;
}
.drawer__content-item a::nth-child(n + 2) {
  margin-top: 40px;
}

.drawer__nav-jp {
  color: #2D2d32;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 100% */
  letter-spacing: 0.72px;
  margin-left: 12.72px;
}

@media screen and (max-width: 1279px) {
  .drawer__content-item + .drawer__content-item {
    margin-top: 40px;
  }
}
.drawer__background {
  background: #EDECFC;
  z-index: 98;
  width: 100%;
  height: 100%;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 52px;
  left: 0;
  right: 0;
  z-index: 99;
  display: none;
}
@media screen and (max-width: 1279px) {
  .drawer__background {
    display: block;
    transform: translateX(105%);
    transition: transform 0.5s ease 0S;
  }
  .drawer__background.is-active {
    transform: translateX(0);
  }
}

.drawer__text {
  color: #64629D;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 6px;
  font-style: normal;
  font-weight: 700;
  line-height: 6px; /* 100% */
  letter-spacing: 0.12px;
}

.drawer__rectangle {
  width: 20px;
  height: 20px;
  transform: rotate(45deg);
  flex-shrink: 0;
  border-radius: 1px;
  border: 2px solid #64629D;
}

.drawer__button {
  display: none;
}
@media screen and (max-width: 1279px) {
  .drawer__button {
    width: 300px;
    display: block;
    margin-top: 62px;
    margin-left: auto;
    margin-right: auto;
  }
}

.drawer__do-button {
  display: block;
  width: 250px;
  transition: all 0.5s ease-in-out;
}
.drawer__do-button:hover {
  transform: translateY(-5px);
}
.drawer__do-button a {
  width: 250px;
  flex-shrink: 0;
  border-radius: 27px;
  background: #64629D;
  color: #FFFFFF;
  padding: 16px 26px;
  text-align: center;
  box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.24);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
}

.drawer__download-button {
  display: block;
  width: 250px;
  margin-left: 37px;
  transition: all 0.5s ease-in-out;
}
@media screen and (max-width: 1279px) {
  .drawer__download-button {
    margin-left: 0;
    margin-top: 60px;
  }
}
.drawer__download-button:hover {
  transform: translateY(-5px);
}
.drawer__download-button a {
  width: 250px;
  flex-shrink: 0;
  border-radius: 27px;
  background: #FFFFFF;
  color: #64629D;
  padding: 16px 26px;
  text-align: center;
  box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.24);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
}

.top {
  width: 100%;
  height: 652px;
  background: #EDECFC;
}
@media screen and (max-width: 1279px) {
  .top {
    height: 520px;
  }
}
@media screen and (max-width: 767px) {
  .top {
    height: 760px;
    margin-top: -60px;
  }
}

.top__container {
  width: 83.3%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  juRstify-content: space-between;
  height: 580px;
}
@media screen and (max-width: 767px) {
  .top__container {
    display: block;
    width: 89.3%;
  }
}

.top__content {
  display: block;
  width: 55.9%;
  height: 350px;
  margin-top: 189px;
}
@media screen and (max-width: 1279px) {
  .top__content {
    margin-top: 110px;
    width: 60%;
  }
}
@media screen and (max-width: 767px) {
  .top__content {
    width: 100%;
  }
}

.top__title {
  width: 100%;
  color: #2D2D32;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media screen and (max-width: 1279px) {
  .top__title {
    font-size: 32px;
  }
}
@media screen and (max-width: 767px) {
  .top__title {
    font-size: 28px;
    letter-spacing: 2px;
    padding-top: 56px;
    line-height: 1.6;
  }
}

.top__text {
  width: 84.7%;
  color: #2D2D32;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 32.4px;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .top__text {
    margin-top: 16px;
    font-size: 16px;
    width: 100%;
    line-height: 25.6px;
  }
}

.top__buttons {
  width: 100%;
  display: flex;
  margin-top: 50px;
}
@media screen and (max-width: 1279px) {
  .top__buttons {
    width: 100%;
    display: block;
    margin-top: 42px;
  }
}
@media screen and (max-width: 767px) {
  .top__buttons {
    margin-top: 272px;
    text-align: center;
  }
}

.do-button {
  width: 250px;
  transition: all 0.5s ease-in-out;
}
@media screen and (max-width: 767px) {
  .do-button {
    width: 300px;
    display: flex;
    justify-content: center;
    margin-right: auto;
    margin-left: auto;
  }
}
.do-button:hover {
  transform: translateY(-5px);
}
.do-button a {
  width: 250px;
  flex-shrink: 0;
  border-radius: 27px;
  background: #64629D;
  color: #FFFFFF;
  padding: 16px 26px;
  text-align: center;
  box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.24);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
}
@media screen and (max-width: 767px) {
  .do-button a {
    width: 300px;
    padding: 20px 26px;
  }
}

.download-button {
  width: 250px;
  margin-left: 37px;
  transition: all 0.5s ease-in-out;
}
@media screen and (max-width: 1279px) {
  .download-button {
    margin-left: 0;
    margin-top: 60px;
  }
}
.download-button:hover {
  transform: translateY(-5px);
}
@media screen and (max-width: 767px) {
  .download-button {
    width: 300px;
    display: flex;
    justify-content: center;
    margin-top: 32px;
    margin-left: auto;
    margin-right: auto;
  }
}
.download-button a {
  width: 250px;
  flex-shrink: 0;
  border-radius: 27px;
  background: #FFFFFF;
  color: #64629D;
  padding: 16px 26px;
  text-align: center;
  box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.24);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
}
@media screen and (max-width: 767px) {
  .download-button a {
    width: 300px;
    padding: 20px 26px;
  }
}

.top__img {
  width: 42.9%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 145px;
  margin-right: 12px;
}
@media screen and (max-width: 1279px) {
  .top__img {
    width: 42.9%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-right: -40px;
  }
}
@media screen and (max-width: 767px) {
  .top__img {
    width: 305px;
    margin-top: -134px;
    margin-right: 12px;
  }
}
.top__img img {
  width: 100%;
  margin-top: 10px;
}

.util-subtitle {
  font-family: "Roboto", sans-serif;
  color: #9F9EC1;
  text-align: center;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.8px;
}
@media screen and (max-width: 1279px) {
  .util-subtitle {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .util-subtitle {
    font-size: 22px;
  }
}

.util-title {
  margin-top: 18px;
  color: #64629D;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px; /* 100% */
  letter-spacing: 2.4px;
}
@media screen and (max-width: 1279px) {
  .util-title {
    font-size: 32px;
  }
}
@media screen and (max-width: 767px) {
  .util-title {
    font-size: 30px;
    margin-top: 12px;
  }
}

.util-try-button {
  width: 400px;
  margin: 40px auto 0px;
  transition: all 0.5s ease-in-out;
}
.util-try-button:hover {
  transform: translateY(-5px);
}
.util-try-button a {
  width: 400px;
  flex-shrink: 0;
  border-radius: 50px;
  background: #64629D;
  box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.24);
  color: #FFFFFF;
  text-align: center;
  padding: 21px 56px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 100% */
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .util-try-button {
    width: 300px;
    font-size: 18px;
    margin: 24px auto 0px;
  }
  .util-try-button a {
    width: 300px;
    font-size: 18px;
    padding: 20px 42px;
  }
}

@media screen and (max-width: 767px) {
  .about__title {
    margin-top: 14px;
    line-height: 1.3;
  }
}

.about__container {
  width: 82%;
  margin: 96px auto 100px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .about__container {
    margin-top: 78px;
    margin-bottom: 0;
    width: 89.3%;
  }
}

.about__description {
  color: #2D2d32;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 32.4px; /* 180% */
  margin-top: 29px;
}
@media screen and (max-width: 767px) {
  .about__description {
    font-size: 16px;
    line-height: 1.6;
  }
}

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

.about__responsive-description {
  display: none;
}
@media screen and (max-width: 767px) {
  .about__responsive-description {
    display: block;
    margin-top: 25px;
  }
}

.about__text {
  color: #2D2d32;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 32.4px; /* 180% */
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .about__text {
    font-size: 16px;
    -moz-text-align-last: left;
    text-align-last: left;
  }
}

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

.about__responsive-text {
  display: none;
}
@media screen and (max-width: 767px) {
  .about__responsive-text {
    display: block;
    margin-top: 25px;
    text-align: center;
    line-height: 1.6;
  }
}

@media screen and (max-width: 767px) {
  .about__button {
    width: 300px;
    margin: 24px auto 60px;
    transition: all 0.5s ease-in-out;
  }
  .about__button:hover {
    transform: translateY(-5px);
  }
  .about__button a {
    width: 300px;
    flex-shrink: 0;
    border-radius: 50px;
    background: #64629D;
    box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.24);
    color: #FFFFFF;
    text-align: center;
    padding: 18px 42px;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 100% */
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.feature {
  width: 100%;
  background: #F9F9F9;
}

.feature__container {
  width: 82.5%;
  padding-top: 94px;
  padding-bottom: 100px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .feature__container {
    width: 100%;
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.feature__item {
  display: flex;
}
@media screen and (max-width: 767px) {
  .feature__item {
    display: block;
  }
}

.feature__item-1 {
  margin-top: 256px;
  position: relative;
}
@media screen and (max-width: 1279px) {
  .feature__item-1 {
    margin-top: 156px;
  }
}
@media screen and (max-width: 767px) {
  .feature__item-1 {
    margin-top: 278px;
    width: 100%;
  }
}

.feature__item-img1 {
  position: absolute;
  top: -150px;
  left: 640px;
}
@media screen and (max-width: 1279px) {
  .feature__item-img1 {
    top: 0;
    left: 55%;
  }
}
@media screen and (max-width: 767px) {
  .feature__item-img1 {
    top: -251px;
    left: 47px;
  }
}

.feature__item-2 {
  margin-top: 152px;
  display: flex;
  flex-direction: row-reverse;
  position: relative;
}
@media screen and (max-width: 767px) {
  .feature__item-2 {
    margin-top: 288px;
  }
}

.feature__item-img2 {
  position: absolute;
  top: 25px;
  left: -3px;
}
@media screen and (max-width: 767px) {
  .feature__item-img2 {
    position: absolute;
    top: -225px;
    left: 49px;
  }
}

.feature__item-3 {
  margin-top: 263px;
  display: flex;
  position: relative;
}
@media screen and (max-width: 1279px) {
  .feature__item-3 {
    margin-top: 163px;
  }
}
@media screen and (max-width: 767px) {
  .feature__item-3 {
    margin-top: 300px;
  }
}

.feature__item-img3 {
  position: absolute;
  top: -162px;
  left: 665px;
}
@media screen and (max-width: 1279px) {
  .feature__item-img3 {
    top: 0px;
    left: 55%;
  }
}
@media screen and (max-width: 767px) {
  .feature__item-img3 {
    top: -238px;
    left: 49px;
  }
}

.feature__content {
  width: 62.4%;
  height: 366px;
  background: #FFFFFF;
  padding-top: 65px;
  border-radius: 30px;
}
@media screen and (max-width: 1279px) {
  .feature__content {
    width: 42.2%;
    padding-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .feature__content {
    width: 100%;
    height: auto;
  }
}

.feature__title {
  display: flex;
}
@media screen and (max-width: 1279px) {
  .feature__title {
    display: block;
  }
}

.feature__title-no {
  color: #64629D;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 72px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-left: 40px;
  margin-top: -20px;
}
@media screen and (max-width: 1279px) {
  .feature__title-no {
    font-size: 36px;
    margin-left: 18px;
  }
}
@media screen and (max-width: 767px) {
  .feature__title-no {
    font-size: 42px;
    margin-left: 20px;
  }
}

.feature__title-text {
  color: #2D2d32;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-left: 18px;
}
@media screen and (max-width: 1279px) {
  .feature__title-text {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .feature__title-text {
    font-size: 22px;
    width: 100%;
    overflow__wrap: break-word;
    word-wrap: break-word;
  }
}

.feature__description {
  width: 63.3%;
  color: #2D2d32;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28.8px; /* 180% */
  margin-left: 142.9px;
  margin-top: 17px;
}
@media screen and (max-width: 1279px) {
  .feature__description {
    margin-left: 18px;
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .feature__description {
    margin-top: 8px;
    font-size: 14px;
    padding-bottom: 40px;
    line-height: 1.6;
  }
}

.feature__item-img {
  width: 43.5%;
}
.feature__item-img img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .feature__item-img {
    width: 43%;
  }
}
@media screen and (max-width: 413px) {
  .feature__item-img {
    display: block;
    width: 74.6%;
  }
  .feature__item-img img {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

.trial {
  background: #2D2D32;
}

.trial_text {
  padding-top: 60px;
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.72px;
}
@media screen and (max-width: 767px) {
  .trial_text {
    font-size: 18px;
    padding-top: 40px;
    letter-spacing: 0;
  }
}

.feature__button {
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .feature__button {
    padding-bottom: 43px;
  }
}

.case {
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .case {
    padding-top: 60px;
  }
}

.case__items {
  width: 67.5%;
  margin: 40px auto 100px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 40px;
  row-gap: 50px;
}
@media screen and (max-width: 1279px) {
  .case__items {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(4, auto);
    gap: 40px;
    row-gap: 50px;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .case__items {
    display: block;
    width: 100%;
    margin-bottom: 60px;
  }
  .case__items img {
    width: 100%;
  }
}

@media screen and (max-width: 1279px) {
  .case__item img {
    width: 60%;
  }
}

.flow {
  background: #F9F9F9;
  padding-top: 90px;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .flow {
    padding-top: 60px;
  }
}

.flow__container {
  width: 75.2%;
  margin: 0 auto;
}
@media screen and (max-width: 1279px) {
  .flow__container {
    width: 85%;
  }
}
@media screen and (max-width: 767px) {
  .flow__container {
    width: 89.3%;
  }
}

.flow__items {
  margin-top: 53px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .flow__items {
    display: block;
    margin-top: 64px;
  }
}

.flow__item {
  width: calc(33.3% - 76.6666666667px);
  position: relative;
}
@media screen and (max-width: 1279px) {
  .flow__item {
    width: calc(33.3% - 43.3333333333px);
  }
}
@media screen and (max-width: 767px) {
  .flow__item {
    width: 100%;
  }
  .flow__item:nth-child(n+2) {
    margin-top: 84px;
  }
}

.flow__item-no {
  position: absolute;
  top: -35px;
  left: -7px;
  color: #64629D;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.flow__item-img {
  width: 100%;
  border-radius: 30px;
  background: #EDECFC;
  height: auto;
  display: flex;
  justify-content: center;
  height: 191px;
}
.flow__item-title {
  color: #2D2D32;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-top: 16px;
  margin-bottom: 8px;
}
@media screen and (max-width: 1279px) {
  .flow__item-title {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .flow__item-title {
    font-size: 20px;
  }
}

.flow__item-text {
  color: #2D2D32;
  font-family: Noto Sans JP;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28.8px; /* 180% */
}
@media screen and (max-width: 1279px) {
  .flow__item-text {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .flow__item-text {
    font-size: 16px;
  }
}

.flow__item-icon {
  margin-right: 44px;
  margin-left: 44px;
  margin-top: 67.5px;
}
@media screen and (max-width: 1279px) {
  .flow__item-icon {
    margin-right: 16px;
    margin-left: 16px;
  }
}
@media screen and (max-width: 767px) {
  .flow__item-icon {
    display: none;
  }
}

.price {
  padding-top: 93px;
}
@media screen and (max-width: 767px) {
  .price {
    padding-top: 60px;
  }
}

.price__items {
  width: 70.8%;
  margin: 68px auto 0px;
  display: flex;
  justify-content: end;
  align-items: center;
}
@media screen and (max-width: 1279px) {
  .price__items {
    width: 90.8%;
  }
}
@media screen and (max-width: 767px) {
  .price__items {
    display: block;
  }
}

.price__item {
  width: 25.5%;
  background: #2D2D32;
  height: 286px;
}
@media screen and (max-width: 767px) {
  .price__item {
    width: 100%;
  }
  .price__item:nth-child(n+2) {
    margin-top: 560px;
  }
  .price__item table {
    margin-top: 100px;
    width: 100%;
  }
}

.price__item-light, .price__item-premium {
  height: 270px;
  margin-top: auto;
}

.price__item-basic {
  background: #64629D;
  height: 286px;
}
.price__item-basic .price__title {
  margin-top: 63px;
  font-size: 28px;
}
@media screen and (max-width: 1279px) {
  .price__item-basic .price__title {
    font-size: 24px;
  }
}
.price__item-basic .price__monthly-content {
  margin-top: 6px;
}
@media screen and (max-width: 1279px) {
  .price__item-basic .price__monthly-content {
    margin-top: 18px;
  }
}
.price__item-basic .price__monthly-text {
  font-size: 26px;
}
@media screen and (max-width: 1279px) {
  .price__item-basic .price__monthly-text {
    font-size: 20px;
  }
}
.price__item-basic .price__monthly-amount {
  font-size: 42px;
}
@media screen and (max-width: 1279px) {
  .price__item-basic .price__monthly-amount {
    font-size: 36px;
  }
}
.price__item-basic .price__monthly-amount-yen {
  font-size: 24px;
}
.price__item-basic .price__monthly-button {
  margin-top: 16px;
  transition: all 0.5s ease-in-out;
}
.price__item-basic .price__monthly-button:hover {
  transform: translateY(-5px);
}
.price__item-basic .price__monthly-button a {
  background: #64629D;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.price__title {
  margin-top: 47px;
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
@media screen and (max-width: 767px) {
  .price__title {
    padding-top: 33px;
  }
}

.price__monthly-content {
  margin-top: 17px;
  display: flex;
  justify-content: center;
  align-items: end;
}

.price__monthly-text {
  color: #FFF;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 6px;
}

.price__monthly-amount {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-right: 6px;
  margin-left: 6px;
}

.price__monthly-amount-yen {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 6px;
}

.price__monthly-button {
  margin-top: 28px;
  font-size: 18px !important;
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 17px;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.5s ease-in-out;
}
.price__monthly-button:hover {
  transform: translateY(-5px);
}
.price__monthly-button a {
  width: 100%;
  height: 50px;
  flex-shrink: 0;
  border-radius: 50px;
  background: #FFFFFF;
  color: #2D2D32;
  border: 2px solid #2D2D32;
  display: flex;
  justify-content: center;
  align-items: center;
}

.price__blue-button a {
  background: #64629D;
  color: #FFFFFF;
  border: 2px solid #64629D;
}

table {
  width: 70.8%;
  margin: 0px auto 114px;
  border-collapse: collapse;
}
@media screen and (max-width: 1279px) {
  table {
    width: 90.8%;
  }
}

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

th {
  width: 23.5%;
  color: #2D2d32;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px; /* 100% */
  text-align: left;
  padding-left: 32px;
  padding-top: 19px;
  padding-bottom: 19px;
}
@media screen and (max-width: 1279px) {
  th {
    font-size: 16px;
  }
}

td {
  width: 25.5%;
  color: #000000;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px; /* 100% */
}

tr > td:nth-child(3) {
  font-size: 24px;
  font-weight: bold;
}

tr:nth-child(8) {
  height: 81px;
}

.price__button {
  font-size: 18px !important;
  width: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 17px;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.5s ease-in-out;
}
.price__button:hover {
  transform: translateY(-5px);
}
.price__button a {
  width: 100%;
  height: 50px;
  flex-shrink: 0;
  border-radius: 50px;
  background: #FFFFFF;
  color: #2D2D32;
  border: 2px solid #2D2D32;
  display: flex;
  justify-content: center;
  align-items: center;
}

.price__blue-button a {
  background: #64629D;
  color: #FFFFFF;
  border: 2px solid #64629D;
}

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

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

.qa {
  background: #F9F9F9;
  padding-top: 80px;
  padding-bottom: 103px;
}
@media screen and (max-width: 767px) {
  .qa {
    padding-top: 60px;
  }
}

.qa__container {
  width: 63.8%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .qa__container {
    width: 89.3%;
  }
}

.qa__items {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .qa__items {
    margin-top: 28px;
  }
}

.qa__item:nth-child(n+2) {
  margin-top: 24px;
}

.qa__box-q {
  color: #FFFFFF;
  background: #64629D;
  border-radius: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px; /* 100% */
  padding: 22px 56px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .qa__box-q {
    font-size: 16px;
    padding: 13px 19px 8px 52px;
    height: 75px;
    line-height: 1.6;
  }
}
.qa__box-q::before {
  content: "Q";
  position: absolute;
  top: 22px;
  left: 26px;
}
@media screen and (max-width: 767px) {
  .qa__box-q::before {
    top: 13px;
    left: 13px;
  }
}

.qa__box-icon {
  width: 16px;
  height: 16px;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .qa__box-icon {
    display: none;
  }
}
.qa__box-icon.is-open .qa__box-bar2 {
  transform: rotate(90deg);
}

.qa__box-bar1 {
  width: 16px;
  height: 2px;
  background: #FFFFFF;
  border: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.qa__box-bar2 {
  width: 2px;
  height: 16px;
  background: #FFFFFF;
  border: 20px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease;
}

.qa__box-a {
  color: #2D2D32;
  background: #FFFFFF;
  border-radius: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 32.4px; /* 100% */
  padding: 21px 56px;
  position: relative;
  margin-top: 14px;
  display: none;
}
@media screen and (max-width: 767px) {
  .qa__box-a {
    font-size: 16px;
    padding: 12px 16px 12px 40px;
  }
}
.qa__box-a::before {
  content: "A";
  position: absolute;
  top: 16px;
  left: 27px;
}
@media screen and (max-width: 767px) {
  .qa__box-a::before {
    top: 10px;
    left: 13px;
  }
}

footer {
  background: #000000;
  height: 140px;
}
@media screen and (max-width: 767px) {
  footer {
    height: 360px;
  }
}

.footer__inner {
  color: #FFFFFF;
  display: flex;
  width: 82%;
  margin: 0 auto;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .footer__inner {
    flex-direction: column-reverse;
  }
}
.footer__inner a {
  color: #FFFFFF;
}

.footer__logo {
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 100% */
  letter-spacing: 0.72px;
  margin-top: 27px;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    margin-top: 0;
    text-align: center;
  }
}

.footer__nav {
  display: flex;
}
@media screen and (max-width: 767px) {
  .footer__nav {
    display: block;
    text-align: center;
  }
}

.footer__nav-item {
  margin-top: 19px;
  -moz-text-align-last: left;
  text-align-last: left;
  margin-right: 10px;
}
.footer__nav-item a {
  justify-content: left;
}
@media screen and (max-width: 767px) {
  .footer__nav-item a {
    display: flex;
    justify-content: center;
  }
}
.footer__nav-item a:nth-child(n+2) {
  margin-left: 14px;
}
@media screen and (max-width: 767px) {
  .footer__nav-item a:nth-child(n+2) {
    margin-left: auto;
    margin-right: auto;
  }
}
.footer__nav-item a:nth-child(n+2) a {
  font-size: 14px;
  font-weight: 700;
  line-height: 14px;
  letter-spacing: 0.42px;
}

small {
  display: block;
  margin-top: 19px;
}

.footer__sns {
  margin-left: auto;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .footer__sns {
    margin: 40px auto 32px;
  }
}

.footer__sns-title {
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
}

.footer__icons {
  display: flex;
}

.footer__icon {
  margin-top: 12px;
  width: 24px;
  height: 24px;
}
.footer__icon:nth-child(n+2) {
  margin-left: 18px;
}