/* ------------------------------ First Visual ------------------------------ */
.provisional-header {
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  width: 100%;
  height: 64px;
  padding: 0 20px;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}
@media screen and (max-width: 645px) {
  .provisional-header {
    height: 40px;
  }
}
.provisional-header__logo {
  display: flex;
  align-items: center;
  width: 14%;
}
@media screen and (max-width: 645px) {
  .provisional-header__logo {
    width: 37%;
  }
}

.main {
  width: 100%;
}
.main__inner {
  max-width: 1260px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .main__inner {
    max-width: unset;
    /* width: 90%; */
    width: 100%;
    padding: 0 20px!important;
    box-sizing: border-box;
  }
}
@media screen and (max-width: 645px) {
  .br--pc {
    display: none;
  }
}
.br--sp {
  display: none;
}
@media screen and (max-width: 645px) {
  .br--sp {
    display: block;
  }
}

.fv {
  background-color: #F7F7F5;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 0 calc(50vw - 50%);
  padding-top: 71px;
  padding-bottom: 89px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 645px) {
  .fv {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.fv__inner {
  max-width: 1260px;
  position: relative;
}
.fv__inner::after {
  position: absolute;
  content: "";
  background-image: url(./images/fv_img.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  top: -71px;
  bottom: -89px;
  right: 0;
  width: 731px;
  z-index: -1;
}
@media screen and (max-width: 645px) {
  .fv__inner::after {
    background-image: url(./images/fv_img_sp.jpg);
    width: 78%;
    height: 53.2%;
    top: 100px;
  }
}
@media screen and (max-width: 365px) {
  .fv__inner::after {
    top: 140px;
  }
}
.fv__heading {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.375;
  margin-top: 20px;
}
@media screen and (max-width: 645px) {
  .fv__heading {
    font-size: 28px;
    line-height: 1.3214285714;
    margin-top: 15px;
  }
}
.fv__body {
  font-size: 16px;
  margin-top: 20px;
}
.fv__body2 {
  font-size: 16px;
}
@media screen and (max-width: 645px) {
  .fv__body {
    font-size: 14px;
    margin-top: 20px;
  }
}
.fv__body__partial {
  font-feature-settings: "palt";
}
@media screen and (max-width: 645px) {
  .fv__logo {
    width: 43.85%;
  }
}

.btns {
  display: flex;
  align-items: center;
}
.btns--fv {
  margin-top: 26px;
}
@media screen and (max-width: 1260px) {
  .btns--fv {
    justify-content: center;
  }
}
@media screen and (max-width: 645px) {
  .btns--fv {
    flex-direction: column;
    margin-top: 35px;
  }
}
.btns--cta {
  width: 100%;
  justify-content: center;
}
@media screen and (max-width: 645px) {
  .btns--cta {
    flex-direction: column;
  }
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  transition: 0.2s;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.16);
  box-sizing: border-box;
}
.btn:hover {
  opacity: 0.8;
}
.btn--arrow {
  position: relative;
}
.btn--arrow::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-right: solid 2px;
  border-bottom: solid 2px;
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  right: 15px;
  top: calc(50% - 3px);
  transition: 0.2s;
}
.btn--arrow:hover {
  opacity: 0.8;
}
.btn--arrow:hover::after {
  right: calc(15px - 2px);
}
.btn__download, .btn__contact {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}
.btn__download--fv, .btn__contact--fv {
  height: 64px;
  width: 301px;
}
@media screen and (max-width: 645px) {
  .btn__download--fv, .btn__contact--fv {
    height: 58px;
    width: 100%;
  }
}
.btn__download--cta, .btn__contact--cta {
  height: 64px;
  width: 42.6%;
}
@media screen and (max-width: 645px) {
  .btn__download--cta, .btn__contact--cta {
    height: 58px;
    width: 90%;
  }
}
.btn__download--cta2, .btn__contact--cta2 {
  height: 54px;
  width: 320px;
}
@media screen and (max-width: 645px) {
  .btn__download--cta2, .btn__contact--cta2 {
    width: 100%;
  }
}
.btn__download {
  background-color: #0079BF;
  color: #FFFFFF;
}
.btn__download--fv {
  margin-right: 20px;
}
@media screen and (max-width: 645px) {
  .btn__download--fv {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.btn__download--cta {
  margin-right: 25px;
}
@media screen and (max-width: 645px) {
  .btn__download--cta {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.btn__download--cta2 {
  background-color: #FFFFFF;
  color: #0079BF;
}
.btn__contact {
  background-color: #FFFFFF;
  border: 2px solid #0079BF;
  color: #0079BF;
}
.btn3 {
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  transition: 0.2s;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.16);
  box-sizing: border-box;
}
.btn3:hover {
  opacity: 0.8;
}
.btn3--arrow {
  position: relative;
}
.btn3--arrow::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-right: solid 2px;
  border-bottom: solid 2px;
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  right: 15px;
  top: calc(50% - 3px);
  transition: 0.2s;
}
.btn3--arrow:hover {
  opacity: 0.8;
}
.btn3--arrow:hover::after {
  right: calc(15px - 2px);
}
.btn3__download, .btn3__contact3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}
.btn3__download--fv, .btn3__contact3--fv {
  height: 64px;
  width: 301px;
}
@media screen and (max-width: 645px) {
  .btn3__download--fv, .btn3__contact3--fv {
    height: 58px;
    width: 100%;
  }
}
.btn3__download--cta, .btn3__contact3--cta3 {
  height: 64px;
  width: 42.6%;
}
@media screen and (max-width: 645px) {
  .btn3__download--cta, .btn3__contact3--cta3 {
    height: 58px;
    width: 90%;
  }
}
.btn3__download--cta3, .btn3__contact3--cta3 {
  height: 54px;
  width: 320px;
}
@media screen and (max-width: 645px) {
  .btn3__download--cta3, .btn3__contact3--cta3 {
    width: 100%;
  }
}
.btn3__download {
  background-color: #FFFFFF;
  border: 2px solid #0079BF;
  color: #0079BF;
  padding: 10px 30px 10px 30px;
}
.btn3__download--fv {
  margin-right: 20px;
}
@media screen and (max-width: 645px) {
  .btn3__download--fv {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.btn3__download--cta3 {
  margin-right: 25px;
}
@media screen and (max-width: 645px) {
  .btn3__download--cta3 {
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.btn3__download--cta3 {
  border: none;
}
.btn3__contact {
  background-color: #0079BF;
  color: #FFFFFF;
}
.btn3__download--cta3, .btn__contact--cta3 {
  height: 54px;
  width: 320px;
}
@media screen and (max-width: 645px) {
  .btn__download--cta3, .btn__contact--cta3 {
    width: 100%;
  }
}
.submenu {
  margin-top: 30px;
}
@media screen and (max-width: 645px) {
  .submenu {
    display: none;
  }
}
.submenu__ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0;
}
.submenu__li {
  width: 25.32%;
  text-align: center;
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8571428571;
  border-left: 1px solid #D7DADE;
  border-right: 1px solid #D7DADE;
  margin-left: -1px;
}
@media screen and (max-width: 1260px) {
  .submenu__li {
    width: 30%;
  }
}

.solution {
  padding-top: 55px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 645px) {
  .solution {
    padding-top: 55px;
  }
}
.solution::after {
  position: absolute;
  content: "";
  background-image: url(./images/bg_shape.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
  height: 648px;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 0 calc(50vw - 50%);
  box-sizing: border-box;
  filter: brightness(0.4);
  opacity: .6;
}
@media screen and (max-width: 645px) {
  .solution::after {
    height: 345px;
    background-position: top;
    background-image: url(./images/bg_shape_sp.svg);
    top: 50px;
  }
}
.solution__heading {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3611111111;
  text-align: center;
  color: #3363A5;
  margin-bottom: 50px;
}
@media screen and (max-width: 645px) {
  .solution__heading {
    font-size: 24px;
    line-height: 1.375;
    margin-bottom: 25px;
    margin-top: 25px;
  }
}
.solution__heading__partial {
  font-size: 26px;
  font-weight: 700;
}
@media screen and (max-width: 645px) {
  .solution__heading__partial {
    font-size: 16px;
    line-height: 2.0625;
  }
}
.solution__body {
  font-size: 16px;
  line-height: 1.625;
  margin-bottom: 80px;
  width: 67%;
}
@media screen and (max-width: 1260px) {
  .solution__body {
    width: 100%;
  }
}
@media screen and (max-width: 645px) {
  .solution__body {
    font-size: 15px;
    line-height: 1.4666666667;
    margin-bottom: 60px;
  }
}
.solution__items {
  display: grid;
  gap: 0 3px;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 60px;
}
@media screen and (max-width: 645px) {
  .solution__items {
    grid-template-columns: 1fr;
    gap: 15px 0px;
    margin-top: 10px;
  }
}
.solution__items_2 {
  display: grid;
  gap: 0 3px;
  grid-template-columns: 1fr 1fr;
  margin-top: 5px;
  width:70%;
}
@media screen and (max-width: 645px) {
  .solution__items_2 {
    grid-template-columns: 1fr;
    gap: 15px 0px;
    margin-top: 10px;
    width:100%;
  }
}
.solution__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #F0F6FF;
  padding: 80px 43px 88px;
  background: linear-gradient(#f0f6ff 0%, #f0fcff 100%);
  opacity: 0.9;
  position: relative;
  margin-bottom: 5px;
}
@media screen and (max-width: 1260px) {
  .solution__item {
    padding: 30px 20px 20px;
  }
}
@media screen and (max-width: 645px) {
  .solution__item {
    padding: 43px 20px 33px;
  }
}
.solution__item::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 3px;
  background-color: #3363A5;
  top: 0;
}
.solution__item__heading {
  font-size: 22px;
  font-weight: 700;
  color: #3363A5;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 645px) {
  .solution__item__heading {
    font-size: 18px;
  }
}
.solution__item__body {
  font-size: 16px;
  font-weight: 300;
  color: #000000;
  margin-top: 37px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1260px) {
  .solution__item__body {
    margin-top: 20px;
  }
}
@media screen and (max-width: 645px) {
  .solution__item__body {
    font-size: 15px;
    margin-top: 15px;
  }
}
.solution__item__number {
  position: absolute;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 1260px) {
  .solution__item__number {
    height: 68%;
  }
}

.strength {
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 645px) {
  .strength {
    padding-top: 70px;
  }
}
.strength__heading {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3611111111;
  color: #3363A5;
  margin-bottom: 50px;
}
@media screen and (max-width: 645px) {
  .strength__heading {
    font-size: 24px;
    line-height: 1.375;
    margin-bottom: 25px;
  }
}
.strength__heading_1 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3611111111;
  color: #3363A5;
  margin-bottom: 10px;
}
@media screen and (max-width: 645px) {
  .strength__heading_1 {
    font-size: 20px;
    line-height: 1.375;
    margin-bottom: 25px;
  }
}
.strength__body {
  font-size: 16px;
  line-height: 1.625;
  width: 67%;
}
@media screen and (max-width: 1260px) {
  .strength__body {
    width: 100%;
  }
}
@media screen and (max-width: 645px) {
  .strength__body {
    font-size: 15px;
    line-height: 1.4666666667;
  }
}

.strengths {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 89px;
}
@media screen and (max-width: 645px) {
  .strengths {
    flex-direction: column;
    width: 100%;
    margin-bottom: 40px;
  }
}
.strengths-outer {
  max-width: 1060px;
  padding-top: 90px;
  padding-bottom: 82px;
}
@media screen and (max-width: 645px) {
  .strengths-outer {
    padding-top: 40px;
    padding-bottom: 30px;
  }
}
.strengths__img {
  width: calc(50% - 30px);
  box-shadow: 0 1px 23px rgba(0, 0, 0, 0.12);
  border-radius: 3px;
}
@media screen and (max-width: 645px) {
  .strengths__img {
    width: 81.5%;
  }
}
@media screen and (max-width: 645px) {
  .strengths__img--pc {
    display: none;
  }
}
.strengths__img--sp {
  display: none;
}
@media screen and (max-width: 645px) {
  .strengths__img--sp {
    display: block;
  }
}
.strengths__text {
  width: calc(50% - 30px);
}
@media screen and (max-width: 645px) {
  .strengths__text {
    width: 100%;
  }
}
.strengths__text__heading {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3571428571;
  color: #3363A5;
  margin-bottom: 30px;
}
@media screen and (max-width: 645px) {
  .strengths__text__heading {
    font-size: 18px;
    line-height: 1.3333333333;
    text-align: center;
    margin-bottom: 15px;
  }
}
.strengths__text__body {
  font-size: 16px;
  line-height: 1.625;
}
@media screen and (max-width: 645px) {
  .strengths__text__body {
    font-size: 15px;
    line-height: 1.4666666667;
    margin-bottom: 15px;
  }
}

.cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  background-color: #FFF9EB;
  width: 67.5%;
  padding: 40px 0;
}
@media screen and (max-width: 1260px) {
  .cta {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding: 0 calc(50vw - 50%);
    box-sizing: border-box;
    padding: 40px 0;
  }
}
.cta__heading {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  color: #3363A5;
  margin-bottom: 20px;
}
.cta__body {
  font-size: 15px;
  line-height: 1.4666666667;
  margin-bottom: 28px;
}
@media screen and (max-width: 645px) {
  .cta__body {
    margin-bottom: 25px;
    text-align: center;
  }
}

.customers {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 126px;
  padding-bottom: 150px;
}
@media screen and (max-width: 645px) {
  .customers {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.customers__heading {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  color: #3363A5;
  margin-bottom: 62px;
}
@media screen and (max-width: 645px) {
  .customers__heading {
    font-size: 24px;
    line-height: 1;
    margin-bottom: 40px;
  }
}
.customers__logo {
  display: grid;
  gap: 14.36px 16.25px;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
@media screen and (max-width: 1260px) {
  .customers__logo {
    gap: 14.36px 0px;
  }
}
@media screen and (max-width: 645px) {
  .customers__logo {
    grid-template-columns: 1fr 1fr;
    gap: 10.5px 21px;
  }
}
@media screen and (max-width: 1260px) {
  .customers__logo__img {
    width: 90%;
  }
}
@media screen and (max-width: 645px) {
  .customers__logo__img {
    width: 100%;
  }
}

.cardlayout {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cardlayout--adopted-case {
  background-color: #F7F7F5;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 0 calc(50vw - 50%);
  box-sizing: border-box;
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 645px) {
  .cardlayout--adopted-case {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.cardlayout--workshop {
  padding-top: 140px;
  padding-bottom: 140px;
}
@media screen and (max-width: 645px) {
  .cardlayout--workshop {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.cardlayout__heading {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  color: #3363A5;
  margin-bottom: 50px;
}
.cardlayout__heading--workshop {
  margin-bottom: 43px;
}
@media screen and (max-width: 645px) {
  .cardlayout__heading {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
  }
}
.cardlayout__text {
  font-size: 16px;
  line-height: 1.625;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 645px) {
  .cardlayout__text {
    font-size: 15px;
  }
}
.cardlayout__cards {
  display: grid;
  gap: 0px 45px;
  grid-template-columns: 1fr 1fr 1fr;
  margin-bottom: 60px;
}
@media screen and (max-width: 1260px) {
  .cardlayout__cards {
    gap: 20px 0px;
    grid-template-columns: 1fr;
  }
}
.cardlayout__card {
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #D3D9E5;
  box-sizing: border-box;
  background-color: #FFFFFF;
}
.cardlayout__card--comingsoon {
  justify-content: center;
}
@media screen and (max-width: 1260px) {
  .cardlayout__card {
    min-height: 691px;
  }
}
@media screen and (max-width: 645px) {
  .cardlayout__card {
    min-height: 450px;
  }
}
.cardlayout__card__img {
  width: 100%;
  margin-bottom: 20px;
}
.cardlayout__card__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4444444444;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 645px) {
  .cardlayout__card__title {
    font-size: 16px;
  }
}
.cardlayout__card__body {
  font-size: 15px;
  line-height: 1.5333333333;
  margin-bottom: 20px;
}
@media screen and (max-width: 645px) {
  .cardlayout__card__body {
    font-size: 14px;
  }
}
.cardlayout__card__comingsoon {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3636363636;
  color: #3363A5;
}
@media screen and (max-width: 645px) {
  .cardlayout__card__comingsoon {
    font-size: 20px;
  }
}
.cardlayout__link {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.625;
  color: #0079BF;
  transition: 0.2s;
  position: relative;
  display: flex;
  height: 100%;
  align-items: flex-end;
}
@media screen and (max-width: 645px) {
  .cardlayout__link {
    font-size: 15px;
  }
}
.cardlayout__link--others {
  font-size: 18px;
}
@media screen and (max-width: 645px) {
  .cardlayout__link--others {
    font-size: 17px;
  }
}
.cardlayout__link::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-right: solid 2px;
  border-bottom: solid 2px;
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  right: -15px;
  bottom: calc(50% - 3px);
  transition: 0.2s;
  bottom: 11px;
}
.cardlayout__link:hover {
  opacity: 0.8;
}
.cardlayout__link:hover::after {
  right: calc(-15px - 2px);
}

.partner__text {
  font-size: 16px;
  line-height: 1.625;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 645px) {
  .partner__text {
    font-size: 15px;
  }
}
.partner__cards {
  display: grid;
  gap: 0px 45px;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 60px;
}
@media screen and (max-width: 1260px) {
  .partner__cards {
    gap: 20px 0px;
    grid-template-columns: 1fr;
  }
}
.partner__card {
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #D3D9E5;
  box-sizing: border-box;
  background: linear-gradient(#f0f6ff 0%, #f0fcff 100%);
}
.partner__card--comingsoon {
  justify-content: center;
}
@media screen and (max-width: 1260px) {
  .partner__card {
    min-height: 691px;
  }
}
@media screen and (max-width: 645px) {
  .partner__card {
    min-height: 450px;
    padding: 20px;
  }
}
.partner__card__img1 {
  width: 58%;
}
.partner__card__img2 {
  width: 75%;
}
.partner__card__title {
  font-size: 18px;
  font-weight: 700;
  position: relative;
  color: #3363A5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 2;
}
@media screen and (max-width: 645px) {
  .partner__card__title {
    font-size: 16px;
  }
}
.partner__card__body {
  font-size: 15px;
  line-height: 1.5333333333;
  margin: 20px 0;
  margin-bottom: 30px;
}
@media screen and (max-width: 645px) {
  .partner__card__body {
    font-size: 14px;
}
}
.partner__link {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.625;
  color: #0079BF;
  transition: 0.2s;
  position: relative;
  display: flex;
  height: 100%;
  align-items: flex-end;
}
@media screen and (max-width: 645px) {
  .partner__link {
    font-size: 15px;
  }
}
.partner__link--others {
  font-size: 18px;
}
@media screen and (max-width: 645px) {
  .partner__link--others {
    font-size: 17px;
  }
}
.partner__link::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  border-right: solid 2px;
  border-bottom: solid 2px;
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  right: -15px;
  bottom: calc(50% - 3px);
  transition: 0.2s;
  bottom: 11px;
}
.partner__link:hover {
  opacity: 0.8;
}
.partner__link:hover::after {
  right: calc(-15px - 2px);
}

.review {
  background-color: #F7F7F5;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 0 calc(50vw - 50%);
  padding-top: 76px;
  padding-bottom: 60px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 645px) {
  .review {
    padding: 50px 0;
  }
}

.review__heading {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  color: #3363A5;
  margin-bottom: 62px;
}
@media screen and (max-width: 645px) {
  .review__heading {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 40px;
  }
}

.swiper {
  opacity: 0;
  width: 100%;
}
.swiper.swiper-initialized {
  opacity: 1;
}
.swiper-slide {
  background-color: #FFFFFF;
  width: calc(50% - 30px) !important;
  border-radius: 5px;
  box-shadow: 0 1px 23px rgba(0, 0, 0, 0.08);
  padding: 0 50px;
  box-sizing: border-box;
  position: relative;
  height: 280px !important;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1260px) {
  .swiper-slide {
    width: calc(50% - 15px) !important;
  }
}
@media screen and (max-width: 645px) {
  .swiper-slide {
    width: 90% !important;
    height: 207px !important;
    padding: 0 30px;
    margin: 0 5%;
  }
}

.swiper-slide::before {
  position: absolute;
  content: "";
  background-image: url(./images/review.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 78.54px;
  height: 58.38px;
  top: 40px;
}
@media screen and (max-width: 645px) {
  .swiper-slide::before {
    top: 20px;
    left: 20px;
    width: 53.71px;
    height: 39.93px;
  }
}

.swiper-slide__body {
  font-size: 18px;
  line-height: 1.6666666667;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1260px) {
  .swiper-slide__body {
    font-size: 16px;
    line-height: 1.625;
  }
}

.swiper-slide__client {
  position: absolute;
  right: 50px;
  bottom: 55px;
  font-size: 15px;
  line-height: 1;
  color: #808080;
}
@media screen and (max-width: 1260px) {
  .swiper-slide__client {
    bottom: 35px;
  }
}
@media screen and (max-width: 645px) {
  .swiper-slide__client {
    font-size: 13px;
    line-height: 1;
    right: 30px;
    bottom: 25px;
  }
}

.swiper-pagination-bullets {
  position: relative !important;
  padding-top: 32px;
  bottom: 0 !important;
}
@media screen and (max-width: 645px) {
  .swiper-pagination-bullets {
    padding-top: 20px;
  }
}

.swiper-pagination-bullet {
  margin: 0 7.5px !important;
  background: #E0E0E0 !important;
  opacity: 1 !important;
  width: 10px !important;
  height: 10px !important;
}
@media screen and (max-width: 645px) {
  .swiper-pagination-bullet {
    width: 9px !important;
    height: 9px !important;
  }
}

.swiper-pagination-bullet-active {
  background: #3363A5 !important;
  opacity: 1 !important;
}

.case {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 156px;
}
@media screen and (max-width: 645px) {
  .case {
    padding-top: 70px;
  }
}
.case__heading {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  color: #3363A5;
  margin-bottom: 62px;
}
@media screen and (max-width: 645px) {
  .case__heading {
    font-size: 24px;
    line-height: 1;
    margin-bottom: 40px;
  }
}

.cases {
  display: grid;
  gap: 45px 45px;
  grid-template-columns: 1fr 1fr 1fr;
  padding-bottom: 150px;
}
@media screen and (max-width: 1260px) {
  .cases {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 645px) {
  .cases {
    grid-template-columns: 1fr;
    gap: 15px 0px;
    padding-bottom: 110px;
    width: 100%;
  }
}
.cases__item {
  padding: 40px 40px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #D3D9E5;
  box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 645px) {
  .cases__item {
    padding: 25px 20px 15px;
  }
}
.cases__item__heading {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  color: #3363A5;
  margin-bottom: 28px;
}
@media screen and (max-width: 645px) {
  .cases__item__heading {
    font-size: 18px;
    line-height: 1;
    margin-bottom: 20px;
  }
}
.cases__item__img {
  display: flex;
  align-items: center;
  width: 100%;
  margin-bottom: 25px;
  border: 1px solid #D3D9E5;
  padding-top: 65.8064%;
  height: 0;
  position: relative;
  box-sizing: border-box;
}
@media screen and (max-width: 645px) {
  .cases__item__img {
    padding-top: 0;
    width: 86.3%;
    height: 168px;
    margin-bottom: 15px;
  }
}
.cases__item__img--dark {
  background-color: black;
}
.cases__item__img > img {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 100%;
}
.cases__item__body {
  font-size: 16px;
  line-height: 1.5625;
}
@media screen and (max-width: 645px) {
  .cases__item__body {
    font-size: 14px;
    line-height: 1.5714285714;
  }
}

.cta2 {
  background-image: url(./images/bg_blue.svg);
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 0 calc(50vw - 50%);
  padding-top: 68px;
  padding-bottom: 80px;
  box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 645px) {
  .cta2 {
    background-image: url(./images/bg_blue_sp.svg);
    padding-top: 181px;
    padding-bottom: 40px;
  }
}
.cta2__inner {
  max-width: 1060px;
  position: relative;
  margin: 0 auto;
}
.cta2__heading {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.52;
  color: #FFFFFF;
  margin-bottom: 25px;
}
@media screen and (max-width: 1260px) {
  .cta2__heading {
    width: 60%;
  }
}
@media screen and (max-width: 645px) {
  .cta2__heading {
    width: 100%;
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 12px;
  }
}
.cta2__body {
  font-size: 16px;
  line-height: 1.75;
  color: #FFFFFF;
  margin-bottom: 25px;
}
@media screen and (max-width: 645px) {
  .cta2__body {
    font-size: 15px;
    line-height: 1.4666666667;
  }
}
.cta2__img {
  position: absolute;
  filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.16));
}
.cta2__img--pc {
  width: 423px;
  top: -128px;
  right: -30px;
}
@media screen and (max-width: 1260px) {
  .cta2__img--pc {
    top: -120px;
    right: 0;
    width: 250px;
  }
}
@media screen and (max-width: 645px) {
  .cta2__img--pc {
    display: none;
  }
}
.cta2__img--sp {
  display: none;
}
@media screen and (max-width: 645px) {
  .cta2__img--sp {
    display: block;
    width: 240px;
    right: 0;
    left: 50%;
    top: -230px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
}
.cta3 {
  background-image: url(./images/bg_blue2.svg);
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 0 calc(50vw - 50%);
  padding-top: 68px;
  padding-bottom: 80px;
  box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 645px) {
.cta3 {
  background-image: url(./images/bg_blue_sp.svg);
  padding-top: 181px;
  padding-bottom: 40px;
}
}
.cta3__inner {
  max-width: 1060px;
  position: relative;
  margin: 0 auto;
}
.cta3__heading {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.52;
  color: #FFFFFF;
  margin-bottom: 25px;
}
@media screen and (max-width: 1260px) {
  .cta3__heading {
    width: 60%;
  }
}
@media screen and (max-width: 645px) {
  .cta3__heading {
    width: 100%;
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 12px;
  }
}
.cta3__body {
  font-size: 16px;
  line-height: 1.75;
  color: #FFFFFF;
  margin-bottom: 25px;
}
@media screen and (max-width: 645px) {
  .cta3_body {
    font-size: 15px;
    line-height: 1.4666666667;
  }
}
.cta3__img {
  position: absolute;
  filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.16));
}
.cta3__img--pc {
  width: 423px;
  top: -128px;
  right: -30px;
}
@media screen and (max-width: 1260px) {
  .cta3__img--pc {
    top: -120px;
    right: 0;
    width: 250px;
  }
}
@media screen and (max-width: 645px) {
  .cta3__img--pc {
    display: none;
  }
}
.cta3__img--sp {
  display: none;
}
@media screen and (max-width: 645px) {
  .cta3__img--sp {
    display: block;
    width: 240px;
    right: 0;
    left: 50%;
    top: -230px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
}
.news {
  background-color: #F7F7F5;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 0 calc(50vw - 50%);
  padding-top: 106px;
  padding-bottom: 100px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 645px) {
  .news {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.news__heading {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  color: #3363A5;
  margin-bottom: 72px;
}
@media screen and (max-width: 645px) {
  .news__heading {
    font-size: 24px;
    line-height: 1;
    margin-bottom: 40px;
  }
}
.news__item {
  display: flex;
  align-items: center;
  padding: 30px 0;
  border-top: 1px solid #D3D9E5;
  border-bottom: 1px solid #D3D9E5;
  margin-top: -1px;
  width: 67%;
}
@media screen and (max-width: 1260px) {
  .news__item {
    flex-direction: column;
    align-items: start;
    width: 100%;
  }
}
@media screen and (max-width: 645px) {
  .news__item {
    padding: 15px 0;
  }
}
.news__item__date {
  font-size: 16px;
  line-height: 1;
  color: #2A4888;
  margin-right: 39px;
}
@media screen and (max-width: 1260px) {
  .news__item__date {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 645px) {
  .news__item__date {
    font-size: 15px;
    line-height: 1;
  }
}
.news__item__title {
  font-size: 16px;
  line-height: 1.625;
}
@media screen and (max-width: 645px) {
  .news__item__title {
    font-size: 15px;
    line-height: 1.4666666667;
  }
}
