:root {
  --color-main: #fc685a;
  --color-white: #fff;
  --color-accent01: #0097f4;
  --color-accent02: #4c5a6c;
  --color-accent03: #004fc4;
  --color-accent04: #31cfeb;
  --color-accent05: #e5f4fd;
  --color-accent06: #79ccff;
  --color-accent07: #dbff12;
  --color-accent08: #3ddec6;
  --color-plan01: #178962;
  --color-plan01-bg: #eafff7;
  --color-plan02: #87d951;
  --color-plan02-bg: #f0ffe6;
  --color-black: #2c3540;
  --color-txt: #222;
  --color-gray: #ddd;
  --color-gray02: #929dac;
  --color-link: #00f;
}

/* =======================================================
fv
======================================================= */
.bl-fv {
  padding: 56px 0 110px;
  background: url("../images/business/mv-bg.jpg") top center/cover no-repeat;
}
.bl-fv-lbl {
  margin-bottom: 8px;
}
.bl-fv-hgroup {
  margin-bottom: 72px;
}
.bl-fv-hgroup .bl-hgroup-ttl-deco::after {
  right: -94px;
  bottom: -11px;
  width: 78px;
  height: 92px;
  background: url("../images/business/mv-robot.png") top center/contain no-repeat;
}
.bl-fv-btn {
  width: 320px;
}
.bl-fv-btn .el-btn-arrow {
  justify-self: end;
}

@media screen and (width <= 750px) {
  .bl-fv {
    padding: 40px 0 48px;
    background: url("../images/business/mv-bg-sp.jpg") top center/cover no-repeat;
  }
  .bl-fv-lbl {
    margin-bottom: 24px;
  }
  .bl-fv-hgroup {
    margin-bottom: 462px;
  }
  .bl-fv-hgroup .bl-hgroup-ttl-deco::after {
    right: -90px;
    bottom: 64px;
    display: block;
    width: 106px;
    height: 126px;
  }
  .bl-fv-btn {
    width: 610px;
  }
  .bl-fv-btn-wrapper {
    text-align: center;
  }
}
/* =======================================================
feature
======================================================= */
.bl-feature {
  padding: 64px 0;
}
.bl-feature .el-sec-main-ttl {
  padding-top: 26px;
  margin-bottom: 40px;
}
.bl-feature .el-sec-main-ttl::before {
  width: 62px;
  height: 14px;
  background: url("../images/business/ttl-feature.svg") top center/contain no-repeat;
}
.bl-feature-list {
  display: grid;
  gap: 64px;
}
.bl-feature-item {
  display: grid;
  gap: 32px;
  justify-content: center;
}
.bl-feature-item .bl-column {
  display: grid;
  grid-template: "img-wrapper ttl" "img-wrapper txt";
  grid-template-rows: auto 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 32px;
}
.bl-feature-item .bl-column-img-wrapper {
  position: relative;
  grid-area: img-wrapper;
  align-self: start;
}
.bl-feature-item .bl-column-img-wrapper::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  content: "";
  border: 1px solid var(--color-gray);
  transform: translate(-50%, -50%);
}
.bl-feature-item .bl-column-ttl {
  grid-area: ttl;
  padding-bottom: 16px;
  font-size: 24px;
  font-weight: 700;
  border-bottom: 1px solid var(--color-gray);
}
.bl-feature-item .bl-column-txt {
  grid-area: txt;
}
.bl-feature-item .bl-column-txt + * {
  margin-top: 8px;
}
.bl-feature-item .bl-column-txt + .bl-column-txt {
  margin-top: 1.5em;
}
.bl-feature-item .bl-item-btn {
  justify-self: center;
}

@media screen and (width <= 750px) {
  .bl-feature {
    padding: 80px 0;
  }
  .bl-feature .el-sec-main-ttl {
    padding-top: 39px;
    margin-bottom: 64px;
  }
  .bl-feature .el-sec-main-ttl::before {
    width: 93px;
    height: 21px;
  }
  .bl-feature-list {
    gap: 80px;
  }
  .bl-feature-item {
    gap: 48px;
  }
  .bl-feature-item .bl-column {
    grid-template: "ttl" "img-wrapper" "txt";
    grid-template-rows: auto;
    grid-template-columns: auto;
    gap: 0;
  }
  .bl-feature-item .bl-column-img-wrapper {
    margin-bottom: 24px;
  }
  .bl-feature-item .bl-column-img-wrapper::after {
    border-width: 2px;
  }
  .bl-feature-item .bl-column-ttl {
    padding-bottom: 0;
    margin-bottom: 24px;
    font-size: 32px;
    text-align: center;
    border: none;
  }
  .bl-feature-item .bl-column-txt + * {
    margin-top: 12px;
  }
}
/* =======================================================
company
======================================================= */
.bl-company {
  padding-bottom: 80px;
}
.bl-company-ttl {
  margin-bottom: 32px;
}
.bl-company-intro {
  justify-content: center;
  margin-bottom: 40px;
}
.bl-company-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.bl-company-item {
  width: calc((100% - 96px) / 4);
}

@media screen and (width <= 750px) {
  .bl-company-ttl {
    margin-bottom: 48px;
  }
  .bl-company-intro {
    margin-bottom: 48px;
    font-size: 23px;
  }
  .bl-company-list {
    gap: 40px;
  }
  .bl-company-item {
    width: calc((100% - 40px) / 2);
  }
}
/* =======================================================
business-cta
======================================================= */
.bl-business-cta {
  padding: 48px 0;
  background: url("../images/business/business-cta.jpg") top center/cover no-repeat;
}
.bl-business-cta .bl-bcta-ttl {
  margin-bottom: 24px;
  font-size: 32px;
  font-weight: 700;
  color: var(--color-white);
  text-align: center;
  letter-spacing: 0.06em;
}
.bl-business-cta .bl-bcta-btn-wrapper {
  text-align: center;
}

@media screen and (width <= 750px) {
  .bl-business-cta {
    padding: 80px 0;
    background: url("../images/business/business-cta-sp.jpg") top center/cover no-repeat;
  }
  .bl-business-cta .bl-bcta-ttl {
    margin-bottom: 56px;
    font-size: 40px;
  }
  .bl-business-cta .bl-bcta-btn {
    width: 560px;
  }
}
/* =======================================================
able
======================================================= */
.bl-able {
  padding: 80px 0;
  background: var(--color-accent05);
}
.bl-able-ttl {
  margin-bottom: 40px;
  font-size: 32px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.06em;
}
.bl-able-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 32px;
  margin-bottom: 40px;
}
.bl-able-item {
  padding: 24px;
  background: var(--color-white);
  border: 1px solid var(--color-accent01);
  border-radius: 16px;
}
.bl-able-item .bl-item-figure {
  margin-bottom: 16px;
}
.bl-able-item .bl-item-ttl {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
.bl-able-btn {
  width: 320px;
}
.bl-able-btn-wrapper {
  text-align: center;
}
.bl-able-btn .el-btn-arrow {
  justify-self: end;
}

@media screen and (width <= 750px) {
  .bl-able-ttl {
    margin-bottom: 64px;
    font-size: 40px;
  }
  .bl-able-list {
    grid-template-columns: auto;
    gap: 40px;
    margin-bottom: 64px;
  }
  .bl-able-item {
    padding: 32px 40px 48px;
    border-width: 2px;
    border-radius: 24px;
  }
  .bl-able-item .bl-item-figure {
    margin-bottom: 24px;
  }
  .bl-able-item .bl-item-ttl {
    margin-bottom: 12px;
    font-size: 32px;
  }
  .bl-able-btn {
    width: 560px;
  }
}