/* ========== 規約ページ共通 ========== */
.legal-page {
  padding-top: 0;
}

/* ヘッダー */
.legal-header {
  background: linear-gradient(135deg, #FF6B9D, #FF8E72);
  padding: 40px 0 32px;
  text-align: center;
}

.back-link {
  display: inline-block;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  transition: opacity 0.2s;
}

.back-link:active {
  opacity: 0.7;
}

.legal-title {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.legal-date {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

/* 本文エリア */
.legal-body {
  padding: 32px 0 48px;
}

.legal-intro {
  font-size: 14px;
  color: #6B6B6B;
  line-height: 1.8;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 107, 157, 0.15);
}

/* セクション */
.legal-section {
  margin-bottom: 32px;
}

.legal-section h2 {
  font-size: 17px;
  font-weight: 700;
  color: #FF6B9D;
  margin-bottom: 14px;
  padding-left: 12px;
  border-left: 3px solid #FF6B9D;
}

.legal-section h3 {
  font-size: 15px;
  font-weight: 700;
  color: #2D2D2D;
  margin-bottom: 8px;
  margin-top: 12px;
}

.legal-section p {
  font-size: 14px;
  color: #2D2D2D;
  line-height: 1.8;
  margin-bottom: 10px;
}

.legal-section ul,
.legal-section ol {
  padding-left: 20px;
  margin-bottom: 12px;
}

.legal-section li {
  font-size: 14px;
  color: #2D2D2D;
  line-height: 1.8;
  margin-bottom: 6px;
}

.legal-section li strong {
  color: #2D2D2D;
}

/* 情報カード */
.legal-card {
  background: #fff;
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(255, 107, 157, 0.08);
}

.legal-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: #FF6B9D;
  margin: 0 0 6px;
}

.legal-card p {
  font-size: 13px;
  color: #6B6B6B;
  line-height: 1.7;
  margin: 0;
}

/* ハイライトブロック */
.legal-highlight {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  margin: 16px 0;
  border: 1.5px solid rgba(255, 107, 157, 0.2);
  box-shadow: 0 2px 12px rgba(255, 107, 157, 0.08);
}

.legal-highlight h3 {
  font-size: 15px;
  font-weight: 700;
  color: #FF6B9D;
  margin: 0 0 10px;
}

.legal-highlight h3:not(:first-child) {
  margin-top: 20px;
}

.legal-highlight p {
  font-size: 13px;
  line-height: 1.8;
}

.legal-highlight ul,
.legal-highlight ol {
  padding-left: 18px;
  margin-bottom: 8px;
}

.legal-highlight li {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 4px;
}

/* 注釈 */
.legal-note {
  font-size: 12px !important;
  color: #999 !important;
  margin-top: 4px;
}

.legal-note a {
  color: #FF6B9D;
  text-decoration: underline;
}

/* サブスク料金テーブル */
.plan-table {
  margin: 12px 0 16px;
}

.plan-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: #FFF5F8;
  border-radius: 10px;
  margin-bottom: 8px;
}

.plan-row.recommended {
  background: linear-gradient(135deg, rgba(255, 107, 157, 0.1), rgba(255, 142, 114, 0.1));
  border: 1.5px solid rgba(255, 107, 157, 0.3);
}

.plan-name {
  font-size: 14px;
  font-weight: 700;
  color: #2D2D2D;
}

.plan-price {
  font-size: 15px;
  font-weight: 700;
  color: #FF6B9D;
}

/* 解約ステップ */
.cancel-steps {
  counter-reset: cancel;
  list-style: none;
  padding-left: 0 !important;
}

.cancel-steps li {
  counter-increment: cancel;
  position: relative;
  padding-left: 36px;
  margin-bottom: 10px !important;
}

.cancel-steps li::before {
  content: counter(cancel);
  position: absolute;
  left: 0;
  top: 3px;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #FF6B9D, #FF8E72);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-align: center;
}

/* 現在のページリンク */
.footer-nav a.is-current {
  color: #FF6B9D;
  font-weight: 700;
}

/* ========== レスポンシブ ========== */
@media (min-width: 600px) {
  .legal-title {
    font-size: 28px;
  }

  .legal-section h2 {
    font-size: 19px;
  }
}
