/* ======================================================
CSS information

 File Name  : photo.css
 Style Info : 写真撮影
====================================================== */

.awards-wrap {
  gap: 2rem;
}

.award-card {
  gap: 0.8rem;
}

/* 768px以上 */
@media (width >= 48em) {

  .award-card  {
    grid-column: span 6;
  }

}

/* 1024px以上 */
@media (width >= 64em) {

  .award-card  {
    grid-column: span 4;
  }

}

.award-title {
  line-height: 1.4;
  font-size: 1.25rem;
  font-weight: 900;
}

.award-desc {
  line-height: 1.6;
  color: var(--text-sub);
  font-size: 0.9rem;
}

.pricing-main-panel::before {
  content: "SHOOTING FEE SYSTEM";
}

.gallery-swiper {
  padding-bottom: 50px;
  width: 100%;
}

.gallery-slide {
  width: 320px;
  height: 420px;
  background: #18181b;
  border-radius: 16px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s ease;
}

/* hover */
@media (any-hover: hover) {

  .gallery-slide:hover {
    transform: scale(1.02);
  }

}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-slide.swiper-slide-active .grayscale {
  filter: grayscale(0%) contrast(100%);
  transform: scale(1.02);
}

.gallery-nav-btn {
  z-index: 10;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  color: #fff;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-button-prev {
  left: 20px;
}

.gallery-button-next {
  right: 20px;
}

/* hover */
@media (any-hover: hover) {

  .gallery-nav-btn:hover {
    color: #0b0b0e;
    background: var(--accent-color);
    border-color: transparent;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  }

}

.gallery-nav-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.gallery-nav-btn.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}

.lightbox-modal {
  z-index: 9999;
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(11, 11, 14, 0.95);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.lightbox-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-img {
  max-width: 85vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.6);
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.lightbox-modal.active .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 3rem;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
}

/* hover */
@media (any-hover: hover) {

  .lightbox-close:hover {
    opacity: 1;
  }

}

.sbi_photo img {
  filter: grayscale(100%) contrast(120%) !important;
  transition: filter 0.6s ease, transform 0.6s ease !important;
}

/* hover */
@media (any-hover: hover) {

  .sbi_photo:hover img {
    filter: grayscale(0%) contrast(100%) !important;
  }

}
