.fanclub-cont {
  width: 70%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: #fff;
}

.fc-ticket {
  width: 40%;
  margin: 0 5% 0 0;
}

.fc-ticket-text {
  width: 55%;
  font-size: var(--fs-lg);
  line-height: 1.6;
}

.fc-ticket-text p {
  padding: 2rem 0;
  font-weight: 400;
  font-size: var(--fs-base);
  line-height: 1.6;
}

.fc-button {
  width: 74%;
}

/* ポップアップの背景 */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s;
  z-index: 999999;
}

/* ポップアップウィンドウ */
.popup-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  transform: scale(0.8);
  transition: transform 0.3s ease-in-out;
  max-height: 80vh;
  border: var(--color) solid 1px;
  box-shadow: var(--shadow-glow);
  background-image: url(../img/common/bg-frame-top.png),url(../img/common/bg-frame-bottom.png);
  background-repeat: repeat-x;
  background-position: top center, bottom center;
  background-size: 60% auto;
  background-color: #000;
}

/* ポップアップ内のスクロールエリア */
.popup-inner {
  max-height: 80vh;
  overflow-y: auto;
}

/* 閉じるボタン */
.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

/* ポップアップ表示時のスタイル */
.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-overlay.active .popup-content {
  transform: scale(1);
}

.fanclub {
  margin: 4rem;
  font-feature-settings: normal;
  overflow-y: auto;
  color:  #fff;
  font-feature-settings: "palt";
}

.fanclub h1 {
  padding: 0 0 1em;
  font-weight: 600;
  font-size: var(--fs-heading-lg);
  line-height: 1.2;
}

.fanclub h2 {
  border-left:  #fff solid 4px;
  padding: 0 0 0 0.5em;
  margin: 0 0 .5em;
  font-weight: 600;
  font-size: var(--fs-subheading);
  line-height: 1;
}

.fanclub p {
  color:  #fff;
  font-size: var(--fs-base);
}

.fanclub p.fc-note {
  font-size: var(--fs-note);
  padding-left: 1em;
  text-indent: -1em;
}

.fanclub-btm {
  margin: 0 0 2em;
}

.fanclub-image {
  padding: 2rem 0;
}

.btn-margin {
  margin: 1.5rem 0;
}

@media screen and (min-width: 1px) and (max-width: 743px) {

  .fanclub-cont {
    width: 100%;
    padding: 0;
    flex-wrap: wrap;
  }

  .fc-ticket {
    width: 40%;
    margin: 0 auto 1rem;
  }

  .fc-ticket-text {
    width: 100%;
  }

  .fc-ticket-text p {
    padding: 1rem 0;
  }

  .popup-content {
    width: 90%;
  }

  .popup-close {
    top: 8px;
    right: 8px;
    width: 25px;
    height: 25px;
  }

  .fanclub {
    margin: 2rem;
  }

  .fanclub h1 {
    padding: 0 0 1em;
  }

  .fanclub-btm {
    margin: 0 0 1em;
  }

  .fanclub-image {
    padding: 1.5rem 0;
  }

  .btn-margin {
    margin: 1rem 0;
  }
}

@media screen and (min-width: 744px) and (max-width: 1024px) {

  .fc-ticket-text {
    width: 50%;
  }

  .fc-ticket {
    width: 40%;
    margin: 0 10% 0 0;
  }

}