@charset "UTF-8";


.gallery_wrapper {
  max-width: 1200px;
  width:calc(100% - 40px);
  margin: 0 auto;
  padding-bottom: 100px;
}

.gallery_wrapper .title{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.gallery_wrapper .title h2{
  font-size: 24px;
  font-size: 1.5rem;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
}

.gallery_wrapper .title select{
  border: 1px solid #035735;
  padding: 5px;
  font-size: 20px;
  font-size: 1.25rem;
  -webkit-font-smoothing: antialiased;
}

.gallery_wrapper ul {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:20px;
}

.gallery_wrapper ul li figure{
  border-radius: 10px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border:1px solid #035735
}

.gallery_wrapper ul li figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery_wrapper ul li p {
  font-size: 14px;
  font-size: 0.875rem;
  -webkit-font-smoothing: antialiased;
  color: #000;
  margin: 10px 0 20px 0;
}

.gallery_wide_wrapper {
  max-width: 1200px;
  width:calc(100% - 40px);
  margin: 0 auto;
  padding-bottom: 100px;
}

.gallery_wide_wrapper ul {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap:20px;
}

.gallery_wide_wrapper ul li {
  
}

.gallery_wide_wrapper ul li figure {
  border:1px solid #035735
  border-radius: 10px;
  overflow: hidden;
}

.gallery_wide_wrapper ul li figure img{
  width: 100%;
  height: auto;
}


@media only screen and (max-width: 919px) {
  
  .gallery_wrapper ul {
    grid-template-columns: 1fr 1fr;
  }

  .gallery_wrapper ul li p {
    font-size: 12px;
    font-size: 0.75rem;
  }

  .gallery_wide_wrapper ul {
    grid-template-columns: 1fr;
  }

}