.feature_202602_newlife{
    background:#f8d0db;
    border-radius: 10px;
}
.feature_202602_newlife h2 img{
    width:100%;
    border-radius: 10px 10px 0 0;
}
.feature_202602_newlife .special p{
    text-align: center;
}
.feature_202602_newlife .work h3{
    border-left: 10px solid #e89;
    color: #b34;
    font-size: 120%;
    padding: 3px 5px 0px;
    margin: 0 0 0 10px;
}
.feature_202602_newlife .work ul{
    display: flex;
    justify-content: space-around;
    padding:10px;
}
.feature_202602_newlife .work ul li{
    text-align: center;
    padding: 0.5vw 0.8vw 2.5vw;
}
.feature_202602_newlife .work ul li img{
    padding-bottom: 6px;
    border-radius: 50%;
}

@media screen and (max-width: 768px){
    .feature_202602_newlife .profile p:first-child{
        width: 40%;
        margin:3vw auto;
    }
    .feature_202602_newlife .work p{
        padding:2vw;
    }
    .feature_202602_newlife .work ul{
        flex-wrap: wrap;
    }
    .feature_202602_newlife .work ul li{
        width: 50%;
        padding: 1.5vw 3.8vw 4.5vw;
    }
}



.cherry-blossom-container {
  position: relative;
  width: 100%;
}

.petal {
  position: absolute;
  background-color: #ffc0cb;
  border-radius: 150% 0 150% 0;
  animation: animate-petal 10s linear;
  pointer-events: none;
}

.petal::after {
  content: "";
  position: absolute;
  top: -14%;
  left: -10%;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #ffc0cb;
  border-radius: 150% 0 150% 0;
  transform: rotate(15deg);
}

@keyframes animate-petal {
  0% {
    top: 0;
    opacity: 0;
    transform: rotate(0deg);
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    top: 100vh;
    transform: rotate(3000deg);
  }
}