/*======================================
    media query
======================================*/
/*======================================
    color
======================================*/
/*======================================
    base
======================================*/
body {
  font-size: 16px;
  background-color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  color: #2D2D32;
}

a {
  text-decoration: none;
  color: #2D2D32;
}

img {
  width: 100%;
}

.main {
  margin-top: 72px;
}

@media screen and (max-width: 767px) {
  .main {
    margin-top: 52px;
  }
}

.inner {
  padding: 0 133px 0 120px;
  margin: 0 auto;
}

@media screen and (min-width: 1200px) and (max-width: 1439px) {
  .inner {
    padding: 0 9.2361vw 0 8.3333vw;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .inner {
    padding: 0 5.2083vw;
  }
}

@media screen and (max-width: 767px) {
  .inner {
    padding: 0 5.3333vw;
  }
}

.section__inner {
  padding: 100px 0;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .section__inner {
    padding: 60px 0;
  }
}

@media screen and (max-width: 767px) {
  .section__inner {
    padding: 60px 0;
  }
}

.section-title__en {
  font-family: "futura-pt-bold", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2.25rem;
  color: #9F9EC1;
  text-align: center;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .section-title__en {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .section-title__en {
    font-size: 1.375rem;
  }
}

.section-title {
  color: #64629D;
  font-weight: bold;
  font-size: 3rem;
  letter-spacing: 0.05rem;
  margin-top: 18px;
  text-align: center;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .section-title {
    font-size: 2.25rem;
  }
}

@media screen and (max-width: 767px) {
  .section-title {
    margin-top: 12px;
    font-size: 1.875rem;
    line-height: 42px;
  }
  .section-title span {
    display: block;
    font-weight: bold;
  }
}

.btn {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  padding: 23px 56px;
  background-color: #64629D;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.24);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.24);
  border-radius: 50px;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .btn {
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 767px) {
  .btn {
    font-size: 1.125rem;
    padding: 18px 0 22px;
    width: 300px;
    max-width: 100%;
  }
}

@-webkit-keyframes shiny {
  20% {
    left: 125%;
  }
  100% {
    left: 125%;
  }
}

@keyframes shiny {
  20% {
    left: 125%;
  }
  100% {
    left: 125%;
  }
}

.btn-shiny {
  overflow: hidden;
  position: relative;
}

.btn-shiny::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  width: 70%;
  height: 100%;
  -webkit-transform: skewX(-25deg);
          transform: skewX(-25deg);
  background-color: rgba(255, 255, 255, 0.7);
  opacity: 0;
}

.btn-shiny:hover {
  opacity: 1;
}

.btn-shiny:hover::before {
  opacity: 1;
  -webkit-animation-name: shiny;
          animation-name: shiny;
  -webkit-animation-duration: 2.5s;
          animation-duration: 2.5s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background-color: #fff;
}

.header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 72px;
}

@media screen and (max-width: 767px) {
  .header__container {
    height: 52px;
  }
}

.header-logo__link {
  font-family: 'Lato', sans-serif;
  color: #64629D;
  font-size: 1.75rem;
  font-weight: bold;
  letter-spacing: 0.05rem;
}

@media screen and (max-width: 767px) {
  .header-logo__link {
    font-size: 1.5rem;
  }
}

.header-nav {
  margin-left: auto;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .header-nav {
    display: none;
  }
}

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

.header-nav__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-nav__list:nth-child(n + 2):nth-last-child(n + 2) {
  margin-left: 16px;
}

.header-nav__list:not(:last-child) > .header-nav__list-link:hover {
  opacity: 0.7;
}

.header-nav__list:last-child {
  margin-left: 14px;
}

.header-nav__list:last-child > .header-nav__list-link {
  display: inline-block;
  font-size: 1rem;
  padding: 12px 26px;
  border-radius: 25px;
  letter-spacing: 0;
  color: #fff;
  background-color: #64629D;
}

.header-nav__list-link {
  font-size: 0.875rem;
  font-weight: bold;
  letter-spacing: 0.03em;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

/*======================================
    drawer
======================================*/
.drawer-icon {
  position: fixed;
  top: 10px;
  right: 20px;
  z-index: 350;
}

.drawer-icon.is-active .drawer-icon-bar1 {
  opacity: 0;
}

.drawer-icon.is-active .drawer-icon-bar2 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 18px;
  width: 24px;
}

@media screen and (max-width: 767px) {
  .drawer-icon.is-active .drawer-icon-bar2 {
    top: 16px;
  }
}

.drawer-icon.is-active .drawer-icon-bar3 {
  opacity: 0;
}

.drawer-icon.is-active .drawer-icon-bar4 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 18px;
  width: 24px;
}

@media screen and (max-width: 767px) {
  .drawer-icon.is-active .drawer-icon-bar4 {
    top: 16px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .drawer-icon {
    right: 60px;
    top: 20px;
  }
}

@media screen and (min-width: 1440px) {
  .drawer-icon {
    display: none;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1439px) {
  .drawer-icon {
    display: none;
  }
}

.drawer-icon-bars {
  width: 21px;
  height: 33px;
  position: relative;
}

.drawer-icon-bar1 {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  font-size: 6px;
  letter-spacing: 0.02em;
  color: #64629D;
  font-weight: bold;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

.drawer-icon-bar2,
.drawer-icon-bar3,
.drawer-icon-bar4 {
  position: absolute;
  right: 0;
  background-color: #64629D;
  height: 3px;
  border-radius: 50px;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.drawer-icon-bar2 {
  width: 21px;
  top: 12px;
}

.drawer-icon-bar3 {
  width: 13px;
  top: 21px;
}

.drawer-icon-bar4 {
  width: 21px;
  top: 30px;
}

.drawer-content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 299;
  -webkit-transform: translateX(105%);
          transform: translateX(105%);
  opacity: 0;
  -webkit-transition: opacity .5s ease, -webkit-transform .5s ease;
  transition: opacity .5s ease, -webkit-transform .5s ease;
  transition: transform .5s ease, opacity .5s ease;
  transition: transform .5s ease, opacity .5s ease, -webkit-transform .5s ease;
}

.drawer-content.is-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

.drawer-content-items {
  margin: 120px auto 0;
  width: calc(500 / 768 * 100vw);
}

@media screen and (max-width: 767px) {
  .drawer-content-items {
    margin-top: 134px;
    width: calc(300 / 375 * 100vw);
  }
}

.drawer-content-item {
  position: relative;
}

.drawer-content-item:nth-child(n + 2) {
  margin-top: 40px;
}

.drawer-content-item:nth-child(6) {
  margin-top: 62px;
}

.drawer-content-item:nth-child(7) {
  margin-top: 24px;
}

.drawer-content-item:not(:nth-last-child(-n + 2)) a {
  display: inline-block;
  padding-left: 35px;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.03em;
  position: relative;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

.drawer-content-item:not(:nth-last-child(-n + 2)) a:hover {
  opacity: 0.7;
}

.drawer-content-item:not(:nth-last-child(-n + 2)) a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  width: 18px;
  height: 18px;
  border: 2px solid #64629D;
}

@media screen and (max-width: 767px) {
  .drawer-content-item:not(:nth-last-child(-n + 2)) a {
    margin-left: 44px;
  }
}

.drawer-btn__link {
  display: inline-block;
  font-size: 1.125rem;
  font-weight: bold;
  padding: 16px 0;
  background-color: #64629D;
  border-radius: 30px;
  color: #fff;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.24);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.24);
  border: 2px solid #64629D;
  text-align: center;
  width: 100%;
}

.drawer-btn__link.-light {
  background-color: #fff;
  color: #64629D;
}

.drawer-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 298;
  background-color: #EDECFC;
  -webkit-transform: translateX(105%);
          transform: translateX(105%);
  opacity: 0;
  -webkit-transition: opacity .5s ease, -webkit-transform .5s ease;
  transition: opacity .5s ease, -webkit-transform .5s ease;
  transition: transform .5s ease, opacity .5s ease;
  transition: transform .5s ease, opacity .5s ease, -webkit-transform .5s ease;
}

.drawer-background.is-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}

.mv {
  padding: 33px 0;
  background-color: #EDECFC;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .mv {
    padding: 60px 0;
  }
}

@media screen and (max-width: 767px) {
  .mv {
    padding: 60px 0;
  }
}

.mv__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (min-width: 1440px) {
  .mv__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1439px) {
  .mv__container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.mv__contents {
  display: contents;
}

@media screen and (min-width: 1440px) {
  .mv__contents {
    display: initial;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1439px) {
  .mv__contents {
    display: initial;
  }
}

.mv-title,
.mv-lead,
.mv-img {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

@media screen and (min-width: 1440px) {
  .mv-title,
  .mv-lead,
  .mv-img {
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1439px) {
  .mv-title,
  .mv-lead,
  .mv-img {
    -webkit-box-ordinal-group: initial;
        -ms-flex-order: initial;
            order: initial;
  }
}

.mv-title {
  font-size: 3.75rem;
  font-weight: bold;
  line-height: 86.88px;
}

@media screen and (min-width: 1200px) and (max-width: 1439px) {
  .mv-title {
    font-size: 3rem;
    line-height: 76px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .mv-title {
    font-size: 2.5rem;
    line-height: 58px;
  }
}

@media screen and (max-width: 767px) {
  .mv-title {
    font-size: 1.875rem;
    line-height: 48px;
  }
}

.mv-title span {
  display: block;
  font-weight: bold;
}

.mv-img {
  width: 515px;
  height: 515px;
  background: url(../img/mv.png) no-repeat center center/contain;
}

@media screen and (min-width: 1440px) {
  .mv-img {
    margin-left: 16px;
  }
}

@media screen and (min-width: 1200px) and (max-width: 1439px) {
  .mv-img {
    margin-left: calc(16 / 1440 * 100vw);
    width: calc(515 / 1440 * 100vw);
    height: calc(515 / 1440 * 100vw);
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .mv-img {
    width: calc(360 / 768 * 100vw);
    height: calc(360 / 768 * 100vw);
    margin: -5.0042vw auto 0;
  }
}

@media screen and (max-width: 767px) {
  .mv-img {
    width: calc(305 / 375 * 100vw);
    height: calc(305 / 375 * 100vw);
    margin: -6.6667vw auto 0;
  }
}

.mv-lead {
  margin-top: 24px;
  font-size: 1.125rem;
  line-height: 32.4px;
}

@media screen and (min-width: 1200px) and (max-width: 1439px) {
  .mv-lead {
    font-size: 1rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .mv-lead {
    font-size: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .mv-lead {
    font-size: 1rem;
    line-height: 25.6px;
    margin-top: 16px;
  }
}

.mv-lead span {
  display: block;
}

@media screen and (max-width: 767px) {
  .mv-lead span {
    display: inline;
  }
}

.mv-btns {
  margin-top: 33px;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .mv-btns {
    margin-top: -5.0042vw;
  }
}

@media screen and (max-width: 767px) {
  .mv-btns {
    margin-top: -3.7333vw;
  }
}

.mv-btn__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .mv-btn__container {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

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

.mv-btn:last-child {
  margin-left: 37px;
}

@media screen and (min-width: 1200px) and (max-width: 1439px) {
  .mv-btn:last-child {
    margin-left: calc(37 / 1440 * 100vw);
  }
}

@media screen and (max-width: 767px) {
  .mv-btn:last-child {
    margin-left: 0;
    margin-top: 32px;
  }
}

.mv-btn__link {
  display: inline-block;
  font-size: 1.125rem;
  font-weight: bold;
  padding: 16px 0;
  background-color: #64629D;
  border-radius: 27px;
  color: #fff;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.24);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.24);
  border: 2px solid #64629D;
  text-align: center;
  width: 250px;
}

@media screen and (max-width: 767px) {
  .mv-btn__link {
    width: 100%;
  }
}

.mv-btn__link.-light {
  background-color: #fff;
  color: #64629D;
}

.about {
  text-align: center;
}

.about__text {
  line-height: 32px;
  font-size: 1.125rem;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .about__text {
    font-size: 0.875rem;
    line-height: 28px;
  }
}

@media screen and (max-width: 767px) {
  .about__text {
    font-size: 1rem;
    line-height: 25.6px;
    text-align: center;
  }
  .about__text span.is-sp {
    display: block;
  }
}

.about__text:first-child {
  margin-top: 29px;
}

@media screen and (max-width: 767px) {
  .about__text:first-child {
    margin-top: 24px;
  }
}

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

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .about__text:nth-child(n + 2) {
    margin-top: 24px;
  }
}

@media screen and (max-width: 767px) {
  .about__text:nth-child(n + 2) {
    margin-top: 25px;
  }
}

.about__text > .about__text-bold {
  font-weight: bold;
}

.about__btn {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .about__btn {
    margin-top: 24px;
  }
}

.feature {
  text-align: center;
  background-color: #F9F9F9;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .feature {
    text-align: left;
  }
}

@media screen and (max-width: 767px) {
  .feature {
    text-align: left;
  }
}

.feature-items {
  margin: 256px auto 0;
  width: 1187px;
  max-width: 100%;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .feature-items {
    margin-top: 300px;
  }
}

@media screen and (max-width: 767px) {
  .feature-items {
    margin: 245px auto 0;
  }
}

@media screen and (max-width: 767px) {
  .feature-item {
    margin: 0 -5.3333vw;
    width: calc(100% + 10.6666vw);
  }
}

.feature-item:nth-child(odd) > .feature-item__content {
  margin-right: auto;
  padding: 65px 124px 64px 40px;
}

@media screen and (min-width: 1200px) and (max-width: 1439px) {
  .feature-item:nth-child(odd) > .feature-item__content {
    padding: 4.5139vw 8.6111vw 4.4444vw 2.7778vw;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .feature-item:nth-child(odd) > .feature-item__content {
    padding: 40px;
  }
}

@media screen and (max-width: 767px) {
  .feature-item:nth-child(odd) > .feature-item__content {
    padding: 49px 20px 40px 20px;
  }
}

.feature-item:nth-child(even) > .feature-item__content {
  margin-left: auto;
  margin-top: 153px;
  padding: 65px 19px 64px 40px;
}

@media screen and (min-width: 1200px) and (max-width: 1439px) {
  .feature-item:nth-child(even) > .feature-item__content {
    padding: 4.5139vw 1.3194vw 4.4444vw 2.7778vw;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .feature-item:nth-child(even) > .feature-item__content {
    margin-top: 280px;
  }
}

@media screen and (max-width: 767px) {
  .feature-item:nth-child(even) > .feature-item__content {
    padding: 49px 0 40px 20px;
    margin-top: 258px;
  }
  .feature-item:nth-child(even) > .feature-item__content > .feature-item__texts > .feature-item__text {
    margin-right: 20px;
  }
}

.feature-item:nth-child(3) {
  margin-top: 263px;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .feature-item:nth-child(3) {
    margin-top: 280px;
  }
}

@media screen and (max-width: 767px) {
  .feature-item:nth-child(3) {
    margin-top: 265px;
  }
}

.feature-item__content {
  width: 742px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  border-radius: 30px;
  position: relative;
}

@media screen and (min-width: 1200px) and (max-width: 1439px) {
  .feature-item__content {
    width: calc(742 / 1440 * 100vw);
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .feature-item__content {
    width: 65.0142vw;
    min-width: 600px;
    margin: 0 auto;
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .feature-item__content {
    width: 100%;
    max-width: 600px;
    display: block;
    margin: 0 auto;
  }
}

.feature-item__number {
  font-size: 4.5rem;
  font-weight: bold;
  color: #64629D;
}

@media screen and (min-width: 1200px) and (max-width: 1439px) {
  .feature-item__number {
    font-size: 5vw;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .feature-item__number {
    font-size: 54px;
  }
}

@media screen and (max-width: 767px) {
  .feature-item__number {
    font-size: 2.625rem;
  }
}

.feature-item__texts {
  text-align: left;
  margin-left: 18px;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .feature-item__texts {
    margin-left: 0;
    margin-top: 16px;
  }
}

@media screen and (max-width: 767px) {
  .feature-item__texts {
    margin-left: 0;
  }
}

.feature-item__title {
  font-size: 2.25rem;
  font-weight: bold;
  line-height: 52px;
}

@media screen and (min-width: 1200px) and (max-width: 1439px) {
  .feature-item__title {
    font-size: 1.875rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .feature-item__title {
    font-size: 1.875rem;
    line-height: 43px;
  }
}

@media screen and (max-width: 767px) {
  .feature-item__title {
    font-size: 1.25rem;
    line-height: 32px;
    margin-top: 4px;
  }
}

.feature-item__title span {
  display: block;
  font-weight: bold;
}

.feature-item__text {
  margin-top: 17px;
  line-height: 29px;
  max-width: 470px;
}

@media screen and (min-width: 1200px) and (max-width: 1439px) {
  .feature-item__text {
    max-width: calc(470 / 1440 * 100vw);
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .feature-item__text {
    max-width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .feature-item__text {
    margin-top: 8px;
    font-size: 0.875em;
    max-width: 100%;
  }
}

.feature-item__text span {
  display: block;
}

@media screen and (max-width: 767px) {
  .feature-item__text span {
    display: inline;
  }
}

.feature-item__img {
  position: absolute;
  width: 520px;
  height: 520px;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .feature-item__img {
    width: 360px;
    height: 360px;
  }
}

@media screen and (max-width: 767px) {
  .feature-item__img {
    width: 280px;
    height: 280px;
  }
}

.feature-item__img.-first {
  bottom: 0;
  right: -425px;
  background: url(../img/feature1.png) no-repeat center center/contain;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .feature-item__img.-first {
    top: -240px;
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}

@media screen and (max-width: 767px) {
  .feature-item__img.-first {
    top: -205px;
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}

.feature-item__img.-second {
  top: 25px;
  left: -446px;
  background: url(../img/feature2.png) no-repeat center center/contain;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .feature-item__img.-second {
    top: -240px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@media screen and (max-width: 767px) {
  .feature-item__img.-second {
    top: -198px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.feature-item__img.-third {
  bottom: 0;
  right: -425px;
  background: url(../img/feature3.png) no-repeat center center/contain;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .feature-item__img.-third {
    top: -240px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@media screen and (max-width: 767px) {
  .feature-item__img.-third {
    top: -205px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.cv {
  background-color: #2D2D32;
  text-align: center;
}

.cv__inner {
  padding: 60px 0;
}

@media screen and (max-width: 767px) {
  .cv__inner {
    padding: 40px 0;
  }
}

.cv__text {
  color: #fff;
  font-size: 2.25rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 52px;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .cv__text {
    font-size: 1.75rem;
  }
}

@media screen and (max-width: 767px) {
  .cv__text {
    font-size: 1.125rem;
    line-height: 28.8px;
  }
}

.cv__text span {
  display: block;
  font-weight: bold;
}

.cv__btn {
  margin-top: 32px;
}

@media screen and (max-width: 767px) {
  .cv__btn {
    margin-top: 24px;
  }
}

.users {
  text-align: center;
}

.users-items {
  margin: 40px auto 0;
  width: 972px;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.users-item {
  width: calc(25% - 40px * 3 / 4);
}

@media screen and (max-width: 767px) {
  .users-item {
    width: calc(25% - 2.9333vw * 3 / 4);
  }
}

.users-item:not(:nth-child(4n + 1)) {
  margin-left: 40px;
}

@media screen and (max-width: 767px) {
  .users-item:not(:nth-child(4n + 1)) {
    margin-left: calc(11 / 375 * 100vw);
  }
}

.flow {
  text-align: center;
  background-color: #F9F9F9;
  padding: 100px 0 80px;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .flow {
    padding: 60px 0 50px;
  }
}

@media screen and (max-width: 767px) {
  .flow {
    padding: 60px 0;
  }
}

.flow-items {
  margin: 50px auto 0;
  width: 1070px;
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .flow-items {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .flow-items {
    display: block;
    margin-top: 64px;
  }
}

.flow-item {
  width: calc(33.3% - 115px * 2 / 3);
  position: relative;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .flow-item {
    width: 65.0142vw;
    margin: 0 auto;
  }
}

@media screen and (max-width: 767px) {
  .flow-item {
    width: 100%;
  }
}

.flow-item:not(:first-child) {
  margin-left: 115px;
}

.flow-item:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 64px;
  left: -64px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 32px 0 32px 20px;
  border-color: transparent transparent transparent #C4C4C4;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .flow-item:not(:first-child)::before {
    border-style: none;
  }
}

@media screen and (max-width: 767px) {
  .flow-item:not(:first-child)::before {
    border-style: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .flow-item:not(:first-child) {
    margin: 60px auto 0;
  }
}

@media screen and (max-width: 767px) {
  .flow-item:not(:first-child) {
    margin: 84px auto 0;
  }
}

.flow-item__top {
  width: 100%;
  height: 191px;
  background-color: #EDECFC;
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.flow-item__top::before {
  content: "01";
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-15px, -22px);
          transform: translate(-15px, -22px);
  font-size: 3rem;
  font-weight: bold;
  color: #64629D;
}

@media screen and (max-width: 767px) {
  .flow-item__top::before {
    -webkit-transform: translate(0, -24px);
            transform: translate(0, -24px);
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .flow-item__top {
    height: calc(191 / 768 * 100vw);
  }
}

@media screen and (max-width: 767px) {
  .flow-item__top {
    height: calc(191 / 375 * 100vw);
  }
}

.flow-item__top.-first > img {
  width: 199px;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .flow-item__top.-first > img {
    width: calc(199 / 768 * 100vw);
  }
}

@media screen and (max-width: 767px) {
  .flow-item__top.-first > img {
    width: calc(199 / 375 * 100vw);
  }
}

.flow-item__top.-second::before {
  content: "02";
}

.flow-item__top.-second > img {
  width: 198px;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .flow-item__top.-second > img {
    width: calc(198 / 768 * 100vw);
  }
}

@media screen and (max-width: 767px) {
  .flow-item__top.-second > img {
    width: calc(198 / 375 * 100vw);
  }
}

.flow-item__top.-third::before {
  content: "03";
}

.flow-item__top.-third > img {
  width: 192px;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .flow-item__top.-third > img {
    width: calc(192 / 768 * 100vw);
  }
}

@media screen and (max-width: 767px) {
  .flow-item__top.-third > img {
    width: calc(192 / 375 * 100vw);
  }
}

.flow-item__title {
  margin-top: 16px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 35px;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .flow-item__title {
    margin-top: 20px;
  }
}

@media screen and (max-width: 767px) {
  .flow-item__title {
    font-size: 1.25rem;
    line-height: 20px;
  }
}

.flow-item__text {
  margin-top: 8px;
  line-height: 29px;
  text-align: left;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .flow-item__text {
    margin: 20px auto 0;
    width: 80%;
  }
}

.table-wrap {
  overflow: scroll;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .table-wrap {
    margin-right: -5.2083vw;
  }
}

@media screen and (max-width: 767px) {
  .table-wrap {
    margin-right: -5.3333vw;
  }
}

.price-table {
  width: 1020px;
  margin: 84px auto 0;
  table-layout: fixed;
  border-collapse: collapse;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .price-table {
    width: calc(1020 + 5.2083vw);
  }
}

@media screen and (max-width: 767px) {
  .price-table {
    width: calc(690px + 5.3333vw);
    margin-top: 72px;
  }
}

.price-table tr:nth-child(odd) > th.table-row,
.price-table tr:nth-child(odd) > td {
  background-color: #fff;
}

.price-table tr:nth-child(even) > th.table-row,
.price-table tr:nth-child(even) > td {
  background-color: #EDECFC;
}

.price-table tr:first-child th.table-row,
.price-table tr:first-child td {
  background-color: transparent;
}

.price-table th.table-row {
  position: -webkit-sticky;
  position: sticky;
  left: 0;
  text-align: left;
  font-size: 1.375rem;
  padding: 19px 0 19px 32px;
  z-index: 3;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .price-table th.table-row {
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 767px) {
  .price-table th.table-row {
    font-size: 15px;
    padding: 14px 0 14px 18px;
    width: 150px;
  }
}

.price-table td {
  text-align: center;
  font-size: 1.125rem;
  padding: 19px 0;
  position: relative;
  z-index: 2;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .price-table td {
    font-size: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .price-table td {
    font-size: 15px;
    padding: 14px 0;
  }
}

.price-table td.popular {
  font-size: 1.5rem;
  font-weight: bold;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .price-table td.popular {
    font-size: 1.125rem;
  }
}

.price-btn {
  display: inline-block;
  font-size: 1.125rem;
  padding: 14px 0;
  width: 100%;
  max-width: 234px;
  border-radius: 50px;
  border: 2px solid #2d2d32;
  background-color: #fff;
  font-weight: bold;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .price-btn {
    font-size: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .price-btn {
    font-size: 1rem;
    max-width: 166px;
    padding: 13px 0;
  }
}

.price-btn.-popular {
  color: #fff;
  background-color: #64629D;
  border: 2px solid #64629D;
}

.table-head {
  background-color: #2D2D32;
  color: #fff;
  vertical-align: bottom;
  padding: 47px 13px 41px;
}

@media screen and (max-width: 767px) {
  .table-head {
    padding: 28px 7px 28px;
  }
}

.table-head.-popular {
  background-color: #64629D;
  position: relative;
  z-index: 2;
}

.table-head__big {
  position: absolute;
  top: -11px;
  left: 0;
  right: 0;
  height: calc(100% + 11px);
  -webkit-box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6), 0 0 0 rgba(0, 0, 0, 0);
          box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6), 0 0 0 rgba(0, 0, 0, 0);
  background-color: #64629D;
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .table-head__big {
    top: -32px;
    height: calc(100% + 32px);
  }
}

.table-head__title {
  display: block;
  text-align: center;
  font-size: 1.5rem;
  line-height: 35px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .table-head__title {
    font-size: 1.25rem;
  }
}

.table-head__title.-popular {
  font-size: 1.75rem;
}

@media screen and (max-width: 767px) {
  .table-head__title.-popular {
    font-size: 1.46rem;
  }
}

.table-head__detail {
  display: block;
  text-align: center;
  margin-top: 17px;
  font-size: 1.125rem;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .table-head__detail {
    margin-top: 11px;
    font-size: 0.75rem;
  }
}

.table-head__detail.-popular {
  font-size: 1.5rem;
}

@media screen and (max-width: 767px) {
  .table-head__detail.-popular {
    font-size: 1rem;
  }
}

.table-head__price {
  font-size: 2.25rem;
  margin: 0 10px;
  line-height: 52px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .table-head__price {
    font-size: 1.875rem;
    margin: 0 6px;
  }
}

.table-head__price.-popular {
  font-size: 2.625rem;
}

@media screen and (max-width: 767px) {
  .table-head__price.-popular {
    font-size: 2.19rem;
  }
}

.table-head__btn {
  display: block;
  text-align: center;
  margin-top: 28px;
}

@media screen and (max-width: 767px) {
  .table-head__btn {
    margin-top: 19px;
  }
}

.table-head__btn > .-popular {
  border: 2px solid #fff;
}

.qa {
  background-color: #F9F9F9;
}

.qa-items {
  margin: 60px auto 0;
  width: 920px;
  max-width: 100%;
}

@media screen and (max-width: 767px) {
  .qa-items {
    margin-top: 40px;
  }
}

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

.qa__question-box {
  padding: 22px 24px;
  background-color: #64629D;
  border-radius: 10px;
}

@media screen and (max-width: 767px) {
  .qa__question-box {
    padding: 10px 10px 8px 15px;
  }
}

.qa__question {
  color: #fff;
  padding-left: 32px;
  font-size: 1.125rem;
  font-weight: bold;
  position: relative;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .qa__question {
    font-size: 1rem;
    line-height: 28px;
  }
}

@media screen and (max-width: 767px) {
  .qa__question {
    font-size: 1rem;
    line-height: 25.6px;
  }
}

.qa__question::before {
  content: "Q";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 1.375rem;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .qa__question::before {
    top: 0;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.qa__answer-box {
  margin-top: 18px;
  padding: 21px 25px;
  background-color: #fff;
  border-radius: 10px;
}

@media screen and (max-width: 767px) {
  .qa__answer-box {
    padding: 12px 16px 12px 15px;
    margin-top: 16px;
  }
}

.qa__answer {
  font-size: 1.125rem;
  line-height: 32px;
  padding-left: 31px;
  position: relative;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .qa__answer {
    font-size: 1rem;
    line-height: 28px;
  }
}

@media screen and (max-width: 767px) {
  .qa__answer {
    font-size: 1rem;
    line-height: 25.6px;
  }
}

.qa__answer::before {
  content: "A";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.375rem;
  font-weight: bold;
}

.footer {
  background-color: #000;
  padding: 27px 0;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 40px 0;
  }
}

.footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

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

.footer-sns__lead {
  font-family: "futura-pt-bold", sans-serif;
  font-weight: bold;
  font-size: 1.125rem;
  line-height: 24px;
  color: #fff;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .footer-sns__lead {
    font-size: 1rem;
  }
}

.footer-sns__icons {
  margin-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .footer-sns__icons {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.footer-sns__icon:nth-child(n + 2) {
  margin-left: 18px;
}

.footer-sns__icon a {
  display: inline-block;
  width: 24px;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .footer-sns__icon a {
    width: 20px;
  }
}

@media screen and (max-width: 767px) {
  .footer-info {
    margin-top: 32px;
  }
}

.footer-logo a {
  font-family: 'Lato', sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.03em;
  color: #fff;
}

.footer-nav {
  margin-top: 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .footer-nav {
    margin-top: 14px;
    display: block;
  }
}

.footer-nav__item:nth-child(n + 2) {
  margin-left: 14px;
}

@media screen and (max-width: 767px) {
  .footer-nav__item:nth-child(n + 2) {
    margin-left: 0;
    margin-top: 14px;
  }
}

.footer-nav__item a {
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  font-weight: bold;
  color: #fff;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .footer-nav__item a {
    font-size: 0.75rem;
  }
}

.copyright {
  margin-top: 19px;
  font-size: 0.625rem;
  color: #fff;
  letter-spacing: 0.03em;
}

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

.copyright span {
  margin-left: 14px;
}

@media screen and (max-width: 767px) {
  .copyright span {
    display: block;
    margin-left: 0;
    margin-top: 10px;
  }
}
