/*
 * 案件分析カード
 */
#top_analysis_card {
  padding: 56px 72px 48px;
}

@media screen and (max-width: 599px) {
  #top_analysis_card {
    padding: 20px;
  }
}

.archive-job-wrapper #top_analysis_card {
  padding: 0;
  width: 100%;
}

.archive-job-wrapper #top_analysis_card .all-jobs {
  margin-bottom: 0;
}

.job-list-banner {
  width: 100% !important;
  max-width: 100% !important;
  display: flex !important;
  flex-direction: column;
  background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
  border: 1px solid #cce3ff;
  border-radius: 12px;
  padding: 28px 32px;
  box-shadow: 0 10px 25px rgba(0, 82, 204, 0.08);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  margin-bottom: 32px;
  overflow: hidden;
  position: relative;
  text-decoration: none !important;
}

@media screen and (max-width: 599px) {
  .job-list-banner {
    padding: 20px;
  }
}

.job-list-banner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--color_main);
}

.job-list-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 82, 204, 0.15);
  background: linear-gradient(135deg, #f0f7ff 0%, #e8f2ff 100%);
}

.job-list-banner-title {
  margin-bottom: 20px;
}

.banner-desc {
  text-align: center !important;
}

.job-list-banner-body {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

@media screen and (max-width: 1200px) {
  .job-list-banner-body {
    flex-direction: column;
    text-align: center;
  }
}

.job-list-banner-chart {
  flex: 0 0 160px;
  height: 240px;
  position: relative;
}

.job-list-banner-stats {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
}

.banner-stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stat-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: transparent;
}

.stat-icon img {
  width: 24px;
  height: 24px;
  margin: 0 !important;
}

.stat-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-info span {
  font-size: var(--text-sm);
  margin-bottom: 2px;
  font-weight: bold;
}

.stat-info strong {
  font-size: var(--text-xl);
  color: var(--color_black);
  line-height: var(--height-xl);
  white-space: nowrap;
}

.banner-stat-item strong span {
  font-size: var(--text-sm);
  margin-left: 2px;
}

.banner-stat-item strong.max-price {
  color: var(--color_cta);
}

.job-list-banner:hover .btn_inner {
  background: var(--color_cta);
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(255, 107, 107, 0.3);
}

#top_analysis_card .job-list-banner img {
  margin-bottom: 0;
}

.job-list-banner-right .btn_main .btn_inner {
  background-color: var(--color_cta);
  border: 1px solid var(--color_cta);
}

.job-list-banner-right .btn_main .btn_inner:hover {
  color: var(--color_cta);
}

@media screen and (max-width: 959px) {
  .job-list-banner-body {
    flex-direction: column;
    text-align: center;
  }

  .job-list-banner-chart {
    margin-bottom: 16px;
    width: 200px;
    height: 200px;
  }

  .job-list-banner-stats {
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }

  .job-list-banner-cta {
    width: 100%;
    flex: none;
    text-align: center;
  }
}

@media screen and (max-width: 599px) {
  .job-list-banner-chart {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .banner-stat-item {
    gap: 4px;
    flex-flow: column;
  }
}
