@charset "UTF-8";

/* =========================================================================
   ストレスチェックPRO 固有スタイル（service-pro.css）
========================================================================= */

/* --- 1. ヒーローエリア --- */
.scTopMainVisual,
.topJisseki {
  background: linear-gradient(0deg, var(--c-light-blue) 0%, var(--c-white) 100%);
}

.scproImg {
  margin: 0 auto;
  max-width: 1200px;
}

.scproImg img {
  width: 100%;
  height: auto;
  display: block;
}

.scproTopRead {
  margin: 0 auto;
  padding: 1em;
  width: 90%;
  max-width: 1200px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  background-color: var(--c-white);
  text-align: center;
  font-weight: bold;
  font-size: clamp(14px, 2vw + 10px, 21px);
  line-height: 1.6;
}

/* --- 2. 実績エリア（修正版） --- */
.topJisseki {
  padding: 0 0 64px;
}

.topJissekiH2 {
  padding: 1em 0;
  margin: 0 auto;
  width: 90%;
  text-align: center;
  font-size: var(--fs-c-24-40);
  font-weight: 900;
  color: var(--c-primary);
  line-height: 1.4;
}

/* 実績カードのラッパー */
.topJissekiWrap {
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 90%;
  max-width: 1000px;
  gap: 24px;
}

/* 実績カードデザイン */
.jissekiCard {
  background-color: var(--c-white);
  border-radius: 8px;
  /* ★ 16pxから8pxに小さく修正 */
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(37, 74, 132, 0.06);
  border: 1px solid var(--c-border-light);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* ★ センター合わせの強化 */
  position: relative;
  overflow: hidden;
}

.jissekiLabel {
  font-size: var(--fs-c-18-21);
  font-weight: bold;
  color: var(--c-text-sub);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
  text-align: center;
}

/* 数字の極大化と中央揃え */
.jissekiNum {
  color: var(--c-primary);
  line-height: 1;
  margin-bottom: 8px;
  display: flex;
  justify-content: center;
  align-items: baseline;
}

.jissekiNum .num {
  font-family: Arial, sans-serif;
  font-size: clamp(48px, 8vw + 20px, 80px);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.jissekiNum .unit {
  font-size: var(--fs-c-24-32);
  font-weight: bold;
  margin-left: 4px;
}

.jissekiNote {
  font-size: var(--fs-13);
  color: var(--c-text-muted);
  text-align: center;
}

/* 選ばれる理由（4つの特徴） */
.scproRecommend {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 0 auto;
  width: 90%;
  max-width: 1000px;
  list-style: none;
  padding: 0;
}

.scproRecommend>li {
  position: relative;
  padding: 16px 16px 16px 48px;
  background-color: var(--c-bg-light);
  color: var(--c-primary);
  /* ★ ブルーからオレンジに変更 */
  font-size: var(--fs-c-14-18);
  font-weight: 900;
  border-radius: 8px;
  border: 1px solid var(--c-border-dark);
  text-align: left;
  display: flex;
  align-items: center;
}

/* ★ 丸背景を無くし、シンプルなオレンジのレ点チェックマークに変更 */
.scproRecommend>li::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-65%) rotate(45deg);
  width: 6px;
  height: 12px;
  border-right: 3px solid var(--c-orange);
  border-bottom: 3px solid var(--c-orange);
}


/* --- 8. 紙・WEB版サービスタイプ --- */
.scProServiceType {
  margin: 0 auto clamp(60px, 10vw, 120px);
  padding: 0;
  width: 90%;
  max-width: 1200px;
}

.typeReadTxt {
  margin-bottom: clamp(32px, 5vw, 64px);
  text-align: center;
  font-size: var(--fs-c-18-24);
  line-height: 1.6;
}

.serviceTypeWrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.serviceTypeWrap>div {
  padding: clamp(16px, 3vw, 24px);
  border: solid 1px var(--c-border-dark);
  border-radius: 8px;
  width: 100%;
  background-color: var(--c-white);
}

.serviceTypeWrap h3 {
  text-align: center;
  font-size: var(--fs-c-24-32);
  font-weight: 900;
  color: var(--c-primary);
  margin-bottom: 16px;
}

.serviceTypeWrap img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 24px;
}

/* =========================================================================
   メディアクエリ（タブレット・PC向けのレイアウト一括指定）
========================================================================= */
@media (min-width: 768px) {

  /* 実績2カラム */
  .topJissekiWrap {
    flex-direction: row;
    gap: 32px;
  }

  .jissekiCard {
    width: 50%;
  }

  /* 選ばれる理由（4つの特徴） */
  .scproRecommend {
    grid-template-columns: repeat(2, 1fr);
  }
/* 紙・WEB版サービスタイプ */
  .serviceTypeWrap {
    flex-direction: row;
    gap: 32px;
  }

  .serviceTypeWrap>div {
    width: 50%;
  }

}

@media (min-width: 1024px) {

  /* 選ばれる理由（4つの特徴） */
  .scproRecommend {
    grid-template-columns: repeat(4, 1fr);
  }
}