.found_wrap{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8rem;
  width: 100%;
  max-width: 1000px;
  padding: 3rem 0 5rem 0;
  margin: 0 auto;
	word-break:keep-all;
	word-wrap:break-word;
}
.found_wrap .items{
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 100%;
  padding: 0;
  margin: 0;
}
.found_wrap .con{
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  width: 100%;
  padding: 0;
  margin: 0;
}
.found_wrap .pic{
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
  width: 25%;
  min-width: 25%;
}
.found_wrap .pic img{  
  width: 100%;
}
.found_wrap .title{
  display: flex;
  gap: 3rem;
  /* font-family: 'Jost'; */
  font-size: 5rem;
  font-weight: 100;
  color: var(--bs-primary);
  letter-spacing: -1px;
}
.found_wrap .title .t{
  line-height: 100%;
}
.found_wrap .title .t::first-letter {
  /* font-size: 5rem; */
  font-weight: 900;
}
.found_wrap .title .bar{
  position: relative;
  width: 100%;
}
.found_wrap .title .bar::before{
  position: absolute;
  content: '';
  width: 100%;
  height: 1px;
  bottom: 35%;
  left: 0;
  background: var(--bs-primary);
}
.found_wrap .info{
  font-size: 1.4rem;
  line-height: 150%;
}
.found_wrap .item_wrap{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.5rem;
  padding: 0;
  margin: 0;
}
.found_wrap .item_wrap .item{
  display: flex;
  justify-content: flex-start;
  gap: 2rem;
  padding: 0;
  margin: 0;
}
.found_wrap .no{
  min-width: 60px;
  font-family: 'Jost';
  font-size: 2.8rem;
  font-weight: 200;
  color: var(--bs-primary);
  letter-spacing: -1px;
  line-height: 100%;
}
.gap_left{
  padding-left: 5rem !important;
}

@media (max-width: 767.98px) {
  .gap_left{
    padding-left: 1.5rem !important;
  }
  .found_wrap{
    gap: 4rem;
    padding: 3rem 0;
  }  
  .found_wrap .con{
    flex-direction: column;
    gap: 1.5rem;
  }
  .found_wrap .pic{
    flex-direction: row;
    width: 100%;
    min-width: 100%;
  }
  .found_wrap .pic img{
    width: 50%;
  }
  .found_wrap .item_wrap{
    gap: 2.2rem;
  }
  .found_wrap .title{
    gap: 1.5rem;
    font-size: 3.0rem;
  }
  .found_wrap .info{
    font-size: 1.1rem;
    padding-right: 3rem;
  }
  .found_wrap .item_wrap .item{
    gap: 1rem;
  }
  .found_wrap .no{
    min-width: 40px;
    font-size: 1.8rem;
  }
}