[class*="ocsc-"],
[class*="ocsc-"] *::before,
[class*="ocsc-"] *::after {
  box-sizing: border-box;
}

/* =============================================================
   ヒーロー
   ============================================================= */
.ocsc-hero {
  position: relative;
  overflow: hidden;
  background-image: url("../img/stress-check/ocsc-hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.ocsc-hero__inner {
  max-width: 1420px;
  margin: 0 auto;
  padding: 64px 16px;
  display: grid;
  gap: 40px;
  align-items: center;
}

.ocsc-hero__body {
  position: relative;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.ocsc-hero__accent-bar {
  position: absolute;
  left: 0;
  top: 4px;
  width: 6px;
  height: calc(100% - 8px);
  border-radius: 9999px;
  background-color: #2d86b2;
}

.ocsc-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #2d86b2;
}

.ocsc-hero__eyebrow-line {
  width: 24px;
  height: 1px;
  background-color: #2d86b2;
}

.ocsc-hero__title {
  margin: 0;
  font-weight: 700;
  line-height: 1.6;
  color: #1c4f68;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.ocsc-hero__title-accent {
  color: #fff;
  background-color: #2d86b2;
  font-size: 46px;
  font-weight: 900 !important;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.ocsc-hero__lead {
  margin: 0;
  line-height: 1.8;
  color: #333333;
}

.ocsc-hero__actions {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ocsc-hero__btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 56px;
  padding: 0 32px;
  border-radius: 8px;
  background-color: #c22820;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(194, 40, 32, 0.3);
  transition: background-color 0.15s ease;
  animation: ocsc-bounce 2.4s ease-in-out infinite;
}

.ocsc-hero__btn-primary svg {
  transition: transform 0.25s ease;
}

.ocsc-hero__btn-primary:hover {
  background-color: #9e1f18;
}

/* ホバーで矢印が右にスライド */
.ocsc-hero__btn-primary:hover svg {
  transform: translateX(4px);
}

/* 軽く跳ねるバウンス */
@keyframes ocsc-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  12% {
    transform: translateY(-6px);
  }
  24% {
    transform: translateY(0);
  }
  36% {
    transform: translateY(-3px);
  }
  48% {
    transform: translateY(0);
  }
}

/* 「動きを減らす」設定の人には停止 */
@media (prefers-reduced-motion: reduce) {
  .ocsc-hero__btn-primary {
    animation: none;
  }
}

.ocsc-hero__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 32px;
  border-radius: 8px;
  background-color: #2d86b2;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.15s ease;
}

.ocsc-hero__btn-secondary:hover {
  background-color: #246b8e;
  color: #ffffff;
}

.ocsc-hero__media {
  width: 100%;
}

.ocsc-hero__image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
}

/* =============================================================
   共通の余白レイアウト（各セクションの内側コンテナ）
   ============================================================= */
.ocsc-point__inner,
.ocsc-problem__inner,
.ocsc-feature__inner,
.ocsc-merit__inner,
.ocsc-law__inner {
  max-width: 1152px;
  margin: 0 auto;
  padding: 64px 16px;
}

.ocsc-faq__inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 64px 16px;
}

/* =============================================================
   選ばれる理由（POINT）  背景：温白 / アクセント：青
   ============================================================= */
.ocsc-point {
  background-color: #faf8f4;
}

.ocsc-point__head {
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ocsc-point__head-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.ocsc-point__num {
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  color: #2d86b2;
}
.ocsc-point__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #2d86b2;
}
.ocsc-point__eyebrow-line {
  width: 24px;
  height: 1px;
  background-color: #2d86b2;
}
.ocsc-point__title {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.4;
  color: #00264d;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.ocsc-point__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.ocsc-point__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 32px 28px;
  background-color: #ffffff;
  border: 1px solid #e3ddd2;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 38, 77, 0.04);
  /* ホバー時の変化をなめらかに */
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.ocsc-point__item:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 38, 77, 0.12);
}

.ocsc-point__item-num {
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  color: #2d86b2;
}

.ocsc-point__item-text {
  margin: 0;
  padding-top: 4px;
  line-height: 1.8;
  color: #333333;
  font-size: 20px !important;
}

/* スマホ表示は1カラムに */
@media (max-width: 767px) {
  .ocsc-point__list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .ocsc-point__item {
    padding: 24px 20px;
  }
}

/* =============================================================
   お悩み・解決（ISSUES）  背景：温サンド / アクセント：青
   ============================================================= */
.ocsc-problem {
  background-color: #f1e8dd;
}
.ocsc-problem__head {
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.ocsc-problem__head-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.ocsc-problem__num {
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  color: #c22820;
}
.ocsc-problem__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #c22820;
}

.ocsc-problem__eyebrow-line {
  width: 24px;
  height: 1px;
  background-color: #c22820;
}

.ocsc-problem__title {
  margin: 0;
  font-weight: 800;
  line-height: 1.4;
  color: #00264d;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.ocsc-problem__title-br {
  display: none;
}

/* ▼ 縦積みに固定 */
.ocsc-problem__grid {
  display: grid;
  grid-template-columns: 1fr !important;
  gap: 24px;
  align-items: stretch;
}

.ocsc-problem__card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid #e3ddd2;
  background-color: #ffffff;
}
.ocsc-problem__card-head {
  padding: 16px 24px;
  text-align: center;
  background-color: #e9f1f5;
  border-bottom: 1px solid #e3ddd2;
}
.ocsc-problem__card-title {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: #1c4f68;
}

/* ▼ カード内：リスト(左)＋画像(右) */
.ocsc-problem__card-body,
.ocsc-solution__card-body {
  display: flex;
  flex: 1;
  align-items: stretch;
}

.ocsc-problem__item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ocsc-problem__item-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 9999px;
  background-color: #2d86b2;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ocsc-problem__item-text {
  line-height: 1.4;
  color: #22303a;
  font-size: 22px;
}

/* ▼ 画像スペース（お悩み） */
.ocsc-problem__card-media {
  position: relative;
  margin: 0;
  flex-shrink: 0;
  width: 320px;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ocsc-problem__card-img {
  width: 126px;
  height: auto;
  object-fit: cover;
  display: block;
}
/* ラベルは画像未挿入時のみ表示（imgが空のとき） */
.ocsc-problem__card-media-label,
.ocsc-solution__card-media-label {
  position: absolute;
  font-size: 14px;
  color: #9a9088;
  pointer-events: none;
}

.ocsc-problem__card-img[src]:not([src=""]) + .ocsc-problem__card-media-label,
.ocsc-solution__card-img[src]:not([src=""]) + .ocsc-solution__card-media-label {
  display: none;
}

.ocsc-problem__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 24px 0;
}

.ocsc-problem__arrow-badge {
  width: 64px;
  height: 64px;
  border-radius: 9999px;
  background-color: #2d86b2;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ocsc-problem__arrow-badge svg {
  width: 30px;
  height: 30px;
  stroke-width: 3;
}

.ocsc-problem__arrow-right {
  display: none;
}

.ocsc-problem__arrow-down {
  display: block;
}

@keyframes ocsc-arrow-bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

.ocsc-solution__card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(194, 40, 32, 0.3);
  background-color: #ffffff;
}

.ocsc-solution__card-head {
  padding: 16px 24px;
  text-align: center;
  background-color: #c22820;
  border-bottom: 1px solid #c22820;
}

.ocsc-solution__card-title {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
}

.ocsc-solution__item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ocsc-solution__item-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 9999px;
  background-color: #c22820;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ocsc-solution__item-text {
  font-weight: 500;
  line-height: 1.4;
  color: #22303a;
  font-size: 22px;
}

/* ▼ 画像スペース（解決） */
.ocsc-solution__card-media {
  position: relative;
  margin: 0;
  flex-shrink: 0;
  width: 320px;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ocsc-solution__card-img {
  width: 126px;
  height: auto;
  object-fit: contain;
  display: block;
}

.ocsc-solution__list,
.ocsc-problem__list {
  list-style: none;
  margin: 16px auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 520px;
  max-width: 100%;
  align-items: flex-start;
}

/* ホバーで浮き上がる */
.ocsc-problem__card,
.ocsc-solution__card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.ocsc-problem__card:hover,
.ocsc-solution__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

/* ▼ スマホ：画像をリストの下へ */
@media (max-width: 767px) {
  .ocsc-problem__card-body,
  .ocsc-solution__card-body {
    flex-direction: column;
  }
  .ocsc-problem__card-media,
  .ocsc-solution__card-media {
    width: 100%;
    min-height: 180px;
    border-left: none;
  }
  .ocsc-solution__card-media {
    border-top-color: rgba(194, 40, 32, 0.2);
  }
}

@media (max-width: 768px) {
  .ocsc-solution__list,
  .ocsc-problem__list {
    width: 80%;
  }
}

/* =============================================================
   主な特徴（FEATURE）  背景：温白 / アクセント：ネイビー
   ============================================================= */
.ocsc-feature {
  background-color: #faf8f4;
}
.ocsc-feature__head {
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.ocsc-feature__head-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.ocsc-feature__num {
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  color: #2d86b2;
}
.ocsc-feature__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #1c4f68;
}
.ocsc-feature__eyebrow-line {
  width: 24px;
  height: 1px;
  background-color: #1c4f68;
}
.ocsc-feature__title {
  margin: 0;
  font-weight: 800;
  line-height: 1.4;
  color: #00264d;
}

.ocsc-feature__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ocsc-feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow: hidden;
  background-color: #ffffff;
  padding: 16px 23px 16px;
  align-items: center;
  text-align: left;
}

.ocsc-feature-card__band {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
}

.ocsc-feature-card__band--blue {
  background-color: #2d86b2;
}

.ocsc-feature-card__band--navy {
  background-color: #1c4f68;
}

.ocsc-feature-card__band--amber {
  background-color: #d99a2c;
}

.ocsc-feature-card__band--red {
  background-color: #c22820;
}

.ocsc-feature-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ocsc-feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ocsc-feature-card__icon--blue {
  background-color: rgba(45, 134, 178, 0.1);
  color: #2d86b2;
}

.ocsc-feature-card__icon--navy {
  background-color: rgba(28, 79, 104, 0.1);
  color: #1c4f68;
}

.ocsc-feature-card__icon--amber {
  background-color: rgba(217, 154, 44, 0.15);
  color: #d99a2c;
}

.ocsc-feature-card__icon--red {
  background-color: rgba(194, 40, 32, 0.1);
  color: #c22820;
}

.ocsc-feature-card__num {
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  color: #1c4f68;
}

.ocsc-feature-card__title {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  color: #1c4f68;
  text-align: center;
}

.ocsc-feature-card__desc {
  margin: 0;
  font-size: 18px !important;
  line-height: 1.8;
  color: #333333;
  text-align: center;
}

/* === 画像エリア === */
.ocsc-feature-card__image {
  position: relative;
  width: 100%;
  max-width: 200px; /* ← 画像エリアの最大幅。小さくしたいなら数値を下げる */
  margin: 0 auto; /* ← カード内で中央寄せ */
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ocsc-feature-card__image img {
  width: 80%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ocsc-feature-card__image-placeholder {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

/* スマホは1列に */
@media (max-width: 767px) {
  .ocsc-feature__grid {
    grid-template-columns: 1fr;
  }
}

.ocsc-feature-card {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  border-radius: 16px;
}

/* =============================================================
   導入メリット（MERIT）  背景：淡青グレー / アクセント：ネイビー
   ============================================================= */
.ocsc-merit {
  background-color: #e9f1f5;
}
.ocsc-merit__inner {
  display: grid;
  gap: 40px;
  align-items: center;
}
.ocsc-merit__media {
  width: 100%;
}
.ocsc-merit__image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
}
.ocsc-merit__body {
  position: relative;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ocsc-merit__accent-bar {
  position: absolute;
  left: 0;
  top: 4px;
  width: 6px;
  height: calc(100% - 8px);
  border-radius: 9999px;
  background-color: #1c4f68;
}
.ocsc-merit__head-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.ocsc-merit__num {
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  color: #1c4f68;
}
.ocsc-merit__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #1c4f68;
}
.ocsc-merit__eyebrow-line {
  width: 24px;
  height: 1px;
  background-color: #1c4f68;
}
.ocsc-merit__title {
  margin: 0;
  font-weight: 800;
  line-height: 1.4;
  color: #00264d;
}
.ocsc-merit__lead {
  margin: 0;
  font-size: 20px !important;
  line-height: 1.8;
  color: #333333;
}

.ocsc-merit {
  background-color: #e9f1f5;
  background-image:
    repeating-linear-gradient(
      0deg,
      rgba(28, 79, 104, 0.06) 0 1px,
      transparent 1px 32px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(28, 79, 104, 0.06) 0 1px,
      transparent 1px 32px
    );
}

/* =============================================================
   対象労働者（LAW）  背景：温サンド / アクセント：赤
   ============================================================= */
.ocsc-law {
  background-color: #f1e8dd;
}

.ocsc-law__head {
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ocsc-law__head-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.ocsc-law__num {
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  color: #c22820;
}

.ocsc-law__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #c22820;
}

.ocsc-law__eyebrow-line {
  width: 24px;
  height: 1px;
  background-color: #c22820;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.ocsc-law__title {
  margin: 0;
  font-weight: 800;
  line-height: 1.4;
  color: #00264d;
}

.ocsc-law__intro {
  margin: 0 0 16px;
  font-size: 24px !important;
  line-height: 1.8;
  color: #333333;
  text-align: center;
  font-weight: 700;
}

.ocsc-law__marker {
  background: linear-gradient(transparent 60%, #fff3a3 60%);
}

.ocsc-law__lead {
  margin: 0 0 32px;
  font-size: 20px !important;
  line-height: 1.8;
  color: #333333;
  text-align: center;
}

.ocsc-law__box {
  border-radius: 16px;
  border-top: 1px solid #e3ddd2;
  border-right: 1px solid #e3ddd2;
  border-bottom: 1px solid #e3ddd2;
  border-left: 4px solid #c22820;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.ocsc-law__box-title {
  margin: 0 0 20px;
  font-size: 32px;
  font-weight: 800;
  color: #1c4f68;
}

.ocsc-law__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  column-gap: 40px;
}

.ocsc-law__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #e3ddd2;
}

.ocsc-law__item-icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: #c22820;
  display: flex;
}

.ocsc-law__item-text {
  line-height: 1.7;
  color: #333333;
  font-size: 18px;
}

.ocsc-office__box {
  border-radius: 16px;
  border-top: 1px solid #e3ddd2;
  border-right: 1px solid #e3ddd2;
  border-bottom: 1px solid #e3ddd2;
  border-left: 4px solid #c22820;
  background-color: #ffffff;
  padding: 24px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  margin-bottom: 24px;
}

.ocsc-office__box-title {
  margin: 0 0 20px;
  font-size: 32px;
  font-weight: 800;
  color: #1c4f68;
}

.ocsc-office__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  column-gap: 40px;
}

.ocsc-office__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #e3ddd2;
}

.ocsc-office__item-icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: #c22820;
  display: flex;
}

.ocsc-office__item-text {
  line-height: 1.7;
  color: #333333;
  font-size: 18px;
}

/* =============================================================
   よくある質問（FAQ）  背景：温白 / アクセント：青
   ============================================================= */
.ocsc-faq {
  background-color: #faf8f4;
}
.ocsc-faq__head {
  margin: 0 auto 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.ocsc-faq__head-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.ocsc-faq__num {
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  color: #2d86b2;
}
.ocsc-faq__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #2d86b2;
}
.ocsc-faq__eyebrow-line {
  width: 24px;
  height: 1px;
  background-color: #2d86b2;
}
.ocsc-faq__title {
  margin: 0;
  font-weight: 800;
  line-height: 1.4;
  color: #00264d;
}
.ocsc-faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ocsc-faq__item {
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid #e3ddd2;
  background-color: #ffffff;
}
.ocsc-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  text-align: left;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.ocsc-faq__question-text {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 22px;
  font-weight: 500;
  color: #22303a;
}
.ocsc-faq__q-label {
  color: #2d86b2;
}
.ocsc-faq__icon {
  flex-shrink: 0;
  color: #2d86b2;
  transition: transform 0.2s ease;
}
.ocsc-faq__item--open .ocsc-faq__icon {
  transform: rotate(180deg);
}
.ocsc-faq__answer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 0.25s ease,
    opacity 0.2s ease;
}
.ocsc-faq__item--open .ocsc-faq__answer {
  max-height: 600px;
  opacity: 1;
}
.ocsc-faq__answer-inner {
  margin: 0;
  padding: 16px 20px;
  border-top: 1px solid #e3ddd2;
  background-color: #e9f1f5;
  line-height: 1.8;
  color: #5b6b78;
}
.ocsc-faq__a-label {
  margin-right: 8px;
  font-weight: 700;
  color: #c22820;
}

/* =============================================================
   CTA（お問い合わせ）  背景：ネイビー / 差し色：アンバー・赤
   ============================================================= */
.ocsc-cta {
  position: relative;
  overflow: hidden;
  background-color: #1c4f68 !important;
}
.ocsc-cta__divider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background-color: #faf8f4;
}
.ocsc-cta__inner {
  position: relative;
  max-width: 896px;
  margin: 0 auto;
  padding: 80px 16px;
  text-align: center;
}
.ocsc-cta__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #d99a2c;
}
.ocsc-cta__eyebrow-line {
  width: 24px;
  height: 1px;
  background-color: #d99a2c;
}
.ocsc-cta__title {
  margin: 20px auto 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: #ffffff;
}
.ocsc-cta__lead {
  margin: 20px auto 0;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
}
.ocsc-cta__actions {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.ocsc-cta__btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 32px;
  border-radius: 8px;
  background-color: #c22820;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.15s ease;
}
.ocsc-cta__btn-primary:hover {
  background-color: #9e1f18;
}
.ocsc-cta__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 32px;
  border-radius: 8px;
  background-color: transparent;
  border: 2px solid rgba(255, 255, 255, 0.7);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition:
    background-color 0.15s ease,
    color 0.15s ease;
}
.ocsc-cta__btn-secondary:hover {
  background-color: #ffffff;
  color: #1c4f68;
}

/* =============================================================
   レスポンシブ（タブレット：768px以上）
   ============================================================= */
@media (min-width: 768px) {
  .ocsc-hero__inner {
    padding: 120px 24px;
  }
  .ocsc-hero__body {
    padding-left: 28px;
  }
  .ocsc-hero__title {
    font-size: 36px;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }
  .ocsc-hero__lead {
    font-size: 22px !important;
  }
  .ocsc-hero__actions {
    flex-direction: row;
  }

  .ocsc-point__inner,
  .ocsc-problem__inner,
  .ocsc-feature__inner,
  .ocsc-merit__inner,
  .ocsc-law__inner {
    padding: 96px 24px;
  }
  .ocsc-faq__inner {
    padding: 96px 24px;
  }

  .ocsc-point__num,
  .ocsc-problem__num,
  .ocsc-feature__num,
  .ocsc-merit__num,
  .ocsc-law__num,
  .ocsc-faq__num {
    font-size: 48px;
  }

  .ocsc-point__title,
  .ocsc-problem__title,
  .ocsc-feature__title,
  .ocsc-merit__title,
  .ocsc-law__title,
  .ocsc-faq__title {
    font-size: 44px;
  }

  .ocsc-point__list {
    grid-template-columns: 1fr 1fr;
  }
  .ocsc-law__list {
    grid-template-columns: 1fr 1fr;
  }

  .ocsc-problem__title-br {
    display: block;
  }

  .ocsc-cta__actions {
    flex-direction: row;
  }
  .ocsc-cta__title {
    font-size: 32px;
  }

  .ocsc-law__box {
    padding: 32px;
  }
}

/* =============================================================
   レスポンシブ（デスクトップ：1024px以上）
   ============================================================= */
@media (min-width: 1024px) {
  .ocsc-hero__inner {
    grid-template-columns: 1.5fr 0.95fr;
    gap: 56px;
  }
  .ocsc-hero__title {
    font-size: 40px;
    word-break: keep-all;
    overflow-wrap: anywhere;
  }

  /* お悩み → 矢印 → 解決 を横並びに */
  .ocsc-problem__grid {
    grid-template-columns: 1fr auto 1fr;
    gap: 16px;
  }
  .ocsc-problem__arrow-right {
    display: block;
  }
  .ocsc-problem__arrow-down {
    display: none;
  }

  /* メリット：画像左・テキスト右 */
  .ocsc-merit__inner {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
  .ocsc-merit__body {
    padding-left: 28px;
  }
}

/* =============================================================
   レスポンシブ調整（スマホ：767px以下）
   ============================================================= */
@media (max-width: 767px) {
  /* ---- ヒーロー ---- */
  .ocsc-hero__eyebrow {
    font-size: 18px;
    letter-spacing: 0.15em;
  }
  .ocsc-hero__title {
    font-size: 26px;
  } /* スマホ用サイズを明示 */
  .ocsc-hero__title-accent {
    font-size: 30px;
  } /* 46px固定を縮小しはみ出し防止 */
  .ocsc-hero__lead {
    font-size: 15px;
  }

  /* ---- 各セクション見出し（スマホ用サイズを統一） ---- */
  .ocsc-problem__title,
  .ocsc-feature__title,
  .ocsc-merit__title,
  .ocsc-law__title,
  .ocsc-faq__title {
    font-size: 24px;
  }

  /* ---- 選ばれる理由（POINT） ---- */
  .ocsc-point__item-num {
    font-size: 26px;
  }
  .ocsc-point__item-text {
    font-size: 17px;
  }

  /* ---- お悩み・解決（ISSUES） ---- */
  .ocsc-problem__card-title,
  .ocsc-solution__card-title {
    font-size: 22px;
  }
  .ocsc-problem__item-text,
  .ocsc-solution__item-text {
    font-size: 16px;
  }

  /* ---- 主な特徴（FEATURE） ---- */
  .ocsc-feature-card__num {
    font-size: 26px;
  }
  .ocsc-feature-card__title {
    font-size: 22px;
  }
  .ocsc-feature-card__desc {
    font-size: 16px;
  }

  /* ---- 導入メリット（MERIT） ---- */
  .ocsc-merit__lead {
    font-size: 16px;
  }

  /* ---- 対象労働者（LAW） ---- */
  .ocsc-law__lead {
    font-size: 16px;
  }
  .ocsc-law__box-title {
    font-size: 22px;
  }
  .ocsc-law__item-text {
    font-size: 16px;
  }

  /* ---- よくある質問（FAQ） ---- */
  .ocsc-faq__question-text {
    font-size: 17px;
  }

  /* ---- CTA ---- */
  .ocsc-cta__eyebrow {
    font-size: 18px;
    letter-spacing: 0.15em;
  }
  .ocsc-cta__title {
    font-size: 22px;
  }
  .ocsc-cta__lead {
    font-size: 15px;
  }

  .stress-check_breadcrumb {
    position: relative;
    z-index: 2;
    background-color: #ffffff; /* 背景画像との重なりを断つ */
    max-width: 1152px;
    padding: 1px 16px;
    font-size: 0.75rem;
    width: 100%;
  }

  .ocsc-law__intro,
  .ocsc-law__lead,
  .ocsc-feature-card__desc,
  .ocsc-cta__lead {
    text-align: left;
  }
}
