/* ===================================================================
   新卒採用ページ専用スタイル
   =================================================================== */

/* ---------- ヒーロー ---------- */
.grad-hero {
  position: relative;
  background:
    linear-gradient(135deg, rgba(10,71,169,0.82) 0%, rgba(21,101,192,0.72) 40%, rgba(25,118,210,0.6) 100%),
    url('../images/graduate-hero.jpg') center/cover no-repeat;
  color: #fff;
  padding: 160px 24px 100px;
  text-align: center;
  overflow: hidden;
}
.grad-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.25) 100%);
  pointer-events: none;
}

.grad-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.grad-hero__badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.grad-hero__title {
  font-size: clamp(2.2rem, 6vw, 3.5rem);
  font-weight: 900;
  margin: 0 0 24px;
  letter-spacing: 0.05em;
}

.grad-hero__lead {
  font-size: 1.05rem;
  line-height: 2;
  color: rgba(255,255,255,0.9);
  margin: 0 0 40px;
}

.grad-hero__cta {
  display: inline-block;
  background: #fff;
  color: #1565c0;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 48px;
  border-radius: 40px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.grad-hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ---------- 共通セクション ---------- */
.grad-section {
  padding: 80px 24px;
}

.grad-section--alt {
  background: #f8f9fa;
}

.grad-section__inner {
  max-width: 900px;
  margin: 0 auto;
}

.grad-section__title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 900;
  margin: 0 0 40px;
  text-align: center;
}

.grad-section__en {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #1565c0;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.grad-section__lead {
  text-align: center;
  color: #555;
  margin: -24px 0 40px;
  line-height: 1.8;
}

.grad-section__note {
  text-align: center;
  color: #777;
  font-size: 0.85rem;
  line-height: 1.7;
  margin: 16px 0 0;
}
.grad-table small {
  font-size: 0.75rem;
  color: #888;
  font-weight: 400;
}

/* ---------- スケジュール ---------- */
.grad-schedule {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.grad-schedule__item {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  transition: box-shadow 0.2s;
}

.grad-schedule__item:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.grad-schedule__period {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #1565c0;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.grad-schedule__label {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.grad-schedule__note {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* ---------- WEB説明会 ---------- */
.grad-seminar {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: start;
}

.grad-seminar__card {
  background: #fff;
  border: 2px solid #1565c0;
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
}

.grad-seminar__icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.grad-seminar__card h3 {
  font-size: 1.3rem;
  color: #1565c0;
  margin: 0 0 16px;
}

.grad-seminar__card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.8;
  margin: 0;
}

.grad-seminar__info h3 {
  font-size: 1.1rem;
  margin: 0 0 16px;
}

.grad-seminar__steps {
  padding: 0 0 0 24px;
  margin: 0 0 28px;
  line-height: 2;
  color: #444;
}

.grad-seminar__steps li {
  margin-bottom: 4px;
}

.grad-seminar__cta {
  display: inline-block;
  background: #1565c0;
  color: #fff;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.2s;
}

.grad-seminar__cta:hover {
  background: #1976d2;
}

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

/* ---------- 選考フロー ---------- */
.grad-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 600px;
  margin: 0 auto;
}

.grad-flow__step {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 28px 28px 24px;
  position: relative;
}

.grad-flow__step--final {
  background: #1565c0;
  color: #fff;
  border-color: #1565c0;
}

.grad-flow__step--final .grad-flow__number {
  color: rgba(255,255,255,0.7);
}

.grad-flow__number {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #1565c0;
  margin-bottom: 8px;
}

.grad-flow__step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 8px;
}

.grad-flow__step p {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

.grad-flow__step--final p {
  color: rgba(255,255,255,0.85);
}

.grad-flow__arrow {
  display: flex;
  justify-content: center;
  padding: 8px 0;
}

.grad-flow__arrow::after {
  content: '';
  width: 2px;
  height: 24px;
  background: #1565c0;
  position: relative;
}

/* ---------- 募集要項テーブル ---------- */
.grad-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.grad-table th,
.grad-table td {
  padding: 18px 20px;
  border-bottom: 1px solid #e8e8e8;
  text-align: left;
  vertical-align: top;
  line-height: 1.7;
}

.grad-table th {
  width: 140px;
  font-weight: 700;
  color: #333;
  background: #f8f9fa;
  white-space: nowrap;
}

.grad-table td ul {
  margin: 0;
  padding: 0 0 0 20px;
}

.grad-table td ul li {
  margin-bottom: 4px;
}

.grad-table td strong {
  color: #1565c0;
}

.grad-note {
  font-size: 0.82rem;
  color: #888;
}

/* コンパクト版（タレント手当） */
.grad-table--compact {
  max-width: 700px;
  margin: 0 auto;
}

.grad-table--compact th,
.grad-table--compact td {
  padding: 14px 16px;
  text-align: center;
}

.grad-table--compact thead th {
  background: #1565c0;
  color: #fff;
  font-size: 0.85rem;
}

.grad-highlight {
  font-weight: 700;
  color: #e64a19;
  font-size: 1.05rem;
}

/* ---------- CTA ---------- */
.grad-cta {
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  color: #fff;
  padding: 80px 24px;
  text-align: center;
}

.grad-cta__inner {
  max-width: 600px;
  margin: 0 auto;
}

.grad-cta h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin: 0 0 16px;
}

.grad-cta p {
  color: #aaa;
  margin: 0 0 32px;
  line-height: 1.8;
}

.grad-cta__btn {
  display: inline-block;
  background: #1565c0;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 48px;
  border-radius: 40px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.grad-cta__btn:hover {
  background: #1976d2;
  transform: translateY(-2px);
}

/* ---------- レスポンシブ ---------- */
@media (max-width: 768px) {
  .grad-hero {
    padding: 120px 20px 60px;
  }

  .grad-table th {
    display: block;
    width: 100%;
    padding-bottom: 4px;
    border-bottom: none;
  }

  .grad-table td {
    display: block;
    padding-top: 0;
    padding-left: 20px;
  }

  .grad-table--compact th,
  .grad-table--compact td {
    display: table-cell;
    padding: 10px 8px;
    font-size: 0.82rem;
  }

  .grad-highlight {
    font-size: 0.92rem;
  }
}
