.cherry-blossom-container {
  position: relative;
  height: 100%; 
  width: 100%; 
  overflow: hidden; 
}


.petal {
  position: absolute;
  background-color: #ffc0cb; 
  border-radius: 150% 0 150% 0;
  animation: animate-petal 10s linear;
}

.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);
  z-index: 0;
}


@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);
  }
}

.insta-container{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  margin: 0;
  padding: 0;
}
.insta-logo{
  text-align: center;
  position: relative;
  z-index: 1;
}
.hoshi{
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .insta-img{
    width: 20%;
  }
}
@media screen and (max-width: 767px) {
  .insta-img{
    width: 40%;
  }
}
.insta-container p{
  margin: 0;
  padding: 0;
  width: 25%;
  height: 25%;
  background-color: #FCEAFD;
}
.insta-container p a{
  position: relative;
  display: flex;
  padding-top: 100%;
  text-align: center;
  vertical-align: middle;
  align-items: center;
  justify-content: center;
  z-index: 3;
}
.insta-photo{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: cover no-repeat;
}




.insta_list{
  display: flex;
  flex-wrap: wrap;
  /* gap: 20px; */
  margin: 20px 0;
  list-style: none;
}

.insta_list li{
  position: relative;
  width: calc((100% - 40px)/4);
}

@media screen and (max-width: 750px){
  .insta_list li{
      width: calc((100% - 20px)/4);
  }
}

.insta_list li::before{
	content: "";
	display: block;
	padding-top: 100%;
}

.insta_list a{
	position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
}

.insta_list img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insta_btn{
    background-color: #ff717b;
    padding: .5em 1em;
    width: fit-content;
    margin: 0 auto;
    cursor: pointer;
    transition: .3s
}

.insta_btn a{
    color: #fff;
    text-decoration: none;
}

.insta_btn:hover{
    background-color: #ffaeb4;
}

