/*********************************/
/* COMMON */
/*********************************/
img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: baseline;
}
.fb {
  position: relative;
  padding-top: 56px;
  color: #1a346e;
  font-family: 'ヒラギノ角ゴシック', 'Hiragino Kaku Gothic ProN', 'メイリオ',
    Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  line-height: 1.5;
  --text: #1a346e;
  --strong: #ed4f92;
  --main: #1877f2;
}

.fb-tbonly,
.fb-sponly {
  display: none;
}

.fb-cm-ctaButton {
  position: relative;
  display: inline-block;
  width: 520px;
  height: 82px;
  line-height: 82px;
  border-radius: 100px;
  transition: 0.3s width;
}
.fb-cm-ctaButton::before,
.fb-cm-ctaButton::after {
  position: absolute;
  content: '';
}
.fb-cm-ctaButton::before {
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #f27a58, #fab250);
  border-radius: 100px;
}
.fb-cm-ctaButton::after {
  bottom: -12px;
  left: 50%;
  width: 480px;
  height: 24px;
  background-color: #03319a;
  border-radius: 400px;
  transform: translateX(-50%);
  filter: blur(20px);
}
.fb-cm-ctaButton span {
  position: relative;
  z-index: 3;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  transition: 0.3s letter-spacing;
}
.fb-cm-ctaButton:hover {
  width: 530px;
}
.fb-cm-ctaButton:hover span {
  letter-spacing: 0.04em;
}

.fb-cm-ctaButton-white {
  color: #000;
  background: #fff;
  border: 3px solid #000;
}
.fb-cm-ctaButton-white span {
  color: #000;
}
.fb-cm-ctaButton-white::before {
  background: #fff;
}

.fb-mv-cta .fb-cm-ctaButton:not(:first-child) {
  margin-top: 30px;
}

.fb-cta-button {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.fb-cm-head {
  margin-bottom: 60px;
  text-align: center;
}

.fb-cm-head-innr {
  position: relative;
  display: inline-block;
  font-weight: 800;
  font-size: 34px;
  line-height: 1.76;
}
.fb-cm-head-innr::before {
  position: absolute;
  top: 50%;
  width: 180px;
  height: 156px;
  background: url('../img/cm-attach.svg') center center / cover no-repeat;
  transform: translateY(-60%);
  content: '';
}
.fb-cm-head-l .fb-cm-head-innr::before {
  left: -116px;
}
.fb-cm-head-r .fb-cm-head-innr::before {
  right: -116px;
}

.fb-cm-head-innr > span {
  position: relative;
  z-index: 1;
}

.fb-cm-head-innr > span > span {
  font-size: 24px;
}

.fb-cm-head-text {
  margin-top: 15px;
  line-height: 2;
}

.fb-accordion-title {
  position: relative;
}

.fb-accordion-title::before,
.fb-accordion-title::after {
  position: absolute;
  top: 50%;
  right: 32px;
  width: 14px;
  height: 2px;
  background-color: var(--main);
  content: '';
}
.fb-accordion-title::before {
  transform: translateY(-50%);
}
.fb-accordion-title::after {
  transform: translateY(-50%) rotate(-90deg);
  transition: all 0.3s;
}
.fb-accordion-title.active::after {
  transform: translateY(-50%) rotate(0deg);
}

.fb-accordion-content {
  max-height: 0;
  transform: scaleY(0);
  transform-origin: top;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
}
.fb-accordion-content.active {
  max-height: 500px;
  transform: scaleY(1);
  visibility: visible;
  opacity: 1;
}

@media (max-width: 1200px) {
  .fb-tbonly {
    display: block;
  }
}

@media (max-width: 899px) {
  .fb-accordion-title::before,
  .fb-accordion-title::after {
    right: 20px;
  }
}

@media (max-width: 767px) {
  .fb-pconly,
  .fb-tbonly {
    display: none;
  }

  .fb-sponly,
  .fb-sponly.fb-tbonly {
    display: block;
  }

  .fb-cm-ctaButton {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 327px;
    max-width: 100%;
    height: 80px;
    margin: 0 auto;
    line-height: 1.55;
  }
  .fb-cm-ctaButton:hover {
    width: 327px;
  }
  .fb-cm-ctaButton:hover span {
    letter-spacing: 0;
  }
  .fb-cm-ctaButton::after {
    width: 327px;
  }

  .fb-cm-ctaButton.square-ctaButton {
    display: inline-block;
  }
  .fb-cta-button {
    flex-wrap: wrap;
    gap: 20px;
  }
  .fb-cm-head {
    margin-bottom: 20px;
  }
  .fb-cm-head-innr {
    font-size: 22px;
    line-height: 1.81;
  }
  .fb-cm-head-innr > span > span {
    font-size: 18px;
  }
  .fb-cm-head-innr::before {
    width: 120px;
    height: 104px;
  }
  .fb-cm-head-l .fb-cm-head-innr::before {
    left: -69px;
  }
  .fb-cm-head-r .fb-cm-head-innr::before {
    right: -69px;
  }
  .fb-cm-head-text {
    max-width: calc(100% - 32px);
    margin-right: auto;
    margin-left: auto;
    font-size: 16px;
    text-align: left;
  }
}

/*********************************/
/* BREADCRUMB */
/*********************************/
.fb-breadcrumb {
  position: absolute;
  top: 90px;
  left: 60px;
  z-index: 90;
  font-size: 13px;
}

.fb-breadcrumb-child {
  display: inline-block;
  vertical-align: middle;
}
a.fb-breadcrumb-child {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .fb-breadcrumb {
    top: 57px;
    left: 5px;
    font-size: 11px;
  }
}

@media (max-width: 350px) {
}

/*********************************/
/* MV */
/*********************************/
.fb-mv {
  padding-top: 206px;
  padding-bottom: 290px;
}

.fb-mv-wrapper {
  position: relative;
  width: 650px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
  text-align: center;
}

.fb-mv-lead {
  position: relative;
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.857;
  letter-spacing: 0.06em;
}

.fb-mv-head {
  position: relative;
  margin-bottom: 40px;
  color: var(--text);
  font-weight: 800;
  font-size: 68px;
  line-height: 1.617;
}

.fb-mv-img {
  position: absolute;
}
.fb-mv-img-1 {
  top: -302px;
  left: -425px;
  width: 628px;
}
.fb-mv-img-2 {
  bottom: -210px;
  left: -310px;
  width: 385px;
}
.fb-mv-img-4 {
  right: -410px;
  bottom: -270px;
  width: 725px;
}

@media (max-width: 767px) {
  .fb-mv {
    padding-top: 90px;
    padding-bottom: 340px;
  }

  .fb-mv-lead {
    margin-bottom: 0;
    font-size: 18px;
  }

  .fb-mv-head {
    margin-bottom: 20px;
    font-size: 40px;
  }

  .fb-mv-img-1 {
    top: -212px;
    left: -65px;
    width: 295px;
  }

  .fb-mv-img-2 {
    bottom: -192px;
    left: -65px;
    width: 185px;
  }

  .fb-mv-img-3 {
    top: -251px;
    right: -58px;
    width: 225px;
  }

  .fb-mv-img-4 {
    right: -38px;
    bottom: -270px;
    width: 366px;
  }
}

@media (max-width: 350px) {
  .fb-mv-head {
    font-size: 35px;
  }
}

/*********************************/
/* WORRY */
/*********************************/
.fb-wor {
  display: flex;
  justify-content: space-between;
  width: 975px;
  max-width: 100%;
  margin: 0 auto;
  column-gap: 10px;
}

.fb-wor-left {
  width: 348px;
  text-align: center;
}

.fb-wor-head {
  margin-right: 55px;
  font-weight: 800;
  font-size: 28px;
  line-height: 1.78;
}
.fb-wor-head-small {
  font-size: 20px;
}

.fb-wor-head-sponly {
  display: none;
}

.fb-wor-image {
  margin-top: -13px;
}

.fb-wor-list {
  margin-bottom: 8px;
}

.fb-wor-list-innr {
  display: inline-flex;
  align-items: center;
  padding: 14.5px 24px;
  column-gap: 8px;
  background-color: #f5f7fd;
}

.fb-wor-list-check {
  width: 17.87px;
}
.fb-wor-list-check img {
  vertical-align: middle;
}

.fb-wor-list-text {
  font-weight: 600;
  font-size: 18px;
}

.fb-toggle {
  position: relative;
  display: flex;
  align-items: center;
  margin: 30px auto 0;
  padding-right: 20px;
  font-size: 16px;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.fb-toggle::before,
.fb-toggle::after {
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 10px;
  height: 1px;
  background-color: #050e24;
  content: '';
}

.fb-toggle::after {
  rotate: 90deg;
}
.fb-toggle.is-opened::after {
  rotate: 0deg;
}

.fb-toggle.fb-sponly {
  display: none;
}

@media (max-width: 767px) {
  .fb-wor {
    display: block;
    /* padding-bottom: 90px; */
    margin-bottom: -110px;
  }
  .fb-wor-left {
    position: relative;
    width: 100%;
    margin-bottom: 24px;
  }
  .fb-wor-head {
    margin-right: 0;
    font-size: 24px;
  }
  .fb-wor-head-small {
    font-size: 24px;
  }
  .fb-wor-head-pconly {
    display: none;
  }
  .fb-wor-head-sponly {
    display: inline-block;
  }
  .fb-wor-image {
    position: absolute;
    top: -130px;
    left: 48px;
    width: 158px;
  }
  .fb-wor-list-text {
    font-size: 16px;
  }
  .fb-wor-list-innr {
    display: flex;
    padding: 23px 15px;
  }
  #worry-list {
    display: none;
  }

  .fb-toggle.fb-sponly {
    display: block;
  }
}

/*********************************/
/* SOLUTION */
/*********************************/
.fb-sol {
  padding-top: 140px;
  padding-bottom: 100px;
  background: url(../img/wor-bg.png) no-repeat;
  background-position: top center;
  background-size: contain;
}

.fb-sol-head {
  margin-bottom: 60px;
  text-align: center;
}

.fb-sol-head-innr {
  position: relative;
  display: inline-block;
  font-weight: 800;
  font-size: 34px;
  line-height: 1.76;
}
.fb-sol-head-innr::before,
.fb-sol-head-innr::after {
  position: absolute;
  z-index: -1;
  content: '';
}
.fb-sol-head-innr::before {
  top: 50%;
  left: -84px;
  width: 180px;
  height: 156px;
  background: url('../img/cm-attach.svg') center center / cover no-repeat;
  transform: translateY(-50%);
}
.fb-sol-head-innr::after {
  top: -30px;
  right: -186px;
  width: 143px;
  height: 169px;
  background: url('../img/sol-attach.svg') center center / cover no-repeat;
}
.fb-sol-head-innr span {
  font-size: 24px;
}
.fb-sol-head-innr .text-strong {
  color: var(--strong);
  font-size: 34px;
}

.fb-sol-lists {
  display: flex;
  flex-wrap: wrap;
  /* align-items: flex-start; */
  justify-content: center;
  width: 980px;
  max-width: 100%;
  margin: 0 auto;
}

.fb-sol-list {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc((100% - 20px * 3) / 4);
  min-height: 230px;
  margin-bottom: 20px;
  padding: 0 17px 25px;
  column-gap: 20px;
  background: linear-gradient(to right, #fcfaff 0%, #edf8ff 100%);
  border-radius: 10px;
}

.fb-sol-list:last-child {
  padding: 0 13px 25px;
}

.fb-sol-list:not(:nth-child(4n)) {
  margin-right: 20px;
}

.fb-sol-list .fb-sol-pin {
  display: flex;
  align-items: center;
  justify-content: center;
}

.fb-sol-list:nth-child(-n + 4) .fb-sol-pin {
  height: 149px;
}

.fb-sol-list:nth-child(n + 5) .fb-sol-pin {
  height: 128px;
}

.fb-sol-boxnum-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 64px;
  overflow: hidden;
}

.fb-sol-boxnum-content .num {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 100%;
  padding: 8.5px 12px;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  font-family: 'Arial', sans-serif;
  line-height: 1;
  background: #809bf4;
  background: url(../img/sol-bg-num.svg) no-repeat;
  background-size: 100%;
}

.fb-sol-text {
  flex: 1;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
}

.fb-sol-text span {
  color: var(--strong);
}

.fb-toggle-bg {
  display: none;
  margin: 20px auto -10px;
  text-align: center;
}

@media (max-width: 767px) {
  .fb-sol-head {
    margin-top: 20px;
    margin-bottom: 32px;
  }
  .fb-sol-head-innr {
    font-size: 24px;
  }
  .fb-sol-head-innr span {
    font-size: 18px;
  }
  .fb-sol-head-innr::before {
    top: -40px;
    left: -21px;
    width: 120px;
    height: 104px;
    transform: translateY(0);
  }
  .fb-sol-head-innr::after {
    top: -50px;
    right: 0;
    width: 70px;
    height: 75px;
  }

  .fb-toggle-bg {
    display: block;
  }
}

@media (max-width: 767px) {
  .fb-sol {
    padding-top: 220px;
    padding-bottom: 24px;
    background: url(../img/wor-bg-sp.png) no-repeat;
    background-position: center top;
    background-size: 1776px 244px;
  }

  .fb-sol-lists {
    margin: 0 auto;
    padding: 0 20px;
  }

  .fb-sol-lists:nth-child(3) {
    display: none;
  }

  .fb-sol-list {
    width: calc((100% - 8px) / 2);
    min-height: inherit;
    margin: 0 auto 10px;
    column-gap: 8px;
  }

  .fb-sol-list:not(:nth-child(4n)) {
    margin-right: 0;
  }

  .fb-sol-text {
    font-weight: normal;
    font-size: 14px;
    line-height: 1.5;
  }

  .fb-sol-head-innr .text-strong {
    font-size: 24px;
  }

  .fb-sol-boxnum-content {
    padding: 0 20px;
  }

  .fb-sol-boxnum-content .num {
    width: 44px;
    height: 44px;
    padding: 6.5px 10px;
    font-size: 14px;
  }

  .fb-sol-boxnum-content {
    height: 73.5px;
  }

  .fb-sol-list:nth-child(-n + 4) .fb-sol-pin,
  .fb-sol-list:nth-child(n + 5) .fb-sol-pin {
    height: 70px;
  }

  .fb-sol-list:first-child img {
    width: 35px;
  }

  .fb-sol-list:nth-child(2) img {
    width: 45px;
  }

  .fb-sol-list:nth-child(3) img {
    width: 36px;
  }

  .fb-sol-list:nth-child(4) img {
    width: 35px;
  }

  .fb-sol-list:nth-child(5) img {
    width: 37px;
  }

  .fb-sol-list:nth-child(6) img {
    width: 34px;
  }

  .fb-sol-list:nth-child(7) img {
    width: 29px;
  }

  .fb-sol-list:nth-child(8) img {
    width: 31px;
  }
}

@media (max-width: 350px) {
  .fb-sol-head-innr {
    font-size: 23px;
  }
}

/*********************************/
/* CTA */
/*********************************/
.fb-cta {
  position: relative;
  padding-top: 95px;
  padding-bottom: 70px;
  overflow: hidden;
  text-align: center;
}
.fb-cta::before,
.fb-cta::after {
  position: absolute;
  z-index: -1;
  height: 100%;
  content: '';
}
.fb-cta::before {
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, #1877f2 0%, #0093ff 100%);
  clip-path: polygon(0 0, 0% 100%, 100% 0);
}
.fb-cta::after {
  right: 0;
  bottom: 0;
  width: calc(100% + 5px);
  background: linear-gradient(to bottom, #1877f2 0%, #0093ff 100%);
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.fb-cta-wrapper {
  position: relative;
  display: inline-block;
  max-width: calc(100% - 32px);
}

.fb-cta-head {
  margin-bottom: 10px;
  color: #fff;
  font-weight: 800;
  font-size: 36px;
  line-height: 1.66;
}

.fb-cta-text {
  margin-bottom: 22px;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.86;
}

.fb-cta-attach {
  position: absolute;
}
.fb-cta-attach-left {
  top: -390px;
  left: -556px;
}
.fb-cta-attach-right {
  right: -710px;
  bottom: -225px;
}

.fb-cta-cloud {
  position: absolute;
}
.fb-cta-cloud-left {
  bottom: 0;
  left: 0;
}
.fb-cta-cloud-left img {
  vertical-align: bottom;
}
.fb-cta-cloud-right {
  top: 0;
  right: 0;
}

@media (max-width: 949px) {
  .fb-cta-cloud-left {
    width: 250px;
  }
  .fb-cta-cloud-right {
    width: 250px;
  }
}

@media (max-width: 767px) {
  .fb-cta {
    padding-top: 65px;
    padding-bottom: 40px;
  }
  .fb-cta-head {
    font-size: 25px;
  }
  .fb-cta-text {
    font-size: 14px;
  }
  .fb-cta-attach-left {
    top: -243px;
    left: -71px;
    width: 300px;
  }
  .fb-cta-attach-right {
    right: -113px;
    bottom: -86px;
    width: 230px;
  }

  .fb-cta-cloud-left {
    bottom: -18px;
    width: 87px;
  }
  .fb-cta-cloud-right {
    top: -5px;
    width: 112px;
  }
}

@media (max-width: 374px) {
  .fb-cta-head {
    font-size: 21px;
  }
  .fb-cta-text {
    font-size: 13px;
  }
}

/*********************************/
/* CHARACTER */
/*********************************/
.fb-cha {
  margin-bottom: 170px;
  padding-top: 185px;
}

.fb-cha-lists {
  width: 100%;
  max-width: 970px;
  margin: 0 auto;
}

.fb-cha-list {
  display: flex;
  justify-content: space-between;
}

.fb-cha-list:not(:last-child) {
  margin-bottom: 86px;
}

.fb-cha-list.reverse {
  flex-direction: row-reverse;
}

.fb-cha-info-wrap {
  width: 56%;
}

.fb-cha-list-head {
  color: var(--text);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.4;
}

.fb-cha-list-head span {
  padding: 6px;
  color: #fff;
  background: #1877f2;
}

.fb-cha-list-head.p1 span {
  margin-left: 3.5em;
}

.fb-cha-list-head.p3 span {
  margin-left: 7.5em;
}

.fb-cha-title-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.fb-cha-num-wrap {
  position: relative;
  margin-right: 12px;
  color: #809bf4;
  font-weight: bold;
  font-family: 'Arial', sans-serif;
}

.fb-cha-num-wrap::before {
  position: absolute;
  width: 24px;
  height: 22px;
  content: '';
}

.fb-cha-num-wrap.p1::before,
.fb-cha-num-wrap.p3::before {
  top: -15px;
  left: -15px;
  background: url(../img/cha-icon-01.svg) no-repeat;
  background-size: contain;
}

.fb-cha-num-wrap.p2::before,
.fb-cha-num-wrap.p4::before {
  top: -15px;
  left: 0;
  background: url(../img/cha-icon-02.svg) no-repeat;
  background-size: contain;
}

.fb-cha-num-wrap.p1 {
  margin-top: -34px;
}

.fb-cha-num-wrap.p3 {
  margin-top: -34px;
}

.fb-cha-list-head.p4 span.row2 {
  padding: 0;
  color: var(--text);
  background: none;
}

.fb-cha-point {
  position: absolute;
  top: 30px;
  left: 0;
  font-size: 12px;
}

.fb-cha-num {
  padding-left: 16px;
  font-size: 52px;
  opacity: 0.2;
}

.fb-cha-list-image {
  width: 34%;
}

.fb-cha-list-text {
  line-height: 2;
}

.fb-cha-list-text span {
  color: var(--strong);
}

@media (max-width: 1080px) {
  .fb-cha-list-head.p1 span {
    margin-left: 0.5em;
  }

  .fb-cha-list-head.p3 span {
    margin-left: 3.5em;
  }

  .fb-cha-list-head.p4 .fb-sponly {
    display: block;
  }

  .fb-cha-list-head.p4 span.row2 {
    margin-left: 3em;
  }

  .fb-cha-num-wrap.p4 {
    margin-top: -34px;
  }
}

@media (max-width: 767px) {
  .fb-cha {
    margin-bottom: 40px;
    padding-top: 90px;
    padding-bottom: 0px;
  }

  .fb-cha .fb-cm-head {
    margin-bottom: 30px;
  }

  .fb-cm-head-r.fb-cha-head .fb-cm-head-innr::before {
    transform: translateY(-69%);
  }
  .fb-cha-lists {
    display: flex;
    flex-direction: column;
    grid-gap: 0;
  }
  .fb-cha-list {
    flex-direction: column-reverse;
    padding: 0 16px;
  }
  .fb-cha-list:not(:last-child) {
    margin-bottom: 50px;
  }

  .fb-cha-list.reverse {
    flex-direction: column-reverse;
  }

  .fb-cha-list-head {
    font-size: 20px;
    line-height: 1.7;
  }

  .fb-cha-info-wrap {
    width: 100%;
  }

  .fb-cha-list-head.p1 span {
    margin-left: 0.5em;
  }

  .fb-cha-list-head.p3 span {
    margin-left: 3em;
  }

  .fb-cha-num-wrap.p1::before,
  .fb-cha-num-wrap.p3::before {
    top: -4px;
    left: 0;
  }

  .fb-cha-num-wrap.p2::before,
  .fb-cha-num-wrap.p4::before {
    top: 0;
    left: 0;
  }

  .fb-cha-num-wrap.p3 {
    /* margin-top: -38px; */
  }

  .fb-cha-list-image {
    width: 100%;
    margin-bottom: 40px;
  }
}

/*********************************/
/* DELIVERY */
/*********************************/
.fb-del {
  margin-top: 160px;
  padding-bottom: 165px;
}

.fb-del-contents {
  display: flex;
  width: 1000px;
  max-width: 100%;
  margin: 0 auto 90px;
  column-gap: 16px;
}

.fb-del-content {
  width: 25%;
  padding-top: 48px;
  padding-bottom: 31px;
  background-color: #f5f7fd;
}

.fb-del-icon {
  margin-bottom: 4px;
  text-align: center;
}

.fb-del-name {
  margin-bottom: 13px;
  color: var(--main);
  font-weight: 700;
  text-align: center;
}

.fb-del-lists {
  padding-right: 15px;
  padding-left: 38px;
}

.fb-del-list {
  position: relative;
  padding-left: 16px;
  line-height: 1.875;
}
.fb-del-list::before {
  position: absolute;
  top: 10.5px;
  left: 0;
  width: 9px;
  height: 9px;
  background-color: var(--text);
  border-radius: 50%;
  content: '';
}

.fb-del-partner-head {
  margin-bottom: 22px;
  font-weight: 700;
  font-size: 22px;
  text-align: center;
}

.fb-del-partner-lists {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  font-size: 0;
}

.fb-del-partner-list:first-child {
  width: 82.07px;
  margin-right: 26.9px;
}
.fb-del-partner-list:nth-child(2) {
  width: 134.8px;
  margin-right: 37.2px;
}
.fb-del-partner-list:nth-child(3) {
  width: 134.8px;
  margin-right: 34.6px;
}
.fb-del-partner-list:nth-child(4) {
  width: 80.4px;
  margin-right: 34.5px;
}
.fb-del-partner-list:nth-child(5) {
  width: 81.9px;
  margin-right: 35.7px;
}
.fb-del-partner-list:nth-child(6) {
  width: 61px;
  margin-right: 34px;
}
.fb-del-partner-list:nth-child(7) {
  width: 99px;
  margin-right: 29px;
}
.fb-del-partner-list:nth-child(8) {
  width: 90px;
}
.fb-del-partner-list:nth-child(9) {
  width: 131px;
  margin-right: 26px;
}
.fb-del-partner-list:nth-child(10) {
  width: 98px;
  margin-right: 27px;
}
.fb-del-partner-list:nth-child(11) {
  width: 132px;
  margin-right: 26px;
}
.fb-del-partner-list:nth-child(12) {
  width: 69.88px;
  margin-right: 26.1px;
}
.fb-del-partner-list:nth-child(13) {
  width: 122px;
  margin-right: 26px;
}
.fb-del-partner-list:nth-child(14) {
  width: 92px;
  margin-right: 27px;
}
.fb-del-partner-list:nth-child(15) {
  width: 86px;
  margin-right: 26px;
}
.fb-del-partner-list:nth-child(16) {
  width: 85px;
}
.fb-del-partner-list:nth-child(17) {
  width: 108.8px;
  margin-right: 28.2px;
}
.fb-del-partner-list:nth-child(18) {
  width: 133px;
  margin-right: 34px;
}
.fb-del-partner-list:nth-child(19) {
  width: 112px;
  margin-right: 35px;
}
.fb-del-partner-list:nth-child(20) {
  width: 39px;
  margin-right: 34px;
}
.fb-del-partner-list:nth-child(21) {
  width: 83px;
  margin-right: 34px;
}
.fb-del-partner-list:nth-child(22) {
  width: 74px;
  margin-right: 34px;
}
.fb-del-partner-list:nth-child(23) {
  width: 69px;
  margin-right: 35px;
}
.fb-del-partner-list:nth-child(24) {
  width: 47px;
  margin-right: 34px;
}
.fb-del-partner-list:nth-child(25) {
  width: 64px;
}
.fb-del-partner-list:nth-child(26) {
  width: 70.29px;
  margin-right: 42.7px;
}
.fb-del-partner-list:nth-child(27) {
  width: 71px;
  margin-right: 44px;
}
.fb-del-partner-list:nth-child(28) {
  width: 81px;
  margin-right: 44px;
}
.fb-del-partner-list:nth-child(29) {
  width: 65px;
  margin-right: 43px;
}
.fb-del-partner-list:nth-child(30) {
  width: 106px;
  margin-right: 44px;
}
.fb-del-partner-list:nth-child(31) {
  width: 92px;
  margin-right: 43px;
}
.fb-del-partner-list:nth-child(32) {
  width: 115px;
  margin-right: 44px;
}
.fb-del-partner-list:nth-child(33) {
  width: 90px;
}

@media (max-width: 999px) {
  .fb-del-partner-list:first-child {
    width: calc(82.07 / 1000 * 100vw);
    margin-right: calc(26.9 / 1000 * 100vw);
  }
  .fb-del-partner-list:nth-child(2) {
    width: calc(134.8 / 1000 * 100vw);
    margin-right: calc(37.2 / 1000 * 100vw);
  }
  .fb-del-partner-list:nth-child(3) {
    width: calc(134.8 / 1000 * 100vw);
    margin-right: calc(34.6 / 1000 * 100vw);
  }
  .fb-del-partner-list:nth-child(4) {
    width: calc(80.4 / 1000 * 100vw);
    margin-right: calc(34.5 / 1000 * 100vw);
  }
  .fb-del-partner-list:nth-child(5) {
    width: calc(81.9 / 1000 * 100vw);
    margin-right: calc(35.7 / 1000 * 100vw);
  }
  .fb-del-partner-list:nth-child(6) {
    width: calc(61 / 1000 * 100vw);
    margin-right: calc(34 / 1000 * 100vw);
  }
  .fb-del-partner-list:nth-child(7) {
    width: calc(99 / 1000 * 100vw);
    margin-right: calc(29 / 1000 * 100vw);
  }
  .fb-del-partner-list:nth-child(8) {
    width: calc(90 / 1000 * 100vw);
  }
  .fb-del-partner-list:nth-child(9) {
    width: calc(131 / 1000 * 100vw);
    margin-right: calc(26 / 1000 * 100vw);
  }
  .fb-del-partner-list:nth-child(10) {
    width: calc(98 / 1000 * 100vw);
    margin-right: calc(27 / 1000 * 100vw);
  }
  .fb-del-partner-list:nth-child(11) {
    width: calc(132 / 1000 * 100vw);
    margin-right: calc(26 / 1000 * 100vw);
  }
  .fb-del-partner-list:nth-child(12) {
    width: calc(69.88 / 1000 * 100vw);
    margin-right: calc(26.1 / 1000 * 100vw);
  }
  .fb-del-partner-list:nth-child(13) {
    width: calc(122 / 1000 * 100vw);
    margin-right: calc(26 / 1000 * 100vw);
  }
  .fb-del-partner-list:nth-child(14) {
    width: calc(92 / 1000 * 100vw);
    margin-right: calc(27 / 1000 * 100vw);
  }
  .fb-del-partner-list:nth-child(15) {
    width: calc(86 / 1000 * 100vw);
    margin-right: calc(26 / 1000 * 100vw);
  }
  .fb-del-partner-list:nth-child(16) {
    width: calc(85 / 1000 * 100vw);
  }
  .fb-del-partner-list:nth-child(17) {
    width: calc(108.8 / 1000 * 100vw);
    margin-right: calc(28.2 / 1000 * 100vw);
  }
  .fb-del-partner-list:nth-child(18) {
    width: calc(133 / 1000 * 100vw);
    margin-right: calc(34 / 1000 * 100vw);
  }
  .fb-del-partner-list:nth-child(19) {
    width: calc(112 / 1000 * 100vw);
    margin-right: calc(35 / 1000 * 100vw);
  }
  .fb-del-partner-list:nth-child(20) {
    width: calc(39 / 1000 * 100vw);
    margin-right: calc(34 / 1000 * 100vw);
  }
  .fb-del-partner-list:nth-child(21) {
    width: calc(83 / 1000 * 100vw);
    margin-right: calc(34 / 1000 * 100vw);
  }
  .fb-del-partner-list:nth-child(22) {
    width: calc(74 / 1000 * 100vw);
    margin-right: calc(34 / 1000 * 100vw);
  }
  .fb-del-partner-list:nth-child(23) {
    width: calc(69 / 1000 * 100vw);
    margin-right: calc(35 / 1000 * 100vw);
  }
  .fb-del-partner-list:nth-child(24) {
    width: 47px;
    width: calc(47 / 1000 * 100vw);
    margin-right: 34px;
    margin-right: calc(34 / 1000 * 100vw);
  }
  .fb-del-partner-list:nth-child(25) {
    width: calc(64 / 1000 * 100vw);
  }
  .fb-del-partner-list:nth-child(26) {
    width: calc(70.29 / 1000 * 100vw);
    margin-right: calc(42.7 / 1000 * 100vw);
  }
  .fb-del-partner-list:nth-child(27) {
    width: calc(71 / 1000 * 100vw);
    margin-right: calc(44 / 1000 * 100vw);
  }
  .fb-del-partner-list:nth-child(28) {
    width: calc(81 / 1000 * 100vw);
    margin-right: calc(44 / 1000 * 100vw);
  }
  .fb-del-partner-list:nth-child(29) {
    width: calc(65 / 1000 * 100vw);
    margin-right: calc(43 / 1000 * 100vw);
  }
  .fb-del-partner-list:nth-child(30) {
    width: calc(106 / 1000 * 100vw);
    margin-right: calc(44 / 1000 * 100vw);
  }
  .fb-del-partner-list:nth-child(31) {
    width: calc(92 / 1000 * 100vw);
    margin-right: calc(43 / 1000 * 100vw);
  }
  .fb-del-partner-list:nth-child(32) {
    width: calc(115 / 1000 * 100vw);
    margin-right: calc(44 / 1000 * 100vw);
  }
  .fb-del-partner-list:nth-child(33) {
    width: calc(90 / 1000 * 100vw);
  }
}

@media (max-width: 767px) {
  .fb-del {
    padding-bottom: 80px;
  }
  .fb-cm-head-l.fb-del-head .fb-cm-head-innr::before {
    left: -59px;
    transform: translateY(-70%);
  }
  .fb-del-contents {
    display: block;
    margin-bottom: 50px;
  }
  .fb-del-content {
    width: 100%;
    padding-top: 29px;
    padding-bottom: 20px;
  }
  .fb-del-content:not(:last-child) {
    margin-bottom: 8px;
  }
  .fb-del-icon {
    display: inline-block;
    width: 20px;
    margin-right: 3px;
    margin-left: 24px;
    vertical-align: middle;
  }
  .fb-del-name {
    display: inline-block;
    margin-bottom: 0;
    margin-bottom: 7px;
    font-size: 16px;
    vertical-align: middle;
  }
  .fb-del-innr {
    display: flex;
    margin-top: -5px;
  }
  .fb-del-lists {
    padding-left: 24px;
  }

  .fb-del-partner-head {
    font-size: 20px;
    line-height: 1.9;
  }
  .fb-del-partner-lists {
    justify-content: center;
    max-width: calc(100% - (48 / 375 * 100vw));
  }
  .fb-del-partner-list {
    margin-bottom: 8px;
  }
  .fb-del-partner-list:first-child {
    width: calc(52.93 / 375 * 100vw);
    margin-right: calc(21.1 / 375 * 100vw);
  }
  .fb-del-partner-list:nth-child(2) {
    width: calc(86.95 / 375 * 100vw);
    margin-right: calc(21.1 / 375 * 100vw);
  }
  .fb-del-partner-list:nth-child(3) {
    width: calc(71.57 / 375 * 100vw);
    margin-right: calc(20.4 / 375 * 100vw);
  }
  .fb-del-partner-list:nth-child(4) {
    width: calc(51.86 / 375 * 100vw);
    margin-right: 0;
  }
  .fb-del-partner-list:nth-child(5) {
    width: calc(52.83 / 375 * 100vw);
    margin-right: calc(25.6 / 375 * 100vw);
  }
  .fb-del-partner-list:nth-child(6) {
    width: calc(39.34 / 375 * 100vw);
    margin-right: calc(24.5 / 375 * 100vw);
  }
  .fb-del-partner-list:nth-child(7) {
    width: calc(63.85 / 375 * 100vw);
    margin-right: calc(21.3 / 375 * 100vw);
  }
  .fb-del-partner-list:nth-child(8) {
    width: calc(58.05 / 375 * 100vw);
    margin-right: 0;
  }
  .fb-del-partner-list:nth-child(9) {
    width: calc(84.49 / 375 * 100vw);
    margin-right: calc(15.5 / 375 * 100vw);
  }
  .fb-del-partner-list:nth-child(10) {
    width: calc(63.21 / 375 * 100vw);
    margin-right: calc(15.8 / 375 * 100vw);
  }
  .fb-del-partner-list:nth-child(11) {
    width: calc(85.14 / 375 * 100vw);
    margin-right: calc(15.9 / 375 * 100vw);
  }
  .fb-del-partner-list:nth-child(12) {
    width: calc(45.07 / 375 * 100vw);
    margin-right: 0;
  }
  .fb-del-partner-list:nth-child(13) {
    width: calc(78.69 / 375 * 100vw);
    margin-right: calc(16.8 / 375 * 100vw);
  }
  .fb-del-partner-list:nth-child(14) {
    width: calc(59.34 / 375 * 100vw);
    margin-right: calc(17.4 / 375 * 100vw);
  }
  .fb-del-partner-list:nth-child(15) {
    width: calc(55.47 / 375 * 100vw);
    margin-right: calc(16.8 / 375 * 100vw);
  }
  .fb-del-partner-list:nth-child(16) {
    width: calc(54.82 / 375 * 100vw);
    margin-right: 0;
  }
  .fb-del-partner-list:nth-child(17) {
    width: calc(70.18 / 375 * 100vw);
    margin-right: calc(23.8 / 375 * 100vw);
  }
  .fb-del-partner-list:nth-child(18) {
    width: calc(85.78 / 375 * 100vw);
    margin-right: calc(24.2 / 375 * 100vw);
  }
  .fb-del-partner-list:nth-child(19) {
    width: calc(72.24 / 375 * 100vw);
    margin-right: calc(24.8 / 375 * 100vw);
  }
  .fb-del-partner-list:nth-child(20) {
    width: calc(25.15 / 375 * 100vw);
    margin-right: 0;
  }
  .fb-del-partner-list:nth-child(21) {
    width: calc(53.53 / 375 * 100vw);
    margin-right: calc(21.9 / 375 * 100vw);
  }
  .fb-del-partner-list:nth-child(22) {
    width: calc(47.73 / 375 * 100vw);
    margin-right: calc(21.9 / 375 * 100vw);
  }
  .fb-del-partner-list:nth-child(23) {
    width: calc(44.5 / 375 * 100vw);
    margin-right: calc(22.6 / 375 * 100vw);
  }
  .fb-del-partner-list:nth-child(24) {
    width: calc(30.31 / 375 * 100vw);
    margin-right: calc(21.9 / 375 * 100vw);
  }
  .fb-del-partner-list:nth-child(25) {
    width: calc(41.28 / 375 * 100vw);
    margin-right: 0;
  }
  .fb-del-partner-list:nth-child(26) {
    width: calc(45.34 / 375 * 100vw);
    margin-right: calc(17.7 / 375 * 100vw);
  }
  .fb-del-partner-list:nth-child(27) {
    width: calc(45.79 / 375 * 100vw);
    margin-right: calc(18.2 / 375 * 100vw);
  }
  .fb-del-partner-list:nth-child(28) {
    width: calc(52.24 / 375 * 100vw);
    margin-right: calc(17.8 / 375 * 100vw);
  }
  .fb-del-partner-list:nth-child(29) {
    width: calc(41.92 / 375 * 100vw);
    margin-right: calc(18.1 / 375 * 100vw);
  }
  .fb-del-partner-list:nth-child(30) {
    width: calc(68.37 / 375 * 100vw);
    margin-right: 0;
  }
  .fb-del-partner-list:nth-child(31) {
    width: calc(59.34 / 375 * 100vw);
    margin-right: calc(27.7 / 375 * 100vw);
  }
  .fb-del-partner-list:nth-child(32) {
    width: calc(74.17 / 375 * 100vw);
    margin-right: calc(28.4 / 375 * 100vw);
  }
  .fb-del-partner-list:nth-child(33) {
    width: calc(58.05 / 375 * 100vw);
    margin-right: 0;
  }
}

/*********************************/
/* FORMAT */
/*********************************/
.fb-for {
  padding-bottom: 60px;
}

.fb-for-head .fb-cm-head-innr::after {
  position: absolute;
  bottom: -100px;
  left: -290px;
  width: 202.804px;
  height: 171.38px;
  background: url('../img/for-attach.svg') center center / cover no-repeat;
  content: '';
}

.fb-for-wrapper {
  width: 1000px;
  max-width: calc(100% - 32px);
  margin: 0 auto 73px;
}

.fb-for-contents {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 14px;
}

.fb-for-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 32.4%;
  padding: 46px 24px 24px;
  background: linear-gradient(to bottom, #fcfaff 0%, #edf8ff 100%);
}

.fb-for-name {
  margin-bottom: 10px;
  color: var(--main);
  font-weight: 700;
  font-size: 20px;
  text-align: center;
}

.fb-for-text {
  margin-bottom: 14px;
  line-height: 2;
}

.fb-for-insta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1000px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
}

.fb-for-insta-phone {
  width: 15.07%;
}

.fb-for-insta-content {
  width: 50.18%;
  padding-bottom: 50px;
}

.fb-for-insta-head {
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 22px;
  text-align: center;
}

.fb-for-insta-text {
  line-height: 2;
}

.fb-for-insta-image {
  width: 17.11%;
  padding-bottom: 40px;
}

.fb-for-insta-people {
  margin-bottom: 8px;
  text-align: center;
}

.fb-for-insta-graph {
  text-align: center;
}

@media (max-width: 767px) {
  .fb-for {
    padding-bottom: 30px;
  }
  .fb-cm-head-r.fb-for-head .fb-cm-head-innr::before {
    right: -86px;
    transform: translateY(-71%);
  }
  .fb-for-head .fb-cm-head-innr::after {
    bottom: 45px;
    left: -80px;
    width: 66px;
    height: 65px;
  }
  .fb-for-wrapper {
    max-width: 100%;
    margin: 0 0 50px;
    overflow: scroll;
  }
  .fb-for-contents {
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: 1736px;
    margin: 0 0 0 16px;
  }
  .fb-for-content {
    width: 280px;
    margin-right: 8px;
    padding: 43px 16px 16px;
  }
  .fb-for-text {
    margin-bottom: 4px;
  }
  .fb-for-insta {
    position: relative;
    display: block;
  }
  .fb-for-insta-content {
    width: 100%;
    padding-bottom: 0;
  }
  .fb-for-insta-head {
    margin-bottom: 16px;
    font-size: 20px;
    line-height: 1.9;
    text-align: left;
  }
  .fb-for-insta-phone {
    position: absolute;
    top: 0;
    right: 100px;
    width: 40px;
  }
  .fb-for-insta-image {
    position: absolute;
    top: -25px;
    right: 0;
    width: 140px;
  }
  .fb-for-insta-people {
    width: 140px;
    margin-bottom: 0;
  }
  .fb-for-insta-graph {
    width: 84.22px;
    margin-left: auto;
  }
}

@media (max-width: 350px) {
  .fb-for-insta-head {
    font-size: 18px;
  }
}

/*********************************/
/* TARGET */
/*********************************/
.fb-tar {
  padding-top: 165px;
  padding-bottom: 140px;
}

.fb-tar-head .fb-cm-head-text {
  width: 840px;
  max-width: calc(100% - 32px);
  margin: 15px auto 0;
  text-align: left;
}

.fb-tar-wrapper {
  width: 1000px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
}

.fb-tar-lists {
  display: grid;
  grid-gap: 14px;
  grid-template-rows: repeat(1, 1fr);
  grid-template-columns: repeat(3, 1fr);
}

.fb-tar-list {
  padding: 46px 24px 30px;
  background: linear-gradient(to bottom, #fcfaff 0%, #edf8ff 100%);
}

.fb-tar-name {
  margin-bottom: 14px;
  color: var(--main);
  font-weight: 700;
  font-size: 20px;
  text-align: center;
}

.fb-tar-image {
  margin-bottom: 22px;
}

.fb-tar-text {
  line-height: 2;
}

@media (max-width: 767px) {
  .fb-tar {
    padding-top: 70px;
    padding-bottom: 84px;
  }
  .fb-cm-head-l.fb-tar-head .fb-cm-head-innr::before {
    left: -83px;
    transform: translateY(-69%);
  }

  .fb-tar-wrapper {
    max-width: 100%;
    overflow: scroll;
  }

  .fb-tar-lists {
    grid-gap: 0;
    width: 870px;
    margin-left: 16px;
  }

  .fb-tar-list {
    width: 280px;
    margin-right: 8px;
    padding: 41px 16px 22px;
  }
}

/*********************************/
/* CREATIVE */
/*********************************/
.fb-cre {
  padding-bottom: 120px;
}

.fb-cre-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1000px;
  max-width: calc(100% - 32px);
  margin: 0 auto 40px;
}

.fb-cre-header-innr {
  width: 60%;
}

.fb-cre-header-head {
  margin-bottom: 10px;
  font-weight: 800;
  font-size: 34px;
  line-height: 1.76;
}

.fb-cre-header-sub {
  margin-bottom: 12px;
  color: var(--main);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.84;
}

.fb-cre-header-text {
  line-height: 2;
}

.fb-cre-header-image {
  width: 38%;
}

.fb-cre-graph {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto 105px;
}

.fb-cre-ope {
  padding-bottom: 70px;
}

.fb-cre-ope-header {
  margin-bottom: 55px;
  text-align: center;
}

.fb-cre-ope-header-text {
  position: relative;
  display: inline-block;
  margin-bottom: 46px;
  font-weight: 700;
  font-size: 22px;
  line-height: 2;
}

.fb-cre-ope-header-point {
  position: absolute;
  top: -64px;
  left: -7px;
}

.fb-cre-ope-header-title {
  text-align: center;
}

.fb-cre-ope-header-title span {
  display: inline-block;
  width: 280px;
  height: 40px;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 40px;
  background-color: #1a346e;
}

.fb-cre-ope-lists {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto 71px;
}

.fb-cre-ope-list {
  position: relative;
}

.fb-cre-ope-num {
  position: absolute;
  top: -45px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
}

.fb-cre-ope-num-phase {
  margin-bottom: 5px;
}

.fb-cre-ope-lead {
  position: absolute;
  top: 35px;
  left: 50%;
  color: var(--main);
  font-weight: 800;
  font-size: 22px;
  transform: translateX(-50%);
}

.fb-cre-test-header {
  margin-bottom: 100px;
  text-align: center;
}

.fb-cre-test-header-text {
  position: relative;
  display: inline-block;
  font-weight: 700;
  font-size: 22px;
  line-height: 2;
}

.fb-cre-test-header-point {
  position: absolute;
  top: -57px;
  left: -115px;
}

.fb-cre-test-innr {
  width: 1000px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
}

.fb-cre-test-lists {
  display: grid;
  grid-gap: 32px;
  grid-template-rows: repeat(1, 1fr);
  grid-template-columns: repeat(3, 1fr);
}

.fb-cre-test-list {
  position: relative;
  height: 468px;
  padding: 32px 24px 24px;
  text-align: center;
  background-color: #f5f7fd;
}
.fb-cre-test-list:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -26px;
  width: 0;
  height: 0;
  border-color: transparent transparent transparent #52f2ff;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  transform: translateY(-50%);
  content: '';
}

.fb-cre-test-num {
  position: absolute;
  top: -43px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateX(-50%);
}

.fb-cre-test-name {
  position: relative;
  margin-bottom: 20px;
  color: var(--main);
  font-weight: 700;
  font-size: 20px;
}

.fb-cre-test-image {
  margin-bottom: 22px;
}

.fb-cre-test-text {
  line-height: 1.75;
}

@media (max-width: 899px) {
  .fb-cre-ope-num-phase {
    margin-bottom: 0;
  }
  .fb-cre-ope-num-number {
    transform: scale(0.8);
  }
  .fb-cre-ope-lead {
    top: 25px;
    font-size: 20px;
  }
  .fb-cre-test-header-point {
    top: -95px;
    left: -45px;
  }
}

@media (max-width: 767px) {
  .fb-cre {
    padding-bottom: 32px;
  }
  .fb-cre-header {
    position: relative;
    display: block;
    margin-bottom: 22px;
  }
  .fb-cre-header-innr {
    width: 100%;
  }
  .fb-cre-header-head {
    font-size: 24px;
  }
  .fb-cre-header-sub {
    font-size: 18px;
  }
  .fb-cre-header-image {
    position: absolute;
    top: -44px;
    right: 0;
    width: 111px;
  }
  .fb-cre-graph img {
    width: 100%;
  }
  .fb-cre-ope {
    padding-bottom: 0;
  }
  .fb-cre-ope-header {
    margin-bottom: 40px;
  }
  .fb-cre-ope-header-text {
    max-width: calc(100% - 32px);
    margin: 0 auto 22px;
    font-size: 20px;
    line-height: 1.9;
    text-align: left;
  }
  .fb-cre-ope-header-text-innr {
    display: block;
    text-indent: 5em;
  }
  .fb-cre-ope-header-point {
    top: -40px;
    left: 0;
    width: 76px;
  }
  .fb-cre-ope-header-title span {
    width: 260px;
    height: 32px;
    font-size: 16px;
    line-height: 32px;
  }

  .fb-cre-ope-lists {
    margin-bottom: 45px;
  }
  .fb-cre-ope-list:not(:last-child) {
    margin-bottom: 15px;
  }
  .fb-cre-ope-num {
    top: -30px;
  }
  .fb-cre-ope-num-phase {
    width: 33px;
    margin-bottom: 3px;
    line-height: 1;
  }
  .fb-cre-ope-num-number {
    transform: scale(1);
  }
  .fb-cre-ope-list:first-child .fb-cre-ope-num-number {
    width: 28.3px;
  }
  .fb-cre-ope-list:nth-child(2) .fb-cre-ope-num-number {
    width: 43.29px;
  }
  .fb-cre-ope-list:nth-child(3) .fb-cre-ope-num-number {
    width: 42.8px;
  }
  .fb-cre-ope-list:last-child .fb-cre-ope-num-number {
    width: 46.32px;
  }
  .fb-cre-ope-lead {
    top: 16px;
    font-size: 17px;
  }
  .fb-cre-test-header {
    margin-bottom: 21px;
  }
  .fb-cre-test-header-text {
    max-width: calc(100% - 32px);
    margin: 0 auto;
    font-size: 18px;
    text-align: left;
    text-indent: 5em;
  }
  .fb-cre-test-header-point {
    top: -50px;
    top: -40px;
    left: 0;
    left: -91px;
    width: 76px;
  }

  .fb-cre-test-innr {
    max-width: 100%;
    overflow: scroll;
  }
  .fb-cre-test-lists {
    grid-gap: 0;
    width: 888px;
    margin-left: 16px;
  }
  .fb-cre-test-wrapper {
    padding-top: 35px;
  }
  .fb-cre-test-list {
    width: 280px;
    height: 450px;
    margin-right: 16px;
  }
}

@media (max-width: 374px) {
  .fb-cre-ope-list:nth-child(2) .fb-cre-ope-num-number {
    width: 37px;
  }
  .fb-cre-ope-list:nth-child(3) .fb-cre-ope-num-number {
    width: 39px;
  }
}

@media (max-width: 350px) {
  .fb-cre-header-head {
    font-size: 22px;
  }
}

/*********************************/
/* COMPARE */
/*********************************/
.fb-comp {
  padding-bottom: 100px;
}

.fb-comp {
  max-width: calc(100% - 32px);
  margin: 0 auto 60px;
}

.fb-comp-head .fb-cm-head-text {
  width: 100%;
  max-width: 840px;
  margin: 15px auto 0;
  text-align: left;
}

.fb-comp-wrapper {
  width: calc(100% - 32px);
  max-width: 970px;
  margin: 0 auto;
}

.fb-comp-tbl-wrap {
  display: flex;
  justify-content: space-between;
}

.tbl-all-ttl {
  width: 27.525%;
  margin-right: 4.123%;
}

.tbl-fb {
  width: 35.773%;
  /* margin-right: 10px; */
}

.tbl-fb table {
  filter: drop-shadow(0px 0px 20px rgba(3, 49, 154, 0.3));
}

.tbl-other {
  width: 31.443%;
}

.fb-comp-table {
  width: 100%;
  border-collapse: collapse;
}

.fb-comp-table th,
.fb-comp-table td {
  text-align: center;
  vertical-align: middle;
}

.tbl-all-ttl td {
  font-size: 15px;
}

.fb-comp-table th:not(:last-child),
.fb-comp-table td:not(:last-child) {
  border-right: 8px solid var(--main);
}

.tbl thead tr th {
  height: 90px;
}

.tbl tbody tr:first-child td {
  height: 116px;
}

.tbl-innr-icon p {
  position: relative;
  width: fit-content;
  margin: 0 auto;
}

.tbl-innr-icon p::after {
  position: absolute;
  top: -15px;
  right: -72px;
  width: 53px;
  height: 53px;
  background: url('../img/comp-icon-people.svg') no-repeat;
  background-size: contain;
  content: '';
}

.tbl-other .tbl-innr-icon p::after {
  background: url('../img/comp-icon-abc.svg') no-repeat;
}

.tbl-other th,
.tbl-other td {
  border-right: 4px solid #d3d8e5;
  border-left: 4px solid #d3d8e5;
}

.tbl-other th {
  padding: 4px 4px 0;
  border-top: 4px solid #d3d8e5;
}

.tbl-other tbody tr:last-child {
  border-bottom: 4px solid #d3d8e5;
}

.tbl-other th .th-innr {
  width: 100%;
  height: 100%;
  padding-top: 18px;
  background: #d3d8e5;
}

.tbl-fb tbody tr:last-child {
  border-bottom: 8px solid var(--main);
}

.tbl-fb th {
  font-size: 0;
  background-color: var(--main);
}

.tbl-fb th,
.tbl-fb td {
  border-right: 8px solid var(--main);
  border-left: 8px solid var(--main);
}

.fb-comp-table th:not(:first-child):not(:last-child) p {
  color: #fff;
}

.tbl-fb th p {
  margin-top: 4px;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}

.tbl-other th .th-innr div {
  margin-bottom: 9.5px;
  font-size: 0;
}

.tbl-other th .th-innr img:first-child {
  margin-right: 12px;
}

.tbl-other th .th-innr p {
  color: #fff;
  font-size: 15px;
}
.fb-comp-table td {
  height: 84px;
}
.tbl-all-ttl td {
  font-weight: 600;
  text-align: left;
}

.tbl-fb tr:nth-child(even) td,
.tbl-other tr:nth-child(even) td {
  background-color: #fcfaff;
}

.tbl-fb tr:nth-child(odd) td,
.tbl-other tr:nth-child(odd) td {
  background-color: #fff;
}

.tbl-all-ttl tr:not(:last-child) td:first-child {
  padding: 20px 0;
  border-bottom: 1px solid #e7e8eb;
}

.tbl-fb tr:first-child td ul,
.tbl-other tr:first-child td ul {
  padding: 0 15px 0 40px;
  text-align: left;
}
.tbl-fb tr:first-child td ul li,
.tbl-other tr:first-child td ul li {
  position: relative;
}
/* .tbl-fb tr:first-child td ul li::before,
.tbl-other tr:first-child td ul li::before {
  position: absolute;
  top: 8px;
  left: -15px;
  width: 7px;
  height: 7px;
  background-color: var(--text);
  border-radius: 50%;
  content: '';
} */

.fb-cm-head-r.fb-comp-case-head .fb-cm-head-innr::before {
  top: 30%;
}
.fb-cm-head.fb-comp-case-head {
  margin-bottom: 60px;
}

.fb-comp-case-wrapper {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 1000px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
}

.fb-comp-case-bg1 {
  position: absolute;
  bottom: -125px;
  left: -30px;
  z-index: -1;
}

.fb-comp-case-bg2 {
  position: absolute;
  top: 0;
  right: -30px;
  z-index: -1;
}

.fb-comp-case-bg3 {
  position: absolute;
  top: -180px;
  left: -160px;
  z-index: -1;
}

.fb-comp-case-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: calc((100% - 28px) / 3);
  padding: 20px 20px 30px;
  background: #fff;
  border-radius: 10px;
  filter: drop-shadow(0px 10px 20px rgba(3, 49, 154, 0.2));
}

.fb-comp-case-content:nth-child(2) {
  margin-top: 90px;
}

.fb-comp-case-content:nth-child(3) {
  margin-top: 180px;
}

.fb-comp-case-content::before {
  position: absolute;
  top: -15px;
  right: 0;
  left: 0;
  width: 54px;
  height: 54px;
  margin: auto;
  background: url(../img/pri-img-check.svg) no-repeat;
  background-size: contain;
  content: '';
}

.fb-comp-case-image {
  margin-bottom: 20px;
}

.fb-comp-case-desc {
  flex: 1;
}

.fb-comp-case-sub {
  margin-bottom: 8px;
  color: var(--strong);
  font-weight: 700;
  font-size: 18px;
  text-align: center;
}

.fb-comp-case-lead {
  margin-bottom: 20px;
  color: var(--main);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  text-align: center;
}

.fb-comp-case-text {
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 1px;
}

.fb-comp-case-text span {
  padding-bottom: 3px;
  font-weight: bold;
  background: linear-gradient(transparent 50%, #52f2ff 50%);
}

.fb-comp-case {
  margin-bottom: 100px;
  padding-top: 100px;
}

@media (max-width: 860px) {
  .tbl-fb table tbody tr td,
  .tbl-other table tbody tr td {
    padding-right: 10px;
    font-size: 14px;
  }

  .fb-comp-case-bg1,
  .fb-comp-case-bg2 {
    width: 300px;
  }

  .tbl-other .tbl-innr-icon p::after {
    right: -60px;
  }
}

@media (max-width: 767px) {
  .fb-comp-head {
    margin-bottom: 50px;
  }
  .fb-comp {
    margin-bottom: 40px;
    padding-top: 20px;
    padding-bottom: 0;
  }
  .fb-comp-wrapper {
    width: 100%;
  }

  .fb-comp-tbl-wrap {
    gap: 2px;
  }
  /* .fb-comp-innr {
    width: 690px;
  } */

  /* .fb-comp-table {
    width: 658px;
    margin: 0 16px;
  } */

  .tbl-fb th p {
    font-size: 14px;
  }

  .tbl-other th .th-innr p {
    font-size: 13px;
  }

  .tbl-other thead tr th {
    height: 88px;
    padding: 2px 2px 0;
  }

  .tbl-other th .th-innr {
    padding-top: 10px;
  }
  .tbl-other th .th-innr img:first-child {
    display: block;
    width: 54px;
    margin: 0 auto;
  }

  .tbl-other th .th-innr img:last-child {
    width: 48px;
  }
  .fb-comp-table td {
    height: 60px;
  }
  .tbl-all-ttl {
    width: 33%;
    margin-right: 0;
  }

  .tbl-all-ttl td {
    font-size: 12px;
  }

  .tbl-all-ttl tr:not(:last-child) td:first-child {
    padding: 0;
  }
  .tbl-fb,
  .tbl-other {
    width: 33%;
    font-size: 14px;
  }

  .tbl-fb th,
  .tbl-fb td {
    border-right: 5px solid var(--main);
    border-left: 5px solid var(--main);
  }

  .tbl-fb tbody tr:last-child {
    border-bottom: 5px solid var(--main);
  }
  .tbl-innr-icon p::after {
    top: -15px;
    right: -30px;
    width: 30px;
    height: 30px;
  }

  .tbl-other .tbl-innr-icon p::after {
    content: none;
  }

  .tbl-other th .th-innr div {
    margin-bottom: 0;
  }
  .fb-comp-table th:not(:first-child),
  .fb-comp-table td:not(:first-child) {
    width: 200px;
  }
  .fb-comp-table th:not(:last-child),
  .fb-comp-table td:not(:last-child) {
    border-right: 4px solid #fff;
  }

  .tbl-fb tr:last-child td,
  .tbl-other tr:last-child td {
    font-size: 10px;
  }
  .fb-comp-case-head .fb-cm-head-innr {
    font-size: 24px;
  }
  .fb-cm-head-r.fb-comp-case-head .fb-cm-head-innr::before {
    top: 17%;
    right: -20px;
  }

  .fb-comp-case {
    margin-bottom: 40px;
  }

  .fb-cm-head.fb-comp-case-head {
    margin-bottom: 17px;
  }

  .fb-comp-case-wrapper {
    flex-direction: column;
  }

  .fb-comp-case-content {
    width: 100%;
    margin-bottom: 36px;
  }
  .fb-comp-case-content:nth-child(3) {
    margin-bottom: 0;
  }
  .fb-comp-case-content:nth-child(2),
  .fb-comp-case-content:nth-child(3) {
    margin-top: 0;
  }

  .fb-comp-case-content img {
    width: 100%;
  }

  .fb-comp-case-content.fb-cha-list:not(:last-child) {
    margin-bottom: 35px;
  }

  .fb-comp-case-sub {
    margin-bottom: 5px;
    font-size: 20px;
    text-align: center;
  }
  .fb-comp-case-lead {
    margin-bottom: 9px;
    font-size: 20px;
    text-align: center;
  }
  .fb-comp-case-text {
    margin-bottom: 16px;
  }
  .fb-comp-case-image {
    width: 100%;
  }

  .fb-comp-case-bg1,
  .fb-comp-case-bg2,
  .fb-comp-case-bg3 {
    display: none;
  }
}

/*********************************/
/* SERVICE */
/*********************************/
.fb-ser {
  padding-bottom: 130px;
}

.fb-cm-head-l.fb-ser-head .fb-cm-head-innr::before {
  left: -100px;
  transform: translateY(-47%);
}

.fb-ser-wrapper {
  display: flex;
  justify-content: space-between;
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
}

.fb-ser-lists {
  width: 49.6%;
}

.fb-ser-list {
  background: linear-gradient(to right, #fcfaff 0%, #edf8ff 100%);
}

.fb-ser-list:not(:last-child) {
  margin-bottom: 8px;
}

.fb-ser-title {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 30.5px 44px;
}

.fb-ser-title-img {
  display: inline-flex;
  align-items: center;
  width: 33px;
}

.fb-ser-title-text {
  color: var(--main);
  font-weight: 700;
  font-size: 18px;
}

.fb-ser-text {
  padding: 0 40px;
  line-height: 1.875;
}
.fb-ser-text.active {
  padding-bottom: 32px;
}

@media (max-width: 767px) {
  .fb-ser {
    padding-top: 82px;
    padding-bottom: 83px;
  }
  .fb-ser-head .fb-cm-head-innr {
    font-size: 24px;
  }
  .fb-cm-head-l.fb-ser-head .fb-cm-head-innr::before {
    left: -75px;
    transform: translateY(-99%);
  }
  .fb-ser-wrapper {
    display: block;
  }

  .fb-ser-lists {
    width: 100%;
  }

  .fb-ser-list {
    margin-bottom: 6px;
  }
  .fb-ser-list:not(:last-child) {
    margin-bottom: 6px;
  }

  .fb-ser-title {
    padding: 18px 16px;
  }

  .fb-ser-title-img {
    margin-right: 10px;
  }

  .fb-ser-title-text {
    font-size: 18px;
    line-height: 2;
  }

  .fb-ser-text {
    padding: 0 16px;
  }
  .fb-ser-text.active {
    margin-top: -16px;
    padding-bottom: 22px;
  }
}

@media (max-width: 350px) {
  .fb-ser-head {
    font-size: 24px;
  }

  .fb-ser-title-text {
    font-size: 14px;
  }
}

/*********************************/
/* SUPPORT */
/*********************************/
.fb-sup {
  margin-top: 80px;
  padding-bottom: 120px;
}

.fb-cm-head-l.fb-sup-head .fb-cm-head-innr::before {
  left: -110px;
  transform: translateY(-40%);
}

.fb-sup-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 1000px;
  max-width: calc(100% - 32px);
  margin: 0 auto 54px;
}

.fb-sup-desc {
  width: 58.4%;
}

.fb-sup-desc-text {
  line-height: 2;
}
.fb-sup-desc-text:first-child {
  margin-bottom: 12px;
}

.fb-sup-desc-head {
  margin-top: 46px;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 22px;
}

.fb-sup-desc-image {
  width: 38%;
}

.fb-sup-man {
  display: flex;
  justify-content: space-between;
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  padding: 84px 80px 70px;
  column-gap: 55px;
  background-color: #f5f7fd;
}

.fb-sup-man-image {
  width: 200px;
}

.fb-sup-desc-image-sp {
  display: none;
}

.fb-sup-man-desc {
  flex: 1;
}

.fb-sup-man-cmo {
  margin-bottom: 8px;
  color: var(--main);
  font-weight: 700;
  line-height: 1;
}

.fb-sup-man-name {
  margin-bottom: 8px;
  color: var(--main);
  font-weight: 700;
  font-size: 26px;
}

.fb-sup-man-text {
  line-height: 2;
}

@media (max-width: 767px) {
  .fb-sup {
    padding-bottom: 0;
  }
  .fb-cm-head-l.fb-sup-head .fb-cm-head-innr::before {
    left: -76px;
    transform: translateY(-100%);
  }

  .fb-sup-wrapper {
    display: block;
    margin-bottom: 80px;
  }

  .fb-sup-desc {
    width: 100%;
  }

  .fb-sup-desc-image {
    width: 85.3%;
    margin-top: 16px;
  }

  .fb-sup-desc-image-pc {
    display: none;
  }

  .fb-sup-desc-image-sp {
    display: block;
  }

  .fb-sup-desc-head {
    margin-top: 20px;
    font-size: 18px;
    text-align: center;
  }

  .fb-sup-man {
    position: relative;
    display: block;
    padding: 40px 16px 25px;
  }

  .fb-sup-man-image {
    position: absolute;
    top: -53px;
    left: 16px;
    width: 118px;
  }

  .fb-sup-man-cmo {
    padding-left: 161px;
    font-size: 14px;
  }

  .fb-sup-man-name {
    margin-bottom: 22px;
    padding-left: 161px;
    font-size: 24px;
  }
}

/*********************************/
/* REASON */
/*********************************/
.fb-rea {
  padding-top: 160px;
  padding-bottom: 110px;
}

.fb-cm-head-r.fb-rea-head .fb-cm-head-innr::before {
  right: -31px;
  transform: translateY(-80%);
}

.fb-rea-wrapper {
  width: 1000px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
}

.fb-rea-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 56px;
}
.fb-rea-content:nth-child(2n - 1) {
  flex-direction: row-reverse;
}
.fb-rea-content:not(:last-child) {
  margin-bottom: 30px;
}

.fb-rea-image {
  width: 380px;
}

.fb-rea-desc {
  flex: 1;
}

.fb-rea-sub {
  color: var(--strong);
  font-weight: 700;
  font-size: 20px;
}

.fb-rea-lead {
  margin-bottom: 4px;
  color: var(--main);
  font-weight: 700;
  font-size: 26px;
  line-height: 1.846;
}

.fb-rea-text {
  line-height: 2;
}

@media (max-width: 767px) {
  .fb-rea {
    padding-top: 81px;
    padding-bottom: 100px;
  }
  .fb-cm-head-r.fb-rea-head .fb-cm-head-innr::before {
    right: -42px;
    transform: translateY(-97%);
  }
  .fb-rea-content {
    display: block;
  }
  .fb-rea-content:not(:last-child) {
    margin-bottom: 20px;
  }
  .fb-rea-sub {
    margin-bottom: 3px;
    text-align: center;
  }
  .fb-rea-lead {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 2;
    text-align: center;
  }
  .fb-rea-image {
    width: 100%;
    margin-top: 16px;
  }
  .fb-cm-head-l.fb-case-head .fb-cm-head-innr::before {
    left: -79px;
    width: 180px;
    height: 156px;
    transform: translateY(-64%);
  }
}

/*********************************/
/* CASE */
/*********************************/
.fb-case {
  margin-top: 120px;
  padding-bottom: 120px;
}

.fb-cm-head-l.fb-case .fb-cm-head-innr::before {
  left: -100px;
  transform: translateY(-36%);
}

.fb-case-wrapper {
  width: 1000px;
  max-width: calc(100% - 100px);
  margin: 0 auto;
  padding-bottom: 100px;
}

.fb-case-slide {
  position: relative;
}

.fb-case-innr {
  background-color: #f5f7fd;
}

.fb-case-img {
  position: relative;
  cursor: pointer;
}
.fb-case-img::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45px;
  height: 31px;
  background: url('../img/cases-play-btn.svg') center center / cover no-repeat;
  transform: translate(-50%, -50%);
  content: '';
}

.fb-case-img img {
  vertical-align: bottom;
}

.fb-case-content {
  padding: 40px 40px 30px;
}

.fb-case-name {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 14px;
  line-height: 2;
  text-align: center;
}
.fb-case-name span {
  font-size: 20px;
  line-height: 1.6;
}

.fb-case-txt {
  font-size: 14px;
  line-height: 2;
}

.fb-case-arrow {
  position: absolute;
  top: 50%;
  width: 16px;
  height: 16px;
}
.fb-case-arrow::before {
  position: absolute;
  top: 50%;
  width: 32px;
  height: 32px;
  background-color: transparent;
  transform: translate(-50%, -50%) rotate(-45deg);
  content: '';
}
.fb-case-arrow-l {
  left: -40px;
  border-top: 2px solid var(--text);
  border-left: 2px solid var(--text);
  transform: translateY(-50%) rotate(-45deg);
}
.fb-case-arrow-l::before {
  left: 0;
}
.fb-case-arrow-r {
  right: -40px;
  border-top: 2px solid var(--text);
  border-right: 2px solid var(--text);
  transform: translateY(-50%) rotate(45deg);
}
.fb-case-arrow-r::before {
  left: 100%;
}

.fb-case-cli-title {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 22px;
  text-align: center;
}

.fb-case-cli-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 1000px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
  column-gap: 10px;
  row-gap: 10px;
}

.fb-case-cli-logo {
  width: calc((100% - (10px * 6)) / 7);
  text-align: center;
}

.fb-case-cli-logo-gorilla {
  width: 61px;
}

@media (max-width: 767px) {
  .fb-case {
    padding-bottom: 24px;
  }
  .fb-case-wrapper {
    max-width: 100%;
    padding-bottom: 40px;
  }
  .fb-case-content {
    padding: 25px 16px 17px;
  }
  .fb-case-cli-logo {
    width: calc((100% - (10px * 4)) / 3);
  }
}
/*********************************/
/* PRICE */
/*********************************/
.fb-pri {
  padding-bottom: 80px;
}

.fb-cm-head-r.fb-pri-head .fb-cm-head-innr::before {
  right: -102px;
  transform: translateY(-38%);
}

.fb-pri-wrapper {
  position: relative;
  width: 820px;
  max-width: 100%;
  margin: 0 auto;
  padding: 50px 30px;
  background: #d5e4fd;
  filter: drop-shadow(0px 0px 20px rgba(3, 49, 154, 0.2));
}

.fb-pri-wrapper::after {
  position: absolute;
  top: 12px;
  right: 0;
  left: 0;
  width: 54px;
  height: 54px;
  margin: auto;
  background: url(../img/pri-img-check.svg) no-repeat;
  background-size: contain;
  content: '';
}

.fb-pri-table {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
  border-spacing: 5px;
}

.fb-pri-table-innr {
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

.fb-pri-table-innr:first-child {
  margin-bottom: 5px;
}

.fb-pri-table-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 33.333%;
  text-align: center;
}

.fb-pri-table-th {
  height: 70px;
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  vertical-align: middle;
  background-color: #809bf4;
}

.fb-pri-table-td {
  height: 122px;
  background-color: #fff;
}

.fb-pri-table-td:first-child {
  font-weight: 600;
  font-size: 18px;
}

.fb-pri-table-td:nth-child(2) {
  font-weight: 700;
  font-size: 22px;
}

.fb-pri-table-td:nth-child(2) span {
  margin-right: 3px;
  color: var(--strong);
  font-weight: 700;
  font-size: 38px;
  font-family: 'Arial', sans-serif;
  vertical-align: -4%;
}

.fb-pri-table-td:last-child {
  font-weight: 600;
  font-size: 18px;
}

.fb-pri-table-td:last-child span.fb-pri-num {
  margin-right: 3px;
  margin-left: 3px;
  color: var(--strong);
  font-weight: 700;
  font-size: 38px;
  font-family: 'Arial', sans-serif;
  vertical-align: -4%;
}

.fb-pri-table-td:last-child span.fb-pri-percent {
  color: var(--strong);
  font-weight: 700;
  font-size: 24px;
  font-family: 'Arial', sans-serif;
  vertical-align: -10%;
}

.fb-pri-att-wrap {
  margin-top: 8px;
  margin-bottom: 30px;
  padding: 28px 60px;
  background: #fff;
}

.fb-pri-att {
  font-size: 14px;
  line-height: 2;
}

.fb-pri-case {
  display: flex;
}
.fb-pri-case-1 {
  margin-bottom: 16px;
}

.fb-pri-case-title {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30%;
  height: 120px;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  background-color: #1877f2;
}
.fb-pri-case-title::after {
  position: absolute;
  top: 50%;
  right: -6px;
  width: 0;
  height: 0;
  border-color: transparent transparent transparent #1877f2;
  border-style: solid;
  border-width: 6px 0 6px 6px;
  transform: translateY(-50%);
  content: '';
}
.fb-pri-case-title span {
  color: #d6ff2b;
}
.fb-pri-case-title span.fb-pri-case-title-num {
  margin-bottom: 5px;
  font-size: 28px;
  font-family: 'Arial', sans-serif;
}

.fb-pri-case-content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70%;
  height: 120px;
  background-color: #f5f7fd;
}

.fb-pri-case-cost {
  display: inline-block;
}

.fb-pri-case-cost-top {
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  text-align: center;
}

.fb-pri-case-cost-bot {
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
}

.fb-pri-case-cost-bot span {
  margin-right: 2px;
  color: var(--strong);
  font-size: 46px;
  font-family: 'Arial', sans-serif;
  vertical-align: -4%;
}

.fb-pri-case-plus {
  position: relative;
  width: 40px;
  height: 40px;
  margin-right: 26px;
  margin-left: 22px;
  background-color: #fff;
  border-radius: 50%;
}
.fb-pri-case-2 .fb-pri-case-plus {
  margin-right: 13px;
  margin-left: 20px;
}
.fb-pri-case-plus::before,
.fb-pri-case-plus::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 3px;
  background-color: #3975ea;
  content: '';
}
.fb-pri-case-plus::before {
  transform: translate(-50%, -50%);
}
.fb-pri-case-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.fb-pri-case-fee {
  display: inline-block;
}

.fb-pri-case-fee-top {
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
}

.fb-pri-case-fee-top-num {
  color: var(--strong);
  font-size: 22px;
  font-family: 'Arial', sans-serif;
}

.fb-pri-case-fee-top-percent {
  color: var(--strong);
  font-size: 16px;
  font-family: 'Arial', sans-serif;
}

.fb-pri-case-fee-bot {
  font-weight: 700;
  font-size: 28px;
  line-height: 1;
}

.fb-pri-case-fee-bot span {
  margin-right: 2px;
  color: var(--strong);
  font-size: 46px;
  font-family: 'Arial', sans-serif;
  vertical-align: -4%;
}

.fb-pri-case-equal {
  position: relative;
  width: 40px;
  height: 40px;
  margin-right: 22px;
  margin-left: 13px;
  background-color: #fff;
  border-radius: 50%;
}
.fb-pri-case-2 .fb-pri-case-equal {
  margin-right: 20px;
  margin-left: 13px;
}
.fb-pri-case-equal::before,
.fb-pri-case-equal::after {
  position: absolute;
  left: 50%;
  width: 12px;
  height: 3px;
  background-color: #3975ea;
  transform: translate(-50%, -50%);
  content: '';
}
.fb-pri-case-equal::before {
  top: 42%;
}
.fb-pri-case-equal::after {
  top: 58%;
}

.fb-pri-case-sum {
  display: inline-flex;
  align-items: center;
}

.fb-pri-case-sum-num {
  margin-top: 4px;
  margin-right: 6px;
  color: var(--strong);
  font-weight: 700;
  font-size: 56px;
  font-family: 'Arial', sans-serif;
  line-height: 1;
  letter-spacing: -0.08em;
}

.fb-pri-case-sum-unit {
  line-height: 1;
}
.fb-pri-case-sum-unit span:first-child {
  display: block;
  margin-bottom: 4px;
  font-weight: 700;
  font-size: 14px;
}
.fb-pri-case-sum-unit span:last-child {
  display: block;
  font-weight: 700;
  font-size: 28px;
}

.fb-pri-wrapper .fb-mv-cta {
  text-align: center;
}

/* cta button square */
.fb-cm-ctaButton.square-ctaButton {
  width: 262px;
  height: 50px;
  line-height: 50px;
  border-radius: 6px;
}

.fb-cm-ctaButton.square-ctaButton::before {
  border-radius: 6px;
}

.fb-cm-ctaButton.square-ctaButton::after {
  content: none;
}

.fb-cm-ctaButton.square-ctaButton span {
  margin-right: 15px;
  font-size: 18px;
}

.fb-cm-ctaButton.square-ctaButton img {
  position: relative;
  z-index: 3;
  margin-bottom: 3px;
}

@media (max-width: 899px) {
  .fb-pri-case-title {
    font-size: 16px;
  }
  .fb-pri-case-title span.fb-pri-case-title-num {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .fb-pri {
    padding-top: 40px;
    padding-bottom: 54px;
  }
  .fb-cm-head-r.fb-pri-head .fb-cm-head-innr::before {
    right: -86px;
    transform: translateY(-64%);
  }

  .fb-pri-wrapper {
    width: calc(100% - 40px);
    padding: 20px 15px;
  }

  .fb-pri-wrapper::after {
    top: -24px;
    width: 40px;
    height: 40px;
  }

  .fb-pri-head {
    margin-bottom: 50px;
  }

  .fb-pri-table {
    display: flex;
    gap: 4px;
  }

  .fb-pri-table-innr:first-child {
    flex-direction: column;
    width: 33.333%;
  }

  .fb-pri-table-innr:nth-child(2) {
    flex-direction: column;
    width: 66.666%;
  }

  .fb-pri-table-item {
    width: 100%;
  }

  .fb-pri-table-th,
  .fb-pri-table-td {
    height: 58px;
  }

  .fb-pri-table-innr:first-child {
    margin-bottom: 0;
  }

  .fb-pri-att-wrap {
    margin-bottom: 20px;
    padding: 10px;
  }
  .fb-pri-att {
    max-width: calc(100% - 32px);
    text-align: left;
  }
  .fb-pri-case {
    display: block;
  }
  .fb-pri-case-1 {
    margin-bottom: 0;
  }
  .fb-pri-case-title {
    width: 100%;
    height: 64px;
    font-size: 18px;
  }
  .fb-pri-case-title span.fb-pri-case-title-num {
    margin: 0 1px 3px;
    font-size: 28px;
  }
  .fb-pri-case-title::after {
    top: auto;
    right: auto;
    bottom: -10px;
    left: 50%;
    border-color: #1877f2 transparent transparent transparent;
    border-width: 10px 8px 0 8px;
    transform: translateX(-50%);
  }
  .fb-pri-case-content {
    width: 100%;
  }
  .fb-pri-case-cost-bot {
    font-size: 23px;
  }
  .fb-pri-case-cost-bot span {
    font-size: 38px;
  }
  .fb-pri-case-plus {
    width: 25px;
    height: 25px;
    margin-top: 18px;
    margin-right: 4px;
    margin-left: 7px;
  }
  .fb-pri-case-2 .fb-pri-case-plus {
    margin-right: 2px;
    margin-left: 2px;
  }
  .fb-pri-case-plus::before,
  .fb-pri-case-plus::after {
    width: 7px;
    height: 2px;
  }
  .fb-pri-case-fee-top-num {
    font-size: 18px;
  }
  .fb-pri-case-fee-top-percent {
    font-size: 13px;
  }
  .fb-pri-case-fee-bot {
    font-size: 23px;
  }
  .fb-pri-case-fee-bot span {
    font-size: 38px;
  }
  .fb-pri-case-equal {
    width: 25px;
    height: 25px;
    margin-top: 18px;
    margin-right: 3px;
    margin-left: 0;
  }
  .fb-pri-case-2 .fb-pri-case-equal {
    margin-right: 0;
    margin-left: 5px;
  }
  .fb-pri-case-equal::before,
  .fb-pri-case-equal::after {
    width: 6px;
    height: 2px;
  }
  .fb-pri-case-sum-num {
    font-size: 46px;
  }
  .fb-pri-case-sum-unit span:first-child {
    font-size: 11px;
  }
  .fb-pri-case-sum-unit span:last-child {
    font-size: 22px;
  }
}

@media (max-width: 374px) {
  .fb-pri-case-cost-top {
    font-size: 12px;
  }
  .fb-pri-case-cost-bot {
    font-size: 19px;
  }
  .fb-pri-case-cost-bot span {
    font-size: 29px;
  }
  .fb-pri-case-fee-top {
    font-size: 12px;
  }
  .fb-pri-case-fee-top-num {
    font-size: 15px;
  }
  .fb-pri-case-fee-top-percent {
    font-size: 11px;
  }
  .fb-pri-case-fee-bot {
    font-size: 19px;
  }
  .fb-pri-case-fee-bot span {
    font-size: 29px;
  }
  .fb-pri-case-sum-num {
    font-size: 34px;
  }
  .fb-pri-case-sum-unit span:first-child {
    font-size: 10px;
  }
  .fb-pri-case-sum-unit span:last-child {
    font-size: 17px;
  }
}

@media (max-width: 350px) {
  .fb-pri-table td:first-child {
    padding-left: 15px;
    font-size: 15px;
  }
}

/*********************************/
/* FLOW */
/*********************************/
.fb-flow {
  padding-top: 170px;
  padding-bottom: 120px;
}
.fb-flow-content {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
  padding-right: 20px;
  padding-bottom: 50px;
  padding-left: 20px;
  overflow: hidden;
}

.fb-flow-lists {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
}
.fb-flow-lists::after {
  position: absolute;
  top: 101px;
  left: 50%;
  z-index: -2;
  width: 1px;
  height: 800px;
  background-color: #d5e0ff;
  content: '';
}

.fb-flow-list {
  position: relative;
  width: calc(50% - 70px);
  padding: 40.5px 40px 31.5px;
  background-color: #f5f7fd;
}
.fb-flow-list:nth-child(odd) {
  float: left;
}
.fb-flow-list:nth-child(even) {
  float: right;
  margin-left: 140px;
}
.fb-flow-list:nth-child(2) {
  margin-top: 90px;
}
.fb-flow-list:nth-child(n + 3) {
  margin-top: 16px;
}
.fb-flow-list::before {
  position: absolute;
  width: 94px;
  height: 64px;
  background-repeat: no-repeat;
  background-size: 100%;
  content: '';
}
.fb-flow-list:nth-child(1)::before {
  top: 76px;
  right: -102px;
  background-image: url('../img/flow-1.svg');
}
.fb-flow-list:nth-child(2)::before {
  top: 89px;
  left: -102px;
  background-image: url('../img/flow-2.svg');
}
.fb-flow-list:nth-child(3)::before {
  top: 53px;
  right: -102px;
  background-image: url('../img/flow-3.svg');
}
.fb-flow-list:nth-child(4)::before {
  top: 60px;
  left: -102px;
  background-image: url('../img/flow-4.svg');
}
.fb-flow-list:nth-child(5)::before {
  top: 45px;
  right: -102px;
  background-image: url('../img/flow-5.svg');
}
.fb-flow-list:nth-child(6)::before {
  top: 80px;
  left: -102px;
  background-image: url('../img/flow-6.svg');
}
.fb-flow-list:nth-child(7)::before {
  top: 35px;
  right: -102px;
  background-image: url('../img/flow-7.svg');
}
.fb-flow-list:nth-child(8)::before {
  top: 70px;
  left: -102px;
  width: 124px;
  height: 80px;
  background-image: url('../img/flow-8.svg');
}
.fb-flow-list:nth-child(8)::after {
  position: absolute;
  top: 75px;
  left: -70px;
  z-index: -1;
  width: 1px;
  height: 100%;
  background-color: #ffffff;
  content: '';
}
.fb-flow-list-bottom {
  width: 100%;
}

.fb-flow-list-bottom .fb-flow-lead {
  color: var(--main);
  font-weight: 600;
  font-size: 20px;
  font-family: 'Arial', sans-serif;
}

.fb-flow-lead-title {
  margin-bottom: 4px;
  font-weight: 700;
  font-size: 18px;
}
.fb-flow-lead-title span {
  margin-right: 10px;
  color: var(--main);
  font-family: 'Arial', sans-serif;
}

.fb-flow-txt {
  font-size: 14px;
  line-height: 2;
}

.fb-flow-txt-link {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .fb-flow {
    padding-bottom: 70px;
  }
  .fb-cm-head-l.fb-flow-head .fb-cm-head-innr::before {
    left: -59px;
    transform: translateY(-70%);
  }
  .fb-flow-content {
    padding-right: 16px;
    padding-bottom: 40px;
    padding-left: 16px;
  }

  .fb-flow-lists::after {
    display: none;
  }

  .fb-flow-list {
    width: 100%;
    padding: 23px 16px 18px;
  }
  .fb-flow-list:nth-child(odd) {
    float: none;
  }
  .fb-flow-list:nth-child(even) {
    float: none;
    margin-left: 0;
  }
  .fb-flow-list:nth-child(2) {
    margin-top: 8px;
  }
  .fb-flow-list:nth-child(n + 3) {
    margin-top: 8px;
  }
  .fb-flow-list::before {
    display: none;
  }

  .fb-flow-list:nth-child(8)::after {
    display: none;
  }

  .fb-flow-lead {
    margin-bottom: 1px;
  }

  .fb-flow-lead-title {
    margin-top: 0;
    font-size: 16px;
  }

  .fb-flow-txt {
    font-size: 16px;
    line-height: 1.86;
  }

  .fb-flow-list-bottom .fb-flow-lead {
    margin-bottom: 5px;
    font-size: 16px;
  }
}

/*********************************/
/* QA */
/*********************************/

.fb-qa-wrapper {
  width: 1000px;
  max-width: 100%;
  margin: 0 auto;
}

.fb-qa-list {
  margin-bottom: 8px;
}

.fb-qa-title {
  display: block;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 21px 40px;
  font-weight: 600;
  background-color: #f5f7fd;
}
.fb-qa-title span:first-child {
  margin-right: 16px;
  font-size: 20px;
  font-family: 'Arial', sans-serif;
}

.fb-qa-content {
  display: flex;
  padding-right: 40px;
  padding-left: 30px;
}
.fb-qa-content.active {
  padding-top: 20px;
  padding-bottom: 20px;
}
.fb-qa-content span:first-child {
  margin-right: 15px;
  color: var(--main);
  font-weight: 600;
  font-size: 44px;
  line-height: 1.2;
}
.fb-qa-content span:last-child {
  line-height: 2;
}

@media (max-width: 767px) {
  .fb-cm-head-r.fb-qa-head .fb-cm-head-innr::before {
    right: -63px;
    transform: translateY(-63%);
  }
  .fb-qa-title {
    padding: 10px 40px 10px 16px;
  }
  .fb-qa-title span:first-child {
    font-size: 18px;
  }
  .fb-qa-title span:last-child {
    line-height: 1.875;
  }
  .fb-qa-content {
    padding-right: 30px;
    padding-left: 16px;
  }
  .fb-qa-content.active {
    padding-top: 14px;
    padding-bottom: 10px;
  }
  .fb-qa-content span:first-child {
    margin-top: 11px;
    margin-right: 19px;
    font-size: 18px;
  }
}

/*********************************/
/* Sidebar */
/*********************************/
.nl-flexBase {
  display: flex;
}

.nl-leftContainer {
  width: calc(100% - 264px);
}

.nl-rightContainer {
  position: relative;
  width: 264px;
  transition: 0.3s all;
}

.nl-sidebar {
  position: fixed;
  bottom: 0;
  z-index: 70;
  width: 264px;
  padding: 0 5px;
  background: #6a90f0;
  background-color: #f7f7f7;
  transition: all 0.4s;
}

.nl-sidebar.bg-active {
  transform: none;
  transition: all 0.4s cubic-bezier(0.35, 0.32, 0.43, 1);
}

@media screen and (max-width: 1047px) {
  .nl-leftContainer {
    width: 100%;
  }

  .nl-rightContainer {
    display: none;
  }
}

@media (min-width: 768px) {
  .nl-rightContainer .p-fix-cta.is-show {
    right: 0;
  }
}

.footer-lp {
  z-index: 80;
}
