/* ============================================================= css/hr.css
    0.  基本要素
============================================================= */
/* サブヒーロー */
.subhero {
  background: url("../img/subhero-hr.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.subhero__inner {
  width: 100%;
}

/* カルーセル */
.carousel-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.carousel-inner img {
  width: 100%;
  max-width: 1000px;
  display: block;
  object-fit: cover;
  height: 400px;
}
@media (max-width: 600px) {
  .carousel-inner img {
    height: 280px;
  }
}
#fujiCarousel {
  flex: 0 0 auto;
  width: 70vw;
  max-width: 1000px;
  height: 450px;
}
@media (max-width: 600px) {
#fujiCarousel {
  width: 100%;
  height: 280px;
}
}

/* =============================================================
    1.  タイポグラフィ
============================================================= */
.hr__section-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1.5rem;
}
.hr__section-subheading {
  font-size: 1.75rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1.5rem;
}
.hr__content p {
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* =============================================================
    2.  共通レイアウト
============================================================= */
.hr__section + .hr__section {
  border-top: 1px solid #e0e0e0;
}
.hr__box-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hr__box {
  width: 80vw;
  max-width: 1000px;
  border: 2px solid #1e5e2a;
  border-radius: 0.25rem;
  overflow: hidden;
  margin-bottom: 2rem;
}
.hr__box-title {
  background: #1e5e2a;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 0.75rem 1rem;
  margin: 0;
}
@media (max-width: 768px) {
  .hr__box {
    width: 100%;
  }
}

.hr__figure {
  margin: 0;
  display: flex;
  justify-content: center;
}
.hr__figure img {
  width: 80vw;
  max-width: 1000px;
  height: auto;
  border-radius: 0.25rem;
}
@media (max-width: 768px) {
  .hr__figure img {
    width: 100%;
  }
}

/* =============================================================
    3.  リスト装飾
============================================================= */
/* 3-A 番号付きメリット */
.benefit-list {
  counter-reset: num;
  list-style: none;
  padding: 0;
  margin: 0;
}
.benefit-list > li {
  counter-increment: num;
  margin-bottom: 1.75rem;
  line-height: 1.7;
}
.benefit-list > li::before {
  content: counter(num) ".";
  color: #009314;
  font-size: 1.2rem;
  font-weight: 700;
  margin-right: 0.5rem;
}
.benefit-list strong {
  color: #009314;
  font-size: 1.2rem;
  font-weight: 700;
}
.benefit-list p {
  margin: 0.25rem 0 0 1.5rem;
  font-weight: 500;
  color: #1a1a1a;
}
@media (max-width: 768px) {
  .benefit-list > li {
    margin-bottom: 1.25rem;
  }
}

/* 3-B チェックアイコン付き */
.role-list,
.industry-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.role-list li,
.industry-list li {
  position: relative;
  padding-left: 1.75rem;
  line-height: 1.7;
}
.role-list li::before,
.industry-list li::before {
  content: "\F26A";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  top: 0.15rem;
  font-size: 1rem;
  color: #949494;
}

/* =============================================================
    4.  Fuji 専用
============================================================= */
/* .fuji__box {
  display: flex;
  justify-content: center;
}
.fuji-logo-wrap {
  text-align: center;
}
.fuji-logo {
  max-width: 240px;
  width: 100%;
  border-radius: 0.25rem;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .fuji__box {
    flex-direction: column-reverse;
  }
  .fuji-logo {
    margin: 1rem 0;
  }
} */

/* =============================================================
    5.  ボックス内テキスト微調整
============================================================= */
.hr__box-list {
  list-style: disc inside;
  padding: 1rem;
  margin: 0;
}
.hr__box-list li + li {
  margin-top: 0.5rem;
}
.hr__box .p-3 {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ================= モバイル用フォント調整 ================= */
@media (max-width: 768px) {
  /* セクションタイトル <h2 class="hr__section-heading"> */
  .hr__section-heading {
    font-size: 1.5rem; /* 2.0 → 1.5 */
  }

  /* サブタイトル <h3 class="hr__section-subheading"> */
  .hr__section-subheading {
    font-size: 1.2rem; /* 1.75 → 1.4 */
  }

  /* ボックス見出し（hr__box-title・チェック付きリスト見出し等） */
  .hr__box-title,
  .benefit-list strong {
    font-size: 1.05rem; /* 1.25 or 1.2 → 1.05 */
  }
}

/* ================================
   Part-time section (minimal adds)
================================ */

/* 段階ステップ（番号付き） */
.step-list {
  counter-reset: step;
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.step-list > li {
  counter-increment: step;
  position: relative;
  padding-left: 2.2rem;
  margin: 0.75rem 0;
  line-height: 1.8;
}
.step-list > li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.05rem;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  background: #1e5e2a;   /* 既存グリーンに合わせる */
  color: #fff;
}

/* 情報ボックス（Bootstrap .alert の中身を少しだけ整える） */
.alert[role="note"] {
  line-height: 1.7;
}
