.SubHero .SubHero__title::before {
  background-image: url(/b_solution/bunkyo/images/value/subhero.png);
  background-size: 51px 57px;
}
@media screen and (max-width: 767px) {
  .SubHero .SubHero__title::before {
    background-size: 43px 47px;
  }
}

.value__index {
  width: 90%;
  max-width: 1200px;
  margin: 100px auto 0;
}

.value__index-title {
  position: relative;
  color: #333;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 130%;
  padding: 0 0 42px;
}
.value__index-title span {
  font-size: 48px;
  line-height: 130%;
}
.value__index-title::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 80px;
  height: 2px;
  background: #007ac2;
}
@media screen and (max-width: 767px) {
  .value__index-title {
    font-size: 18px;
    padding: 0 0 32px;
  }
  .value__index-title span {
    font-size: 32px;
    line-height: 130%;
  }
  .value__index-title::after {
    width: 44px;
  }
}

.value__index-wrap {
  display: flex;
  margin: 64px 0 0;
}
.value__index-cell {
  width: calc(100% / 3);
  text-align: center;

  opacity: 0;
  transform: translateY(50px);

  transition: 0.5s all ease;
}
.value__index-cell:nth-child(2) {
  transition-delay: 0.5s;
}
.value__index-cell:nth-child(3) {
  transition-delay: 1s;
}

.value__index-wrap.is-show .value__index-cell {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 767px) {
  .value__index-wrap {
    flex-direction: column;
    gap: 80px;
  }
  .value__index-cell {
    width: 100%;
  }
}

.value__index-cell__img {
  width: 288px;
  height: auto;
}
.value__index-cell__point {
  margin: 24px 0 0;
  color: #e06f00;
  font-size: 20px;
  font-family: Helvetica;
  font-weight: 700;
  font-style: oblique;
}
.value__index-cell__point span {
  margin-left: 4px;
  font-size: 32px;
}
.value__index-cell__copy {
  margin: 6px 0 0;
  color: #333;
  font-size: 18px;
  font-weight: 500;
  line-height: 130%;
}
.value__index-cell__title {
  margin: 8px 0 0;
  color: #333;
  font-size: 28px;
  font-weight: 700;
  line-height: 130%;
}
@media screen and (max-width: 767px) {
  .value__index-cell__title {
    font-size: 24px;
  }
}
a.value__index-cell__btn {
  margin: 32px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 20px;
  background: #007ac2;
  padding: 8px 32px;
  width: fit-content;
}
a.value__index-cell__btn::after {
  content: "";
  display: block;
  position: relative;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(135deg);
  box-sizing: border-box;
  margin: 0 0 3px;
}
a.value__index-cell__btn:hover {
  text-decoration: none;
}

.value__inner {
  position: relative;
  margin: 150px 0 0;
  padding: 32px 0 0;
  background: #f5f5f2;
}
.value__inner::before {
  content: "";
  display: block;
  position: absolute;
  top: -3vw;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 3vw;
  background: url(/b_solution/bunkyo/images/value/bg_path.svg) no-repeat center center;
  background-size: cover;
}

.value__point {
  width: 90%;
  max-width: 1240px;
  margin: 100px auto 0;
  border-radius: 60px;
  background: #fff;
  padding: 80px 140px 100px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .value__inner {
    padding: 16px 0 0;
  }
  .value__point {
    margin: 16px auto 0;
    padding: 80px 5% 48px;
    border-radius: 30px;
  }
  .value__inner::before {
    top: -13vw;
    height: 13vw;
    background-image: url(/b_solution/bunkyo/images/value/bg_path_sp.svg);
  }
}

.value__point-head {
  position: relative;
  text-align: center;
  display: flex;
  align-items: baseline;
  width: fit-content;
  margin: auto;

  opacity: 0;
  transform: translateY(10px);
  transition: 0.5s all ease;
}
.value__point-title.is-show .value__point-head {
  opacity: 1;
  transform: translateY(0);
}

.value__point-head__strengths {
  position: absolute;
  top: 10px;
  left: 4px;
  color: #666;
  font-size: 14px;
  font-family: Helvetica;
  font-weight: 700;
  text-transform: uppercase;
}
.value__point-head__point {
  color: #e06f00;
  font-size: 36px;
  font-family: Helvetica;
  font-weight: 700;
  font-style: oblique;
}
.value__point-head__num {
  color: #e06f00;
  font-size: 64px;
  font-family: Helvetica;
  font-weight: 700;
  font-style: oblique;
}

.value__point-title {
  position: relative;
  padding: 0 0 42px;
}

.value__point-title::after {
  content: "";
  display: block;
  position: absolute;
  width: 80px;
  height: 2px;
  background: #007ac2;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.value__point h2 {
  margin: 24px 0 0;
  color: #333;
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  line-height: 130%;

  opacity: 0;
  transform: translateY(30px);
  transition: 0.5s all ease 0.5s;
}
.value__point-title.is-show h2 {
  opacity: 1;
  transform: translateY(0);
}

.value__point h3 {
  margin: 16px 0 0;
  color: #333;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
}
.value__point h3 span {
  position: relative;
}
.value__point h3 span::before {
  content: "";
  display: block;
  position: absolute;
  background: #ffe000;
  width: 100%;
  height: 10px;
  top: 20px;
  left: 0;
  mix-blend-mode: multiply;
}
.value__point-title h3 {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.5s all ease 1s;
}
.value__point-title.is-show h3 {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 767px) {
  .value__point-title {
    padding-bottom: 32px;
  }
  .value__point-title::after {
    width: 44px;
  }
  .value__point-title h2 {
    font-size: 36px;
  }
  #point3 .value__point-title h2 {
    font-size: 32px;
    font-feature-settings: "palt";
  }
  .value__point h3 {
    margin: 24px 0 0;
    font-size: 18px;
    text-align: left;
  }
  .value__point h3 span::before {
    display: none;
  }
  .value__point h3 span {
    background: linear-gradient(transparent 60%, #ffe000 60%);
  }
}
.value__point-wrap {
  margin: 48px 0 0;
  display: flex;
  align-items: center;
}

#point2 .value__point-wrap {
  flex-direction: row-reverse;
}

.value__point-wrap__img {
  width: 49%;
}
.value__point-wrap__img img {
  width: 288px;
  margin: auto;
  display: block;
}
.value__point-wrap__info {
  width: 51%;
}
@media screen and (max-width: 767px) {
  .value__point-wrap,
  #point2 .value__point-wrap {
    flex-direction: column-reverse;
    gap: 48px;
  }
  .value__point-wrap__info,
  .value__point-wrap__img {
    width: 100%;
  }
  .value__point-wrap__img img {
    width: 80%;
  }
}
.value__point-wrap__info-title {
  color: #333;
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
}
.value__point-wrap__info-text {
  margin: 24px 0 0;
  color: #333;
  font-size: 14px;
  line-height: 180%;
}

.value__point-solution {
  margin: 64px 0 0;
}
.value__point-solution h3 {
  color: #333;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  line-height: 100%;
}
.value__point-solution__wrap {
  display: flex;
  gap: 16px;
  margin: 48px 0 0;
}
.value__point-solution__cell {
  width: 50%;
  text-align: center;
  border-radius: 20px;
  border: 1px solid #d9d9d9;
  background: #fff;
  padding: 28px 16px 32px;
}
.value__point-solution__cell {
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: 0.5s all ease;
}
.value__point-solution__cell:nth-child(1) {
  transition-delay: 0;
}
.value__point-solution__cell:nth-child(2) {
  transition-delay: 0.3s;
}
.value__point-solution__cell:nth-child(3) {
  transition-delay: 0.6s;
}
.value__point-solution__wrap.is-show .value__point-solution__cell {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media screen and (max-width: 767px) {
  .value__point-solution h3 {
    font-size: 24px;
  }
  .value__point-solution__wrap {
    flex-direction: column;
  }
  .value__point-solution__cell {
    width: 100%;
    box-sizing: border-box;
  }
}

.value__point-solution__cell-img {
  margin: 8px auto 16px;
}
#point1 .value__point-solution__cell {
  width: calc(100% / 3);
}
#point1 .value__point-solution__cell-img {
  width: 187px;
}
#point2 .value__point-solution__cell-img {
  width: 189px;
  margin-top: 24px;
}
#point3 .value__point-solution__cell-img {
  width: 216px;
}
@media screen and (max-width: 767px) {
  #point1 .value__point-solution__cell {
    width: 100%;
  }
}

.value__point-solution__cell-text1 {
  color: #333;
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
}
.value__point-solution__cell-text2 {
  position: relative;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  line-height: 130%;
  padding: 30px 0 0;
  font-feature-settings: "palt";
}
.value__point-solution__cell-text2::before {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 13px 0 13px;
  border-color: #007ac2 transparent transparent transparent;

  top: 0px;
  left: 0;
  right: 0;
  margin: auto;
}

.value__point-solution__cell-text3 {
  margin-top: 16px;
  color: #333;
  font-size: 28px;
  font-weight: 700;
  line-height: 130%;
}
html:not(:target) .value__point-solution__cell-text2 sup {
  font-size: 12px;
  font-feature-settings: "palt";
}
html:not(:target) .value__point-solution__cell-text3 sup {
  font-size: 14px;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  #point2 .value__point-solution__cell-text1 {
    font-size: 16px;
  }
  #point2 .value__point-solution__cell-text3,
  #point3 .value__point-solution__cell-text3 {
    font-size: 26px;
  }
}
.value__point-caption {
  font-size: 12px;
  margin: 32px 0 0;
}
.value__point-caption dl {
  display: flex;
  flex-wrap: wrap;
}
.value__point-caption dl dt {
  width: 45px;
  font-weight: normal;
  margin-top: 4px;
  line-height: 1.8em;
}
.value__point-caption dl dd {
  width: calc(100% - 45px);
  margin-top: 4px;
  line-height: 1.8em;
}

.value__point-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  max-width: 400px;
  height: 48px;
  border: 1px solid #007ac2;
  color: #007ac2;
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
  border-radius: 24px;
  margin: 48px auto 0;
  transition: 0.3s all ease;
}
.value__point-btn:hover {
  color: #007ac2;
  text-decoration: none;
  background-color: #e8f3fd;
}
