/* course.css — コース系ページ共通 + juku-course / pg-course / course / remuneration */

/* ===== Course Cards ===== */
.course-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
  border: 1px solid rgba(74,144,217,.06);
}
.course-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.course-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(74,144,217,.1), rgba(124,184,240,.08));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--secondary);
}
.course-card h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  color: var(--primary);
  font-size: 1.12em;
  margin-bottom: 10px;
}
.course-card p {
  font-size: .88em;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 14px;
}
.course-card__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.course-tag {
  display: inline-block;
  background: rgba(74,144,217,.08);
  color: var(--secondary);
  border: 1px solid rgba(74,144,217,.15);
  padding: 3px 12px;
  border-radius: var(--radius-full);
  font-size: .75em;
  font-weight: 600;
}
.course-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--secondary);
  text-decoration: none;
  font-weight: 600;
  font-size: .9em;
}
.course-card__link:hover { color: var(--primary); }

/* ===== Step list ===== */
.step-list {
  list-style: none;
  counter-reset: step-counter;
}
.step-list li {
  counter-increment: step-counter;
  padding: 18px 24px 18px 72px;
  position: relative;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  margin-bottom: 12px;
  font-size: .92em;
  color: var(--text);
  line-height: 1.8;
}
.step-list li::before {
  content: "0" counter(step-counter);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 800;
  font-size: .88em;
  line-height: 1;
}

/* ===== Price table ===== */
.price-section { background: var(--bg-alt); padding: 80px 0; }
.price-section-title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  font-size: 1.1em;
  margin: 36px 0 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(74,144,217,.08);
}
.price-section-title:first-of-type {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}
.scroll-hint {
  text-align: center;
  font-size: .78em;
  color: var(--text-light);
  margin-bottom: 8px;
  display: none;
}
.price-table-wrap {
  overflow-x: auto;
  margin-bottom: 8px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: .88em;
}
.price-table th,
.price-table td {
  padding: 14px 16px;
  text-align: center;
  border-bottom: 1px solid rgba(74,144,217,.06);
}
.price-table td { font-variant-numeric: tabular-nums; }
.price-table thead th {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  font-size: .85em;
  letter-spacing: .02em;
}
.price-table tbody tr:hover { background: rgba(74,144,217,.02); }
.price-table td:first-child {
  text-align: left;
  font-weight: 500;
  white-space: nowrap;
}
.price-note {
  text-align: center;
  font-size: .84em;
  color: var(--text-light);
  margin-top: 12px;
}

/* ===== Features check list ===== */
.check-list {
  list-style: none;
  padding: 0;
}
.check-list li {
  padding: 10px 0 10px 32px;
  position: relative;
  font-size: .92em;
  color: var(--text);
  line-height: 1.7;
  border-bottom: 1px solid rgba(74,144,217,.06);
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
  font-size: 1.1em;
}

/* ===== Info grid ===== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.info-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .3s, box-shadow .3s;
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.info-card__num {
  font-size: 2em;
  font-weight: 800;
  color: var(--secondary);
  font-family: "Zen Maru Gothic", sans-serif;
  margin-bottom: 4px;
}
.info-card__label {
  font-size: .82em;
  color: var(--text-light);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .info-grid { grid-template-columns: 1fr; }
  .scroll-hint { display: block; }
  .step-list li { padding-left: 60px; }
}
