.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: 400;
  font-size: 18px;
  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: 12px;
  line-height: 1.6;
}

/* ポップアップの背景 */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  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;
}

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

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

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

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

.fanclub {
  font-feature-settings: normal;
  overflow-y: auto;
}

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

.fanclub h2 {
  margin: 0 0 .5em;
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
}

.fanclub p {
  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;
    flex-wrap: wrap;
  }

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

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

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

  .popup-content {
    width: 90%;
  }

  .popup-inner {
    padding: 2rem 5% 2rem;
  }

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

  .fanclub {
    margin: 0 0 2rem;
  }

  .fanclub-title {
    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) {
  .fanclub-cont {
    width: 80%;
  }

  .fc-ticket-text {
    font-size: 2.083vw;
  }

  .fc-ticket-text p {
    font-size: 1.563vw;
  }

  /* ポップアップの背景 */
  .popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    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;
  }

  .fanclub h1 {
    font-size: 2.865vw;
  }

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

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

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