#flower .section-block h2 {
  text-align: center;
}
@media screen and (max-width: 767px) {
  #flower .section-block .layout {
    display: flex;
    flex-direction: row;
  }
}
#flower .section-block .layout .box {
  width: 23%;
  margin-right: 2%;
  margin-bottom: 40px;
}
#flower .section-block .layout .box:nth-child(4n) {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  #flower .section-block .layout .box {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 20px;
  }
  #flower .section-block .layout .box:nth-child(2n) {
    margin-right: 0;
  }
}

.modal {
  max-width: 850px;
}
.modal .modal-content h3 {
  text-align: center;
  font-size: clamp(1.7rem, 1.4230769231rem + 0.3605769231vw, 2rem);
}
@media screen and (max-width: 767px) {
  .modal .modal-content h3 {
    font-size: 2rem;
  }
}
.modal .modal-content h3 {
  font-weight: 500;
  background-color: #E0D8C2;
  padding: 2px 30px;
  border-radius: 50px;
  margin-bottom: 10px;
}
.modal .modal-content .image {
  display: flex;
  gap: 5%;
  margin-bottom: 20px;
}
.modal .modal-content .image .main-image {
  width: 80%;
  max-width: 640px;
}
.modal .modal-content .image .thumbnail {
  width: 20%;
  display: flex;
  flex-direction: column;
  gap: 2%;
}
.modal .modal-content .image .thumbnail .image {
  cursor: pointer;
  transition: all 0.3s;
  margin-bottom: 0;
}
.modal .modal-content .image .thumbnail .image:hover {
  opacity: 0.8;
}
.modal .modal-content .text {
  display: flex;
  flex-wrap: wrap;
}
.modal .modal-content .text dt {
  width: 10%;
  background-color: #E0D8C2;
  text-align: center;
  margin-bottom: 4px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .modal .modal-content .text dt {
    width: 20%;
  }
}
.modal .modal-content .text dd {
  width: 40%;
  padding-left: 15px;
  margin-bottom: 4px;
  line-height: 1.8;
}
.modal .modal-content .text dd.wide {
  width: 90%;
}
@media screen and (max-width: 767px) {
  .modal .modal-content .text dd {
    width: 80% !important;
  }
}