/* ===== Program Page ===== */

.program-main { padding-top: 0; }

/* Hero */
.program-hero {
  background: var(--navy);
  color: var(--white);
  padding: clamp(72px, 9vw, 108px) clamp(20px, 6vw, 80px) clamp(60px, 7vw, 88px);
}
.program-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.program-hero .eyebrow {
  color: var(--green-mid);
  border-left-color: var(--green);
  margin-bottom: 16px;
}
.program-hero h1 {
  font-size: clamp(26px, 3.4vw, 44px);
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.25;
}
.program-hero-lead {
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  max-width: 620px;
  margin: 0;
  line-height: 1.9;
}

/* Section Base */
.program-section-wrap {
  padding: clamp(64px, 8vw, 104px) clamp(20px, 6vw, 80px);
}
.program-section-wrap.bg-light {
  background: var(--bg-light);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.program-section-wrap.bg-white { background: var(--white); }

.program-section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.program-section-head {
  margin-bottom: 40px;
}
.program-section-head .eyebrow {
  color: var(--green);
  border-left-color: var(--green);
  margin-bottom: 12px;
}
.program-section-head h2 {
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--ink);
}
.program-section-head p {
  color: var(--muted);
  font-size: 15px;
  margin: 0;
  line-height: 1.9;
  max-width: 720px;
}

/* Comparison Tables */
.program-table-wrap {
  margin-bottom: 40px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}
.program-table-wrap:last-child { margin-bottom: 0; }

.program-table-title {
  padding: 14px 20px;
  background: var(--bg-light);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.program-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}
.program-table th {
  padding: 12px 16px;
  text-align: center;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--line);
}
.program-table th.th-item {
  text-align: left;
  background: var(--bg-light);
  color: var(--muted);
  width: 38%;
}
.program-table th.th-standard {
  background: var(--white);
  color: var(--ink);
}
.program-table th.th-premium {
  background: var(--green);
  color: var(--white);
}

.program-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--line-light);
  vertical-align: middle;
}
.program-table tr:last-child td { border-bottom: none; }
.program-table td.td-item {
  font-weight: 700;
  color: var(--ink);
  background: var(--bg-light);
  font-size: 13px;
}
.program-table td.td-check { text-align: center; }
.program-table td.td-none { text-align: center; color: var(--line); }
.program-table td.td-option { text-align: center; color: var(--muted); font-size: 12px; }
.program-table td.td-text { color: var(--muted); font-size: 13px; }

.check-icon { color: var(--green); font-size: 16px; font-weight: 900; }
.none-icon { color: var(--line); font-size: 18px; }
.option-badge {
  display: inline-block;
  background: #fff8e1;
  color: #b07d00;
  font-size: 11px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}

/* Features Grid */
.program-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.feature-card-head {
  padding: 20px 24px 16px;
  border-bottom: 1px solid var(--line-light);
}
.feature-card-head.premium { background: var(--navy); }
.feature-card-head.standard { background: var(--bg-light); }

.feature-plan-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  margin-bottom: 10px;
}
.feature-plan-badge.standard {
  background: var(--green-light);
  color: var(--green);
}
.feature-plan-badge.premium {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}

.feature-card-head h3 {
  font-size: 17px;
  font-weight: 900;
  margin: 0;
}
.feature-card-head.standard h3 { color: var(--ink); }
.feature-card-head.premium h3 { color: var(--white); }

.feature-card-body { padding: 20px 24px; }
.feature-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
}
.feature-list li::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

.feature-card-cta {
  padding: 16px 24px 20px;
  border-top: 1px solid var(--line-light);
}
.feature-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 14px;
  transition: all 0.18s;
  text-align: center;
}
.feature-cta-btn.standard {
  background: var(--white);
  color: var(--green);
  border: 1.5px solid var(--green);
}
.feature-cta-btn.standard:hover {
  background: var(--green-light);
}
.feature-cta-btn.premium {
  background: var(--green);
  color: var(--white);
  border: none;
}
.feature-cta-btn.premium:hover {
  background: var(--green-dark);
  box-shadow: var(--shadow-sm);
}

/* Detail Cards */
.program-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.detail-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  box-shadow: var(--shadow-xs);
  transition: box-shadow 0.2s, transform 0.2s;
}
.detail-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.detail-card-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 14px;
}

.detail-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 8px;
}

.detail-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 12px;
}

.detail-freq {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  color: var(--green);
  background: var(--green-light);
  padding: 3px 10px;
  border-radius: 999px;
  letter-spacing: 0.06em;
}

/* CTA */
.program-cta-section {
  background: var(--navy);
  color: var(--white);
  padding: clamp(56px, 7vw, 88px) clamp(20px, 6vw, 80px);
  text-align: center;
}
.program-cta-inner { max-width: 680px; margin: 0 auto; }
.program-cta-inner h2 {
  font-size: clamp(20px, 2.6vw, 32px);
  font-weight: 900;
  margin-bottom: 14px;
  color: var(--white);
}
.program-cta-inner p {
  color: rgba(255,255,255,0.78);
  font-size: 15px;
  margin-bottom: 28px;
  line-height: 1.9;
}
.program-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
  font-size: 15px;
  border-radius: var(--radius-md);
  transition: all 0.2s;
}
.program-cta-btn:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Responsive */
@media (max-width: 900px) {
  .program-features-grid { grid-template-columns: 1fr; }
  .program-detail-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .program-table { font-size: 12px; }
  .program-table th, .program-table td { padding: 9px 10px; }
}


/*2026/06/29追加*/
.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 14px;
}

.program-table td:first-child {
    font-weight: 600;
}

.program-table th {
    background: var(--bg-section);
    border: 1px solid var(--line);
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    padding: 10px 16px;
    text-align: center;
}


.cell-center {
    text-align: center;
    color: var(--green);
    font-weight: 700;
}

.data-table td {
    border: 1px solid var(--line);
    padding: 10px 16px;
    vertical-align: middle;
}

section {
    padding: clamp(56px, 8vw, 100px) clamp(16px, 5vw, 56px);
}

.program-table-category {
    margin-top: 32px;
    font-size: 15px;
    color: var(--muted);
    font-weight: 700;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-xs);
}

.course-badge {
    color: var(--green);
    font-size: 14px;
    font-weight: 900;
}

a.button.primary {
  margin-top: 20px;
}

.detail-icon {
    color: var(--green-mid);
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 12px;
}