@charset "UTF-8";

#flower .main_height_flower {
  min-height: 1200px;
}
#flower .section_title h2{
  padding-top: 80px;
}
#flower .flower_text {
margin-bottom: 100px;
text-align: left;
}
#flower .main_width {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#flower .flower_text p {
  font-size: 20px;
  font-weight: bold;
}
#flower .flower_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 50px;
  column-gap: 50px;
}
#flower .list img {
  width: 300px;
  height: 350px;
  border-radius: 50%;
  box-shadow: 6px 6px 20px 10px #F6F3F2;
}

@media only screen and (max-width: 768px) {
  #flower .main_height_flower {
    min-height: 1000px;
  }
  #flower .flower_text {
    margin-bottom: 30px;
    }    
  #flower .flower_text p {
    background-color: #fff;
    opacity: 0.9;
    border-radius: 20px;
    padding: 5px 37px;
    font-size: 16px;
    font-weight: normal;
  }
  #flower .flower_list {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 30px;
    column-gap: 20px;
  }
  #flower .list img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    box-shadow: 6px 6px 20px 10px #F6F3F2;
  }
}

@media only screen and (max-width: 375px) {
  #flower .main_height_flower {
    min-height: 800px;
  }
  #flower .flower_text p {
    padding: 5px 20px;
    font-size: 16px;
  }
  #flower .section_title h2 {
    padding-top: 40px;
  }
  #flower .flower_list {
    row-gap: 15px;
  }
  #flower .list img {
    width: 160px;
    height: 160px;
  }
}
