.image-wrap {
  width: calc(100% - 48px);
  margin-inline: 24px;
  overflow: hidden;

  > picture > img {
    width: 100%;
    transition: all 0.3s ease;
  }

  &:hover > picture > img {
    opacity: 0.8;
    transform: scale(1.03);
  }
}

@media (max-width: 768px) {
  .image-wrap {
    width: 100%;
    padding-inline: 5vw;
    margin-inline: initial;
  }
}

/* FAN CLUB Modal */
.btnP.fanclub-modal-open {
  cursor: pointer;
}

#FanclubModal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  margin: initial;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  overflow-y: scroll;
  overscroll-behavior-y: none;
  scrollbar-width: none;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s 0s ease;
}

#FanclubModal.active {
  pointer-events: initial;
  opacity: 1;
}

#FanclubModal::-webkit-scrollbar {
  display: none;
}

#FanclubModal::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: calc(100% + 1px);
}

#FanclubModal .modal-close {
  position: sticky;
  z-index: 9;
  top: 40px;
  left: calc(100% - 72px);
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
  border: 1px solid #d1ae73;
  transform: rotate(45deg);
  cursor: pointer;
}
@media screen and (max-width: 677px) {
  #FanclubModal .modal-close {
    top: 16px;
    left: calc(100% - 56px);
  }
}
#FanclubModal .modal-close::before,
#FanclubModal .modal-close::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  left: 25%;
  width: 18px;
  height: 4px;
  background-color: #d1ae73;
  border-radius: 4px;
}
#FanclubModal .modal-close::after {
  transform: rotate(90deg);
}

#FanclubModal .modal-frame {
  position: relative;
  width: 960px;
  margin: -24px auto 16px;
  background-color: rgba(56, 38, 24, 0.85);
  border: 1px solid #d1ae73;
  outline: 2px solid #d1ae73;
  outline-offset: 4px;
}
@media screen and (max-width: 677px) {
  #FanclubModal .modal-frame {
    width: calc(100% - 32px);
  }
  #FanclubModal .kei_top,
  #FanclubModal .kei_bottom {
    height: 36px;
  }
}

#FanclubModal .inner {
  padding-bottom: 48px;
}
@media screen and (max-width: 677px) {
  #FanclubModal .inner {
    padding-bottom: 24px;
  }
}

#FanclubModal .pushPoint,
#FanclubModal .st1 {
  text-align: center;
}

#FanclubModal .st2 {
  font-size: 18px;
}

#FanclubModal .min1 {
  padding-left: 1em;
  font-size: 14px;
  opacity: 0.6;
}
@media screen and (max-width: 677px) {
  #FanclubModal .min1 {
    padding-left: initial;
  }
}

#FanclubModal .image-wrap,
#FanclubModal .coming {
  padding: initial;
  margin: initial;
}

#FanclubModal .fanclub-info {
  display: grid;
  grid-template-columns: 360px 1fr;
  align-items: center;
  margin-inline: 24px;
  font-size: 16px;
  line-height: 1.5;
  border: 1px solid #d1ae73;
}
@media screen and (max-width: 677px) {
  #FanclubModal .fanclub-info {
    grid-template-columns: 1fr;
    margin-inline: 16px;
    padding-right: initial;
    font-size: 14px;
  }
}

#FanclubModal .text-wrap {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  padding-inline: 24px;
}

@media screen and (max-width: 677px) {
  #FanclubModal .text-wrap {
    row-gap: 8px;
    padding: 24px 16px;
  }
}

#FanclubModal .btnList {
  margin-top: initial;
}

#FanclubModal .text-link {
  text-decoration: underline;
}
