/* ============================================================
   kosen-path.css — 高専卒キャリアパス（kosen固有オーバーライド）
   共通スタイルは css/common/path-base.css で定義。
   このファイルはkosen-pathのみの差分を記述する。
   ============================================================ */

/* --- Stage Description: strong = ゴールド強調 --- */
.kosen-path .path-base__stage-desc strong {
  color: var(--c-gold);
  font-weight: 700;
}

/* --- Branch Content: flexラッパー（kosenはicon+content分離構造） --- */
.path-base__branch-content {
  flex: 1;
}

/* --- Note: kosen独自のリッチ構造（icon + body 2カラム） --- */
.kosen-path .path-base__note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 28px;
  border-radius: 12px;
}

.kosen-path__note-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(201, 168, 76, 0.12);
  color: var(--c-gold);
  font-size: 1rem;
  flex-shrink: 0;
}

.kosen-path__note-body {
  flex: 1;
}

.kosen-path__note-main {
  font-family: var(--f-body, 'Noto Sans JP', sans-serif);
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin: 0 0 6px;
}

.kosen-path__note-sub {
  font-family: var(--f-body, 'Noto Sans JP', sans-serif);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   Responsive (kosen固有の差分のみ)
   ============================================================ */

@media (max-width: 768px) {
  .kosen-path .path-base__note {
    padding: 20px 22px;
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .kosen-path .path-base__note {
    padding: 16px;
    gap: 12px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-left: none;
    border-top: 3px solid var(--c-gold);
  }

  .kosen-path__note-main {
    font-size: 0.85rem;
  }

  .kosen-path__note-sub {
    font-size: 0.8rem;
  }
}
