#lifecycle .subpage_lifecycle_wrap .subpage_lifecycle ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  align-self: stretch;
  width: 100%;
  max-width: 100%;
}
#lifecycle .subpage_lifecycle_wrap .subpage_lifecycle ul li {
  display: flex;
  width: 300px;
  height: 400px;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 30px;
  border: 1px solid #DDD;
  padding: 50px;
  background-color: #fff;
  box-shadow: 5px 5px 30px 0 rgba(54, 87, 92, 0.15);
  background-repeat: no-repeat;
  background-position: center bottom 30px;
}
#lifecycle .subpage_lifecycle_wrap .subpage_lifecycle ul li:nth-child(1) {
  background-image: url("../img/lifecycle_img_toddler.svg");
}
#lifecycle .subpage_lifecycle_wrap .subpage_lifecycle ul li:nth-child(2) {
  background-image: url("../img/lifecycle_img_youth.svg");
}
#lifecycle .subpage_lifecycle_wrap .subpage_lifecycle ul li:nth-child(3) {
  background-image: url("../img/lifecycle_img_adult.svg");
}
#lifecycle .subpage_lifecycle_wrap .subpage_lifecycle ul li:nth-child(4) {
  background-image: url("../img/lifecycle_img_all.svg");
}
#lifecycle .subpage_lifecycle_wrap .subpage_lifecycle ul li a {
  width: 100%;
  height: 100%;
}
#lifecycle .subpage_lifecycle_wrap .subpage_lifecycle ul li a p {
  color: #333;
  font-family: "Paperlogy";
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 500;
  line-height: 144.444%;
  letter-spacing: -0.54px;
}
#lifecycle .subpage_lifecycle_wrap .subpage_lifecycle ul li a .lifecycle_tit {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 130.769%;
  letter-spacing: 0;
}
#lifecycle .subpage_lifecycle_wrap .subpage_lifecycle ul li a .lifecycle_goto_btn {
  width: fit-content;
  display: flex;
  margin-top: 10px;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
#lifecycle .subpage_lifecycle_wrap .subpage_lifecycle ul li a .lifecycle_goto_btn .lifecycle_goto_btn_txt {
  color: #0B5B66;
  font-family: "Pretendard";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 142.857%;
  vertical-align: baseline;
}

@media (max-width: 1440px) {
  #lifecycle .subpage_lifecycle_wrap .subpage_lifecycle ul {
    gap: 20px;
  }
}
@media (max-width: 1023px) {
  #lifecycle .subpage_lifecycle_wrap .subpage_lifecycle ul {
    gap: 10px;
  }
  #lifecycle .subpage_lifecycle_wrap .subpage_lifecycle ul li {
    height: 350px;
    padding: 35px;
    background-size: 75%;
  }
}
@media (max-width: 640px) {
  #lifecycle .subpage_lifecycle_wrap .subpage_lifecycle ul {
    flex-direction: column;
  }
  #lifecycle .subpage_lifecycle_wrap .subpage_lifecycle ul li {
    width: 90%;
    height: auto;
    padding: 30px;
    background-position: right 20px center;
    background-size: 8rem;
  }
}