/* ════════════════════════════════════
   特定看護塾ページ固有スタイル
════════════════════════════════════ */

/* ── PLANS ── */
.plans-section {
  background: #0e1525;
  padding: 6rem 0;
}
.plans-section .sec-header .pill { border-color: rgba(88,195,232,.4); color: var(--teal); }
.plans-section .sec-title { color: #fff; }
.plans-section .sec-sub  { color: rgba(255,255,255,.6); }

.plan-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  align-items: start;
}

/* — 共通カード — */
.plan-box {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  transition: transform .3s, box-shadow .3s;
}
.plan-box:hover { transform: translateY(-6px); }

/* — 月額版（サブカード） — */
.plan-box.standard {
  background: #1a2540;
  border: 1.5px solid rgba(255,255,255,.08);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}
.plan-box.standard:hover { box-shadow: 0 20px 60px rgba(0,0,0,.4); }

/* — LMS版（おすすめカード） — */
.plan-box.featured {
  background: linear-gradient(145deg, #0f2a3a 0%, #0d1e2d 60%, #061520 100%);
  border: 1.5px solid rgba(88,195,232,.35);
  box-shadow: 0 0 0 1px rgba(88,195,232,.1), 0 20px 60px rgba(0,0,0,.5), 0 0 80px rgba(88,195,232,.08);
}
.plan-box.featured:hover { box-shadow: 0 0 0 1px rgba(88,195,232,.3), 0 28px 80px rgba(0,0,0,.5), 0 0 120px rgba(88,195,232,.14); }

/* おすすめバッジ */
.plan-badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: #fff;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .14em;
  padding: .3rem 1.2rem;
  border-radius: 0 0 12px 12px;
  white-space: nowrap;
}

.plan-head {
  padding: 2.5rem 2rem 1.75rem;
}
.plan-head .plan-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: .6rem;
}
.plan-type {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.3;
}
.plan-price-wrap {
  display: flex;
  align-items: baseline;
  gap: .35rem;
  margin-bottom: 1rem;
}
.plan-price-num {
  font-size: 2.8rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -.03em;
  line-height: 1;
}
.plan-price-unit {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  font-weight: 400;
}
.plan-note {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
}

.plan-divider {
  height: 1px;
  background: rgba(255,255,255,.07);
  margin: 0 2rem;
}

.plan-body { padding: 1.75rem 2rem 2rem; }

.plan-features {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  margin-bottom: 2rem;
}
.plan-feature {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
  color: rgba(255,255,255,.85);
}
.feat-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.feat-icon--yes { background: rgba(88,195,232,.2); }
.feat-icon--yes svg { stroke: var(--teal); }
.feat-icon--no  { background: rgba(239,68,68,.15); }
.feat-icon--no  svg { stroke: #ef4444; }

.plan-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: .95rem;
  border-radius: 100px;
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
  text-decoration: none;
  font-family: inherit;
}
.plan-cta-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 6px 24px rgba(88,195,232,.35);
}
.plan-cta-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(88,195,232,.45);
}
.plan-cta-outline {
  background: transparent;
  color: rgba(255,255,255,.8);
  border: 1.5px solid rgba(255,255,255,.2);
}
.plan-cta-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: rgba(88,195,232,.06);
}

@media (max-width: 768px) {
  .plan-compare { grid-template-columns: 1fr; max-width: 480px; }
}

/* ── COMPARE TABLE ── */
.tbl-wrap { overflow-x: auto; border-radius: 20px; box-shadow: var(--shadow); }
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: .9rem;
}
.compare-table thead tr { background: #0e1525; }
.compare-table th {
  padding: 1.25rem 1.5rem;
  text-align: center;
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .04em;
  white-space: nowrap;
}
.compare-table th:first-child { text-align: left; color: rgba(255,255,255,.6); width: 30%; }
.compare-table th small { display: block; font-size: .75rem; font-weight: 500; color: rgba(255,255,255,.6); margin-top: .2rem; }
.compare-table th.col-featured { background: rgba(88,195,232,.15); position: relative; }
.compare-table th.col-featured::after {
  content: 'おすすめ';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%) translateY(-100%);
  background: var(--teal);
  color: #fff;
  font-size: .6rem;
  padding: .2rem .6rem;
  border-radius: 4px 4px 0 0;
  letter-spacing: .1em;
  white-space: nowrap;
}
.compare-table tbody tr { border-bottom: 1px solid var(--gray-100); transition: background .15s; }
.compare-table tbody tr:hover { background: var(--gray-50); }
.compare-table td {
  padding: 1rem 1.5rem;
  color: var(--text);
  text-align: center;
}
.compare-table td:first-child {
  text-align: left;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text-muted);
}
.compare-table td.col-featured { background: rgba(88,195,232,.04); }
.val-yes   { color: var(--teal); font-weight: 700; }
.val-paid  { color: var(--teal); font-weight: 700; font-size: .85rem; }
.val-no    { color: #ef4444; font-weight: 700; }

/* ── CURRICULUM ── */
.curriculum-section { padding: 6rem 0; background: #f7f9fc; }

.curriculum-group { margin-bottom: 3rem; }
.curriculum-group-label {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.curriculum-group-label::before, .curriculum-group-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gray-200);
}
.curriculum-group-label::before { display: none; }

.curriculum-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.curr-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.75rem 1.5rem;
  border: 1.5px solid var(--gray-100);
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  transition: all .25s;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.curr-card:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 32px rgba(88,195,232,.12);
  transform: translateY(-3px);
}
.curr-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
}
.curr-icon--teal   { background: rgba(88,195,232,.12); color: var(--teal); }
.curr-icon--navy   { background: rgba(14,21,37,.07);   color: #0e1525; }
.curr-icon--green  { background: rgba(16,185,129,.1);  color: var(--green); }
.curr-icon--amber  { background: rgba(245,158,11,.1);  color: var(--amber); }
.curr-icon--red    { background: rgba(239,68,68,.08);  color: var(--red); }
.curr-icon--purple { background: rgba(139,92,246,.08); color: #8b5cf6; }

.curr-content { flex: 1; min-width: 0; }
.curr-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: .4rem;
}
.curr-desc {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.curriculum-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  margin-top: 2.5rem;
  padding: 1rem 1.5rem;
  background: rgba(88,195,232,.07);
  border: 1px solid rgba(88,195,232,.2);
  border-radius: 12px;
  font-size: .875rem;
  color: var(--teal-dark);
  font-weight: 600;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 900px) { .curriculum-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .curriculum-grid { grid-template-columns: 1fr; } }

/* ── TESTIMONIALS ── */
.testimonials-section {
  background: #0e1525;
  padding: 6rem 0;
}
.testimonials-section .sec-header .pill { border-color: rgba(88,195,232,.4); color: var(--teal); }
.testimonials-section .sec-title { color: #fff; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.testi-card {
  background: #1a2540;
  border: 1.5px solid rgba(255,255,255,.07);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  transition: all .3s;
  display: flex;
  flex-direction: column;
}
.testi-card:hover {
  border-color: rgba(88,195,232,.3);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.3);
}

.testi-quote-mark {
  font-size: 4rem;
  line-height: 1;
  color: var(--teal);
  opacity: .25;
  font-family: Georgia, serif;
  margin-bottom: .5rem;
  letter-spacing: -.05em;
}

.testi-stars {
  display: flex;
  gap: .2rem;
  margin-bottom: 1rem;
}
.testi-stars svg { fill: #f59e0b; width: 14px; height: 14px; }

.testi-body {
  font-size: .9rem;
  color: rgba(255,255,255,.75);
  line-height: 1.85;
  flex: 1;
  margin-bottom: 1.5rem;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.07);
}
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.testi-name {
  font-size: .85rem;
  font-weight: 700;
  color: rgba(255,255,255,.9);
}
.testi-role {
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  margin-top: .1rem;
}

@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; } }
