.service_main {
  width: 92%;
  max-width: 1200px;
  margin: 80px auto 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service_main__left {
  width: 43%;
}
.service_main__left p:nth-of-type(1) {
  margin-bottom: 12px;
  font-size: 30px;
}
.service_main__left p:nth-of-type(2) {
  margin-bottom: 24px;
  font-size: 14px;
}
.service_main__left p:nth-of-type(3) {
  font-size: 14px;
  line-height: 2.2;
  text-align: justify;
}
.service_main__right {
  width: 52%;
  border-radius: 24px;
  overflow: hidden;
}
.service_main__right img {
  width: 100%;
}

@media screen and (max-width: 1200px) {
  .service_main__left p:nth-of-type(1) {
    font-size: 28px;
  }
  .service_main__left p:nth-of-type(2) {
    font-size: 12px;
  }
  .service_main__left p:nth-of-type(3) {
    font-size: 13px;
  }
}
@media screen and (max-width: 960px) {
  .service_main {
    margin: 40px auto 60px;
  }
  .service_main__left {
    width: 44%;
  }
  .service_main__left p:nth-of-type(1) {
    margin-bottom: 8px;
    font-size: 22px;
  }
  .service_main__left p:nth-of-type(2) {
    margin-bottom: 15px;
    font-size: 10px;
  }
  .service_main__left p:nth-of-type(3) {
    font-size: 10px;
  }
}
@media screen and (max-width: 520px) {
  .service_main {
    flex-direction: column-reverse;
    row-gap: 20px;
  }
  .service_main__left {
    width: 100%;
  }
  .service_main__left p:nth-of-type(1) {
    margin-bottom: 12px;
    font-size: 24px;
  }
  .service_main__left p:nth-of-type(2) {
    margin-bottom: 16px;
    font-size: 12px;
  }
  .service_main__left p:nth-of-type(3) {
    font-size: 13px;
  }
  .service_main__right {
    width: 100%;
    border-radius: 16px;
  }
}
.service_content {
  padding: 100px 0;
  background-color: #d3d3e0;
}
.service_content__problem {
  width: fit-content;
  max-width: 1200px;
  margin: 0 auto 120px;
  background-color: #fff;
  border-radius: 20px;
  padding: 40px 100px 50px;
  display: flex;
  align-items: end;
  column-gap: 60px;
}
.service_content__problem__title {
  margin: 0 auto 0;
  text-align: center;
}
.service_content__problem__title p {
  position: relative;
  width: fit-content;
  margin: 0 auto 20px;
  padding-left: 30px;
  font-size: 22px;
  line-height: 1.7;
  letter-spacing: 0.1em;
  text-align: center;
}
.service_content__problem__title p span {
  font-size: 30px;
  padding: 0 4px;
  -webkit-text-emphasis: filled;
  text-emphasis: filled;
}
.service_content__problem__title p::after {
  content: "";
  position: absolute;
  top: -4px;
  left: -10px;
  width: 45px;
  height: auto;
  aspect-ratio: 100/105;
  background: url(/asset/img/service/service_accent.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.service_content__problem__title img {
  width: 100px;
  margin: 0 auto;
}
.service_content__problem ul {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  row-gap: 50px;
}
.service_content__problem ul li {
  padding-bottom: 20px;
  border-bottom: 3px dotted #4567d4;
}
.service_content__problem ul li p {
  position: relative;
  margin: 0 auto;
  padding-left: 42px;
  font-size: 18px;
}
.service_content__problem ul li p::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
}
.service_content__problem ul li p br {
  display: none;
}
.service_content__problem ul li:nth-of-type(1) p::after {
  background: url(/asset/img/service/service_number1.svg);
}
.service_content__problem ul li:nth-of-type(2) p::after {
  background: url(/asset/img/service/service_number2.svg);
}
.service_content__problem ul li:nth-of-type(3) p::after {
  background: url(/asset/img/service/service_number3.svg);
}
.service_content__solution {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}
.service_content__solution__title {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 50px;
  padding-bottom: 30px;
  font-size: 24px;
  text-align: center;
}
.service_content__solution__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 32%;
  height: 3px;
  background-color: #627cd2;
}
.service_content__solution__title br {
  display: none;
}
.service_content__solution ul {
  display: flex;
  justify-content: center;
  column-gap: 20px;
}
.service_content__solution ul:nth-of-type(1) {
  margin-bottom: 60px;
}
.service_content__solution ul li {
  width: 30%;
  text-align: center;
}
.service_content__solution ul li > div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: auto;
  aspect-ratio: 1/1;
  margin: 0 auto 25px;
  padding: 12px;
  background-color: #a3b1e2;
  border-radius: 200px;
}
.service_content__solution ul li > div img {
  width: 100%;
}
.service_content__solution ul li p:nth-of-type(1) {
  width: 100%;
  margin: 0 auto 20px;
  font-size: 22px;
  text-align: center;
  letter-spacing: 0.05em;
  color: #000;
}
.service_content__solution ul li p:nth-of-type(2) {
  width: 85%;
  margin: 0 auto;
  font-size: 14px;
  font-weight: 500;
  line-height: 2.2;
  text-align: justify;
  color: #000;
}

@media screen and (max-width: 1200px) {
  .service_content__solution ul li p:nth-of-type(2) {
    width: 90%;
  }
}
@media screen and (max-width: 960px) {
  .service_content {
    padding: 100px 0 80px;
  }
  .service_content__problem {
    margin: 0 auto 100px;
    border-radius: 20px;
    padding: 40px 60px 50px;
    flex-direction: column;
  }
  .service_content__problem__title p {
    margin-bottom: 30px;
  }
  .service_content__problem__title p br {
    display: none;
  }
  .service_content__problem__title img {
    display: none;
  }
  .service_content__problem ul {
    row-gap: 40px;
  }
  .service_content__solution ul {
    justify-content: space-between;
    column-gap: 10px;
  }
  .service_content__solution ul li {
    width: 33%;
  }
  .service_content__solution ul li > div {
    width: 180px;
    margin: 0 auto 20px;
    padding: 10px;
  }
  .service_content__solution ul li p:nth-of-type(1) {
    margin: 0 auto 15px;
    font-size: 18px;
  }
  .service_content__solution ul li p:nth-of-type(2) {
    font-size: 13px;
  }
}
@media screen and (max-width: 520px) {
  .service_content {
    padding: 80px 0;
  }
  .service_content__problem {
    margin: 0 auto 80px;
    padding: 30px 20px 50px;
    align-items: center;
  }
  .service_content__problem__title p {
    margin: 0 auto 20px;
    padding-left: 0;
    font-size: 18px;
  }
  .service_content__problem__title p span {
    font-size: 26px;
    padding: 0 2px;
  }
  .service_content__problem__title p::after {
    display: none;
  }
  .service_content__problem ul {
    row-gap: 30px;
  }
  .service_content__problem ul li {
    padding-bottom: 20px;
    border-bottom: 3px dotted #4567d4;
  }
  .service_content__problem ul li p {
    position: relative;
    margin: 0 auto;
    padding-left: 40px;
    font-size: 15px;
    line-height: 1.8;
  }
  .service_content__problem ul li p::after {
    width: 28px;
    height: 28px;
  }
  .service_content__problem ul li p br {
    display: block;
  }
  .service_content__solution__title {
    margin-bottom: 40px;
    padding-bottom: 15px;
    font-size: 22px;
    line-height: 1.7;
  }
  .service_content__solution__title br {
    display: block;
  }
  .service_content__solution__title span {
    display: none;
  }
  .service_content__solution ul {
    flex-direction: column;
    row-gap: 50px;
  }
  .service_content__solution ul:nth-of-type(1) {
    margin-bottom: 0;
  }
  .service_content__solution ul li {
    width: 100%;
  }
}
.property-management_content {
  padding: 100px 0;
  background-color: #d3d3e0;
}
.property-management_content__problem {
  width: fit-content;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 20px;
  padding: 40px 100px 50px;
}
.property-management_content__problem__title {
  margin: 0 auto 50px;
  text-align: center;
}
.property-management_content__problem__title p {
  position: relative;
  width: fit-content;
  margin: 0 auto 20px;
  font-size: 22px;
  line-height: 1.7;
  letter-spacing: 0.1em;
  text-align: center;
}
.property-management_content__problem ul {
  margin-bottom: 30px;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 50px;
  row-gap: 40px;
}
.property-management_content__problem ul li {
  padding-bottom: 20px;
  border-bottom: 3px dotted #4567d4;
}
.property-management_content__problem ul li p {
  position: relative;
  margin: 0 auto;
  padding-left: 42px;
  font-size: 18px;
}
.property-management_content__problem ul li p::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
}
.property-management_content__problem ul li:nth-of-type(1) p::after {
  background: url(/asset/img/service/service_number1.svg);
}
.property-management_content__problem ul li:nth-of-type(2) p::after {
  background: url(/asset/img/service/service_number2.svg);
}
.property-management_content__problem ul li:nth-of-type(3) p::after {
  background: url(/asset/img/service/service_number3.svg);
}
.property-management_content__problem ul li:nth-of-type(4) p::after {
  background: url(/asset/img/service/service_number4.svg);
}
.property-management_content__problem ul li:nth-of-type(5) p::after {
  background: url(/asset/img/service/service_number5.svg);
}
.property-management_content__problem ul li:nth-of-type(6) p::after {
  background: url(/asset/img/service/service_number6.svg);
}

@media screen and (max-width: 960px) {
  .property-management_content {
    padding: 80px 0 100px;
  }
  .property-management_content__problem {
    padding: 40px 30px 50px;
  }
  .property-management_content__problem__title p {
    font-size: 18px;
  }
  .property-management_content__problem ul {
    column-gap: 40px;
  }
  .property-management_content__problem ul li {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 520px) {
  .property-management_content__problem {
    padding: 40px 20px 50px;
    width: 92%;
  }
  .property-management_content__problem__title {
    width: 300px;
    margin: 0 auto 40px;
  }
  .property-management_content__problem__title p {
    font-size: 16px;
    text-align: justify;
  }
  .property-management_content__problem ul {
    margin-bottom: 0;
    grid-template-columns: 1fr;
    row-gap: 30px;
  }
  .property-management_content__problem ul li {
    padding-bottom: 16px;
    border-bottom: 2px dotted #4567d4;
  }
  .property-management_content__problem ul li p {
    padding-left: 32px;
    font-size: 16px;
  }
  .property-management_content__problem ul li p::after {
    width: 24px;
    height: 24px;
  }
}
.property-sales_flow {
  width: 92%;
  max-width: 800px;
  margin: 100px auto;
}
.property-sales_flow__title {
  margin-bottom: 40px;
  font-size: 28px;
  font-weight: 600;
  text-align: center;
}
.property-sales_flow ul {
  display: flex;
  flex-direction: column;
  row-gap: 50px;
}
.property-sales_flow ul li {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.property-sales_flow ul li::after {
  content: "";
  position: absolute;
  top: 60px;
  left: 25px;
  width: 2px;
  height: calc(100% - 20px);
  background-color: #ccc;
}
.property-sales_flow ul li:last-child::after {
  display: none;
}
.property-sales_flow ul li > p {
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 4px;
  width: 50px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 100px;
  background-color: #5976d5;
  font-size: 32px;
  line-height: 1;
  color: #fff;
}
.property-sales_flow ul li div {
  width: calc(100% - 70px);
}
.property-sales_flow ul li div p:nth-of-type(1) {
  margin-bottom: 10px;
  font-size: 20px;
}
.property-sales_flow ul li div p:nth-of-type(2) {
  width: 100%;
  padding: 12px 20px;
  font-size: 16px;
  line-height: 1.7;
  text-align: justify;
  background-color: #eef2ff;
  border-radius: 12px;
  box-shadow: 4px 4px 0px rgb(0, 0, 0);
}

@media screen and (max-width: 520px) {
  .property-sales_flow__title {
    font-size: 24px;
    font-weight: 500;
  }
  .property-sales_flow ul li::after {
    top: 50px;
    left: 20px;
    height: calc(100% - 10px);
  }
  .property-sales_flow ul li > p {
    padding-bottom: 4px;
    width: 40px;
    font-size: 24px;
  }
  .property-sales_flow ul li div {
    width: calc(100% - 55px);
  }
  .property-sales_flow ul li div p:nth-of-type(1) {
    margin-bottom: 16px;
  }
  .property-sales_flow ul li div p:nth-of-type(2) {
    width: 100%;
    padding: 10px 14px;
    font-size: 15px;
    border-radius: 8px;
  }
}