/* ============================================================
   symptoms-sports.css — スポーツ障害ページ専用スタイル
   lb-* クラスは symptoms-lowback.css から継承
============================================================ */

/* ===== チェックリスト：2カラム ===== */
.sp-check-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 32px;
}

@media (max-width: 640px) {
  .sp-check-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== スポーツ障害一覧セクション ===== */
.sp-injuries-sec {
  background: #EDE8E3;
}

.sp-injuries-category {
  font-size: .78rem;
  font-weight: 700;
  color: #2d6a4f;
  letter-spacing: .12em;
  text-transform: uppercase;
  border-left: 3px solid #2d6a4f;
  padding-left: .75rem;
  margin: 2.8rem 0 1.2rem;
}

.sp-injuries-category:first-of-type {
  margin-top: 0;
}

/* ===== 障害カードグリッド ===== */
.sp-injury-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: .8rem;
}

@media (max-width: 960px) {
  .sp-injury-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 580px) {
  .sp-injury-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== 障害カード ===== */
.sp-injury-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 20px 18px;
  border: 1px solid #e0ece6;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sp-injury-card-wide {
  grid-column: span 1;
}

@media (min-width: 961px) {
  .sp-injury-card-wide {
    grid-column: span 1;
  }
}

.sp-injury-header {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.sp-injury-name {
  font-size: .95rem;
  font-weight: 700;
  color: #1a3a2a;
  margin: 0;
  line-height: 1.4;
}

/* ===== タグ ===== */
.sp-injury-tag {
  font-size: .65rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: .04em;
  white-space: nowrap;
}

.sp-tag-green {
  background: #e0f0e8;
  color: #1e5c3a;
}

.sp-tag-blue {
  background: #deeaf8;
  color: #1e4a7a;
}

.sp-tag-teal {
  background: #daf0ee;
  color: #1a5552;
}

.sp-tag-purple {
  background: #ece8f5;
  color: #4a2d7a;
}

.sp-tag-gold {
  background: #f5eedc;
  color: #7a5a1a;
}

.sp-tag-orange {
  background: #fef0e0;
  color: #8a4a10;
}

/* ===== 障害カード内のdl ===== */
.sp-injury-dl {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.sp-injury-dl dt {
  font-size: .7rem;
  font-weight: 700;
  color: #2d6a4f;
  letter-spacing: .04em;
  margin-top: 6px;
}

.sp-injury-dl dt:first-child {
  margin-top: 0;
}

.sp-injury-dl dd {
  font-size: .8rem;
  color: #3a4a3f;
  line-height: 1.7;
  margin: 0;
  padding-left: .5rem;
  border-left: 2px solid #e0ece6;
}

/* ===== 医師の同意が必要な旨の強調ボックス ===== */
.sp-notice-important {
  background: #fff8ee;
  border-color: #e8c870;
}

/* ===== 免責セクション ===== */
.sp-disclaimer-sec {
  background: #fefdf8;
  border-top: 1px solid #e8e0cc;
  padding: 2.4rem 0;
}

.sp-disclaimer-box {
  background: #fffbf0;
  border: 1px solid #e8d9a0;
  border-radius: 10px;
  padding: 1.4rem 1.6rem;
}

.sp-disclaimer-title {
  font-size: .78rem;
  font-weight: 700;
  color: #7a6a2a;
  letter-spacing: .06em;
  margin: 0 0 .7rem;
  text-transform: uppercase;
}

.sp-disclaimer-box p {
  font-size: .78rem;
  color: #7a6a2a;
  line-height: 1.75;
  margin: 0 0 .5rem;
}

.sp-disclaimer-box p:last-child {
  margin-bottom: 0;
}

/* ===== 関連ページリンク ===== */
.sp-related-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ===== FAQ アコーディオン（骨折ページと共通） ===== */
.fx-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fx-faq-item {
  background: #ffffff;
  border: 1px solid #dceae2;
  border-radius: 12px;
  overflow: hidden;
}

.fx-faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 1.1rem 1.4rem;
  font-size: .9rem;
  font-weight: 500;
  color: #1a3a2a;
  line-height: 1.6;
}

.fx-faq-item summary::-webkit-details-marker {
  display: none;
}

.fx-faq-item summary::after {
  content: '+';
  margin-left: auto;
  flex-shrink: 0;
  font-size: 1.2rem;
  color: #2d6a4f;
  line-height: 1;
}

.fx-faq-item[open] summary::after {
  content: '−';
}

.fx-faq-body {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0 1.4rem 1.3rem;
}

.fx-faq-body span:last-child {
  font-size: .85rem;
  color: #2a4a3a;
  line-height: 1.85;
}
