header {
  height: 100px;
}
main {
  display: flex;
}
main.index {
  min-height: 100vh;
  background-color: rgb(238, 243, 238);
  padding: 2rem 0;
}
main.about {
  min-height: 100vh;
  background-color: rgb(255, 255, 255);
  padding: 2rem 0;
}
main.graphic {
  min-height: 100vh;
  background-color: rgb(249, 252, 253);
  padding: 2rem 0;
}
main.movie {
  min-height: 100vh;
  background-color: rgb(255, 255, 255);
  padding: 2rem 0;
}
main.contact {
  min-height: 100vh;
  background-color: rgb(235, 217, 119);
  padding: 2rem 0;
}

footer {
  height: 200px;
  background-color: #000;
}
.container {
  max-width: 1600px;
}
.gallery-item {
  margin-bottom: 2rem;
}
.card {
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  cursor: pointer;
}
.card-img-wrapper {
  position: relative;
  padding-top: 75%; /* 4:3 비율 */
  overflow: hidden;
}
.card-img-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.card:hover .card-img-top {
  transform: scale(1.1);
}
.card-body {
  padding: 1.5rem;
  background-color: white;
}
.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.card-text {
  color: #666;
}
.modal-img {
  width: 100%;
  height: auto;
}
.modal-body {
  overflow: hidden;
}
/* 반응형 그리드 설정 */
@media (min-width: 1400px) {
  .gallery-item {
    width: 50%; /* 3열 */
  }
}
@media (min-width: 860px) and (max-width: 1399px) {
  .gallery-item {
    width: 50%; /* 2열 */
  }
}
@media (min-width: 500px) and (max-width: 859px) {
  .gallery-item {
    width: 100%; /* 2열 */
  }
}
@media (max-width: 499px) {
  .gallery-item {
    width: 100%; /* 1열 */
  }
}
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .mobile {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
}
@media (min-width: 769px) {
  .pc {
    display: block !important;
  }
  .mobile {
    display: none !important;
  }
}

/*=============figma====================== */
#wrap {
  width: 1200px;
  margin: auto;
}
.menu {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: flex-end;
}
.menu li {
  margin: 0 10px;
}
.card-img-wrapper {
  position: relative;
  padding-top: 75%; /* 4:3 비율 */
  overflow: hidden;
}
.card-img-wrapper2 {
  position: relative;
  padding-top: 60%; /* 4:3 비율 */
  overflow: hidden;
}
