.businessPage__display {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}

.businessPage__display--container {
  background: var(--colorLightTurquoise);
  border-radius: 20px;
  position: relative;
  top: -30px;
}

.businessPage__display--inner {
  padding: 60px 90px 75px;
}

.business__display--number {
  position: absolute;
  width: 71px;
  height: 71px;
  border: 1px solid var(--colorTurquoise);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 50%;
  transform: translateX(50%);
  top: -55px;
  opacity: 0.6;
}

.business__display--number p {
  font-size: 40px;
  font-family: var(--fontRoboto);
  font-weight: 400;
  color: var(--colorTurquoise);
}

.businessPage__desc--img {
  flex: 1;
}

.businessPage__desc--img {
  max-width: 495px;
}

.businessPage__details {
  margin-top: 50px;
  display: flex;
  gap: 40px;
}

.businessPage__main {
  max-width: 1180px;
  margin: 0 auto;
}

.businessPage__navBar {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  border: 2px solid var(--colorTurquoise);
  border-radius: 20px;
  background: #fff;
  margin-top: 35px;
  position: relative;
  z-index: 2;
}

.businessPage__navItem {
  padding: 2px;
  width: 100%;
  border-right: 1px solid #707070;
  position: relative;
}

.businessPage__navItem img {
  content: "";
  position: absolute;
  right: 45px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
}

.businessPage__navItem:last-child {
  border-right: none;
}

.businessPage__navItem p {
  font-family: var(--fontNotoSerifJP);
  color: var(--colorBlack);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  padding-right: 40px;
}

.businessPage__navList {
  display: flex;
  padding: 20px 25px;
  justify-content: space-around;
  text-align: center;
}

.businessPage__navList a {
  color: var(--colorBlack);
}

.businessPage__subject {
  position: relative;
  text-align: center;
  margin-top: 107px;
}

.businessPage__subject--heading {
  font-family: var(--fontNotoSerifJP);
  color: var(--colorBlack);
  font-size: 40px;
  font-weight: 500;
  line-height: 1.4;
  padding-top: 20px;
  position: relative;
  width: fit-content;
  margin: 0 auto;
}

.businessPage__subject--heading::after {
  content: "";
  background: var(--colorTurquoise);
  width: calc(100% + 20px);
  height: 5px;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.businessPage__top--text {
  flex: 1;
}

.item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 62px;
  border-bottom: 1px solid #6abebd;
}

.item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.item__body {
  display: flex;
  gap: 40px;
}

.item__columnReverse {
  flex-direction: column-reverse;
}

.item__columnReverse .item__img {
  align-self: center;
}

.item__columnReverse .item__img img {
  max-width: 50vw;
}

.item__img {
  flex: 1;
}

.item__img img {
  max-width: 460px;
  width: 100%;
  height: auto;
}

.item__pin {
  position: absolute;
  top: -10px;
  left: 0;
}

.item__pin img {
  width: 22px;
  height: 29px;
}

.item__points {
  padding: 15px 12px;
  position: relative;
}

.item__pointsList {
  background: #fff;
  border: 1px solid var(--colorTurquoise);
  border-radius: 10px;
}

.item__subtitle {
  font-family: var(--fontNotoSerifJP);
  color: var(--colorTurquoise);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}

.item__text {
  font-family: var(--fontNotoSerifJP);
  color: var(--colorBlack);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.9;
}

.item__textArea {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  flex: 1;
}

.item__title {
  font-family: var(--fontNotoSerifJP);
  color: var(--colorBlack);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}

.item__top {
  text-align: center;
}

.item__top img {
  max-width: 45px;
  width: 100%;
  height: auto;
}

.noNav__wrapper .businessPage__display--container {
  top: 0;
  margin-top: 60px;
}

.reverse {
  flex-direction: row-reverse;
}

@media screen and (max-width: 767px) {
  .businessPage__details {
    flex-direction: column;
    padding: 0 20px;
  }
  .businessPage__display--container {
    max-width: 95vw;
    margin: 0 auto;
  }
  .businessPage__display--inner {
    padding: 60px 20px;
  }
  .businessPage__navBar {
    width: 80vw;
  }
  .businessPage__navItem {
    border: none;
  }
  .businessPage__navItem img {
    right: 10px;
  }
  .businessPage__navList {
    flex-direction: column;
    gap: 16px;
  }
  .item {
    padding-bottom: 30px;
  }
  .item__body {
    flex-direction: column;
  }
  .item__columnReverse {
    flex-direction: column-reverse;
  }
  .item__columnReverse .item__img img {
    max-width: 90vw;
  }
}
