/* --------------------------------------------------------------------------------
 * web fonts
-------------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
/* ----------------------------------------------------------------------
 reset (exculding 'sup')
---------------------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

input, textarea {
  margin: 0;
  padding: 0;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th {
  text-align: left;
}

img {
  vertical-align: middle;
}

/* ----------------------------------------------------------------------
 basic setting
---------------------------------------------------------------------- */
body {
  /* font-family: "Inter", sans-serif; */
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  color: #2B2B2B;
  line-height: 1.5;
  /*
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  */
}

body * {
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
}
body.is-modal-open {
  overflow: hidden;
}

input, button, textarea, select {
  color: #2B2B2B;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 500;
  font-size: 16px;
}

textarea {
  vertical-align: top;
}

*:focus {
  outline: none;
}

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

a:hover {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

/* ----------------------------------------------------------------------
 common class
---------------------------------------------------------------------- */
@media only screen and (min-width: 751px) {
  .pc-non {
    display: none !important;
  }
}
@media only screen and (max-width: 750px) {
  .sp-non {
    display: none !important;
  }
}
.mb-0 {
  margin-bottom: 0;
}
.mb-24 {
  margin-bottom: 24px;
}

.mt-12 {
  margin-top: 12px;
}
.mt-24 {
  margin-top: 24px;
}
.mt-36 {
  margin-top: 32px;
}
.mt-60 {
  margin-top: 60px;
}
.mt-72 {
  margin-top: 72px;
}
@media screen and (max-width: 750px){
  .mt-36-sp {
    margin-top: 32px;
  }
}

.ta-center {
  text-align: center;
}

.weight-medium {
  font-weight: 500;
}
.weight-sbold {
  font-weight: 600;
}
.weight-bold {
  font-weight: 700;
}

.telLink {
  color: inherit;
  text-decoration: none;
}
@media only screen and (min-width: 751px) {
  .telLink {
    pointer-events: none;
  }
}

.container {
  width: 100%;
  max-width: 1328px;
  padding: 0 24px;
  margin: 0 auto;
  position: relative;
  @media screen and (max-width: 750px){
    padding: 0 35px;
  }
}
.wrapper {
  overflow: hidden;
}


.hover-opacity {
  transition: 0.3s;
}
@media only screen and (min-width: 751px) {
  .hover-opacity:hover {
    opacity: 0.7;
  }
}

.color-blue {
  color: #5156BE;
}

.btn-demo {
  display: inline-block;
  padding: 12px 12px;
  width: 100%;
  max-width: 280px;
  background-color: #5156BE;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  border-radius: 20px;
  text-decoration: none;
  transition: opacity 0.3s ease;
  text-align: center;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  &:hover {
    opacity: 0.7;
  }
}
.btn-primary {
  display: inline-block;
  padding: 12px 12px;
  width: 100%;
  max-width: 280px;
  color: #5156BE;
  border: 1px solid #5156BE;
  font-size: 18px;
  font-weight: 600;
  border-radius: 20px;
  text-decoration: none;
  transition: opacity 0.3s ease;
  text-align: center;
  &:hover {
    opacity: 0.7;
  }
  @media screen and (max-width: 750px){
    font-size: 16px;
  }
}

.link-primary {
  color: #5156BE;
  font-weight: 500;
  &:hover {
    text-decoration: none;
  }
  @media screen and (max-width: 750px){
    font-size: 14px;
  }
}

.featured__link .link-primary {
	font-weight: 400; /* FrancisKが追加したコード */
}

.link-noborder {
  color: inherit;
  text-decoration: none;
}

.title-primary {
  font-size: 56px;
  font-weight: bold;
  @media screen and (max-width: 750px){
    font-size: 30px;
  }
}
.title-secondary {
  font-size: 38px;
  font-weight: bold;
  @media screen and (max-width: 750px){
    font-size: 24px;
  }
}
.title-expertise {
  font-size: 38px;
  font-weight: bold;
  color: #5156BE;
  @media screen and (max-width: 750px){
    font-size: 24px;
  }
}

.text-primary {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7; /* FrancisKが調整したコード */
  @media screen and (max-width: 750px){
    font-size: 14px;
  }
}

.header {
  position: fixed;
  top: 16px;
  left: 0px;
  width: 100%;
  z-index: 100;
  @media screen and (max-width: 750px){
    padding: 0;
    top: 0px;
  }
}
.header__inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 24px;
  background-color: rgba(255,255,255,0);
  backdrop-filter: blur(0px);
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
  &.is-active {
    background-color: rgba(255,255,255,0.8);
    backdrop-filter: blur(10px);
  }
  @media screen and (max-width: 750px){
    padding: 12px 35px;
    border-radius: 0px;
  }
}
.header__logo {
  width: 130px;
}
.header__rnavi {
  display: flex;
  align-items: center;
  @media screen and (max-width: 750px){
    display: none;
  }
}
.header__demo {
  width: 186px;
  margin-right: 24px;
  .btn-demo {
    font-size: 14px;
    padding: 10px;
  }
}
.header__gnavi {
  display: flex;
  align-items: center;
  gap: 40px;
  font-size:.95rem; /* FrancisKが追加したコード */
  @media screen and (max-width: 750px){
    display: none;
  }
  > li {
    > a {
      text-decoration: none;
      color: inherit;
      &:hover {
        color: #5156BE;
      }
      &.no-link {
        pointer-events: none;
      }
    }
    &.has-child {
      position: relative;
      &:after {
        content: "";
        width: 12px;
        height: 6px;
        background: url(../img/arrow_navi.svg) no-repeat center/contain;
        display: inline-block;
        margin-left: 1em;
        position: relative;
        top: -1px;
      }
    }
  }
}
.sub {
  position: absolute;
  top: 100%;
  left: 0px;
  width: 240px;
  padding-top: 24px;
  display: none;
  .sublist {
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #5156BE;
    padding: 6px;
    li {
      padding: 6px 0;
      position: relative;
      &:after {
        content: "";
        height: 1px;
        width: 40%;
        background-color: #5156BE;
        position: absolute;
        top: 100%;
        left: 24px;
      }
      &:last-child {
        &:after {
          display: none;
        }
      }
      a {
        display: block;
        padding: 6px 24px;
        border-radius: 10px;
        transition: background-color 0.3s ease;
        color: inherit;
        text-decoration: none;
        &:hover {
          background-color: #f2f3ff;
        }
        &.no-link {
          pointer-events: none;
          opacity: 0.3;
        }
      }
    }
  }
  .sublist__title {
    font-size: 16px;
    font-weight: 600;
    color: #5156BE;
  }
  .sublist__text {
    font-size: 12px;
    font-weight: 500;
  }
  .sublist__soon {
    display: inline-block;
    font-size: 10px;
    background-color: #5156BE;
    color: #fff;
    padding: 2px 1em;
    border-radius: 50vh;
  }
}
.menu {
  @media screen and (min-width: 751px){
    display: none;
  }
  width: 36px;
  height: 17px;
  position: relative;
  span {
    height: 2px;
    width: 100%;
    background-color: #000000;
    position: absolute;
    &:first-child {
      top: 0px;
      left: 0px;
    }
    &:nth-child(2) {
      top: calc(50% - 1px);
      left: 0px;
    }
    &:last-child {
      bottom: 0px;
      left: 0px;
    }
  }
}
.header__language {
  display: flex;
  gap: 8px;
  li {
    a {
      text-decoration: none;
      color: inherit;
      font-size: 14px;
      font-weight: 500;
      &:hover {
        text-decoration: underline;
      }
      &.is-active {
        text-decoration: underline;
      }
    }
  }
}

.spmega {
  @media screen and (min-width: 751px){
    display: none !important;
  }
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  display: none;
}
.spmega__header {
  display: flex;
  justify-content: space-between;
  padding: 12px 35px 0;
  align-items: center;
}
.spmega__logo {
  width: 130px;
}
.spmega__close {
  width: 36px;
  height: 17px;
  position: relative;
  span {
    height: 2px;
    width: 100%;
    background-color: #000000;
    position: absolute;
    &:first-child {
      top: 7px;
      left: 0px;
      transform: rotate(45deg);
    }
    &:last-child {
      bottom: 8px;
      left: 0px;
      transform: rotate(-45deg);
    }
  }
}
.spmega__navi {
  padding: 40px 35px;
  font-size: 14px;
  > li {
    + li {
      margin-top: 24px;
    }
    > a {
      font-weight: 600;
      text-decoration: none;
      color: inherit;
      &.no-link {
        pointer-events: none;
      }
    }
  }
}
.spmega__sub {
    margin-top: 24px;
    padding-left: 24px;
    font-weight: 500;
    > li {
      + li {
        margin-top: 24px;
      }
      > a {
        text-decoration: none;
        color: inherit;
        &.no-link {
          pointer-events: none;
          opacity: 0.3;
        }
      }
    }
  }

.home-mv {
  @media screen and (min-width: 751px){
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
    mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
  }
  margin-top: 100px;
  height: calc(100vh - 100px);
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: calc((100% - 1280px) / 2);
  @media screen and (max-width: 1328px){
    padding-left: 24px;
  }
  @media screen and (max-width: 750px){
    margin-top: 0;
    height: auto;
    padding-left: 0;
  }
}
.home-mv__title {
  font-size: 56px;
  font-weight: 600;
  line-height: 1.14;
  @media screen and (max-width: 750px){
    order: 2;
    font-size: 30px;
    margin-top: 44px;
    padding: 0 35px;
  }
}
.home-mv__text {
  font-size: 18px;
  margin-top: 30px;
  font-weight: 500;
  max-width: 540px;
  line-height: 2; /* FrancisKが追加したコード */
  @media screen and (max-width: 750px){
    order: 3;
    font-size: 14px;
    margin-top: 24px;
    max-width: 100%;
    padding: 0 35px;
  }
}
.home-mv__movie {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
  video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  @media screen and (max-width: 750px){
    order: 1;
    height: 374px;
    position: static;
  }
}
.home-mv__button {
  margin-top: 30px;
  @media screen and (max-width: 750px){
    margin-top: 24px;
    padding: 0 35px;
    text-align: center;
    order: 4;
  }
}
.home-platform {
  margin-top: 160px;
  padding-bottom: 130px;
  background: url(../img/home/bg_platform.png) no-repeat center bottom;
  @media screen and (max-width: 750px){
    margin-top: 134px;
    padding: 0 35px 120px;
    background-size: 200%;
  }
}
.home-platform__img {
  margin-top: 54px;
  text-align: center;
  img {
    width: 80%;
  }
  @media screen and (max-width: 750px){
    margin: 36px -35px 0;
    img {
      width: 100%;
    }
  }
}
.home-knowlege {
  max-width: 1328px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  display: flex;
  justify-content: flex-end;
  @media screen and (max-width: 750px){
    padding: 0 35px;
    flex-direction: column;
  }
}
.home-knowlege__right {
  width: 72%;
  @media screen and (max-width: 750px){
    width: 100%;
    position: relative;
    z-index: 1;
    img {
      transform: scale(1.2);
      transform-origin: right center;
    }
  }
}
.home-knowlege__left {
  position: absolute;
  z-index: 2;
  top: 0px;
  left: 24px;
  height: 100%;
  width: 39%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  @media screen and (max-width: 750px){
    position: relative;
    left: 0px;
    z-index: 2;
    width: 100%;
    height: auto;
  }
}
.home-knowlege__title {
  font-size: 38px;
  font-weight: 600;
  @media screen and (max-width: 750px){
    font-size: 24px;
    text-align: center;
  }
}
.home-knowlege__text {
  font-size: 16px;
  font-weight: 500;
  @media screen and (max-width: 750px){
    font-size: 12px;
    margin-top: 24px;
    text-align: center;
  }
}
.home-builder {
  display: flex;
  justify-content: space-between;
  background: url(../img/home/bg_builder.png) no-repeat center bottom/1800px;
  padding-bottom: 120px;
  @media screen and (min-width: 1801px){
    background-size: 100% auto;
  }
  @media screen and (max-width: 750px){
    margin-top: 60px;
    padding: 20px 35px 120px;
  }
}
.home-builder__inner {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  @media screen and (max-width: 750px){
    flex-direction: column;
    padding: 0;
  }
}
.home-builder__left {
  width: 200px;
  padding-top: 133px;
  position: relative;
  @media screen and (max-width: 750px){
    width: 100%;
    padding-top: 0;
  }
}
.home-builder__center {
  width: 416px;
  @media screen and (max-width: 750px){
    width: 100%;
  }
}
.home-builder__right {
  width: 416px;
  @media screen and (max-width: 750px){
    width: 100%;
  }
}
.home-builder__num {
  font-size: 16px;
  font-weight: 600;
  color: #5156BE;
  @media screen and (max-width: 750px){
    text-align: center;
  }
  .num {
    display: inline-block;
    background-color: #5156BE;
    border: 2px solid #7B85E8;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    padding-top: 4px;
    text-align: center;
    margin-right: 32px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    @media screen and (max-width: 750px){
      margin-right: 16px;
    }
  }
}
.home-builder__list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  li {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    background-color: #fff;
    border-radius: 10px;
    height: 60px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
    @media screen and (max-width: 750px){
      height: 40px;
    }
  }
}
.home-builder__title {
  margin-bottom: 20px;
  @media screen and (max-width: 750px){
    text-align: center;
  }
  .img {
    display: block;
    width: 102px;
    @media screen and (max-width: 750px){
      margin: 0 auto;
    }
  }
  .large {
    display: block;
    font-size: 38px;
    font-weight: 600;
    color: #5156BE;
    @media screen and (max-width: 750px){
      font-size: 24px;
    }
  }
  .small {
    display: block;
    font-size: 16px;
    font-weight: 500;
    @media screen and (max-width: 750px){
      font-size: 14px;
    }
  }
}
.home-builder__block {
  height: 350px;
  margin-top: 24px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  @media screen and (max-width: 750px){
    padding: 16px 24px;
    height: auto;
  }
}
.home-builder__tag {
  background-color: #5156BE;
  border-radius: 10px;
  color: #fff;
  height: 86px;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 306px;
  @media screen and (max-width: 750px){
    width: 212px;
    height: 64px;
    font-size: 16px;
  }
}
.home-builder__img {
  margin-bottom: 24px;
  @media screen and (max-width: 750px){
    margin-bottom: 16px;
    text-align: center;
    img {
      width: 50px;
    }
  }
}
.home-builder__text {
  font-size: 16px;
  font-weight: 500;
  margin-top: 16px;
  + .home-builder__tag {
    margin-top: 24px;
  }
  @media screen and (max-width: 750px){
    font-size: 14px;
    margin-top: 12px;
    + .home-builder__tag {
      margin-top: 16px;
    }
  }
}
.home-builder__arrow {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 310px;
  img {
    width: 36px;
    transform: rotate(180deg);
    &.is-reverse {
      transform: rotate(0deg);
    }
  }
  @media screen and (max-width: 750px){
    padding: 0;
    height: 60px;
    flex-direction: column;
    align-items: center;
    img {
      transform: rotate(-90deg);
      width: 18px;
      &.is-reverse {
        transform: rotate(90deg);
      }
    }
  }
}
.home-builder__under {
  font-size: 16px;
  font-weight: 500;
  margin-top: 24px;
  text-align: center;
  .bold {
    font-weight: 600;
  }
  @media screen and (max-width: 750px){
    font-size: 13px;
    margin-top: 16px;
  }
}

.home-demo {
  padding-bottom: 150px;
  @media screen and (max-width: 750px){
    padding: 0 0 100px;
  }
}

.home-tools {
  overflow: hidden;
  background: url(../img/home/bg_tools.png) no-repeat center bottom/1800px;
  padding-bottom: 150px;
  @media screen and (max-width: 750px){
    padding: 0 35px 100px;
  }
}
.home-tools__block {
  width: 100%;
  max-width: 1280px;
  margin: 76px auto 0;
  padding: 54px 24px 57px;
  position: relative;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.16);
  @media screen and (max-width: 750px){
    box-shadow: none;
    padding: 0;
    margin-top: 52px;
    background: none;
  }
  &:after {
    content: "";
    height: 23px;
    width: 100vw;
    background: linear-gradient(to right, #5156BE 0%, #ADB2EF 100%);
    position: absolute;
    top: 296px;
    left: calc( -1 * (100vw - 1280px) / 2);
    z-index: 1;
    @media screen and (max-width: 1280px){
      left: 0;
    }
    @media screen and (max-width: 750px){
      display: none;
    }
  }
}
.home-tools__logo {
  width: 312px;
  margin: 0 auto 60px; /* FrancisKが調整したコード */
  @media screen and (max-width: 750px){
    display: none;
  }
}
.home-tools__list {
  display: flex;
  width: 100%;
  max-width: 976px;
  margin: 0 auto;
  justify-content: space-between;
  position: relative;
  @media screen and (max-width: 750px){
    flex-direction: column;
    max-width: 100%;
    gap: 54px;
  }
}
.home-tools__item {
  width: 232px;
  text-align: center;
  position: relative;
  z-index: 3;
  @media screen and (max-width: 750px){
    width: 100%;
  }
  /* &:nth-child(2) {
    .home-tools__tag,
    .home-tools__title,
    .home-tools__text,
    .home-tools__btn {
      opacity: 0.5;
    }
  } */
  &:nth-child(3) {
    .home-tools__tag,
    .home-tools__title,
    .home-tools__text,
    .home-tools__btn {
      opacity: 0.3;
    }
  }
}
.home-tools__tag {
  font-size: 20px;
  color: #fff;
  font-weight: 600;
  background-color: #7B85E8;
  border-radius: 10px;
  margin-bottom: 36px;
}
.home-tools__icon {
  width: 69px;
  height: 69px;
  margin: 0 auto 16px; /* FrancisKが調整したコード */
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  img {
    width: 28px;
  }
}
.home-tools__title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px; /* FrancisKが調整したコード */
}
.home-tools__text {
  margin-bottom: 20px;
  font-weight: 500;
}
.home-tools__btn {
  font-weight: 500;
}
.home-tools__demo {
  margin-top: 60px;  /* FrancisKが調整したコード */
  text-align: center;
}
.home-tools__dots {
  position: absolute;
  width: 220px;
  height: 10px;
  display: flex;
  justify-content: space-between;
  z-index: 2;
  top: 97px;
  right: -203px;
  .item {
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 50%;
  }
}
.home-explore__inner {
  @media screen and (max-width: 750px){
    padding: 0 35px;
  }
}
.home-explore__row {
  max-width: 1328px;
  padding: 0 24px;
  margin: 60px auto 80px;
  display: flex;
  justify-content: space-between;
  @media screen and (max-width: 750px){
    flex-direction: column;
    padding: 0;
    margin: 40px auto 40px;
    gap: 48px;
  }
}
.home-explore__clm {
  width: 356px;
  @media screen and (max-width: 750px){
    width: 100%;
  }
}
.home-explore__thumb {
  width: 100%;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
  overflow: hidden;
  @media screen and (max-width: 750px){
    height: auto;
  }
}
.home-explore__thumb img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  @media screen and (max-width: 750px){
    height: auto;
  }
}
.home-explore__text {
  font-size: 20px;
  font-weight: 600;
  margin-top: 16px;
  @media screen and (max-width: 750px){
    font-size: 18px;
  }
}
.home-explore__link {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 500;
}
.home-explore__btn {
  text-align: center;
  margin-top: 80px;
  @media screen and (max-width: 750px){
    margin-top: 40px;
  }
}
.whitepaper {
  display: flex;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
  overflow: hidden;
  @media screen and (max-width: 750px){
    flex-direction: column;
    width: 100%;
  }
  + .whitepaper {
    margin-top: 60px;
    @media screen and (max-width: 750px){
      margin-top: 40px;
    }
  }
}
.whitepaper__left {
  width: 480px;
  min-height: 388px;
  position: relative;
  @media screen and (max-width: 750px){
    width: 100%;
    height: auto;
    min-height: auto;
  }
}
.whitepaper__left img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  @media screen and (max-width: 750px){
    position: static;
    width: 100%;
    height: auto;
    aspect-ratio: 322 / 252;
  }
}
.whitepaper__right {
  flex: 1;
  padding: 30px 10%;
  @media screen and (max-width: 750px){
    padding: 30px 20px;
  }
}
.whitepaper__tag {
  font-size: 16px;
  font-weight: 600;
  padding: 2px 1em;
  display: inline-block;
  min-width: 160px;
  background-color: #8A8FD1;
  color: #fff;
  text-align: center;
  border-radius: 10px;
  margin-bottom: 18px;
}
.whitepaper__title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 18px;
  @media screen and (max-width: 750px){
    font-size: 18px;
  }
}
.whitepaper__text {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 24px;
  @media screen and (max-width: 750px){
    font-size: 14px;
  }
}
.whitepaper__btn {
  margin-top: 20px;
  font-weight: 500;
}
.footer {
  margin-top: 240px;
  @media screen and (max-width: 750px){
    margin-top: 120px;
  }
}
.footer__top {
  background-color: #5056BE;
  padding: 1px 0;
  position: relative;
  z-index: 2;
  @media screen and (max-width: 750px){
    padding: 44px 35px;
  }
}
.fcontact {
  width: calc(100% - 48px);
  max-width: 1280px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: -36px auto;
  @media screen and (max-width: 750px){
    width: 100%;
    flex-direction: column;
    margin: 0;
  }
}
.fcontact__left {
  color: #fff;
  width: 32.4%;
  @media screen and (max-width: 750px){
    width: 100%;
    margin-bottom: 40px;
  }
}
.fcontact__title {
  font-size: 38px;
  font-weight: 600;
  line-height: 1;
  display: flex;
  align-items: center;
  @media screen and (max-width: 750px){
    flex-direction: column;
    font-size: 24px;
  }
  .icon {
    width: 56px;
    margin-right: 52px;
    @media screen and (max-width: 750px){
      margin: 0 0 12px;
    }
  }
}
.fcontact__text {
  font-size: 18px;
  font-weight: 500;
  margin-top: 16px;
  @media screen and (max-width: 750px){
    font-size: 14px;
  }
}
.fcontact__right {
  width: 56%;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
  /* padding: 60px 75px 48px; */
  position: relative;
  @media screen and (max-width: 750px){
    width: 100%;
    /* padding: 0;
    background: none;
    box-shadow: none; */
  }
  .form-wrapper {
    &.is-hidden {
      visibility: hidden;
    }
  }
}
.fcontact__message {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  h3 {
    font-size: 20px;
    font-weight: 600;
  }
  p {
    font-size: 16px;
    font-weight: 500;
    margin-top: 12px;
  }
  display: none;
  &.is-visible {
    display: flex;
  }
}
.fcontact__item {
  margin-bottom: 16px;
}
.fcontact__input-text {
  width: 100%;
  padding: 0 24px;
  height: 48px;
  border-radius: 20px;
  border: 1px solid #8A8FD1;
  font-size: 16px;
  font-weight: 500;
  &::placeholder {
    color: #5156BE;
  }
  @media screen and (max-width: 750px){
    border-radius: 10px;
  }
}
.fcontact__input-textarea {
  width: 100%;
  padding: 12px 24px;
  height: 108px;
  border-radius: 20px;
  border: 1px solid #8A8FD1;
  font-size: 16px;
  font-weight: 500;
  &::placeholder {
    color: #5156BE;
  }
  @media screen and (max-width: 750px){
    border-radius: 10px;
  }
}
.fcontact__submit {
  -webkit-appearance: none;
  border-style: none;
  padding: 12px 12px;
  width: 100%;
  background-color: #5156BE;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  border-radius: 20px;
  text-decoration: none;
  transition: opacity 0.3s ease;
  text-align: center;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  &:hover {
    opacity: 0.7;
  }
  @media screen and (max-width: 750px){
    background-color: #fff;
    color: #5156BE;
  }
}
.fcontact__caution {
  max-width: 510px;
  font-size: 12px;
  font-weight: 500;
  margin-top: -20px; /* FrancisKが追加したコード */
  margin-inline: auto;
  padding: 0 20px 20px;
  @media screen and (max-width: 750px){
    color: #fff;
    font-size: 10px;
  }
}
.footer__center {
  background-color: #282831;
  padding: 64px 24px 36px;
  @media screen and (max-width: 750px){
    padding: 72px 35px 36px;
  }
}
.footer__inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer__logo {
  width: 158px;
  margin-bottom: 40px;
  @media screen and (max-width: 750px){
    margin-bottom: 36px;
  }
}
.fnavi {
  display: flex;
  justify-content: space-between;
  color: #fff;
  @media screen and (max-width: 750px){
    flex-direction: column;
  }
}
.fnavi__left {
  @media screen and (max-width: 750px){
    order: 2;
  }
}
.fnavi__address {
  font-size: 14px;
  font-weight: 500;
}
.fnavi__center {
  display: flex;
  justify-content: space-between;
  width: 51.6%;
  padding: 0 70px;
  border-left: 1px solid #7B85E8;
  border-right: 1px solid #7B85E8;
  @media screen and (max-width: 750px){
    border-left-style: none;
    border-right-style: none;
    border-bottom: 1px solid #7B85E8;
    padding: 0 0 32px;
    margin-bottom: 32px;
    width: 100%;
    order: 1;
    flex-direction: column;
  }
}
.fnavi__list {
  @media screen and (max-width: 750px){
    + .fnavi__list {
      margin-top: 24px;
    }
  }
  li {
    font-size: 14px;
    + li {
      margin-top: 24px;
    }
    a {
      color: inherit;
      text-decoration: none;
      &:hover {
        text-decoration: underline;
      }
      &.is-inactive {
        pointer-events: none;
        color: #9A9A9A;
      }
      &.no-link {
        pointer-events: none;
      }
    }
  }
  &.has-child {
    @media screen and (max-width: 750px){
      li:not(:first-child) {
        position: relative;
        margin-left: 0.5em;
        padding-left: 1.5em;
        &:before {
          content: "";
          width: 8px;
          height: 1px;
          background-color: #707070;
          position: absolute;
          top: 50%;
          left: 0px;
          transform: translateY(-50%);
        }
        &:after {
          content: "";
          width: 1px;
          height: calc(100% + 24px);
          background-color: #707070;
          position: absolute;
          top: -34px;
          left: 0px;
        }
        &:nth-child(2) {
          &:after{
            height: calc(100% + 12px);
            top: -22px;
          }
        }
      }
    }
  }
}
.fnavi__right {
  width: 24.8%;
  @media screen and (max-width: 750px){
    width: 100%;
    order: 3;
    margin-top: 40px;
  }
}
.badge {
  margin-bottom: 36px;
}
.badge__title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}
.badge__list {
  display: flex;
  align-items: center;
  gap: 24px;
  a {
    img {
      width: 120px;
    }
  }
}
.newspaper__title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}
.newspaper__input {
  position: relative;
  .input-text {
    width: 100%;
    border-style: none;
    font-size: 16px;
    font-weight: 500;
    padding: 0 68px 0 24px;
    height: 36px;
    background-color: #fff;
    border-radius: 20px;
  }
  .wpcf7-spinner {
    position: absolute;
    top: -30px;
    right: 0px;
  }
}
.newspaper__submit {
  position: absolute;
  top: 3px;
  right: 3px;
  -webkit-appearance: none;
  border-style: none;
  width: 54px;
  height: 30px;
  border-radius: 50vh;
  background: #5156BE url(../img/btn_send.svg) no-repeat center/18px;
  text-indent: -9999px;
  cursor: pointer;
}
.newspaper__text {
  margin-top: 12px;
  font-size: 10px;
  font-weight: 500;
}
.newspaper__message {
  font-size: 12px;
  margin-top: 12px;
  display: none;
  &.is-visible {
    display: block;
  }
}
.newspaper {
  .form-wrapper {
    &.is-hidden {
      display: none;
    }
  }
}
.footer__bottom {
  background-color: #000000;
  color: #fff;
  padding: 36px 24px;
  @media screen and (max-width: 750px){
    padding: 36px 35px;
  }
  .footer__inner {
    display: flex;
    justify-content: space-between;
    @media screen and (max-width: 750px){
      flex-direction: column;
    }
  }
}
.footer__copyright {
  font-size: 14px;
  font-weight: 500;
  @media screen and (max-width: 750px){
    order: 3;
    margin-top: 12px;
  }
}
.footer__language {
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  @media screen and (max-width: 750px){
    order: 1;
  }
  .img {
    width: 32px;
    margin-right: 6px;
  }
  .text {
    margin-left: 6px;
    font-size: 14px;
    font-weight: 500;
  }
}
.lastnavi {
  display: flex;
  justify-content: flex-end;
  min-width: 260px;
  @media screen and (max-width: 750px){
    order: 2;
    justify-content: flex-start;
    min-width: initial;
    margin-top: 24px;
  }
  li {
    + li {
      margin-left: 24px;
      padding-left: 24px;
      border-left: 1px solid #535353;
    }
    a {
      color: inherit;
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      &:hover {
        text-decoration: underline;
      }
    }
  }
}

.reqMv {
  padding-top: 30px;
  display: flex;
  justify-content: flex-end;
  position: relative;
  @media screen and (max-width: 750px){
    padding-top: 50px;
    flex-direction: column-reverse;
  }
}
.reqMv__img {
  width: 54%;
  overflow: hidden; /* FrancisKが追加したコード */
  @media screen and (max-width: 750px){
    width: 96%;
    margin-left: auto;
  }
}

/* FrancisKが追加したコード --> */
.reqMv__img img {
  transform: translateX(50px);
  position: relative;
  z-index: -1;
}
/* <-- FrancisKが追加したコード */

.reqMv__inner {
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: 1328px;
  left: calc((100% - 1328px) / 2);
  padding-left: 24px;
  top: 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  @media screen and (max-width: 750px){
    position: static;
    padding: 0 35px;
    width: 100%;
    max-width: initial;
    height: auto;
    display: block;
    margin-top: -36px;
  }
}
.reqMv__title {
  font-size: 56px;
  font-weight: 600;
  line-height: 1.14; /* FrancisKが追加したコード */
  margin-bottom: 30px; /* FrancisKが追加したコード */
  @media screen and (max-width: 750px){
    font-size: 30px;
    text-align: center;
  }
}
.reqMv__text {
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  max-width: 580px;
  @media screen and (max-width: 750px){
    font-size: 14px;
    margin-top: 24px;
    text-align: center;
  }
}
.reqMv__button {
  margin-top: 32px;
  @media screen and (max-width: 750px){
    text-align: center;
  }
}
.reqMv__trial {
  font-size: 14px;
  width: 280px;
  text-align: center;
  margin-top: 12px;
  font-weight: 500;
  @media screen and (max-width: 750px){
    width: 100%;
    font-size: 13px;
  }
}
.reqFeatures {
  overflow: hidden;
  padding-bottom: 150px;
  @media screen and (max-width: 750px){
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.reqFeaturesList {
  margin-top: 160px;
  display: flex;
  flex-direction: column;
  gap: 160px;
  @media screen and (max-width: 750px){
    margin-top: 80px;
    gap: 120px;
  }
}
.reqFeaturesList__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  @media screen and (min-width: 751px){
    &:nth-child(2n) {
      flex-direction: row-reverse;
    }
  }
  @media screen and (max-width: 750px){
    flex-direction: column;
    gap: 24px;
  }
}
.reqFeaturesList__left {
  position: relative;
  z-index: 1;
  @media screen and (min-width: 751px){
    .-item01 & {
      width: 40%;
      &:after {
        content: "";
        position: absolute;
        width: 118%;
        aspect-ratio: 930 / 984;
        background: url(../img/req/bg_features_01.png) no-repeat center/contain;
        top: -14%;
        left: -7%;
        z-index: -1;
      }
    }
    .-item02 & {
      width: 49%;
      &:after {
        content: "";
        position: absolute;
        width: 108%;
        aspect-ratio: 1155 / 870;
        background: url(../img/req/bg_features_02.png) no-repeat center/contain;
        top: -50%;
        left: 7%;
        z-index: -1;
      }
    }
    .-item03 & {
      width: 47%;
      &:after {
        content: "";
        position: absolute;
        width: 130%;
        aspect-ratio: 1464 / 1329;
        background: url(../img/req/bg_features_03.png) no-repeat center/contain;
        top: -37%;
        left: -15%;
        z-index: -1;
      }
    }
    .-item04 & {
      width: 41%;
      &:after {
        content: "";
        position: absolute;
        width: 130%;
        aspect-ratio: 761 / 577;
        background: url(../img/req/bg_features_04.png) no-repeat center/contain;
        top: -37%;
        left: -5%;
        z-index: -1;
      }
    }
  }
  @media screen and (max-width: 751px){
    .-item01 & {
      width: 100%;
      &:after {
        content: "";
        position: absolute;
        width: 118%;
        aspect-ratio: 930 / 984;
        background: url(../img/req/bg_features_01.png) no-repeat center/contain;
        top: -14%;
        left: -7%;
        z-index: -1;
      }
    }
    .-item02 & {
      width: 100%;
      &:after {
        content: "";
        position: absolute;
        width: 108%;
        aspect-ratio: 1155 / 870;
        background: url(../img/req/bg_features_02.png) no-repeat center/contain;
        top: -50%;
        left: 7%;
        z-index: -1;
      }
    }
    .-item03 & {
      width: 100%;
      &:after {
        content: "";
        position: absolute;
        width: 130%;
        aspect-ratio: 1464 / 1329;
        background: url(../img/req/bg_features_03.png) no-repeat center/contain;
        top: -37%;
        left: -15%;
        z-index: -1;
      }
    }
    .-item04 & {
      width: 100%;
      &:after {
        content: "";
        position: absolute;
        width: 130%;
        aspect-ratio: 761 / 577;
        background: url(../img/req/bg_features_04.png) no-repeat center/contain;
        top: -37%;
        left: -5%;
        z-index: -1;
      }
    }
  }
}
.reqFeaturesList__right {
  @media screen and (min-width: 751px){
    .-item01 & {
      width: 49%;
    }
    .-item02 & {
      width: 39%;
    }
    .-item03 & {
      width: 41%;
    }
    .-item04 & {
      width: 42%;
    }
  }
  @media screen and (max-width: 750px){
    position: relative;
    z-index: 2;
    .-item01 & {
      width: 100%;
    }
    .-item02 & {
      width: 100%;
    }
    .-item03 & {
      width: 100%;
    }
    .-item04 & {
      width: 100%;
    }
  }
}
.reqFeaturesList__title {
  font-size: 38px;
  font-weight: 600;
  @media screen and (max-width: 750px){
    font-size: 24px;
    text-align: center;
  }
}
.reqFeaturesList__text {
  font-size: 16px;
  font-weight: 500;
  margin-top: 24px;
  line-height: 1.75;
  @media screen and (max-width: 750px){
    font-size: 14px;
    text-align: center;
  }
}
.reqAction {
  overflow: hidden;
  padding-bottom: 150px;
}
.reqActionList {
  margin-top: 150px;
  @media screen and (max-width: 750px){
    margin-top: 24px;
  }
}
.reqActionList__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  + .reqActionList__item {
    margin-top: 66px;
  }
  @media screen and (min-width: 751px){
    &:nth-child(2n) {
      flex-direction: row-reverse;
    }
  }
  @media screen and (max-width: 750px){
    flex-direction: column-reverse;
    gap: 24px;
  }
}
.reqActionList__right {
  position: relative;
  z-index: 1;
  @media screen and (min-width: 751px){
    .-item01 & {
      width: 58%;
      z-index: 3;
      &:before {
        content: "";
        position: absolute;
        width: 194px;
        aspect-ratio: 194 / 193;
        background: url(../img/req/connect_01.svg) no-repeat center/contain;
        bottom: -147px;
        left: 42px;
        z-index: 3;
      }
      &:after {
        content: "";
        position: absolute;
        width: 105%;
        aspect-ratio: 1470 / 1335;
        background: url(../img/req/bg_action_01.png) no-repeat center/contain;
        top: -19%;
        left: 1%;
        z-index: -1;
      }
    }
    .-item02 & {
      width: 49%;
      z-index: 2;
      &:before {
        content: "";
        position: absolute;
        width: 194px;
        aspect-ratio: 194 / 193;
        background: url(../img/req/connect_02.svg) no-repeat center/contain;
        bottom: -110px;
        right: -140px;
        z-index: 3;
      }
      &:after {
        content: "";
        position: absolute;
        width: 113%;
        aspect-ratio: 1467 / 1461;
        background: url(../img/req/bg_action_02.png) no-repeat center/contain;
        top: -30%;
        left: -26%;
        z-index: -2;
        mix-blend-mode: multiply;
      }
    }
    .-item03 & {
      width: 47%;
      &:after {
        content: "";
        position: absolute;
        width: 130%;
        aspect-ratio: 1464 / 1329;
        background: url(../img/req/bg_action_03.png) no-repeat center/contain;
        top: -37%;
        left: -15%;
        z-index: -1;
      }
    }
  }
  @media screen and (max-width: 750px){
    .-item01 & {
      width: 100%;
      z-index: 1;
      &:after {
        content: "";
        position: absolute;
        width: 105%;
        aspect-ratio: 1470 / 1335;
        background: url(../img/req/bg_action_01.png) no-repeat center/contain;
        top: -19%;
        left: 1%;
        z-index: -1;
      }
    }
    .-item02 & {
      width: 100%;
      z-index: 1;
      &:after {
        content: "";
        position: absolute;
        width: 113%;
        aspect-ratio: 1467 / 1461;
        background: url(../img/req/bg_action_02.png) no-repeat center/contain;
        top: -30%;
        left: -26%;
        z-index: -2;
        mix-blend-mode: multiply;
      }
    }
    .-item03 & {
      width: 100%;
      &:after {
        content: "";
        position: absolute;
        width: 130%;
        aspect-ratio: 1464 / 1329;
        background: url(../img/req/bg_action_03.png) no-repeat center/contain;
        top: -37%;
        left: -15%;
        z-index: -1;
      }
    }
  }
}
.reqActionList__left {
  position: relative;
  z-index: 2;
  @media screen and (min-width: 751px){
    .-item01 & {
      width: 39%;
    }
    .-item02 & {
      width: 40%;
    }
    .-item03 & {
      width: 41%;
    }
  }
  @media screen and (max-width: 750px){
    .-item01 & {
      width: 100%;
    }
    .-item02 & {
      width: 100%;
    }
    .-item03 & {
      width: 100%;
    }
  }
}
.reqActionList__title {
  font-size: 38px;
  font-weight: 600;
  @media screen and (max-width: 750px){
    font-size: 24px;
    text-align: center;
  }
}
.reqActionList__text {
  font-size: 16px;
  font-weight: 500;
  margin-top: 24px;
  @media screen and (max-width: 750px){
    font-size: 14px;
    text-align: center;
  }
}
.reqActionList__btn {
  position: relative;
  z-index: 2;
  text-align: center;
  margin-top: 130px;
  .btn-demo {
    max-width: 480px;
  }
  @media screen and (max-width: 750px){
    margin-top: 40px;
  }
}
.reqCov {

}
.reqCov__copy {
  max-width: 728px;
  margin: 50px auto 0;
  border: 1px solid #C9CCEB;
  background-color: #fff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 20px;
  text-align: center;
  font-size: 18px;
  padding: 12px 0;
  position: relative;
  z-index: 2;
  @media screen and (max-width: 750px){
    margin-top: 20px;
    font-size: 12px;
    border-radius: 12px;
    padding: 12px 40px;
  }
  &:before {
    content: "";
    width: 28px;
    aspect-ratio: 28 / 28;
    background: url(../img/icon_twincle.svg) no-repeat center/contain;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    @media screen and (max-width: 750px){
      width: 18px;
      left: 8px;
    }
  }
}
.reqCov__img {
  max-width: 980px;
  margin: 80px auto 0;
  position: relative;
  z-index: 1;
  &:after {
    content: "";
    width: 76%;
    aspect-ratio: 1320 / 1203;
    background: url(../img/req/bg_covarage.png) no-repeat center/contain;
    position: absolute;
    top: -36%;
    left: 10%;
    z-index: -1;
  }
}
.reqRegion {
  /* max-width: 980px; */
  margin: 60px auto 0;
  position: relative;
  z-index: 2;
  @media screen and (max-width: 750px){
    margin-top: 32px;
  }
}
.reqRegion__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  @media screen and (max-width: 750px){
    flex-direction: column;
    gap: 24px;
  }
}
.reqRegion__title {
  font-size: 32px;
  font-weight: 600;
  color: #5156BE;
  @media screen and (max-width: 750px){
    font-size: 24px;
    text-align: center;
  }
}
.reqRegion__select {
  padding: 0 15px;
  border-radius: 12px;
  border: 1px solid #C9CCEB;
  width: 395px;
  background: #fff url(../img/icon_select.svg) no-repeat;
  background-position: right 15px top 20px;
  background-size: 15px;
  position: absolute;
  right: 0px;
  top: 0px;
  @media screen and (max-width: 750px){
    width: 100%;
    position: static;
  }
  .hidden {
    border-top: 1px solid #C9CCEB;
    display: none;
  }
  .item {
    padding: 15px 0;
    text-align: center;
    position: relative;
    cursor: pointer;
    + .item {
      border-top: 1px solid #C9CCEB;
    }
    .icon {
      width: 48px;
      position: absolute;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
    }
  }
}
.reqRegion__tags {
  margin-top: 30px;
  display: none;
  &.is-active {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    @media screen and (max-width: 750px){
      margin-top: 24px;
      grid-template-columns: 1fr;
      gap: 6px 8px;
    }
  }
  li {
    background-color: rgba(201, 204, 235, 0.42);
    /* border: 1px solid #5056BE; */
    border-radius: 50vh;
    padding: 3px 40px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    @media screen and (max-width: 750px){
      font-size: 10px;
      padding: 3px 1em;
    }
  }
}
.reqPro {
  padding-top: 140px;
  padding-bottom: 160px;
  background: url(../img/req/bg_pro.png) no-repeat center 40px/ 880px;
  @media screen and (max-width: 750px){
    padding-top: 80px;
    padding-bottom: 80px;
    background: url(../img/req/bg_pro.png) no-repeat center 280px/ 80%;
  }
}
.reqProList {
  margin: 32px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.reqProList__item {
  width: calc(50% - 8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 108px;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  @media screen and (max-width: 750px){
    width: 100%;
    font-size: 12px;
    height: auto;
    padding: 12px 16px;
  }
  .small {
    font-size: 16px;
    font-weight: 500;
    @media screen and (max-width: 750px){
      font-size: 12px;
    }
  }
}
.reqEx {

}
.reqExList {
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  @media screen and (max-width: 750px){
    margin-top: 48px;
    flex-direction: column;
    gap: 36px;
  }
}
.reqExList__item {
  width: 48%;
  @media screen and (max-width: 750px){
    width: 100%;
  }
  &:before {
    content: "";
    width: 48px;
    height: 48px;
    display: block;
    background: url(../img/icon_quote.svg) no-repeat center/contain;
    margin-bottom: 20px;
    @media screen and (max-width: 750px){
      width: 32px;
      height: 32px;
      margin-bottom: 12px;
    }
  }
}
.reqExList__text {
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
  @media screen and (max-width: 750px){
    font-size: 14px;
  }
}
.reqExList__name {
  margin-top: 24px;
  font-size: 16px;
  font-style: italic;
  font-weight: 500;
  @media screen and (max-width: 750px){
    font-size: 14px;
  }
}
.reqFaq {
  margin-top: 100px;
  @media screen and (max-width: 750px){
    margin-top: 80px;
  }
}

/* Req Manager added 2507 */
.reqMvImg {
  position: relative;
  -webkit-transform: translateX(50px);
  z-index: -1;
  padding: 120px 0;
          transform: translateX(50px);
}
.reqMvImg img {
  -webkit-transform: translateX(0);
  position: static;
          transform: translateX(0);
}
.reqMvImg__frame {
  position: relative;
  min-width: 1000px;
  max-width: 1350px;
}
.reqMvImg__frame::before {
  display: block;
  z-index: -1;
  position: absolute;
  top: 48%;
  left: 45%;
  width: 100%;
  height: 150%;
  translate: -50% -50%;
  background: url(../img/req/bg_mv.webp) no-repeat center center/contain;
  content: "";
  pointer-events: none;
}
.reqMvImg__scroll {
  z-index: 2;
  position: absolute;
  right: 15.5%;
  bottom: 11.5%;
  width: 57.5%;
  height: 83%;
  overflow: hidden;
  border-top-right-radius: 4%;
}
.reqMvImg__content {
  -webkit-animation: mv-scroll 13s ease infinite;
          animation: mv-scroll 13s ease infinite;
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
  aspect-ratio: 1000/1344;
}
@-webkit-keyframes mv-scroll {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  10% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-40%);
            transform: translateY(-40%);
  }
  60% {
    -webkit-transform: translateY(-40%);
            transform: translateY(-40%);
  }
  90% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes mv-scroll {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  10% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-40%);
            transform: translateY(-40%);
  }
  60% {
    -webkit-transform: translateY(-40%);
            transform: translateY(-40%);
  }
  90% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.reqFeatures {
  z-index: 2;
  position: relative;
}

.reqFeaturesList2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 100px;
  gap: 50px 80px;
}
.reqFeaturesList2__item {
  text-align: center;
}
.reqFeaturesList2__img {
  margin-bottom: 30px;
}
.reqFeaturesList2__img img {
  width: auto;
  max-width: 114px;
  height: auto;
  max-height: 114px;
}
.reqFeaturesList2__title {
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 24px;
}
.reqFeaturesList2__text {
  font-weight: 500;
  font-size: 18px;
}

.reqManage {
  z-index: 0;
  position: relative;
  padding-bottom: 200px;
}
.reqManage::before {
  display: block;
  z-index: -1;
  position: absolute;
  top: 45%;
  left: 50%;
  width: 100%;
  height: 1200px;
  translate: -50% -50%;
  background: url(../img/req/bg_manage.webp) no-repeat center center/auto 100%;
  content: "";
  pointer-events: none;
}
.reqManage__wrapper {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding: 80px 0 78px;
  border-radius: 12px;
  background-color: #fff;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.16);
}
.reqManage__demo {
  margin-top: 60px;
  text-align: center;
}

.reqManageList {
  position: relative;
  width: 100%;
  margin: 50px 0 0;
}
.reqManageList::after {
  z-index: 1;
  position: absolute;
  top: 12px;
  left: 50%;
  width: 100vw;
  min-width: 1800px;
  height: 76px;
  translate: -50% 0;
  background: -webkit-linear-gradient(left, #5056be, rgba(81, 86, 190, 0) 99%);
  background: linear-gradient(to right, #5056be, rgba(81, 86, 190, 0) 99%);
  content: "";
  -webkit-clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 70%);
          clip-path: polygon(0 30%, 100% 0, 100% 100%, 0 70%);
}
.reqManageList__container {
  display: -webkit-box;
  display: flex;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  -webkit-box-pack: justify;
  position: relative;
          justify-content: space-between;
}
.reqManageList__item {
  z-index: 3;
  position: relative;
  width: 270px;
  text-align: center;
}
.reqManageList__icon {
  display: grid;
  z-index: 3;
  position: relative;
  place-items: center;
  width: 100px;
  height: 100px;
  margin: 0 auto 16px;
  border: 2px solid #5056BE;
  border-radius: 50%;
  background-color: #fff;
}
.reqManageList__icon img {
  max-width: 48px;
  max-height: 48px;
}
.reqManageList__title {
  margin-bottom: 8px;
  font-weight: bold;
  font-size: 18px;
}
.reqManageList__text {
  max-width: 234px;
  margin-inline: auto;
  font-weight: 500;
}
.reqManageList__list {
  max-width: 232px;
  margin-inline: auto;
  text-align: left;
}
.reqManageList__list li {
  padding-left: 1em;
  line-height: 1.88;
  text-indent: -1em;
}
.reqManageList__list li::before {
  content: "・";
}
.reqManageList__process {
  z-index: 2;
  position: absolute;
  top: 40px;
  margin: 0;
  font-weight: bold;
  font-size: 14px;
  white-space: nowrap;
}
.reqManageList__process.-left {
  left: 0;
  translate: -100% 0;
  color: #fff;
}
.reqManageList__process.-right {
  right: 0;
  translate: 100% 0;
  color: #5056be;
}

.reqResearch {
  padding-bottom: 180px;
  overflow: hidden;
}
.reqResearch__title {
  margin-bottom: 24px;
  line-height: 1.3;
}
.reqResearch__text {
  line-height: 1.88;
}
.reqResearch__container {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: justify;
          justify-content: space-between;
}
.reqResearch__left {
  z-index: 1;
  position: relative;
  width: 38%;
}
.reqResearch__right {
  z-index: 0;
  position: relative;
  width: 50%;
}

.reqResearchFig {
  display: grid;
  z-index: 0;
  position: relative;
  grid-template-columns: 1fr 0.77fr;
  gap: 26px 95px;
  -webkit-box-align: end;
          align-items: end;
}
.reqResearchFig::before {
  display: block;
  z-index: -1;
  position: absolute;
  right: -200px;
  bottom: -80px;
  width: 1000px;
  height: 600px;
  background: url(../img/req/bg_research.webp) no-repeat center center/contain;
  content: "";
  pointer-events: none;
}
.reqResearchFig__copy {
  position: relative;
  grid-area: 1/1/2/3;
  margin: 0;
  padding: 12px 0;
  border: 1px solid #C9CCEB;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  font-weight: bold;
  font-size: 18px;
  text-align: center;
}
.reqResearchFig__copy:before {
  position: absolute;
  top: 50%;
  left: 20px;
  aspect-ratio: 28/28;
  width: 28px;
  background: url(../img/icon_twincle.svg) no-repeat center/contain;
  content: "";
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.reqResearchFig__copy::after {
  display: block;
  z-index: -1;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 170px;
  height: 84px;
  translate: -100% 100%;
  background: url(../img/req/arrow_research_01.png) no-repeat center/100% 100%;
  content: "";
}
.reqResearchFig__item {
  position: relative;
  padding-top: 40px;
}
.reqResearchFig__item.-box1 {
  grid-area: 2/1/3/2;
  height: calc(100% - 58px);
}
.reqResearchFig__item.-box1::after {
  display: block;
  z-index: -1;
  position: absolute;
  top: 50%;
  right: -95px;
  width: 196px;
  height: 10px;
  translate: 0 -50%;
  background: url(../img/req/arrow_research_02.png) no-repeat center/100% auto;
  content: "";
}
.reqResearchFig__item.-box2 {
  grid-area: 2/2/3/3;
}
.reqResearchFig__item.-box2 .reqResearchFig__title {
  background-color: #5056be;
}
.reqResearchFig__item.-box2 .reqResearchFig__box {
  margin-top: -6px;
  border: solid 6px #5056be;
}
.reqResearchFig__box {
  display: -webkit-box;
  display: flex;
  z-index: 2;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  height: 100%;
  margin-top: -1px;
  padding: 10px 16px;
  border: solid 1px #707070;
  border-radius: 20px;
  background-color: #fff;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.7;
}
.reqResearchFig__title {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  padding: 8px;
  border-radius: 20px 20px 0 0;
  background-color: #4f4f4f;
  color: #fff;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}
.reqResearchFig__list {
  padding: 20px 0;
}
.reqResearchFig__list li {
  display: grid;
  grid-template-columns: 30px auto;
  gap: 0 16px;
  font-weight: bold;
}
.reqResearchFig__list li:not(:last-child) {
  margin-bottom: 32px;
}
.reqResearchFig__list li .icon {
  display: inline-block;
}
.reqResearchFig__list li .icon img {
  max-width: 30px;
  max-height: 30px;
}
.reqResearchFig__btn {
  position: absolute;
  bottom: 8px;
  left: 0;
  width: 100%;
  padding: 0 10px;
  text-align: center;
}
.reqResearchFig__modal img {
  width: auto;
  max-width: 1280px;
  max-height: 94dvh;
}

.reqResearchList {
  display: grid;
  z-index: 2;
  position: relative;
  grid-template-columns: repeat(3, 1fr);
  margin: 60px 0 0;
  gap: 16px;
}
.reqResearchList__item {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: center;
          align-items: center;
  padding: 20px 16px 32px;
  border: solid 1px #8e89d6;
  border-radius: 20px;
  background-color: #fff;
}
.reqResearchList__title {
  margin-bottom: 16px;
  color: #5056be;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
}
.reqResearchList__title::after {
  display: block;
  width: 92px;
  height: 1px;
  margin: 12px auto 0;
  background-color: #8e89d6;
  content: "";
}
.reqResearchList__list li {
  position: relative;
  padding-left: 20px;
  color: #5156be;
  font-weight: bold;
  line-height: 2.25;
}
.reqResearchList__list li::before {
  display: block;
  position: absolute;
  top: 13px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #8e89d6;
  content: "";
}

.reqMeeting {
  padding-bottom: 150px;
}
.reqMeeting__container {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: end;
          justify-content: flex-end;
}
.reqMeeting__left {
  z-index: 0;
  position: relative;
  width: 706px;
}
.reqMeeting__right {
  z-index: 1;
  position: relative;
  max-width: 464px;
  margin-left: 54px;
}
.reqMeeting__title {
  margin-bottom: 16px;
}

.reqMeetingFig {
  display: -webkit-box;
  display: flex;
  z-index: 0;
  position: relative;
  -webkit-box-pack: justify;
          justify-content: space-between;
}
.reqMeetingFig::before {
  display: block;
  z-index: -1;
  position: absolute;
  right: 0;
  bottom: -60px;
  width: 483px;
  height: 424px;
  background: url(../img/req/bg_meeting.webp) no-repeat center center/auto 100%;
  content: "";
  pointer-events: none;
}
.reqMeetingFig__left {
  width: 200px;
}
.reqMeetingFig__right {
  width: 336px;
}
.reqMeetingFig__right .reqMeetingFig__img {
  border-radius: 20px;
  background: #fff;
}
.reqMeetingFig__cube {
  display: grid;
  position: relative;
  place-items: center;
  width: 70px;
  height: 210px;
}
.reqMeetingFig__cube::before, .reqMeetingFig__cube::after {
  display: block;
  position: absolute;
  top: 50%;
  width: 8px;
  height: 25px;
  background-color: #8a8fd1;
  content: "";
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
          clip-path: polygon(0 0, 0 100%, 100% 50%);
}
.reqMeetingFig__cube::before {
  left: -20px;
  translate: -100% -50%;
}
.reqMeetingFig__cube::after {
  right: -20px;
  translate: 100% -50%;
}
.reqMeetingFig__cube img {
  width: 70px;
}
.reqMeetingFig__img {
  display: grid;
  place-items: center;
  height: 210px;
}
.reqMeetingFig__text {
  margin-top: 12px;
  color: #5056be;
  font-weight: bold;
  text-align: center;
}

.reqMeetingList {
  display: grid;
  z-index: 1;
  position: relative;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 80px;
  gap: 40px 16px;
}
.reqMeetingList__title {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  height: 110px;
  border: solid 1px #8e89d6;
  border-radius: 20px;
  background-color: #5056be;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  line-height: 1.5;
  text-align: center;
}
.reqMeetingList__list {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 24px auto 0;
}
.reqMeetingList__list li {
  position: relative;
  padding-left: 20px;
  font-weight: bold;
}
.reqMeetingList__list li:not(:last-child) {
  margin-bottom: 16px;
}
.reqMeetingList__list li::before {
  display: block;
  position: absolute;
  top: 7px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #8e89d6;
  content: "";
}

.reqCov {
  padding-bottom: 100px;
}
.reqCov__header {
  z-index: 2;
  position: relative;
}
@media screen and (max-width: 750px){
  .reqMvImg {
    padding: 60px 0;
  }
  .reqMvImg__frame {
    min-width: 500px;
  }
  .reqFeaturesList2 {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }
  .reqFeaturesList2__title {
    font-size: 18px;
  }
  .reqFeaturesList2__text {
    font-size: 16px;
  }
  .reqManage {
    padding: 0 35px 100px;
  }
  .reqManage::before {
    content: none;
  }
  .reqManage__wrapper {
    padding: 0;
    box-shadow: none;
  }
  .reqManage__demo {
    margin-top: 30px;
  }
  .reqManageList {
    margin-top: 20px;
    padding: 40px 0;
  }
  .reqManageList::after {
    width: 76px;
    min-width: initial;
    height: 100%;
    background: -webkit-linear-gradient(top, #5056be, rgba(81, 86, 190, 0) 99%);
    background: linear-gradient(to bottom, #5056be, rgba(81, 86, 190, 0) 99%);
    -webkit-clip-path: polygon(30% 0, 70% 0, 100% 100%, 0 100%);
            clip-path: polygon(30% 0, 70% 0, 100% 100%, 0 100%);
  }
  .reqManageList__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    max-width: 100%;
    gap: 48px;
  }
  .reqManageList__item {
    width: 100%;
  }
  .reqManageList__title {
    background-color: rgba(255, 255, 255, 0.6);
  }
  .reqManageList__text {
    background-color: rgba(255, 255, 255, 0.6);
  }
  .reqManageList__list {
    background-color: rgba(255, 255, 255, 0.6);
  }
  .reqManageList__process {
    position: static;
    width: 100%;
    translate: 0 !important;
    background-color: rgba(255, 255, 255, 0.6);
    text-align: center;
  }
  .reqManageList__process.-left {
    color: #5056be;
  }
  .reqResearch {
    padding: 0 0 100px;
  }
  .reqResearch__container {
    display: block;
  }
  .reqResearch__left {
    width: 100%;
  }
  .reqResearch__right {
    width: 100%;
  }
  .reqResearchFig {
    display: block;
    margin-top: 30px;
  }
  .reqResearchFig::before {
    content: none;
  }
  .reqResearchFig__copy {
    margin-bottom: 40px;
    padding: 12px 40px;
    border-radius: 12px;
    font-size: 12px;
  }
  .reqResearchFig__copy:before {
    left: 8px;
    width: 18px;
  }
  .reqResearchFig__copy::after {
    top: auto;
    right: 50%;
    bottom: -20px;
    left: auto;
    width: 50px;
    height: 8px;
    translate: 50% 0;
    rotate: 90deg;
    background: url(../img/req/arrow_research_02.png) no-repeat right center/auto 8px;
  }
  .reqResearchFig__item.-box1 {
    height: auto;
    margin-bottom: 40px;
  }
  .reqResearchFig__item.-box1::after {
    top: auto;
    right: 50%;
    bottom: -20px;
    left: auto;
    width: 50px;
    height: 8px;
    translate: 50% 0;
    rotate: 90deg;
    background: url(../img/req/arrow_research_02.png) no-repeat right center/auto 8px;
  }
  .reqResearchFig__box {
    padding: 8px 10px;
  }
  .reqResearchFig__modal img {
    max-width: 94vw;
  }
  .reqResearchList {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }
  .reqMeeting {
    padding: 0 0 100px;
  }
  .reqMeeting__container {
    display: block;
  }
  .reqMeeting__left {
    width: 100%;
  }
  .reqMeeting__right {
    max-width: 100%;
    margin: 0;
  }
  .reqMeetingFig {
    display: grid;
    max-width: 336px;
    margin: 32px auto 0;
  }
  .reqMeetingFig::before {
    right: -40px;
  }
  .reqMeetingFig__left {
    margin: 0 auto;
  }
  .reqMeetingFig__right {
    width: 100%;
  }
  .reqMeetingFig__cube {
    height: auto;
    margin: 0 auto;
  }
  .reqMeetingFig__cube::before, .reqMeetingFig__cube::after {
    position: static;
    width: 38px;
    height: 12px;
    margin: 24px auto;
    translate: 0 !important;
    -webkit-clip-path: polygon(0 0, 48% 100%, 100% 0);
            clip-path: polygon(0 0, 48% 100%, 100% 0);
  }
  .reqMeetingFig__img {
    height: auto;
  }
  .reqMeetingList {
    grid-template-columns: 1fr;
    max-width: 310px;
    margin: 60px auto 0;
  }
  .reqMeetingList__title {
    height: 90px;
    font-size: 18px;
  }
  .reqMeetingList__list {
    width: 100%;
  }
}

.faqList {
  max-width: 1064px;
  margin-left: auto;
  margin-right: auto;
  .faq & {
    margin-top: 60px;
  }
}
.faqList__item {
  border: 1px solid #5156BE;
  border-radius: 20px;
  padding: 16px 0px 16px 48px;
  background-color: #fff;
  position: relative;
  cursor: pointer;
  @media screen and (max-width: 750px){
    padding: 8px 0 8px 24px;
  }
  + .faqList__item {
    margin-top: 20px;
    @media screen and (max-width: 750px){
      margin-top: 8px;
    }
  }
}
.faqList__q {
  font-size: 18px;
  font-weight: bold;
  padding-right: 60px;
  position: relative;
  @media screen and (max-width: 750px){
    font-size: 12px;
    padding-right: 40px;
  }
  &:after {
    content: "";
    width: 12px;
    height: 6px;
    background: url(../img/icon_faq.svg) no-repeat center/contain;
    position: absolute;
    top: 50%;
    right: 38px;
    transform: translateY(-50%);
    @media screen and (max-width: 750px){
      right: 18px;
    }
  }
}
.faqList__item.is-active {
  .faqList__q:after {
    transform: rotate(180deg);
  }
}
.faqList__a {
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  margin-top: 12px;
  display: none;
  @media screen and (max-width: 750px){
    font-size: 12px;
  }
}
.pageHeader {
  margin-top: 170px; /* FrancisKが調整したコード */
	@media screen and (max-width: 750px) {
		margin-top: 120px;
	}
}

@media screen and (max-width: 750px) {
  .pageHeader {
    margin-top: 120px;
  }
}

.pageHeader__title {
  font-size: 56px;
  font-weight: 600;
  text-align: center;
  @media screen and (max-width: 750px){
    font-size: 30px;
  }
}
.pageHeader__text {
  max-width: 770px;
  margin: 16px auto 0;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  &.-company {
    max-width: 848px;
    margin-left: auto;
    margin-right: auto;
    font-size: 20px;
    font-weight: 600;
    text-align: left;
    @media screen and (max-width: 750px){
      font-size: 16px;
    }
    &.-light {
      font-weight: 500;
    }
    + .-company {
      margin-top: 28px;
    }
  }
}
.companyMission {
  margin-top: 72px;
}
.companyMission__title {
  font-size: 56px;
  font-weight: 600;
  text-align: center;
  padding-top: 180px;
  background: url(../img/logo_cube.svg) no-repeat center top/100px;
  @media screen and (max-width: 750px){
    font-size: 30px;
    padding-top: 80px;
    background: url(../img/logo_cube.svg) no-repeat center top/50px;
  }
}
.companyMission__block {
  margin-top: 56px;
  position: relative;
  @media screen and (max-width: 750px){
    margin-top: 24px;
  }
  &:after {
    content: "";
    position: absolute;
    top: -258px;
    left: -196px;
    z-index: -1;
    width: 1714px;
    aspect-ratio: 2852 / 1256;
    background: url(../img/company/bg_mission.png) no-repeat center/contain;
    @media screen and (max-width: 750px){
      width: 198%;
      top: -19%;
      left: -43%;
    }
  }
}
.companyMission__text {
  background-color: #5156BE;
  padding: 40px 100px;
  font-size: 30px;
  color: #fff;
  border-radius: 20px;
  text-align: center;
  position: relative;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.16);
  max-width: 1100px; /* FrancisKが追加したコード */
  margin: 0 auto; /* FrancisKが追加したコード */
  @media screen and (max-width: 750px){
    font-size: 18px;
    padding: 24px 16px;
  }
}
.companyMember {
  margin-top: 130px;
  @media screen and (max-width: 750px){
    margin-top: 80px;
  }
}
.companyMemberList {
  margin: 60px 35px 0;
  display: flex;
  justify-content: center;
  @media screen and (max-width: 750px){
    flex-direction: column;
    gap: 36px;
    margin: 60px 0 0;
  }
}
.companyMemberList__item {
  width: 480px;
  margin: 0 30px;
  @media screen and (max-width: 750px){
    width: 100%;
    margin: 0;
  }
}
.companyMemberList__thumb img {
  width: 100%;
  aspect-ratio: 480 / 322;
  object-fit: cover;
  border-radius: 20px;
}
.companyMemberList__name {
  color: #5156BE;
  font-size: 27px;
  font-weight: 600;
  margin-top: 16px;
  @media screen and (max-width: 750px){
    font-size: 20px;
    margin-top: 12px;
  }
  .job {
    font-size: 16px;
    font-weight: 500;
    margin-left: 1em;
    @media screen and (max-width: 750px){
      font-size: 12px;
    }
  }
}
.companyMemberList__message {
  font-size: 16px;
  margin-top: 16px;
  line-height: 2;
  font-weight: 500;
  @media screen and (max-width: 750px){
    font-size: 14px;
  }
}
.companyProfile {
  margin-top: 100px;
  @media screen and (max-width: 750px){
    margin-top: 80px;
  }
}
.companyProfile__table {
  width: 100%;
  max-width: 1064px;
  margin: 40px auto 0;
  @media screen and (max-width: 750px){
    display: block;
    tbody,
    tr,
    th,
    td {
      display: block;
      width: 100%;
    }
  }
  tr {
    border-bottom: 1px solid #EAEAEA;
    @media screen and (max-width: 750px){
      padding: 12px 0;
    }
  }
  th {
    font-size: 16px;
    width: 38%;
    padding: 16px;
    font-weight: 600;
    @media screen and (max-width: 750px){
      padding: 0;
      font-size: 14px;
      width: 100%;
    }
  }
  td {
    font-size: 16px;
    font-weight: 500;
    padding: 12px 0;
    @media screen and (max-width: 750px){
      padding: 0;
      font-size: 14px;
    }
  }
}
.expertiseTop {
  margin-top: 90px;
  @media screen and (max-width: 750px){
    margin-top: 80px;
  }
}
.expertiseTop__inner {
  display: flex;
  justify-content: space-between;
  @media screen and (max-width: 750px){
    flex-direction: column;
    gap: 36px;
  }
}
.expertiseTop__left {
  width: 48%;
  @media screen and (max-width: 750px){
    width: 100%;
  }
}
.expertiseTop__right {
  width: 38%;
  @media screen and (max-width: 750px){
    width: 100%;
  }
}
.featured__thumb {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
  img {
    object-fit: cover;
    aspect-ratio: 4 / 3;
  }
}
.featured__title {
  font-size: 18px;
  font-weight: 600;
  margin-top: 1em;
  @media screen and (max-width: 750px){
    font-size: 16px;
  }
}
.featured__excerpt {
  font-size: 16px;
  font-weight: 500;
  margin-top: 0.5em;
  @media screen and (max-width: 750px){
    font-size: 14px;
  }
}
.featured__bottom {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  margin-top: 1em;
}
.featured__date {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
}
.newsBlock {
  + .newsBlock {
    margin-top: 20px;
    @media screen and (max-width: 750px){
      margin-top: 36px;
    }
  }
}
.newsBlock__list {
  li {
    padding: 12px 0;
    border-bottom: 1px solid #C9CCEB;
    line-height: 1.3;
    a {
      text-decoration: none;
      color: inherit;
      font-weight: 600;
      &:hover {
        text-decoration: underline;
      }
    }
  }
}
.expertisePaper {
  margin-top: 80px;
}
.experticeFaq {
  margin-top: 80px;
}
.newsArticle {
  margin-top: 90px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 48px 18px;
  @media screen and (max-width: 750px){
    margin-top: 80px;
    flex-direction: column;
    gap: 36px;
  }
}
.newsArticle__item {
  width: calc(50% - 9px);
  @media screen and (min-width: 751px){
      &.-row {
      width: 100%;
      .featured {
        display: flex;
      }
      .featured__thumb {
        width: 20%;
      }
      .featured__right {
        width: 70%;
        padding-left: 24px;
        display: flex;
        justify-content: space-between;
        flex-direction: column;
      }
    }
  }
  @media screen and (max-width: 750px){
    width: 100%;
  }
}
.article {
  margin-top: 90px;
  @media screen and (max-width: 750px){
    margin-top: 80px;
  }
}
.blogHeader {
  margin-top: 90px;
  padding: 90px 0 110px;
  background-color: #EDEDED;
  @media screen and (max-width: 750px){
    margin-top: 80px;
    padding: 40px 35px 40px;
  }
}
.blogHeader__inner {
  max-width: 852px;
  margin: 0 auto;
}
.blogHeader__title {
  font-size: 38px;
  font-weight: 600;
  @media screen and (max-width: 750px){
    font-size: 24px;
    text-align: center;
  }
}
.blogHeader__row {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
  @media screen and (max-width: 750px){
    flex-direction: column;
    gap: 24px;
  }
}
.blogHeader__left {
  width: 46.8%;
  @media screen and (max-width: 750px){
    width: 100%;
    text-align: center;
  }
}
.blogHeader__excerpt {
	line-height:32px;
}

.blogHeader__thumb {
  width: 48.8%;
  overflow: hidden;
  @media screen and (max-width: 750px){
    width: 100%;
  }
}
.blogHeader__thumb img {
  border-radius: 20px;
}
.blogHeader__name {
  font-size: 16px;
  font-weight: 500;
  margin-top: 24px;
}
.blogSingle {
  margin: 60px auto 0;
  max-width: 852px;
  @media screen and (max-width: 750px){
    margin-top: 40px;
  }
}
.blogSingleCat {
  margin-top: 72px;
  display: flex;
  @media screen and (max-width: 750px){
    margin-top: 40px;
    flex-direction: column;
    gap: 12px;
  }
}
.blogSingleCat__left {
  width: 104px;
  font-size: 18px;
  font-weight: 500;
  padding-top: 2px;
  @media screen and (max-width: 750px){
    width: 100%;
    font-size: 16px;
    padding-top: 0;
  }
}
.blogSingleCat__list {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  @media screen and (max-width: 750px){
    gap: 8px;
  }
  li {
    a {
      display: block;
      padding: 3px 40px;
      border-radius: 50vh;
      border: 1px solid #5056BE;
      text-decoration: none;
      color: inherit;
      font-size: 16px;
      font-weight: 500;
      @media screen and (max-width: 750px){
        font-size: 12px;
        padding: 3px 1em;
      }
      &:hover {
        background-color: #5056BE;
        color: #fff;
      }
    }
  }
}
.shareList {
  margin-top: 40px;
  display: flex;
  align-items: center;
  @media screen and (max-width: 750px){
    flex-direction: column;
    gap: 12px;
  }
}
.shareList__left {
  font-size: 16px;
  font-weight: 600;
  width: 104px;
  @media screen and (max-width: 750px){
    width: 100%;
  }
}
.shareList__right {
  flex: 1;
}
.newsHeader {
  margin-top: 174px;
  padding: 48px 0 48px;
  background-color: #EDEDED;
  @media screen and (max-width: 750px){
    margin-top: 80px;
    padding: 40px 35px 40px;
  }
}
.newsHeader__inner {
  max-width: 852px;
  margin: 0 auto;
}
.newsHeader__cat {
  margin-bottom: 12px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  @media screen and (max-width: 750px){
    gap: 6px;
    justify-content: center;
  }
  li {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    padding: 3px 40px;
    border-radius: 50vh;
    background-color: #4F4F4F;
    @media screen and (max-width: 750px){
      font-size: 12px;
      padding: 3px 1em;
    }
  }
}
.newsHeader__title {
  font-size: 38px;
  font-weight: 600;
  @media screen and (max-width: 750px){
    font-size: 24px;
    text-align: center;
  }
}
.newsHeader__date {
  font-size: 16px;
  font-weight: 500;
  margin-top: 12px;
  @media screen and (max-width: 750px){
    font-size: 14px;
    text-align: center;
  }
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(25, 25, 25, 0.65);
  z-index: 9999;
  display: none;
}
.modal__inner {
  width: 100%;
  height: 100%;
  padding: 1em 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: auto;
}
.modalDemo {
  width: 90%;
  max-width: 690px;
  background-color: #5156BE;
  border-radius: 20px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.16);
  padding: 60px 104px 72px;
  margin: 0 auto;
  @media screen and (max-width: 750px){
    padding: 40px 24px 24px;
  }
}
.modalDemo__outer { /* スクロール修正 */
  max-height: 100dvh;
  overflow: scroll;
  padding: 20px 0;
}
.modalDemo__title {
  display: flex;
  align-items: center;
  @media screen and (max-width: 750px){
    flex-direction: column;
    gap: 24px;
  }
  .icon {
    width: 60px;
    margin-right: 24px;
    @media screen and (max-width: 750px){
      width: 64px;
      margin: 0;
    }
  }
  .text {
    font-size: 30px; /* FrancisKが調整したコード */
    line-height: 1.3;
    font-weight: 600;
    color: #fff;
    @media screen and (max-width: 750px){
      font-size: 24px;
      text-align: center;
    }
  }
}
.modalDemo__text {
  margin-top: 24px;
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
  color: #fff;
}
.modalDemo__form {
  padding: 0 100px;
  margin: 28px -144px 0;
  border-radius: 20px;
  background-color: #fff;
  position: relative;
  @media screen and (max-width: 750px){
    /* padding: 24px 16px; */
    padding: 0;
    margin: 24px -24px 0;
    border-radius: 0px;
    .fcontact__submit {
      background-color: #5156BE;
      color: #fff;
    }
    .fcontact__caution {
      color: #2B2B2B;
    }
  }
  .form-wrapper {
    &.is-hidden {
      visibility: hidden;
    }
  }
}
.modal__close {
  position: absolute;
  top: 20px;
  right: 30px;
  width: 16px;
  height: 16px;
  cursor: pointer;
}
.modalResource {
  padding: 100px;
  border-radius: 20px;
  background-color: #fff;
  max-width: 728px;
  margin: 0 auto;
  width: 90%;
  position: relative;
  @media screen and (max-width: 750px){
    padding: 40px 24px;
  }
}
.modalResource__title {
  display: flex;
  align-items: center;
  .icon {
    width: 48px;
    margin-right: 24px;
  }
  .text {
    font-size: 18px;
    font-weight: 500;
  }
}
.modalResource__text {
  font-size: 12px;
  font-weight: 500;
  margin-top: 24px;
}
.modalResource__note {
  font-size: 12px;
  font-weight: 500;
  color: #5056BE;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #B5B5B5;
}
.teamArticle {
  max-width: 980px;
  margin: 80px auto 0;
  margin-top: 80px;
  display: flex;
  flex-wrap: wrap;
  gap: 64px 36px;
  @media screen and (max-width: 750px){
    gap: 24px 0;
    justify-content: space-between;
  }
}
.teamArticle__item {
  width: calc((100% - 108px) / 4);
  @media screen and (max-width: 750px){
    width: 48%;
  }
}
.teamArticle__thumb {
  overflow: hidden;
  border-radius: 20px;
  img {
    object-fit: cover;
    aspect-ratio: 212 / 198;
    width: 100%;
  }
}
.teamArticle__name {
  margin-top: 12px;
  font-size: 14px;
  color: #5156BE;
  font-weight: 600;
}
.teamArticle__job {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 500;
}
.teamWhat { 
  max-width: 980px;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
  padding: 48px 24px;
  text-align: center;
  margin: 80px auto 0;
}
.teamWhat__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  .icon {
    width: 48px;
  }
  .text {
    font-size: 44px;
    font-weight: 600;
    color: #5156BE;
    @media screen and (max-width: 750px){
      font-size: 35px;
    }
  }
}
.teamWhat__text {
  max-width: 400px;
  margin: 6px auto 0;
  font-size: 16px;
  font-weight: 600;
}
.modalTeam {
  padding: 100px;
  border-radius: 20px;
  background-color: #fff;
  max-width: 728px;
  margin: 0 auto;
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  @media screen and (max-width: 750px){
    padding: 40px 24px;
  }
}
.modalTeam__job {
  font-size: 16px;
  font-weight: 500;
}
.modalTeam__name {
  font-size: 16px;
  font-weight: 600;
  margin-top: 12px;
}
.modalTeam__text {
  font-size: 14px;
  font-weight: 500;
  margin-top: 24px;
}
/*
.ani-fade-up {
  opacity: 0;
  transform: translateY(20%);
  transition-duration: .65s;
  transition-timing-function: ease-in-out;
}
.ani-start-scroll {
  &.is-active {
    .ani-fade-up,
    &.ani-fade-up {
      transform: translate(0,0);
      opacity: 1;
    }
  }
}
  */
.ani-delay-1 {
  transition-delay: .2s;
  animation-delay: .2s;
}
.ani-delay-2 {
  transition-delay: .4s;
  animation-delay: .4s;
}
.ani-delay-3 {
  transition-delay: .6s;
  animation-delay: .6s;
}
.ani-delay-4 {
  transition-delay: .8s;
  animation-delay: .8s;
}
.ani-delay-5 {
  transition-delay: 1s;
  animation-delay: 1s;
}

/* added 2506 */
.main {
  overflow: hidden;
}
.fnavi__address .img {
  display: inline-block;
  width: 16px;
  margin-right: 8px;
  line-height: 1;
  vertical-align: text-top;
}
.fnavi__address a {
  color: inherit;
  text-decoration: none;
}

/* box style */
.box-shadow {
  display: -webkit-box;
  display: flex;
  max-width: 1064px;
  margin-top: 60px;
  margin-inline: auto;
  overflow: hidden;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
}
.box-shadow__left {
  position: relative;
  width: 400px;
  min-height: 322px;
}
.box-shadow__left img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.box-shadow__right {
  -webkit-box-flex: 1;
  display: -webkit-box;
  display: flex;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: center;
          justify-content: center;
  padding: 30px 6%;
}
.box-shadow__tag {
  display: inline-block;
  min-width: 160px;
  margin-bottom: 18px;
  padding: 2px 1em;
  border-radius: 10px;
  background-color: #8A8FD1;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
}
.box-shadow__title {
  margin-bottom: 18px;
  font-weight: 600;
  font-size: 26px;
}
.box-shadow__text {
  margin-bottom: 24px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.875;
}
.box-shadow__btn {
  margin-top: 20px;
  font-weight: 500;
}
@media screen and (max-width: 750px){
  .box-shadow {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    width: 100%;
    margin-top: 40px;
  }
  .box-shadow__left {
    width: 100%;
    height: auto;
    min-height: auto;
  }
  .box-shadow__left img {
    position: static;
    aspect-ratio: 322/252;
    width: 100%;
    height: auto;
  }
  .box-shadow__right {
    padding: 30px 20px;
  }
  .box-shadow__title {
    font-size: 18px;
  }
  .box-shadow__text {
    font-size: 14px;
  }
}

/* button style */
.btn-icon {
  display: grid;
  position: relative;
  grid-template-columns: 20px 1fr;
  -webkit-box-align: center;
          align-items: center;
  width: 100%;
  height: 32px;
  padding: 6px;
  border: none;
  border-radius: 20px;
  background-color: #5056be;
  box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.16);
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
}
.btn-icon .icon {
  display: block;
  width: 20px;
}

/* list style */
.list-disc li {
  line-height: 1.88;
  padding-left: 0.8em;
  position: relative;
}
.list-disc li::before {
  background-color: #000;
  border-radius: 50%;
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  top: 0.85em;
  width: 4px;
}
.list-disc li + li {
  margin-top: 1em;
}
.list-num {
  padding: 0 !important;
}
.list-num li {
  position: relative;
  padding-left: 1.7em;
  list-style-type: none;
}
.list-num li:before {
  position: absolute;
  left: 0;
  content: "(" counter(list-item) ")";
}

/* Recruit */
.recruit {
  padding: 8rem 0 2rem;
}
.recruit-wrapper {
  background-color: #f9f9f9;
  padding: 0 4rem 4.8rem;
}
.recruit-title {
  transform: translateY(-0.5em);
  margin-bottom: 0.7em;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}
.recruit-text {
  margin-bottom: 2.4rem;
  text-align: center;
}
.recruit-list {
  display: grid;
  gap: 4rem;
  grid-template-columns: repeat(3, 1fr);
}
.recruit-list_item {
  background-color: #fff;
  padding: 2rem;
}
.recruit-more {
  margin-top: 2rem;
  text-align: center;
}
@media only screen and (max-width: 750px) {
  .recruit {
    padding: 4rem 0 2rem;
  }
  .recruit-wrapper {
    padding: 0 2rem 3rem;
  }
  .recruit-list {
    gap: 2rem;
    grid-template-columns: 1fr;
  }
}

/* Knowledge Builder */
.kbMV {
  z-index: 1;
  position: relative;
  padding: 30px 0 100px;
}
.kbMV__inner {
  max-width: 1320px;
  margin-inline: auto;
  padding: 0 24px;
}
.kbMV__movie {
  z-index: -1;
  width: 100%;
  max-width: 1720px;
  margin-inline: auto;
}
.kbMV__movie video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.kbMV__content {
  display: -webkit-box;
  display: flex;
  z-index: 1;
  position: relative;
  -webkit-box-align: end;
          align-items: end;
  -webkit-box-pack: justify;
          justify-content: space-between;
  margin-top: -100px;
  gap: 0 30px;
}
.kbMV__title {
  margin: 0;
  font-weight: 600;
  font-size: 56px;
  line-height: 1.14;
}
.kbMV__text {
  max-width: 580px;
  margin: 0;
  font-weight: 200;
  font-size: 18px;
  line-height: 2;
}

.kbAbout {
  z-index: 0;
  position: relative;
  padding: 60px 0;
}
.kbAbout::before {
  display: block;
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 960px;
  translate: -50% -50%;
  background: url(../img/kb/bg_section.webp) no-repeat center center/auto 100%;
  content: "";
  pointer-events: none;
}
.kbAbout__inner {
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  padding: 0 24px;
}

.kbAboutFig {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
}
.kbAboutFig__left {
  position: relative;
  width: 308px;
}
.kbAboutFig__center {
  width: 416px;
}
.kbAboutFig__right {
  width: 308px;
}
.kbAboutFig__list {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  gap: 12px;
}
.kbAboutFig__list li {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  text-align: center;
  -webkit-box-pack: center;
          justify-content: center;
  height: 60px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.16);
  font-weight: 600;
  font-size: 14px;
}
.kbAboutFig__head {
  display: grid;
  -webkit-box-align: end;
          align-items: end;
  height: 140px;
  padding-bottom: 28px;
}
.kbAboutFig__head p {
  font-weight: 500;
  font-size: 16px;
}
.kbAboutFig__logo {
  display: block;
  width: 102px;
}
.kbAboutFig__title {
  display: block;
  color: #5156BE;
  font-weight: 600;
  font-size: 38px;
}
.kbAboutFig__block {
  display: -webkit-box;
  display: flex;
  height: 350px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  border: solid 1px #5056be;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.16);
  text-align: center;
}
.kbAboutFig__tags {
  display: grid;
  -webkit-box-align: start;
          align-items: start;
  -webkit-box-pack: center;
          justify-content: center;
  gap: 13px;
  text-align: center;
}
.kbAboutFig__tag {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  width: 306px;
  height: 107px;
  border-radius: 10px;
  background-color: #5156BE;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.16);
  color: #fff;
  font-weight: 600;
  font-size: 18px;
}
.kbAboutFig__tag.-small {
  height: 86px;
}
.kbAboutFig__img {
  margin-bottom: 24px;
}
.kbAboutFig__img img {
  width: 86px;
}
.kbAboutFig__text {
  margin-top: 18px;
  font-weight: 500;
  font-size: 16px;
}
.kbAboutFig__arrow {
  display: grid;
  place-items: center;
  padding-top: 140px;
}
.kbAboutFig__arrow .arrow {
  display: inline-block;
  width: 20px;
  height: 60px;
  background-color: #4f4f4f;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
          clip-path: polygon(0 0, 0 100%, 100% 50%);
}
.kbAboutFig__arrow .arrow.-blue {
  background-color: #5056be;
}

.kbLang {
  z-index: 0;
  position: relative;
  padding: 60px 0;
}
.kbLang::before {
  display: block;
  z-index: -1;
  position: absolute;
  top: 60px;
  left: 50%;
  width: 100%;
  height: 960px;
  translate: -50% 0;
  background: url(../img/kb/bg_section.webp) no-repeat center center/auto 100%;
  content: "";
  pointer-events: none;
}
.kbLang__lead {
  max-width: 1112px;
  margin-inline: auto;
}

.kbLangFig {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  margin-top: 60px;
}
.kbLangFig__left {
  position: relative;
  width: 386px;
}
.kbLangFig__center {
  width: 468px;
}
.kbLangFig__right {
  width: 295px;
}
.kbLangFig__num {
  display: grid;
  -webkit-box-align: center;
  grid-template-columns: 30px 1fr;
          align-items: center;
  width: 174px;
  height: 30px;
  margin-bottom: 12px;
  padding: 0 8px 0 0;
  border-radius: 15px;
  background-color: #5156BE;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
}
.kbLangFig__num .num {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 2px solid #8b8fd1;
  border-radius: 50%;
  background-color: #5156BE;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}
.kbLangFig__block {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: center;
          justify-content: center;
  height: 350px;
  padding: 20px 30px;
  border: solid 1px #5056be;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.16);
}
.kbLangFig__table {
  display: grid;
  grid-template-columns: 6em 1fr;
  -webkit-box-align: start;
          align-items: start;
  gap: 10px 0;
  font-size: 14px;
  line-height: 1.4;
}
.kbLangFig__table dt {
  padding: 10px 0;
}
.kbLangFig__table dd + dt {
  margin-top: 10px;
}
.kbLangFig__table .input {
  display: block;
  position: relative;
  padding: 10px 40px 10px 20px;
  border: solid 1px #c9cceb;
  border-radius: 12px;
  font-weight: bold;
}
.kbLangFig__table .input::after {
  display: block;
  position: absolute;
  top: 50%;
  right: 18px;
  width: 15px;
  height: 14px;
  translate: 0 -50%;
  background-color: #5156be;
  content: "";
  -webkit-clip-path: polygon(0 0, 100% 0%, 50% 100%);
          clip-path: polygon(0 0, 100% 0%, 50% 100%);
}
.kbLangFig__table .textarea {
  display: block;
  height: 188px;
  padding: 15px 20px 50px;
  border: solid 1px #c9cceb;
  border-radius: 12px;
}
.kbLangFig__img {
  margin: 0 -10px;
  padding: 4px;
  overflow: hidden;
  border: solid 1px #5056be;
  border-radius: 20px;
}
.kbLangFig__struct {
  width: 220px;
  max-width: 100%;
  margin-inline: auto;
}
.kbLangFig__struct .title {
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 10px;
}
.kbLangFig__list {
  width: 100%;
  font-size: 10px;
  line-height: 1.7;
}
.kbLangFig__list dt {
  padding: 4px 0 0;
  color: #9c9fae;
  font-weight: bold;
}
.kbLangFig__list dd {
  padding: 0 0 4px;
}
.kbLangFig__list dd + dt {
  border-top: 1px solid #c9cceb;
}
.kbLangFig__arrow {
  display: grid;
  place-items: center;
  padding-top: 42px;
}
.kbLangFig__arrow .arrow {
  display: inline-block;
  width: 20px;
  height: 60px;
  background-color: #8a8fd1;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 50%);
          clip-path: polygon(0 0, 0 100%, 100% 50%);
}

.kbInst {
  z-index: 1;
  position: relative;
  padding: 60px 0;
}

.kbInstFig {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  margin-top: 60px;
}
.kbInstFig__left {
  display: grid;
  -webkit-box-align: start;
          align-items: start;
  width: 500px;
  gap: 30px 0;
}
.kbInstFig__arrow {
  width: 120px;
  margin: 16px 0;
  text-align: center;
}
.kbInstFig__arrow .arrow {
  display: block;
}
.kbInstFig__right {
  -webkit-box-flex: 1;
          flex: 1 0 0%;
}
.kbInstFig__box {
  display: -webkit-box;
  display: flex;
  z-index: 0;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: center;
          justify-content: center;
  width: 500px;
  height: 324px;
  padding: 24px 36px 10px 80px;
  font-weight: 500;
  font-size: 10px;
  line-height: 1.4;
}
.kbInstFig__box::before {
  display: block;
  z-index: -1;
  position: absolute;
  bottom: -15px;
  left: -15px;
  width: 530px;
  height: 354px;
  background: url(../img/kb/bg_inst_doc.webp) no-repeat center bottom/100% 100%;
  content: "";
}
.kbInstFig__box .text:not(:last-child) {
  margin-bottom: 16px;
}
.kbInstFig__overview {
  margin-bottom: 18px;
}
.kbInstFig__overview .title {
  margin-bottom: 8px;
}
.kbInstFig__list {
  display: grid;
  -webkit-box-align: start;
          align-items: start;
  gap: 2px 0;
}
.kbInstFig__list > li {
  position: relative;
  padding-left: 1em;
}
.kbInstFig__list > li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
}
.kbInstFig__list .marker {
  display: inline-block;
  padding: 0 4px;
}
.kbInstFig__list .marker.-color1 {
  background-color: color-mix(in sRGB, #EBC6FF 48%, #fff);
}
.kbInstFig__list .marker.-color2 {
  background-color: color-mix(in sRGB, #A5ABE6 58%, #fff);
}
.kbInstFig__list .marker.-color3 {
  background-color: color-mix(in sRGB, #C9CCEB 42%, #fff);
}
.kbInstFig__list .list {
  margin-left: 10px;
}
.kbInstFig__list .list > li {
  position: relative;
  padding-left: 1em;
}
.kbInstFig__list .list > li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "-";
}
.kbInstFig__container {
  display: -webkit-box;
  display: flex;
}
.kbInstFig__bubbles {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}
.kbInstFig__bubble {
  display: grid;
  position: relative;
  place-items: center;
  width: 190px;
  height: 65px;
  margin-bottom: 28px;
  border-radius: 14px;
  font-size: 14px;
  text-align: center;
}
.kbInstFig__bubble::after {
  display: block;
  position: absolute;
  bottom: 1px;
  left: 50%;
  width: 33px;
  height: 29px;
  translate: -50% 100%;
  background-color: inherit;
  content: "";
  -webkit-clip-path: polygon(0 0, 100% 0%, 50% 100%);
          clip-path: polygon(0 0, 100% 0%, 50% 100%);
}
.kbInstFig__bubble.-color1 {
  background-color: color-mix(in sRGB, #EBC6FF 48%, #fff);
}
.kbInstFig__bubble.-color2 {
  background-color: color-mix(in sRGB, #A5ABE6 58%, #fff);
}
.kbInstFig__bubble.-color3 {
  background-color: color-mix(in sRGB, #C9CCEB 42%, #fff);
}
.kbInstFig__table {
  z-index: 0;
  position: relative;
  width: 100%;
  margin-bottom: 48px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.16);
  table-layout: fixed;
}
.kbInstFig__table::after {
  display: block;
  z-index: 1;
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 130px;
  background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0), #fff 78%);
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 78%);
  content: "";
  pointer-events: none;
}
.kbInstFig__table th, .kbInstFig__table td {
  height: 64px;
  padding: 0 10px;
  border: 1px solid #707070;
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  vertical-align: middle;
}
.kbInstFig__table th {
  font-weight: bold;
}
.kbInstFig__table th:first-child {
  width: 37.5%;
}
.kbInstFig__table td {
  font-weight: 500;
}
.kbInstFig__text {
  display: grid;
  grid-template-columns: 24px 1fr;
  margin: 30px 0;
  gap: 0 18px;
  font-size: 14px;
  line-height: 2;
}
.kbInstFig__text .icon {
  display: inline-block;
  width: 24px;
  translate: 0 -3px;
}
.kbInstFig__textarea {
  z-index: 0;
  position: relative;
  padding-bottom: 1em;
}
.kbInstFig__textarea::after {
  display: block;
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 56px;
  background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0), #fff 78%);
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 78%);
  content: "";
  pointer-events: none;
}

.kbMethod {
  z-index: 0;
  position: relative;
  padding: 60px 0;
}
.kbMethod::before {
  display: block;
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 960px;
  translate: -50% -50%;
  background: url(../img/kb/bg_section.webp) no-repeat center center/auto 100%;
  content: "";
  pointer-events: none;
}
.kbMethod__lead {
  max-width: 620px;
  margin-inline: auto;
}

.kbMethodFig {
  display: grid;
  grid-template-columns: 0.65fr 0.3fr 1fr 1fr 1fr;
  -webkit-box-align: stretch;
          align-items: stretch;
  margin-top: 60px;
  gap: 16px;
}
.kbMethodFig__item {
  position: relative;
  padding-top: 40px;
}
.kbMethodFig__item.-light .kbMethodFig__title {
  background-color: #e5e5e5;
  color: #2b2b2b;
}
.kbMethodFig__item.-blue .kbMethodFig__box {
  border-color: #5056be;
}
.kbMethodFig__item.-blue .kbMethodFig__title {
  background-color: #5056be;
}
.kbMethodFig__item.-blue .kbMethodFig__list li {
  border-color: #5056be;
}
.kbMethodFig__box {
  display: -webkit-box;
  display: flex;
  z-index: 2;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  height: 100%;
  padding: 10px 16px;
  border: solid 1px #707070;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.16);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
}
.kbMethodFig__title {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  padding: 8px;
  border-radius: 20px 20px 0 0;
  background-color: #4f4f4f;
  color: #fff;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}
.kbMethodFig__grid {
  display: grid;
  -webkit-box-align: center;
          align-items: center;
  gap: 16px;
}
.kbMethodFig__list li {
  padding: 20px 0;
}
.kbMethodFig__list li:not(:last-child) {
  border-bottom: 1px solid #b5b5b5;
}
.kbMethodFig__list .icon {
  padding: 0 6px;
}
.kbMethodFig__list .icon img {
  max-width: 22px;
  margin-bottom: 4px;
}
.kbMethodFig__list.-list3 {
  text-align: left;
}
.kbMethodFig__list.-list3 .kbMethodFig__text {
  display: grid;
  grid-template-columns: 22px calc(100% - 24px);
  -webkit-box-align: center;
          align-items: center;
  gap: 0 10px;
}
.kbMethodFig__list.-list3 .kbMethodFig__text .icon {
  margin: 0;
  padding: 0;
  text-align: center;
}
.kbMethodFig__img img {
  width: 55px;
}
.kbMethodFig__text {
  max-width: 224px;
  font-weight: 500;
}
.kbMethodFig__text .icon {
  margin-left: -20px;
}

.kbLink {
  z-index: 1;
  position: relative;
  padding: 60px 0;
}
.kbLink__inner {
  max-width: 1114px;
  margin-inline: auto;
}

.kbLinkList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 1000px;
  margin: 60px auto 0;
  gap: 50px;
}
.kbLinkList__item {
  display: grid;
  grid-template-columns: 35px 1fr;
  -webkit-box-align: center;
          align-items: center;
  gap: 0 20px;
}
.kbLinkList__text {
  font-weight: 500;
  font-size: 18px;
  line-height: 2;
}

.kbAction {
  padding: 60px 0;
}
.kbAction__movie {
  position: relative;
  margin: 50px 0 0;
}
.kbAction__movie::before {
  display: block;
  z-index: -1;
  position: absolute;
  top: 36%;
  left: 50%;
  width: 140%;
  height: 200%;
  translate: -50% -50%;
  background: url(../img/kb/bg_action.png) no-repeat center center/contain;
  content: "";
  pointer-events: none;
}
.kbAction__movie video {
  z-index: 1;
  position: absolute;
  top: 2%;
  left: 49.6%;
  width: 68%;
  height: 85%;
  translate: -50% 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.kbAction__btn {
  z-index: 2;
  position: relative;
  margin-top: 60px;
  text-align: center;
}
.kbAction__btn .btn-demo {
  max-width: 280px;
}

.kbStory {
  padding: 60px 0;
}
.kbStory__list {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
  margin-top: 60px;
  gap: 16px;
}

.kbSolution {
  margin-top: 30px;
}
.kbSolution__title {
  margin-bottom: 10px;
}
.kbSolution__sum {
  margin: 0 -20px;
  text-align: center;
}
.kbSolution__result {
  max-width: 850px;
  margin: 80px auto 0;
}

.kbSolutionBox {
  padding: 32px;
  border: solid 1px #5056be;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.16);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.33;
}
.kbSolutionBox__title {
  margin-bottom: 0.8em;
  color: #5056be;
  font-weight: 600;
}
.kbSolutionBox__text {
  font-weight: 500;
}

.kbSolutionList {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
          justify-content: space-between;
  margin: 30px 0 60px;
}
.kbSolutionList__item {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
}
.kbSolutionList__item .title {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 70px;
  margin-bottom: 30px;
  padding: 0 40px;
  gap: 0 8px;
  background-color: #fff;
  white-space: nowrap;
}
.kbSolutionList__item .title .icon {
  display: inline-block;
  width: 48px;
  line-height: 1;
}
.kbSolutionList__item .text {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.33;
}
.kbSolutionList__left {
  width: 276px;
  text-align: center;
}
.kbSolutionList__left .title {
  padding: 0 20px 0 0;
  font-size: 34px;
}
.kbSolutionList__left .text {
  width: 310px;
}
.kbSolutionList__center {
  position: relative;
  -webkit-box-align: center;
          align-items: center;
  width: 324px;
  text-align: center;
}
.kbSolutionList__center::before, .kbSolutionList__center::after {
  display: block;
  z-index: -1;
  position: absolute;
  top: 36px;
  left: 50%;
  width: 800px;
  height: 2px;
  translate: -50% 0;
  background-color: #4f4f4f;
  content: "";
}
.kbSolutionList__center .title {
  -webkit-box-pack: center;
          justify-content: center;
}
.kbSolutionList__center .text {
  max-width: 320px;
}
.kbSolutionList__right {
  -webkit-box-align: center;
          align-items: center;
  width: 308px;
  text-align: center;
}
.kbSolutionList__right .title {
  width: 100%;
  padding-right: 60px;
  -webkit-box-pack: center;
          justify-content: center;
}
.kbSolutionList__right .text {
  max-width: 260px;
}
.kbSolutionList__cube {
  position: relative;
  width: 220px;
  text-align: center;
  translate: 34px 0;
}
.kbSolutionList__cube .icon {
  display: inline-block;
  padding: 0 16px;
  background-color: #fff;
}
.kbSolutionList__cube .icon img {
  width: 60px;
}
.kbSolutionList__cube .text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-bottom: 10px;
  translate: 0 -100%;
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
}
.kbSolutionList__star {
  width: 150px;
}

.kbSolutionFig__container {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: justify;
          justify-content: space-between;
  margin-top: 40px;
}
.kbSolutionFig__left {
  width: 267px;
}
.kbSolutionFig__center {
  width: 324px;
}
.kbSolutionFig__right {
  width: 308px;
}
.kbSolutionFig__table {
  width: 324px;
  table-layout: fixed;
}
.kbSolutionFig__table th, .kbSolutionFig__table td {
  height: 28px;
  border: 1px solid #707070;
  font-size: 9px;
  line-height: 1.2;
  text-align: center;
  vertical-align: middle;
}
.kbSolutionFig__table th {
  font-weight: bold;
}
.kbSolutionFig__table td {
  font-weight: 500;
}
.kbSolutionFig__list {
  display: grid;
  gap: 18px;
}
.kbSolutionFig__list li {
  display: grid;
  -webkit-box-align: center;
          align-items: center;
  height: 90px;
  padding: 15px 16px 15px 24px;
  border: solid 1px #c9cceb;
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  font-weight: 500;
  font-size: 14px;
}
.kbSolutionFig__past .title {
  margin-bottom: 16px;
  padding: 4px;
  border-radius: 13px;
  background-color: #5056be;
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  text-align: center;
}
.kbSolutionFig__past .image {
  text-align: center;
}
.kbSolutionFig__past .image img {
  max-width: 245px;
  max-height: 148px;
}
.kbSolutionFig__past .caption {
  max-width: 230px;
  margin: 20px auto 0;
  padding: 16px 0 0;
  border-top: 1px solid #4f4f4f;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.5;
}
.kbSolutionFig__cube {
  display: grid;
  z-index: 0;
  position: relative;
  place-items: center;
  width: 220px;
  margin: 0 5px;
  text-align: center;
  opacity: 0.1;
}
.kbSolutionFig__cube::before {
  display: block;
  z-index: -1;
  position: absolute;
  top: 50%;
  width: 100%;
  height: 2px;
  translate: 0 -50%;
  background-color: #4f4f4f;
  content: "";
}
.kbSolutionFig__cube .icon {
  display: inline-block;
  padding: 0 16px;
  background-color: #fff;
}
.kbSolutionFig__cube .icon img {
  width: 60px;
}
.kbSolutionFig__star {
  display: grid;
  place-items: center;
  width: 150px;
  text-align: center;
}
.kbSolutionFig__star .icon img {
  width: 48px;
}

.kbFaq {
  padding: 60px 0 0;
}

@media screen and (min-width: 1400px){
  .kbSolution__sum {
    margin: 0 -60px;
  }
}

@media screen and (max-width: 750px){
  .kbMV {
    padding: 50px 0 50px;
  }
  .kbMV__inner {
    padding: 0;
  }
  .kbMV__content {
    display: block;
    margin: 0;
    padding: 0 35px;
  }
  .kbMV__title {
    font-size: 30px;
  }
  .kbMV__text {
    margin-top: 20px;
    font-size: 14px;
  }
  .kbAbout {
    padding: 50px 35px;
  }
  .kbAbout__inner {
    padding: 0;
  }
  .kbAboutFig {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
  .kbAboutFig__left {
    width: 100%;
  }
  .kbAboutFig__center {
    width: 100%;
  }
  .kbAboutFig__right {
    width: 100%;
  }
  .kbAboutFig__list li {
    height: 40px;
  }
  .kbAboutFig__head {
    height: auto;
    text-align: center;
  }
  .kbAboutFig__head p {
    font-size: 14px;
  }
  .kbAboutFig__logo {
    margin-inline: auto;
  }
  .kbAboutFig__title {
    font-size: 24px;
  }
  .kbAboutFig__block {
    height: auto;
    padding: 16px 24px;
  }
  .kbAboutFig__tag {
    width: 212px;
    height: 64px;
    font-size: 16px;
  }
  .kbAboutFig__img {
    margin-bottom: 16px;
    text-align: center;
  }
  .kbAboutFig__img img {
    width: 50px;
  }
  .kbAboutFig__text {
    margin-top: 12px;
    font-size: 14px;
  }
  .kbAboutFig__arrow {
    padding: 0;
  }
  .kbAboutFig__arrow .arrow {
    width: 60px;
    height: 20px;
    margin: 25px 0 20px;
    -webkit-clip-path: polygon(0 0, 100% 0%, 50% 100%);
            clip-path: polygon(0 0, 100% 0%, 50% 100%);
  }
  .kbLang {
    padding: 50px 0;
  }
  .kbLangFig {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    margin-top: 30px;
  }
  .kbLangFig__left {
    width: 100%;
  }
  .kbLangFig__center {
    width: 100%;
  }
  .kbLangFig__right {
    width: 100%;
  }
  .kbLangFig__num {
    margin-inline: auto;
    text-align: center;
  }
  .kbLangFig__num .num {
    margin-right: 16px;
  }
  .kbLangFig__block {
    height: auto;
    padding: 16px 24px;
  }
  .kbLangFig__table {
    grid-template-columns: 1fr;
    gap: 5px 0;
  }
  .kbLangFig__table dt {
    padding: 0;
  }
  .kbLangFig__table .textarea {
    height: auto;
  }
  .kbLangFig__arrow {
    padding: 0;
  }
  .kbLangFig__arrow .arrow {
    width: 60px;
    height: 20px;
    margin: 25px 0 20px;
    -webkit-clip-path: polygon(0 0, 100% 0%, 50% 100%);
            clip-path: polygon(0 0, 100% 0%, 50% 100%);
  }
  .kbInst {
    padding: 50px 0;
  }
  .kbInstFig {
    display: block;
    -webkit-box-align: start;
            align-items: start;
    margin-top: 30px;
  }
  .kbInstFig__left {
    width: 100%;
    gap: 20px 0;
  }
  .kbInstFig__arrow {
    width: 100%;
  }
  .kbInstFig__box {
    width: 100%;
    height: auto;
    padding: 16px 16px 10px 16px;
  }
  .kbInstFig__box::before {
    bottom: -5%;
    left: -3%;
    width: 106%;
    height: 110%;
  }
  .kbInstFig__bubbles {
    margin-bottom: 16px;
  }
  .kbInstFig__bubble {
    width: 32%;
    height: 48px;
    margin-bottom: 14px;
    border-radius: 8px;
    font-size: 10px;
  }
  .kbInstFig__bubble::after {
    width: 17px;
    height: 15px;
  }
  .kbInstFig__table {
    margin-bottom: 32px;
  }
  .kbInstFig__table th, .kbInstFig__table td {
    height: 40px;
    padding: 0 4px;
    font-size: 10px;
  }
  .kbInstFig__text {
    margin: 16px 0;
  }
  .kbInstFig__textarea {
    max-height: 56px;
    overflow: hidden;
  }
  .kbMethod {
    padding: 50px 0;
  }
  .kbMethodFig {
    grid-template-columns: 1fr;
    -webkit-box-align: start;
            align-items: start;
    margin-top: 30px;
  }
  .kbMethodFig__item {
    padding: 0;
  }
  .kbMethodFig__box {
    padding: 8px 10px;
  }
  .kbMethodFig__title {
    position: relative;
    margin-bottom: -20px;
  }
  .kbMethodFig__grid {
    grid-template-columns: auto auto;
  }
  .kbMethodFig__list li {
    padding: 12px 0;
  }
  .kbMethodFig__list.-list1 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }
  .kbMethodFig__list.-list1 li {
    display: grid;
    align-content: center;
    padding: 8px;
    border-bottom: none;
    line-height: 1.4;
  }
  .kbMethodFig__list.-list1 li:not(:last-child) {
    border-right: 1px solid #b5b5b5;
  }
  .kbMethodFig__list.-list1 li .icon {
    margin-bottom: 8px;
  }
  .kbLink {
    padding: 50px 0;
  }
  .kbLinkList {
    grid-template-columns: 1fr;
    margin: 30px 0 0;
    gap: 20px 0;
  }
  .kbLinkList__text {
    font-size: 14px;
  }
  .kbAction {
    padding: 50px 0;
  }
  .kbAction__movie {
    margin: 30px -35px 0;
  }
  .kbAction__btn {
    margin-top: 40px;
  }
  .kbStory {
    padding: 50px 0;
  }
  .kbStory__list {
    grid-template-columns: 1fr;
    -webkit-box-align: start;
            align-items: start;
    margin-top: 30px;
  }
  .kbSolution__result {
    margin-top: 60px;
  }
  .kbSolutionBox {
    padding: 16px 24px;
    font-size: 14px;
  }
  .kbSolutionList {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    margin: 30px 0;
  }
  .kbSolutionList__item {
    width: 100%;
    -webkit-box-align: center !important;
            align-items: center !important;
    text-align: center !important;
  }
  .kbSolutionList__item .title {
    height: auto;
    margin-bottom: 10px;
    padding: 0 !important;
    font-size: 24px !important;
  }
  .kbSolutionList__item .title .icon {
    width: 40px;
  }
  .kbSolutionList__left {
    width: 100%;
  }
  .kbSolutionList__center {
    width: 100%;
  }
  .kbSolutionList__center::before, .kbSolutionList__center::after {
    position: static;
    width: 2px;
    margin: 10px auto;
  }
  .kbSolutionList__center::before {
    height: 32px;
  }
  .kbSolutionList__center::after {
    height: 56px;
  }
  .kbSolutionList__right {
    width: 100%;
  }
  .kbSolutionList__cube {
    width: 100%;
    translate: 0;
  }
  .kbSolutionList__cube::before {
    display: block;
    width: 2px;
    height: 32px;
    margin: 10px auto;
    translate: -50% 0;
    background-color: #4f4f4f;
    content: "";
  }
  .kbSolutionList__cube .icon img {
    width: 40px;
  }
  .kbSolutionList__cube .text {
    position: static;
    translate: 0;
  }
  .kbSolutionList__star {
    display: none;
  }
  .kbSolutionFig__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    margin-top: 54px;
  }
  .kbSolutionFig__left {
    max-width: 100%;
    margin-inline: auto;
  }
  .kbSolutionFig__center {
    max-width: 100%;
    margin-inline: auto;
  }
  .kbSolutionFig__right {
    max-width: 100%;
    margin-inline: auto;
  }
  .kbSolutionFig__table {
    width: 100%;
  }
  .kbSolutionFig__list li {
    height: auto;
  }
  .kbSolutionFig__cube {
    height: 100px;
    margin: 10px 0;
  }
  .kbSolutionFig__cube::before {
    width: 2px;
    height: 100%;
  }
  .kbSolutionFig__cube .icon {
    padding: 8px 0;
  }
  .kbSolutionFig__cube .icon img {
    width: 40px;
  }
  .kbSolutionFig__star {
    margin: 16px 0;
  }
  .kbSolutionFig__star .icon img {
    width: 40px;
  }
  .kbFaq {
    padding: 50px 0 0;
  }
}
