/* ファンクラブセクション用スタイル */

/* プラン加入者一覧セクション */
.fc-section-subscribers-btn {
  display: inline-block;
  background-color: #10b981;
  color: white;
  font-weight: bold;
  font-size: 1rem;
  padding: 0.6rem 1.5rem;
  border-radius: 9999px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.fc-section-subscribers-btn i {
  margin-right: 8px;
}

/* サブアコーディオンセクション */
.fc-section-sub-accordion {
  margin-bottom: 15px;
}

.fc-section-sub-accordion-header {
  background: #f1f5f9;
  padding: 12px 15px;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #e2e8f0;
}

.fc-section-sub-accordion-header h4 {
  margin: 0;
  color: #ec4899;
  font-size: 1em;
}

.fc-section-sub-accordion-header h4 i {
  margin-right: 8px;
}

.fc-section-sub-accordion-icon {
  font-size: 1em;
  transition: transform 0.3s ease;
  color: #6b7280;
}

.fc-section-sub-accordion-content {
  display: none;
  padding: 15px;
  border: 1px solid #e2e8f0;
  border-top: none;
  border-radius: 0 0 6px 6px;
  background: rgba(255, 255, 255, 0.4);
}

.fc-section-sub-accordion-content.scrollable {
  max-height: 500px;
  overflow-y: auto;
}

