/* =========================================
   Player Card Display Plugin  styles
   野球チーム選手一覧スタイル
   ========================================= */

/* メインカラー */
:root {
  --player-card-accent: #17314c; /* ネイビー系（詳細ページ用） */
  --player-card-number: #0e719b; /* 青（背番号用） */
}

/* =========================================
   タブナビゲーション
   ========================================= */
.s-player-tabs-wrapper {
  max-width: 1100px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
}

.s-player-tabs-nav {
  display: flex !important;
  gap: 12px !important;
  padding: 20px 0 !important;
  margin-bottom: 40px !important;
}

.s-player-tab-btn {
  flex: 1 !important;
  padding: 12px 16px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  border: 2px solid #333333 !important;
  border-radius: 30px !important;
  background: #ffffff !important;
  color: #333333 !important;
  cursor: pointer !important;
  transition: all 0.25s ease !important;
  white-space: nowrap !important;
  text-align: center !important;
}

.s-player-tab-btn:hover {
  background: #f5f5f5 !important;
}

.s-player-tab-btn.s-tab-active {
  background: #0e6f9e !important;
  border-color: #0e6f9e !important;
  color: #ffffff !important;
}

.s-player-tab-btn.s-tab-active:hover {
  background: #0b5a80 !important;
  border-color: #0b5a80 !important;
}

/* タブコンテンツ */
.s-player-tabs-content {
  position: relative !important;
}

.s-player-tab-panel {
  display: none !important;
}

.s-player-tab-panel.s-tab-content-active {
  display: block !important;
}

.s-no-players {
  text-align: center !important;
  color: #666666 !important;
  padding: 40px 20px !important;
}

/* タブ見出し */
.s-tab-heading {
  font-size: 24px !important;
  font-weight: 700 !important;
  color: #1a1a1a !important;
  margin: 0 0 12px 0 !important;
  padding: 0 !important;
  line-height: 1.4 !important;
}

.s-tab-heading-line {
  width: 100% !important;
  height: 4px !important;
  background: #0e719b !important;
  margin-bottom: 40px !important;
}

/* タブ内の.s-wrapperはmarginをリセット */
.s-player-tab-panel .s-wrapper {
  margin: 0 auto 60px !important;
  padding: 0 !important;
}

/* タブレット対応 */
@media (max-width: 768px) {
  .s-player-tabs-nav {
    gap: 10px !important;
    padding: 16px !important;
  }

  .s-player-tab-btn {
    padding: 10px 24px !important;
    font-size: 14px !important;
  }
}

/* スマホ対応 */
@media (max-width: 599px) {
  .s-player-tabs-wrapper {
    padding: 0 12px !important;
  }

  .s-player-tabs-nav {
    flex-wrap: wrap !important;
    gap: 8px !important;
    padding: 12px 0 !important;
    margin-bottom: 24px !important;
  }

  .s-player-tab-btn {
    flex: 0 0 calc(50% - 4px) !important;
    padding: 10px 12px !important;
    font-size: 13px !important;
    border-width: 1.5px !important;
  }
}

/* =========================================
   PC用リスト形式
   ========================================= */
.s-list-wrapper {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  max-width: 1100px !important;
  margin: 0 auto 60px !important;
}

.s-list-item {
  display: flex !important;
  align-items: flex-start !important;
  padding: 12px 50px 12px 24px !important;
  background: #ffffff !important;
  border: 1px solid #e0e0e0 !important;
  border-top: none !important;
  text-decoration: none !important;
  color: inherit !important;
  transition: background 0.2s ease !important;
  position: relative !important;
}

.s-list-item::after {
  content: ">" !important;
  position: absolute !important;
  right: 24px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  font-size: 24px !important;
  font-weight: 300 !important;
  color: #cccccc !important;
}

.s-list-item:first-child {
  border-top: 1px solid #e0e0e0 !important;
}

.s-list-item:hover {
  background: #f8f8f8 !important;
}

.s-list-wrapper .s-list-item .s-list-image {
  width: 70px !important;
  min-width: 70px !important;
  flex-shrink: 0 !important;
  margin-right: 24px !important;
  overflow: visible !important;
  height: auto !important;
}

.s-list-wrapper .s-list-item .s-list-image img,
.s-list-wrapper .s-list-item .s-list-image img.s-list-img,
.s-list-wrapper .s-list-item img.s-list-img {
  width: 70px !important;
  height: auto !important;
  max-height: none !important;
  max-width: none !important;
  min-height: 0 !important;
  object-fit: contain !important;
  object-position: top center !important;
  display: block !important;
  clip: auto !important;
  aspect-ratio: auto !important;
}

.s-list-main {
  width: 140px !important;
  flex-shrink: 0 !important;
  margin-right: 30px !important;
}

.s-list-number-grade {
  display: flex !important;
  align-items: baseline !important;
  gap: 10px !important;
  margin-bottom: 4px !important;
}

.s-list-number {
  font-size: 42px !important;
  font-weight: 900 !important;
  color: #1a1a1a !important;
  line-height: 1 !important;
}

.s-list-grade {
  font-size: 18px !important;
  font-weight: 500 !important;
  color: #1a1a1a !important;
}

.s-list-name {
  font-size: 26px !important;
  font-weight: 700 !important;
  color: #1a1a1a !important;
  letter-spacing: 0.05em !important;
}

.s-list-details {
  flex: 1 !important;
  padding-top: 14px !important;
}

.s-list-info-line {
  font-size: 18px !important;
  color: #666666 !important;
  margin-bottom: 10px !important;
  line-height: 1.6 !important;
  word-break: keep-all !important;
  overflow-wrap: break-word !important;
}

.s-list-appeal {
  font-size: 18px !important;
  color: #666666 !important;
  margin-bottom: 10px !important;
  line-height: 1.6 !important;
  word-break: keep-all !important;
  overflow-wrap: break-word !important;
}

/* =========================================
   一覧のグリッドレイアウト（モバイル用）
   ========================================= */
.s-wrapper {
  display: none !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 40px 30px !important;
  max-width: 1100px !important;
  margin: 0 auto 60px !important;
  padding: 0 20px !important;
}

/* PC/モバイル切り替え - PCではリスト形式、モバイルではカード形式 */
@media (min-width: 901px) {
  .s-list-wrapper {
    display: flex !important;
  }
  .s-wrapper {
    display: none !important;
  }
}

@media (max-width: 900px) {
  .s-list-wrapper {
    display: none !important;
  }
  .s-wrapper {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px 20px !important;
  }
}

@media (max-width: 599px) {
  .s-wrapper {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px 16px !important;
    padding: 0 12px !important;
  }
}

/* =========================================
   選手カード本体
   ========================================= */
.s-pro-container {
  display: block !important;
  text-decoration: none !important;
  color: inherit !important;
  position: relative !important;
  transition: transform 0.25s ease !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  overflow: visible !important;
  padding: 0 !important;
  padding-top: 80px !important; /* 画像はみ出し用スペース */
}

.s-pro-container:hover {
  transform: translateY(-4px) !important;
}

.s-pro-container.s-staff-card {
  /* スタッフ用（将来変更可能） */
}

.s-pro-container.s-staff-card:hover .s-pro-inner::before {
  background: #0f7cab !important;
}

/* 内側ラッパー - ::beforeで白背景を作成 */
.s-pro-inner {
  display: flex !important;
  flex-direction: column !important;
  position: relative !important;
  height: auto !important;
}

.s-pro-inner::before {
  content: "" !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: calc(100% + 20px) !important; /* 上に20pxはみ出す */
  background: #ffffff !important;
  border-radius: 8px !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1) !important;
  z-index: 0 !important;
  transition: background 0.25s ease !important;
}

/* 選手情報エリア（名前・ローマ字・番号） */
.s-pro-info {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  padding-right: 50% !important;
  min-height: 80px !important;
  background: transparent !important;
  padding-left: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 20px !important;
  margin-left: -25px !important;
  position: relative !important;
  z-index: 1 !important;
}

/* 名前（日本語） */
.s-pro-h3.s-name {
  font-size: 22px !important;
  font-weight: 900 !important;
  color: #1a1a1a !important;
  letter-spacing: 0.08em !important;
  margin: 0 0 4px 0 !important;
  line-height: 1.3 !important;
  text-align: left !important;
  background: transparent !important;
}

/* ローマ字 */
.s-pro-romaji {
  font-size: 11px !important;
  font-weight: 600 !important;
  color: #555 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  margin: 0 !important;
  line-height: 1.2 !important;
}

/* 背番号（大きく表示） */
.s-pro-number {
  font-size: 80px !important;
  font-weight: 900 !important;
  color: var(--player-card-number) !important;
  line-height: 0.85 !important;
  margin-top: 5px !important;
  letter-spacing: -0.02em !important;
  background: transparent !important;
}

/* 画像（右側に配置、白枠からはみ出す） */
.s-pro-img {
  position: absolute !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 65% !important;
  height: auto !important;
  max-height: 250px !important;
  display: block !important;
  object-fit: contain !important;
  object-position: bottom right !important;
  border-radius: 0 !important;
  z-index: 2 !important;
}

/* 下部のカラー帯エリア（非表示） */
.s-pro-p {
  display: none !important;
}

/* 矢印（非表示） */
.s-pro-arrow {
  display: none !important;
}

/* テキストグループ */
.s-pro-text {
  display: contents !important;
}

/* =========================================
   レスポンシブ調整
   ========================================= */
@media (max-width: 768px) {
  .s-pro-container {
    padding-top: 70px !important;
  }
  .s-pro-inner::before {
    height: calc(100% + 15px) !important;
  }
  .s-pro-info {
    padding-right: 45% !important;
    min-height: 70px !important;
    padding-left: 16px !important;
    padding-bottom: 16px !important;
  }
  .s-pro-h3.s-name {
    font-size: 18px !important;
  }
  .s-pro-romaji {
    font-size: 10px !important;
  }
  .s-pro-number {
    font-size: 60px !important;
  }
  .s-pro-img {
    width: 60% !important;
    max-height: 200px !important;
  }
}

@media (max-width: 599px) {
  .s-pro-container {
    padding-top: 50px !important;
  }
  .s-pro-inner::before {
    height: calc(100% + 15px) !important;
  }
  .s-pro-info {
    padding-right: 40% !important;
    min-height: 60px !important;
    padding-left: 12px !important;
    padding-bottom: 12px !important;
  }
  .s-pro-h3.s-name {
    font-size: 14px !important;
    letter-spacing: 0.05em !important;
  }
  .s-pro-romaji {
    font-size: 8px !important;
  }
  .s-pro-number {
    font-size: 48px !important;
    margin-top: -5px !important;
  }
  .s-pro-img {
    width: 55% !important;
    max-height: 150px !important;
  }
}

@media (max-width: 380px) {
  .s-pro-container {
    padding-top: 40px !important;
  }
  .s-pro-inner::before {
    height: calc(100% + 15px) !important;
  }
  .s-pro-h3.s-name {
    font-size: 12px !important;
  }
  .s-pro-romaji {
    font-size: 7px !important;
  }
  .s-pro-number {
    font-size: 40px !important;
  }
  .s-pro-img {
    max-height: 120px !important;
  }
}

/* =========================================
   選手詳細ページ（ヒーロースタイル）
   ========================================= */

.s-player-hero {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-top: 150px;
  padding-bottom: 0;
  z-index: 1;
}

/* 下から上への黒グラデーションマスク */
.s-player-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to top, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0) 100%);
  z-index: 2;
  pointer-events: none;
}

/* 背景のローマ字テキスト */
.s-player-hero-text {
  position: absolute;
  top: 45%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
}

.s-player-hero-text span {
  font-size: clamp(80px, 15vw, 280px);
  font-weight: 900;
  color: #0e719b;
  line-height: 0.85;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  animation: scaleIn 0.8s ease-out forwards;
}

.s-player-hero-text span:nth-child(2) {
  animation-delay: 0.1s;
}

@keyframes scaleIn {
  0% {
    transform: scale(1.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* 選手画像（前面） */
.s-player-hero-image {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.s-player-detail-img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  display: block;
}

/* 左下の情報 */
.s-player-hero-info {
  position: absolute;
  bottom: 40px;
  left: 15%;
  z-index: 3;
}

.s-player-hero-number {
  font-size: 180px;
  font-weight: 900;
  color: #0e719b;
  line-height: 0.85;
  letter-spacing: -0.02em;
}

.s-player-hero-name {
  font-size: 36px;
  font-weight: 700;
  color: #0e719b;
  margin: 10px 0 0 0;
  letter-spacing: 0.1em;
}

/* ローマ字名（モバイル専用、デスクトップでは非表示） */
.s-player-hero-romaji {
  display: none;
}

/* 左上ロゴ */
.s-player-hero-logo {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 10;
}

.s-player-hero-logo img {
  width: 60px;
  height: auto;
  display: block;
}

/* 右下のレーダーチャート */
.s-player-hero-stats {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 10;
  width: 180px;
  height: 180px;
}

.s-radar-chart {
  width: 100%;
  height: 100%;
}

/* 戻るボタン（×） */
.s-player-hero-back {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 10;
  font-size: 40px;
  color: #ffffff;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  line-height: 1;
}

.s-player-hero-back:hover {
  opacity: 1;
  color: #ffffff;
}

/* タブレット対応 */
@media (max-width: 768px) {
  .s-player-hero {
    height: 70vh;
    padding-top: 80px;
  }

  .s-player-hero-text span {
    font-size: 22vw;
  }

  .s-player-detail-img {
    max-width: 400px;
  }

  .s-player-hero-info {
    bottom: 30px;
    left: 30px;
  }

  .s-player-hero-number {
    font-size: 120px;
  }

  .s-player-hero-name {
    font-size: 28px;
  }

  .s-player-hero-back {
    top: 20px;
    right: 20px;
    font-size: 32px;
  }

  .s-player-hero-logo {
    top: 20px;
    left: 20px;
  }

  .s-player-hero-logo img {
    width: 50px;
  }

  .s-player-hero-stats {
    bottom: 20px;
    right: 20px;
    width: 150px;
    height: 150px;
  }
}

/* スマホ対応 - フルスクリーンデザイン */
@media (max-width: 480px) {
  /* ヒーローセクション：固定解除、フルスクリーン */
  .s-player-hero {
    position: relative;
    height: auto;
    min-height: 0;
    padding-top: 0;
    display: block;
    background: #1a1a1a;
  }

  /* 背景のローマ字テキスト：非表示 */
  .s-player-hero-text {
    display: none;
  }

  /* 選手画像：通常フローで配置 */
  .s-player-hero-image {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }

  .s-player-detail-img {
    display: block !important;
    width: auto !important;
    height: 80vh !important;
    min-height: 80vh !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: top center !important;
  }

  /* 左下の情報：番号とローマ字名 */
  .s-player-hero-info {
    position: absolute;
    bottom: 30px;
    left: 20px;
    z-index: 5;
  }

  .s-player-hero-number {
    font-size: 80px;
    font-weight: 900;
    color: #ffffff;
    line-height: 0.9;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
  }

  /* 日本語名を非表示、ローマ字名を表示（PHPで追加必要） */
  .s-player-hero-name {
    display: none;
  }

  /* ローマ字名（モバイル用） */
  .s-player-hero-romaji {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: 0.05em;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
    margin-top: 5px;
  }

  .s-player-hero-romaji span {
    display: block;
  }

  /* ロゴ非表示 */
  .s-player-hero-logo {
    display: block;
    top: 15px;
    left: 15px;
  }

  .s-player-hero-logo img {
    width: 55px;
  }

  /* 戻るボタン */
  .s-player-hero-back {
    top: 20px;
    right: 20px;
    font-size: 32px;
    color: #ffffff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
  }

  .s-player-hero-stats {
    display: none;
  }

  .s-radar-chart text {
    font-size: 9px !important;
  }
}

/* =========================================
   プロフィールセクション
   ========================================= */
.s-player-profile-section {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 500px;
  margin-top: 100vh;
  z-index: 2;
}

/* 左側：テーマカラー背景 */
.s-player-profile-left {
  width: 50%;
  box-sizing: border-box;
  background: var(--vk-color-primary);
  color: #ffffff;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.s-profile-header {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}

.s-profile-name {
  font-size: 48px;
  font-weight: 900;
  margin: 0 0 10px 0 !important;
  padding: 0 !important;
  letter-spacing: 0.05em;
  line-height: 1.2;
  color: #ffffff !important;
}

.s-profile-romaji {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-bottom: 25px;
  opacity: 0.9;
}

.s-profile-position-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.s-profile-position,
.s-profile-throwing {
  display: inline-block;
  padding: 8px 20px;
  border: 2px solid #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

/* レーダーチャート（プロフィール用） */
.s-profile-chart {
  width: 460px;
  height: 460px;
  margin-top: auto;
}

.s-radar-chart-profile {
  width: 100%;
  height: 100%;
}

/* 右側：白背景 */
.s-player-profile-right {
  width: 50%;
  box-sizing: border-box;
  background: #ffffff;
  color: #333333;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.s-profile-info-list {
  width: 100%;
}

.s-profile-info-row {
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid #e0e0e0;
}

.s-profile-info-row:first-child {
  border-top: 1px solid #e0e0e0;
}

.s-profile-info-label {
  width: 150px;
  font-size: 14px;
  font-weight: 700;
  color: #666666;
  flex-shrink: 0;
}

.s-profile-info-value {
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  flex: 1;
}

/* タブレット対応 */
@media (max-width: 768px) {
  .s-player-profile-section {
    flex-direction: column;
    margin-top: 70vh;
  }

  .s-player-profile-left,
  .s-player-profile-right {
    width: 100%;
    padding: 40px 30px;
    align-items: center;
  }

  .s-profile-name {
    font-size: 36px;
  }

  .s-profile-chart {
    width: 220px;
    height: 220px;
    margin: 30px auto 0;
  }

  .s-profile-info-label {
    width: 120px;
  }
}

/* スマホ対応 */
@media (max-width: 480px) {
  .s-player-profile-section {
    margin-top: 0;
  }

  .s-player-profile-left,
  .s-player-profile-right {
    padding: 30px 20px;
  }

  .s-profile-name {
    font-size: 28px;
  }

  .s-profile-romaji {
    font-size: 14px;
  }

  .s-profile-position-box {
    flex-wrap: wrap;
  }

  .s-profile-position,
  .s-profile-throwing {
    padding: 6px 14px;
    font-size: 12px;
  }

  .s-profile-chart {
    width: 100%;
    height: auto;
    aspect-ratio: 240 / 195;
    margin-top: 20px;
  }

  .s-radar-chart-profile text {
    font-size: 13px !important;
  }

  .s-profile-info-row {
    flex-direction: column;
    gap: 5px;
    padding: 15px 0;
  }

  .s-profile-info-label {
    width: auto;
    font-size: 12px;
  }

  .s-profile-info-value {
    font-size: 15px;
  }
}

/* =========================================
   リーグ成績セクション
   ========================================= */
.s-player-stats-section {
  position: relative;
  z-index: 3;
  width: 100%;
  background: #f5f5f5;
  padding: 60px 20px;
}

.s-stats-container {
  max-width: 800px;
  margin: 0 auto;
}

.s-stats-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 20px 0;
  padding-bottom: 15px;
  border-bottom: 3px solid #0e719b;
}

.s-stats-content {
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
}

@media (max-width: 480px) {
  .s-player-stats-section {
    padding: 40px 20px;
  }

  .s-stats-title {
    font-size: 20px;
  }

  .s-stats-content {
    font-size: 14px;
  }
}

/* =========================================
   Q&Aセクション
   ========================================= */
.s-player-qa-section {
  position: relative;
  z-index: 3;
  display: flex;
  width: 100%;
  min-height: 400px;
  background: #ffffff;
}

/* 左側：タイトルと画像 */
.s-qa-left {
  width: 50%;
  box-sizing: border-box;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.s-qa-title {
  display: none;
}

.s-qa-image {
  width: 100%;
  max-width: 450px;
}

.s-qa-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* 右側：Q&Aリスト */
.s-qa-right {
  width: 50%;
  box-sizing: border-box;
  padding: 60px 50px;
  display: flex;
  align-items: center;
}

.s-qa-list {
  width: 100%;
}

.s-qa-row {
  display: flex;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid #e0e0e0;
}

.s-qa-row:first-child {
  border-top: 1px solid #e0e0e0;
}

.s-qa-number {
  width: 32px;
  height: 32px;
  background: #0e719b;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  margin-right: 20px;
}

.s-qa-question {
  width: 280px;
  font-size: 15px;
  font-weight: 500;
  color: #666666;
  flex-shrink: 0;
  padding-right: 20px;
}

.s-qa-answer {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
}

/* タブレット対応 */
@media (max-width: 768px) {
  .s-player-qa-section {
    flex-direction: column;
  }

  .s-qa-left,
  .s-qa-right {
    width: 100%;
    padding: 40px 30px;
  }

  .s-qa-left {
    flex-direction: row;
    align-items: center;
    gap: 30px;
  }

  .s-qa-title {
    font-size: 28px;
    margin: 0;
  }

  .s-qa-image {
    max-width: 150px;
  }

  .s-qa-question {
    width: 200px;
  }
}

/* スマホ対応 */
@media (max-width: 480px) {
  .s-qa-left {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 30px 20px;
  }

  .s-qa-title {
    display: block;
    font-size: 20px;
    border-top: 3px solid #1a1a1a;
    padding-top: 10px;
    margin: 0;
  }

  .s-qa-right {
    padding: 20px;
  }

  .s-qa-image {
    max-width: 140px;
    flex-shrink: 0;
  }

  .s-qa-row {
    flex-wrap: wrap;
    padding: 15px 0;
  }

  .s-qa-number {
    width: 28px;
    height: 28px;
    font-size: 12px;
    margin-right: 12px;
  }

  .s-qa-question {
    width: calc(100% - 40px);
    font-size: 13px;
    padding-right: 0;
    margin-bottom: 8px;
  }

  .s-qa-answer {
    width: 100%;
    padding-left: 40px;
    font-size: 15px;
  }
}

/* =========================================
   フッター（固定ヒーローの上に表示）
   ========================================= */
body.single-player_card footer,
body.single-player_card .site-footer,
body.single-player_card #footer,
body.single-player_card .footer {
  position: relative;
  z-index: 4;
}