/* cosmetic-wrap */
.cosmetic-wrap {
  margin: auto;
  display: flex;
  max-width: 1250px;
}
.cosmetic-wrap .left {
  width: 49.6%;
}
.cosmetic-wrap .left img {
  border-radius: 10px;
  border: 1px solid #ddd;
}
.cosmetic-wrap .right {
  width: 50.4%;
  padding: 30px 0 0;
}
.cosmetic-wrap .right-tit p {
  color: #111;
  font-size: 27px;
  line-height: 37px;
  margin: -30px 0 0 20px;
}
.cosmetic-wrap .right-tit p span {
  color: #0e4c2a;
  font-weight: 600;
}
.cosmetic-wrap .right-txt {
  color: #333;
  font-size: 18px;
  line-height: 28px;
  padding: 25px 0 0 20px;
  word-break: auto-phrase;
}

/* cosmetic-border */
.cosmetic-border {
  border: 2px dashed #ddd;
  margin: 80px 0;
}


/* mob */
@media(max-width: 1366px) {
  .cosmetic-wrap {
    display: block;
  }
  .cosmetic-wrap .left {
    width: 100%;
  }
  .cosmetic-wrap .right {
    width: 100%;
  }
  .cosmetic-wrap .right-tit p {
    font-size: 20px;
    line-height: 30px;
  }
  .cosmetic-wrap .right-txt {
    font-size: 17px;
    line-height: 27px;
  }

  .cosmetic-border {
    margin: 40px 0;
  }
}