/* ===========================
   Career Support Page Styles
   =========================== */

/* --- OVERVIEW Visual Section --- */
.overview-visual {
  margin-top: 48px;
  display: flex !important;
  flex-direction: row !important;
  gap: 40px;
  align-items: center;
}

.overview-photo-wrap {
  flex: 0 0 55% !important;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.overview-photo {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.overview-3v {
  flex: 1 1 auto !important;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.v-item {
  width: 100%;
  background: #1a2e5a;
  color: #fff;
  border-radius: 6px;
  padding: 16px 20px;
  text-align: center;
}

.v-label {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
  color: #b8cff0;
}

.v-item p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #fff;
}

.v-sep {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a2e5a;
  text-align: center;
  line-height: 1;
}

/* --- Catch Copy & Sub Copy --- */
.catch-copy {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1a2e5a;
  line-height: 1.4;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}

.sub-copy {
  font-size: 1.0rem;
  color: #444;
  line-height: 1.8;
}

/* --- CONSULTANT Section --- */
.cs-consultant-section {
  padding: 80px 0;
  background: #f7f9fc;
}

.cs-consultant-section .box {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.cs-consultant-grid {
  display: flex !important;
  flex-direction: row !important;
  gap: 32px;
  margin-top: 48px;
}

.cs-consultant-card {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cs-consultant-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
}

.cs-consultant-photo {
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.cs-consultant-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}

.cs-consultant-card:hover .cs-consultant-photo img {
  transform: scale(1.04);
}

.cs-consultant-info {
  padding: 24px;
}

.cs-consultant-career {
  font-size: 0.75rem;
  color: #fff;
  background: #1a2e5a;
  display: inline-block;
  padding: 3px 10px;
  border-radius: 3px;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.cs-consultant-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a2e5a;
  margin: 0 0 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cs-consultant-name-en {
  font-size: 0.75rem;
  font-weight: 600;
  color: #7fa3e0;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
}

.cs-consultant-desc {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.7;
  margin: 0;
}

/* --- NUMBERS Section (Donut Charts) --- */
.cs-numbers-section {
  padding: 80px 0;
  background: #fff;
}

.cs-numbers-section .box {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 40px;
}

.cs-numbers-grid {
  display: flex !important;
  flex-direction: row !important;
  gap: 40px;
  margin-top: 48px;
  align-items: flex-start;
}

.cs-numbers-item {
  flex: 1;
  text-align: center;
}

.cs-numbers-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a2e5a;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #1a2e5a;
  letter-spacing: 0.03em;
}

.cs-donut-wrap {
  width: 160px;
  height: 160px;
  margin: 0 auto 20px;
  position: relative;
}

.cs-donut-svg {
  width: 100%;
  height: 100%;
}

.cs-donut-legend {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.cs-donut-legend li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #444;
  margin-bottom: 6px;
  line-height: 1.4;
}

.cs-donut-legend strong {
  margin-left: auto;
  font-weight: 700;
  color: #1a2e5a;
  white-space: nowrap;
}

.cs-legend-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* --- Responsive --- */
@media screen and (max-width: 768px) {
  /* OVERVIEW */
  .cs-overview-visual {
    flex-direction: column !important;
  }
  .cs-overview-photo-col {
    width: 100% !important;
  }
  .cs-3v-row {
    flex-direction: column !important;
    width: 100% !important;
    gap: 10px !important;
  }
  .v-sep {
    display: none;
  }
  .v-item {
    width: 100% !important;
    padding: 12px 16px;
  }
  .v-label {
    font-size: 1.1rem;
  }
  .v-item p {
    font-size: 0.82rem;
  }

  /* MESSAGE */
  .message-shared .lead.d_flex {
    display: block !important;
  }
  .message-shared .lead .txt {
    width: 100% !important;
    max-width: 100% !important;
    padding-bottom: 20px;
  }
  .cs-message-photo-wrap {
    width: 100% !important;
    margin-top: 16px;
  }
  .cs-message-photo {
    width: 100% !important;
    height: auto !important;
    max-height: 240px;
    object-fit: cover;
  }
  .cs-message-lead {
    font-size: 1.1rem;
  }

  /* STRENGTH */
  .stregth-shared .group .item dl dt {
    font-size: 18px !important;
    line-height: 32px !important;
    letter-spacing: 0.03em !important;
  }
  .stregth-shared .group .item dl dt span.num {
    font-size: 48px !important;
  }
  .stregth-shared .group .item dl dd {
    font-size: 13px;
    line-height: 1.7;
  }

  /* CONSULTANT */
  .cs-consultant-grid {
    flex-direction: column !important;
  }
  .cs-consultant-photo {
    height: 220px;
  }

  /* INSIGHTS STATS */
  .cs-stats-row {
    flex-direction: column !important;
    gap: 24px !important;
  }
  .cs-stat-item {
    width: 100% !important;
  }

  /* INSIGHTS CHARTS */
  .cs-numbers-grid {
    flex-direction: column !important;
    align-items: center !important;
    gap: 40px !important;
  }
  .cs-numbers-item {
    width: 100% !important;
    max-width: 320px !important;
  }
  .cs-chart-wrap {
    margin-left: auto !important;
    margin-right: auto !important;
  }
  .cs-donut-wrap {
    width: 140px;
    height: 140px;
    margin: 0 auto 20px;
  }

  /* テキストalignをleftに */
  .overview-shared .lead .txt p,
  .message-shared .lead .txt p,
  .stregth-shared .group .item dl dd {
    text-align: left;
  }
}