/* recommendation.css */
.rec-intro { background: var(--cream); }
.rec-section { background: var(--white); }
.rec-dark { background: var(--blue-dark); }

.rec-lead {
  font-size: 18px; font-weight: 300; color: var(--dark);
  line-height: 2; letter-spacing: 0.03em; max-width: 720px;
}

.rec-card-grid {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-top: 56px;
}
.rec-card {
  background: var(--white); border: 1px solid rgba(0,61,128,0.1);
  border-radius: 4px; padding: 40px 32px; position: relative;
  transition: all 0.35s;
}
.rec-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,61,128,0.12);
  border-color: rgba(245,200,0,0.4);
}
.rec-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--gold); border-radius: 4px 4px 0 0;
}
.rec-card-label {
  font-family: 'Outfit', sans-serif; font-size: 9px; font-weight: 600;
  letter-spacing: 0.35em; color: var(--gold-dark); text-transform: uppercase;
  margin-bottom: 16px;
}
.rec-card-title {
  font-family: 'Noto Serif JP', serif; font-size: 20px; font-weight: 400;
  color: var(--blue-dark); margin-bottom: 20px; line-height: 1.5;
}
.rec-card-body { font-size: 13px; font-weight: 300; color: var(--mid); line-height: 2; }
.rec-card-body strong { color: var(--dark); font-weight: 500; display: block; margin-bottom: 6px; }

.rec-flow { margin-top: 64px; }
.rec-flow-steps {
  display: flex; gap: 0; position: relative; margin-top: 48px;
}
.rec-flow-step {
  flex: 1; text-align: center; position: relative;
}
.rec-flow-step:not(:last-child)::after {
  content: '›'; position: absolute; right: -12px; top: 24px;
  font-size: 24px; color: var(--gold); font-family: 'Cormorant Garamond', serif;
}
.rec-step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--blue-dark); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-family: 'Cormorant Garamond', serif; font-size: 20px;
  font-weight: 300; color: var(--gold);
}
.rec-step-title { font-size: 13px; font-weight: 500; color: var(--charcoal); margin-bottom: 8px; }
.rec-step-desc { font-size: 11px; font-weight: 300; color: var(--mid); line-height: 1.7; }

.rec-note-box {
  background: var(--cream); border-left: 4px solid var(--gold);
  padding: 28px 32px; border-radius: 0 4px 4px 0; margin-top: 48px;
}
.rec-note-box p { font-size: 13px; font-weight: 300; color: var(--mid); line-height: 2; }
.rec-note-box strong { color: var(--blue-dark); font-weight: 500; }

.rec-cta-box {
  display: flex; align-items: center; justify-content: space-between;
  gap: 40px; padding: 60px 72px; background: var(--cream);
  border: 1px solid rgba(245,200,0,0.3); border-radius: 4px;
  position: relative; overflow: hidden; margin-top: 80px;
}
.rec-cta-box::before {
  content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%;
  background: var(--gold);
}
.rec-cta-box .btn-secondary {
  color: var(--blue-dark);
  border-color: rgba(26,42,64,0.25);
}
.rec-cta-box .btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
}

@media (max-width:1024px) { .rec-card-grid { grid-template-columns: 1fr; } }
@media (max-width:768px) {
  .rec-flow-steps { flex-direction: column; gap: 24px; }
  .rec-flow-step::after { display: none; }
  .rec-cta-box { flex-direction: column; padding: 36px 24px; }
}
/* ============================================================
   出願書類ダウンロード（admission.css から共有）
   ============================================================ */
.download-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.download-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid rgba(0,61,128,0.12);
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s;
}
.download-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(0,61,128,0.1);
  transform: translateY(-2px);
}
.download-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-dark);
}
.download-label {
  font-family: 'Outfit', sans-serif;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--gold-dark);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.download-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--blue-dark);
  margin-bottom: 4px;
}
.download-note {
  font-size: 10px;
  font-weight: 300;
  color: var(--mid);
  letter-spacing: 0.02em;
}
.download-notes {
  padding: 24px 32px;
  background: var(--cream);
  border-radius: 4px;
}
.download-notes p {
  font-size: 12px;
  font-weight: 300;
  color: var(--mid);
  line-height: 2;
  margin-bottom: 4px;
}
.download-notes p:last-child { margin-bottom: 0; }

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