@charset "UTF-8";
.p-expo__cntFlexImg_item {
  position: relative;
  display: inline-block;
  margin: 10px;
  overflow: hidden;
  cursor: pointer;
}

.p-expo__cntFlexImg_item img {
  display: block;
  height: auto;
  border-radius: 20px;
  transition: transform 0.3s ease;
}

/* ホバーで暗くする（シャドウ風） */
.p-expo__cntFlexImg_item:hover img {
  filter: brightness(0.5);
  transform: scale(1.05);
}

/* 中央のテキスト */
.hover-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
  letter-spacing: 0.08rem;
}

/* ホバーでテキスト表示 */
.p-expo__cntFlexImg_item:hover .hover-text {
  opacity: 1;
}

/* モーダルの背景 */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  align-items: center;
  justify-content: center;
}

/* モーダル内の画像表示 */
.modal-content {
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  max-width: 95rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  animation: popupIn 0.3s ease;
  position: relative;
}

.modal-content img {
  max-width: 100%;
  height: auto;
}

#modalCredit {
  position: absolute;
  width: 100%;
  bottom: 15px;
  left: 15px;
  color: #fff;
}

/* フェードインアニメ */
@keyframes popupIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.fadein-section {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fadein-section.show {
  opacity: 1;
  transform: translateY(0);
}

.video-wrapper iframe {
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  border: 0;
}

.link {
  text-decoration: underline;
}

.note {
  display: block;
  margin-top: 1em;
}

.border {
  padding: 1.25em;
  margin-top: 2rem;
}
@media screen and (max-width: 991px) {
  .border {
    padding: 0.25em;
  }
  .border .p-expo__bnr__inner__inner {
    width: 100%;
  }
  .border .p-expo__bnr__inner__inner h2 {
    font-size: 1.1em;
  }
  .border .p-expo__bnr__inner__inner img {
    width: 80%;
  }
  .border .p-expo__bnr__inner__inner .bold {
    font-size: 1.4rem;
    margin-bottom: 1rem;
  }
}/*# sourceMappingURL=expo.css.map */