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

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

.fc-ticket-text {
  width: 56%;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.4;
}

.fc-ticket-text p {
  padding: 2rem 0;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
}

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

/* ポップアップウィンドウ */
.popup-content {
  position: relative;
  width: 90%;
  max-width: 800px;
  transform: scale(0.8);
  transition: transform 0.3s ease-in-out;
  max-height: 80vh;
  background-image: url(../img/common/bg-purple.png);
  background-repeat: repeat-y;
  background-size: 50% auto;
  background-position: top right;
  background-color: #aa9dab;
}

/* ポップアップ内のスクロールエリア */
.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: #000;
  font-feature-settings: "palt";
}

.fanclub h1 {
  padding: 0 0 1em;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.2;
}

.fanclub h2 {
  border-left: #000 solid 4px;
  padding: 0 0 0 0.5em;
  margin: 0 0 .5em;
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
}

.fanclub p {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 14px;
}

.fanclub p.fc-note {
  font-size: 12px;
  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 0 0 5%;
    flex-wrap: wrap;
  }

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

  .fc-ticket-text {
    width: 100%;
    font-size: 3.8vw;
  }

  .fc-ticket-text p {
    padding: 1rem 0;
    font-size: 2.8vw;
  }

  .popup-content {
    width: 90%;
    border-radius: 15px;
  }

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

  .fanclub {
    margin: 0 2rem 2rem;
  }

  .fanclub h1 {
    padding: 0 0 1em;
    font-size: 4.2vw;
  }

  .fanclub h2 {
    font-size: 3.6vw;
  }

  .fanclub p {
    font-size: 3.2vw;
  }

  .fanclub p.fc-note {
    font-size: 2.8vw;
  }

  .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: 56%;
    font-weight: 600;
    font-size: 2vw;
    line-height: 1.4;
  }

  .fanclub h1 {
    font-size: 30px;
  }

  .fanclub h2 {
    font-size: 22px;
  }

  .fanclub p {
    font-size: 14px;
  }
}