@charset "UTF-8";

/* =========================================================
  Base
  ※ブレークポイントは「750px / 1201px」だけ使用
    - 1201px以上：PC
    - 1200px以下：タブレット/モバイル（ハンバーガー表示）
    - 750px以下：スマホ
========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans JP",
    "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  line-height: 1.6;
  color: #111;
  background: #fff;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, calc(100% - 32px));
  margin-inline: auto;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* =========================================================
  Header
========================================================= */
.site-header {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 48px;
  padding: 4px 0;
}

.site-header__logo img {
  display: block;
  width: 140px;
  height: auto;
}

/* --- Menus (base reset) --- */
.menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu__item {
  margin: 0;
}

.menu__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.02em;
}

/* --- Primary (header) desktop menu --- */
.site-nav--desktop .menu--primary {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-header .menu--primary .menu__link {
  color: #2F8E92;
  font-weight: 400;
  /* Regular */
  font-size: 14px;
}

.site-header .menu--primary .menu__link:hover {
  opacity: 0.8;
}

/* --- Hamburger (hidden by default: PC = 1201px以上) --- */
.hamburger {
  display: none;
  appearance: none;
  border: 0;
  background: transparent;
  padding: 8px;
  cursor: pointer;
}

.hamburger__lines {
  display: inline-block;
  width: 26px;
  height: 2px;
  background: #2F8E92;
  position: relative;
  border-radius: 999px;
}

.hamburger__lines::before,
.hamburger__lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: 26px;
  height: 2px;
  background: #2F8E92;
  border-radius: 999px;
}

.hamburger__lines::before {
  top: -8px;
}

.hamburger__lines::after {
  top: 8px;
}

/* --- Mobile drawer --- */
.site-header__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 9998;
}

.site-header__drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 84vw);
  height: 100vh;
  background: #fff;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.22s ease;
  box-shadow: -12px 0 30px rgba(0, 0, 0, 0.12);
}

/* admin-bar 対応（※ブレークポイントは 750px に統一） */
.admin-bar .site-header__drawer {
  top: 32px;
  height: calc(100vh - 32px);
}

@media (max-width: 750px) {
  .admin-bar .site-header__drawer {
    top: 46px;
    height: calc(100vh - 46px);
  }
}

.site-header__drawer-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.site-header__drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.site-header__drawer-title {
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #2F8E92;
}

.site-header__drawer-close {
  border: 0;
  background: transparent;
  font-size: 22px;
  line-height: 1;
  padding: 6px 10px;
  cursor: pointer;
  color: #2F8E92;
}

.site-header__drawer-body {
  padding: 12px 16px 24px;
  overflow: auto;
}

/* Mobile menu (drawer) */
.menu--mobile {
  display: grid;
  gap: 8px;
}

.site-header .menu--mobile .menu__link {
  width: 100%;
  padding: 12px 10px;
  border-radius: 10px;
  background: rgba(47, 142, 146, 0.08);
  color: #2F8E92;
  font-weight: 400;
  /* Regular */
  font-size: 14px;
}

/* open state */
.is-menu-open .site-header__overlay {
  display: block;
}

.is-menu-open .site-header__drawer {
  transform: translateX(0);
}

/* =========================================================
  Main
========================================================= */
.site-main {
  padding: 0px;
  overflow-x: hidden;
}

.top-placeholder {
  padding: 24px;
  border: 1px dashed rgba(0, 0, 0, 0.18);
  border-radius: 12px;
}

/* =========================================================
  Footer
========================================================= */
.site-footer {
  background: #fff;
  color: #333333;
  padding: 28px 0 20px;
}

.site-footer__inner {
  display: grid;
  gap: 18px;
  justify-items: center;
}

.menu--footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 22px;
  margin-bottom: 40px;
}

.site-footer .menu--footer .menu__link {
  color: #333333;
  font-weight: 700;
  font-size: 14px;
}

.site-footer .menu--footer .menu__link:hover {
  opacity: 0.85;
}

.site-footer__sns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
}

/* Font Awesome icon links (no translucent background) */
.sns-link {
  background: transparent;
  width: auto;
  height: auto;
  border-radius: 0;
  padding: 0;
  color: #48999D;
  /* 緑系に統一 */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease;
}

.sns-link:hover {
  background: transparent;
  opacity: 0.7;
}

.site-footer__sns i {
  font-size: 28px;
  line-height: 1;
  display: inline-block;
}

.site-footer__copyright {
  font-size: 12px;
  opacity: 0.95;
}

/* =========================================================
  Responsive
  ※ブレークポイントは「1201px / 750px」だけ
========================================================= */

/* 1200px以下：タブレット/モバイル（ハンバーガー表示） */
@media (max-width: 1200px) {
  .site-nav--desktop {
    display: none;
  }

  .hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* 750px以下：スマホ */
@media (max-width: 750px) {
  .container {
    width: min(1100px, calc(100% - 24px));
  }

  .site-header__inner {
    padding: 6px 0;
  }

  .site-header__logo img {
    width: 100px;
  }

  .site-header__drawer {
    width: min(360px, 88vw);
  }

  .site-main {
    padding: 0px 0;
  }

  .menu--footer {
    gap: 12px 16px;
    margin-bottom: 30px;
  }

  .site-footer .menu--footer .menu__link {
    font-size: 13px;
  }
}

/* =========================================================
  FV (First View)
========================================================= */

/* TOPでは site-main の余白を消す（他ページへ影響させない） */
body.front-page .site-main,
body.home .site-main {
  padding: 0;
}

/* ラッパー */
.fv-wrap {
  background: #fff;
  padding: 0;
}

/* FV本体 */
.fv {
  position: relative;
  background: #fff;
  overflow-y: visible;
}

/* 上下帯（共通）
   ※下帯だけグラデ方向を逆（90deg → 270deg） */
.fv::before,
.fv::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  z-index: 0;
}

/* 上：そのまま */
.fv::before {
  top: 0;
  height: 64px;
  background: linear-gradient(90deg, #80D0C7 0%, #3EB1D8 45%, #0093E9 100%);
}

/* 下：逆向き（左右反転） */
.fv::after {
  bottom: 0;
  height: 44px;
  background: linear-gradient(270deg, #80D0C7 0%, #3EB1D8 45%, #0093E9 100%);
}

.fv__inner {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 64px));
  margin-inline: auto;
  min-height: 570px;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  /* PC：2カラム */
  align-items: center;
  gap: 56px;
  /* padding: 110px 0 86px; */
}

.fv__content {
  max-width: 560px;
  text-align: center;
}

.fv__topline,
.fv__bottomline {
  display: block;
  height: 3px;
  width: min(520px, 100%);
  background: #2F8E92;
  margin-inline: auto;
}

.fv__topline {
  margin: 0 auto 24px;
}

.fv__bottomline {
  margin: 18px auto 34px;
}

/* メインコピー：PC 30px / 黒、SPは下で20px */
.fv__lead {
  margin: 0;
  color: #000;
  font-weight: 800;
  font-size: 30px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

/* サブコピー */
.fv__subtitle {
  margin: 14px 0 0;
  color: #2F8E92;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.04em;
}

/* 3つの円：ボーダーなし、影のみ */
.fv__badges {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  justify-content: center;
  gap: 18px;
}

.fv__badge {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #2F8E92;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.25;

  /* ぼかし4 / 広がり3 / #2F8E92 / 53% */
  box-shadow: 0 0 4px 3px rgba(47, 142, 146, 0.53);
}

/* CTA：円の中央 */
.fv__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #EE7800;
  color: #fff;
  font-weight: 700;
  border-radius: 999px;
  padding: 12px 34px;
  min-width: 240px;
  margin: 18px auto 0;
}

.fv__cta:hover {
  opacity: 0.9;
}

/* 画像：大きく＆はみ出し */
.fv__media {
  justify-self: end;
  margin-right: -60px;
  margin-bottom: -40px;
}

.fv__img {
  display: block;
  width: min(980px, 74vw);
  height: auto;
}

/* =========================================================
  PC（1201px以上）での調整（あなたの指定）
========================================================= */
@media (min-width: 1201px) {

  .fv::before,
  .fv::after {
    content: "";
  }

  /* 上：そのまま（高さ20px） */
  .fv::before {
    top: 0;
    height: 20px;
    background: linear-gradient(90deg, #80D0C7 0%, #3EB1D8 45%, #0093E9 100%);
  }

  /* 下：逆向き（高さ20px） */
  .fv::after {
    bottom: 0;
    height: 20px;
    background: linear-gradient(270deg, #80D0C7 0%, #3EB1D8 45%, #0093E9 100%);
  }

  .fv-wrap {
    padding: 0px;
    margin-bottom: 150px;
  }

  /* PC時：FV画像を背景より前（最前面寄り）に */
  .fv__inner {
    position: relative;
    z-index: 1;
  }

  .fv__media {
    position: relative;
    z-index: 3;
  }

  .fv__img {
    position: relative;
    z-index: 3;
    margin-bottom: -100px;
  }
}

/* =========================
  <=1200px：1カラム（SP/タブレット）
========================= */
@media (max-width: 1200px) {
  .fv__inner {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 26px;
    padding: 86px 0 60px;
    justify-items: center;
  }

  .fv__content {
    max-width: 680px;
  }

  .fv__media {
    justify-self: center;
    margin-right: 0;
    margin-bottom: -28px;
  }

  .fv__img {
    width: min(700px, 108vw);
  }
}

/* =========================
  <=750px：スマホ
========================= */
@media (max-width: 750px) {
  .fv::before {
    height: 10px;
  }

  .fv::after {
    height: 10px;
  }

  .fv__inner {
    width: min(1200px, calc(100% - 28px));
    padding: 50px 0 52px;
  }

  .fv__lead {
    font-size: 20px;
  }

  /* SP指定 */
  .fv__subtitle {
    font-size: 14px;
  }

  .fv__badges {
    gap: 10px;
  }

  .fv__badge {
    width: 96px;
    height: 96px;
    font-size: 12px;
  }

  .fv__cta {
    min-width: 220px;
    padding: 12px 28px;
  }

  .fv__img {
    width: min(560px, 112vw);
    margin-bottom: -50px;
  }

  .fv {
    margin-bottom: 0px;
  }

  .worries {
    margin-top: 40px;
  }
}

/* =========================================================
  Company Slider (Marquee)
========================================================= */
.company-slider {
  padding: 22px 0;
  background: #fff;
}

.company-slider__viewport {
  position: relative;
  overflow: hidden;
  /* ここで見切る */
}

.company-slider__track {
  display: flex;
  width: fit-content;
  gap: 28px;
  align-items: center;

  /* 右→左（right to left） */
  animation: companyMarquee var(--marquee-duration, 28s) linear infinite;
  will-change: transform;
}

/* ホバー・フォーカス中は止める（任意） */
.company-slider__viewport:hover .company-slider__track,
.company-slider__viewport:focus-within .company-slider__track {
  animation-play-state: paused;
}

.company-slider__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 28px;
}

.company-slider__item {
  flex: 0 0 auto;
}

.company-slider__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  padding: 10px 14px;
  border-radius: 12px;
  background: #fff;
}

.company-slider__link:hover {
  opacity: 0.85;
}

.company-slider__link.is-no-link:hover {
  opacity: 1;
}

.company-slider__logo {
  display: block;
  height: 44px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

/* 右→左に流す（2リスト分のうち、1リスト分だけ移動） */
@keyframes companyMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* 750px以下：少し小さく */
@media (max-width: 750px) {
  .company-slider {
    padding: 18px 0;
  }

  .company-slider__track,
  .company-slider__list {
    gap: 18px;
  }

  .company-slider__link {
    height: 54px;
    padding: 8px 12px;
  }

  .company-slider__logo {
    height: 36px;
    max-width: 150px;
  }
}

/* =========================================================
  Worries Section
  「こんなお悩みありませんか？」
  ※ブレークポイントは 1201px / 750px のみ
========================================================= */
.worries {
  /* 画像を“はみ出し”表示するため、セクション内だけ横溢れを抑止 */
  overflow-x: hidden;
  background: #fff;
  margin-top: 80px;

  /* 尖り高さ（ここを基準に 2つ目セクションの位置も連動） */
  --worries-tip: 80px;
}

.worries__top {
  position: relative;
  background: linear-gradient(90deg, #80D0C7 0%, #3FB1D8 73%, #0193E9 100%);
  padding: 54px 0 78px;

  /* 薄い白線が出るのを抑止（念のため） */
  border: 0;
  box-shadow: none;

  /* 尖りを下のセクションより前面に出す */
  z-index: 1;
}

/* 下に向かって尖る帯（グラデのまま） */
.worries__top::after {
  content: "";
  position: absolute;
  left: 0;

  /* 継ぎ目に薄い白線が出る環境対策：1pxだけ重ねる */
  bottom: calc(var(--worries-tip) * -1 + 1px);

  width: 100%;
  height: calc(var(--worries-tip) + 1px);

  background: linear-gradient(90deg, #80D0C7 0%, #3FB1D8 73%, #0193E9 100%);
  clip-path: polygon(0 0, 100% 0, 50% 100%);

  border: 0;
  box-shadow: none;
  outline: 0;

  z-index: 2;
}

.worries__title {
  margin: 0 0 18px;
  text-align: center;
  color: #fff;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: 0.06em;
}

/* 白カード */
.worries__card {
  background: #fff;
  border-radius: 10px;
  padding: 22px 24px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

/* 箇条書き */
.worries__bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}

.worries__bullets li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.8;
  color: #111;
}

.worries__bullets li+li {
  margin-top: 8px;
}

.worries__bullets li::before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
  color: #111;
}

.worries__em {
  color: #2F8E92;
  font-weight: 800;
}

/* 上側イラスト */
.worries__card-media {
  display: flex;
  justify-content: flex-end;
}

.worries__img {
  display: block;
  max-width: 100%;
  height: auto;
}

.worries__img--top {
  width: min(420px, 100%);
}

/* 下段（白背景） */
.worries__bottom {
  background: #fff;
  padding: 40px 0 56px;

  /* 尖りの先端に、2つ目セクションの中央が来るよう連動 */
  margin-top: var(--worries-tip);

  position: relative;
  z-index: 0;
}

.worries__bottom-inner {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
}

.worries__result-label {
  margin: 0 0 14px;
  color: #E60000;
  font-weight: 800;
  text-align: center;
  font-size: 22px;
}

.worries__result-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.worries__result-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.worries__check {
  width: 22px;
  height: 22px;
  border-radius: 3px;
  position: relative;
  flex: 0 0 22px;
  margin-top: 2px;
}

.worries__check::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 8px;
  height: 12px;
  border-right: 3px solid #2F8E92;
  border-bottom: 3px solid #2F8E92;
  transform: rotate(40deg);
}

.worries__result-title {
  margin: 0;
  font-weight: 900;
  font-size: 18px;
  color: #111;
  line-height: 1.25;
}

.worries__result-note {
  margin: 6px 0 0;
  font-size: 12px;
  color: #333;
}

.worries__bottom-media {
  display: flex;
  justify-content: center;
}

.worries__img--bottom {
  width: min(220px, 62vw);
}

/* =========================================================
  PC（1201px以上）
========================================================= */
@media (min-width: 1201px) {
  .worries {
    /* 台形をもっと尖らせる（PCは深め） */
    --worries-tip: 120px;
  }

  .worries__top {
    padding: 56px 0 96px;
  }

  .worries__title {
    font-size: 22px;
    margin-bottom: 20px;
  }

  /* ---- ここが「白カード上下が大きい」対策の本体 ----
     画像がカード高さを押し上げていたので、PC時だけ画像をabsolute化し、
     カードの高さをテキスト基準にして上下の白を減らす */
  .worries__card {
    position: relative;

    /* テキストが改行されないように幅を確保 */
    grid-template-columns: 1fr;

    /* 右側に画像の居場所を確保（改行防止にも効く） */
    padding: 18px 34px;
    padding-right: 640px;

    /* 画像が大きくてもカードが縦に伸びすぎないように */
    align-items: start;
  }

  .worries__bullets {
    max-width: 820px;
  }

  .worries__bullets li {
    font-size: 20px;
    white-space: nowrap;
    /* ← 改行しない */
  }

  .worries__card-media {
    position: absolute;
    top: 50%;
    right: -130px;
    transform: translateY(-50%);
    display: flex;
    justify-content: flex-end;
    pointer-events: none;
    /* 誤クリック防止（必要なら外してOK） */
  }

  .worries__img--top {
    max-width: none;
    margin: 0;
  }

  /* 下段：左にイラスト、右に結果 */
  .worries__bottom {
    z-index: 99;
  }

  .worries__bottom-inner {
    grid-template-columns: 500px 1fr;
    /* ← 2つ目画像を大きくする */
    align-items: center;
  }

  .worries__bottom-media {
    justify-content: flex-start;
  }

  .worries__img--bottom {
    width: 520px;
    /* ← 2つ目画像をもっと大きく */
    max-width: none;
    margin-top: -190px;
  }

  .worries__result-label {
    text-align: left;
    margin-bottom: 12px;
  }

  /* 右側テキスト（優秀な人材の〜）をPCで32px */
  .worries__result-title {
    font-size: 32px;
    line-height: 1.15;
  }
}

/* =========================================================
  SP（750px以下）
========================================================= */
@media (max-width: 750px) {
  .worries {
    /* SPは尖りをやや控えめ */
    --worries-tip: 70px;
  }

  .worries__top {
    padding: 44px 0 72px;
  }

  .worries__title {
    font-size: 16px;
  }

  .worries__card {
    padding: 18px 18px 14px;
    gap: 12px;
  }

  .worries__bullets li {
    font-size: 14px;
    line-height: 1.5;
  }

  .service-feature__num {
    margin-top: 4px !important;
  }

  .worries__card-media {
    justify-content: center;
    position: static;
    transform: none;
    pointer-events: auto;
  }

  .worries__img--top {
    width: min(320px, 92%);
    margin: 4px auto 0;
    max-width: 100%;
    margin-bottom: -100px;
  }

  .worries__bottom {
    padding: 82px 0 46px;
  }

  .worries__result-title {
    font-size: 16px;
  }

  /* 2つ目画像：SPも少し大きめに */
  .worries__img--bottom {
    width: min(260px, 78vw);
  }
}

/* =========================
  Worries Bottom (SP)
  テキスト→画像の順番 + テキスト中央寄せ
========================= */
@media (max-width: 750px) {

  /* 画像を後ろに回す（media → 最後） */
  .worries__bottom-media {
    order: 2;
  }

  .worries__bottom-text {
    order: 1;
  }

  /* テキスト全体を中央配置 */
  .worries__bottom-text {
    text-align: center;
  }

  /* 「その結果…」も中央のまま明示 */
  .worries__result-label {
    text-align: center;
  }

  /* チェック＋文言の行も中央寄せ（見た目を崩さず中央寄せ） */
  .worries__result-list {
    justify-items: center;
  }

  .worries__result-item {
    width: fit-content;
    margin-inline: auto;
    text-align: left;
    /* 行内は左のまま（読みやすさ） */
  }
}

/* =========================================================
  Worries bottom - SP
  「左揃えのまま」ブロック自体を中央配置（ガタつき解消）
========================================================= */
@media (max-width: 750px) {

  /* テキスト全体：中央寄せをやめて、中央に“置く” */
  .worries__bottom-text {
    text-align: left;
    width: fit-content;
    max-width: calc(100% - 32px);
    margin-inline: auto;
  }

  /* 「その結果…」は見出しだけ中央 */
  .worries__result-label {
    text-align: center;
  }

  /* リストの“中央寄せ”指定を解除して左揃え */
  .worries__result-list {
    justify-items: start;
  }

  .worries__result-item {
    width: auto;
    margin-inline: 0;
  }

  .worries__bottom-content {
    margin: auto;
  }
}

/* =========================================================
  Worries bottom - PC
  「その結果…」のサイズ＆位置をデザイン寄せ
========================================================= */
@media (min-width: 1201px) {
  .worries__result-label {
    font-size: 22px;
    /* ← 小さかったのでアップ（必要なら微調整可） */
    line-height: 1.2;
    margin: 0 0 50px;
    /* ← タイトルとの間を少し広げる */
    text-align: left;
    /* PCは左寄せ（既存仕様に合わせる） */
  }
}

/* =========================================================
  「こんなお悩みありませんか」タブレットはSPと同じレイアウトにする
  ※フォントサイズは変更しない
========================================================= */
@media (min-width: 751px) and (max-width: 1200px) {

  /* PCの横並びを解除してSPと同じ縦積みに */
  .worries__inner,
  .worries__wrap,
  .worries__body {
    display: block !important;
  }

  /* もしPCでflexになっている場合の保険 */
  .worries__inner,
  .worries__wrap,
  .worries__body {
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
  }

  /* 2カラム指定があれば1カラムに */
  .worries__grid {
    grid-template-columns: 1fr !important;
  }

  /* 画像とテキストの並びもSP同様に */
  .worries__img,
  .worries__text,
  .worries__content,
  .worries__list {
    width: 60%;
    max-width: 100%;
  }

}

/* =========================================================
  「worries__bottom」タブレットはSPと同じ（テキスト→画像）にする
  ※フォントサイズは変更しない
========================================================= */
@media (min-width: 751px) and (max-width: 1200px) {

  /* 親を縦並び + 並び順を入れ替え */
  .worries__bottom-inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
    /* SPっぽい余白。不要なら消してOK */
  }

  /* テキストを先 */
  .worries__bottom-content {
    order: 1 !important;
    margin: auto;
  }

  /* 画像を後 */
  .worries__bottom-media {
    order: 2 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  /* 画像がはみ出したり縮むの防止 */
  .worries__img--bottom {
    display: block;
    width: 50%;
    height: auto;
  }
}




/* =========================================================
  Review Importance Section
  「企業口コミの重要性」
  ※ブレークポイントは 1201px / 750px のみ
========================================================= */
.review-importance {
  background: #fff;
  padding: 88px 0 78px;
}

.review-importance__inner {
  width: min(1100px, calc(100% - 32px));
  margin-inline: auto;
}

.review-importance__head {
  text-align: center;
}

.review-importance__title {
  margin: 0;
  font-weight: 900;
  font-size: 28px;
  color: #111;
  letter-spacing: 0.04em;
}

.review-importance__rule {
  display: block;
  width: min(520px, 100%);
  height: 4px;
  background: #80D0C7;
  margin: 16px auto 26px;
  border-radius: 999px;
}

.review-importance__lead {
  margin: 0 0 44px;
  font-weight: 900;
  font-size: 22px;
  line-height: 1.55;
  color: #111;
}

.review-importance__lead-em {
  color: #2F8E92;
}

.review-importance__charts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  justify-items: center;
  align-items: start;
  margin-top: 12px;
}

.review-importance__chart {
  width: 100%;
  max-width: 460px;
  text-align: center;
}

.review-importance__chart-title {
  margin: 0 0 18px;
  font-weight: 900;
  font-size: 18px;
  color: #111;
}

.ri-pie {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto;
}

.ri-pie__canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

.ri-pie__label {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  font-size: 34px;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
  pointer-events: none;
}

.review-importance__big {
  margin: 18px 0 10px;
  line-height: 1;
}

.review-importance__big-num {
  font-size: 64px;
  font-weight: 900;
  color: #2F8E92;
  letter-spacing: 0.02em;
}

.review-importance__big-unit {
  font-size: 18px;
  font-weight: 900;
  color: #111;
  margin-left: 6px;
}

.review-importance__caption {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  color: #2F8E92;
  line-height: 1.6;
}

.review-importance__bottom {
  margin-top: 52px;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 28px;
  align-items: center;
}

.review-importance__callout {
  background: #F7E68A;
  border-radius: 10px;
  padding: 22px 22px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
  clip-path: polygon(0 0, 92% 0, 100% 50%, 92% 100%, 0 100%, 0 0);
}

.review-importance__callout-text {
  margin: 0;
  font-weight: 900;
  color: #111;
  line-height: 1.5;
}

.review-importance__barcard {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
  padding: 18px 18px 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.review-importance__bar-title {
  margin: 0 0 10px;
  text-align: center;
  font-weight: 900;
  font-size: 14px;
  color: #111;
}

.review-importance__bar-wrap {
  height: 280px;
  /* Chart.js の縦サイズ */
}

.review-importance__bar-canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

.review-importance__note {
  margin: 22px 0 0;
  font-size: 12px;
  color: #333;
  line-height: 1.6;
}

/* =========================================================
  <=1200px（タブレット/モバイル）
========================================================= */
@media (max-width: 1200px) {
  .review-importance {
    padding: 72px 0 64px;
  }

  .review-importance__charts {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .review-importance__bottom {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .review-importance__callout {
    clip-path: polygon(0 0, 100% 0, 100% 78%, 50% 100%, 0 78%);
    text-align: center;
  }
}

/* =========================================================
  <=750px（スマホ）
========================================================= */
@media (max-width: 750px) {
  .review-importance__title {
    font-size: 22px;
  }

  .review-importance__rule {
    height: 3px;
    margin: 12px auto 18px;
  }

  .review-importance__lead {
    font-size: 16px;
    margin-bottom: 34px;
  }

  .ri-pie {
    width: 240px;
    height: 240px;
  }

  .review-importance__big-num {
    font-size: 60px;
  }

  .review-importance__bar-wrap {
    height: 260px;
  }
}

/* =========================
  Donut中央を塗りつぶし（視認性UP）
========================= */
.ri-pie {
  /* JSの cutout と合わせる（下のJSも 58% にします） */
  --ri-cutout: 58%;
}

.ri-pie::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: var(--ri-cutout);
  height: var(--ri-cutout);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  z-index: 1;
}

.ri-pie__canvas {
  position: relative;
  z-index: 0;
}

.ri-pie__label {
  z-index: 2;

  /* 白テキスト見やすく */
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

/* =========================================================
  Review Importance：テキストをグラデーション文字に
  0% #80D0C7 → 100% #0093E9
========================================================= */
:root {
  --ri-grad: linear-gradient(90deg, #80D0C7 0%, #0093E9 100%);
}

/* 大きい数字（50 / 80） */
.ri-value__num {
  background: var(--ri-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  /* Safari */
}

/* 下の説明文（チェックする/多い）もグラデ文字にしたい場合 */
.ri-note {
  background: var(--ri-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* もし「%」「以上」もグラデにしたいならこれもON */
.ri-value__unit {
  background: var(--ri-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

/* 棒グラフ（面接前に辞退した理由）を大きくする */
.ri-bar {
  height: 360px;
  /* ← 好みで増減（例：320〜420） */
}

@media (min-width: 1201px) {
  .ri-bar {
    height: 420px;
    /* PCは少し大きめ */
  }
}

@media (max-width: 750px) {
  .ri-bar {
    height: 320px;
    /* SPは縦が長くなりすぎない程度 */
  }
}

/* =========================================================
  Unbias Intro
  「アンバイアスの紹介」
  ※ブレークポイントは 1201px / 750px のみ
========================================================= */
.unbias-intro {
  position: relative;
  overflow: visible;
  /* ← はみ出し表示のため */
  background: linear-gradient(180deg, #FFD08F 0%, #9AEFE5 100%);
  padding: 64px 0 140px;
  /* ボタン下を詰めつつ、イラスト分だけ確保 */
}

.unbias-intro__inner {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
  /* イラストより上 */
}

.unbias-intro__head {
  text-align: center;
  margin-bottom: 34px;
}

.unbias-intro__title {
  margin: 0 0 10px;
  font-weight: 900;
  font-size: 26px;
  color: #4F7B8A;
  letter-spacing: 0.06em;
}

.unbias-intro__lead {
  margin: 0;
  font-weight: 900;
  font-size: 34px;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.unbias-intro__lead-orange {
  color: #F08A00;
}

.unbias-intro__lead-blue {
  color: #2F8E92;
}

.unbias-intro__lead-white {
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.unbias-intro__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 54px;
  align-items: start;
  justify-items: center;
  margin: 0 auto 28px;
}

.unbias-intro__circle {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: #fff;
  border: 12px solid #2F8E92;
  position: relative;
  display: grid;
  place-items: center;
  box-sizing: border-box;
}

.unbias-intro__circle-img {
  display: block;
  width: 72%;
  height: auto;
  object-fit: contain;
  margin-top: -20px;
}

.unbias-intro__circle-text {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  width: 86%;
  margin: 0;
  text-align: center;
  color: #111;
  font-weight: 900;
  font-size: 18px;
  line-height: 1.25;
  /* 画像の上でも潰れないように最低限の読みやすさ */
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.92), 0 0 10px rgba(255, 255, 255, 0.65);
}

.unbias-intro__desc {
  margin: 14px auto 18px;
  text-align: center;
  font-size: 16px;
  line-height: 1.9;
  color: #1E5560;
  font-weight: 700;
}

.unbias-intro__cta {
  text-align: center;
  margin-top: 4px;
}

.unbias-intro__cta-lead {
  margin: 0 0 10px;
  /* ← ボタン上の余白を圧縮 */
  font-weight: 800;
  font-size: 14px;
  color: #1E5560;
}

.unbias-intro__btn {
  display: inline-block;
  padding: 14px 44px;
  border-radius: 999px;
  background: #F08A00;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.unbias-intro__btn:hover {
  filter: brightness(0.98);
}

/* 左下イラスト：背景からはみ出し */
.unbias-intro__illustration {
  position: absolute;
  left: -90px;
  /* ← 左に寄せてはみ出させる */
  bottom: -90px;
  /* ← 下に出す */
  width: min(760px, 62vw);
  z-index: 1;
  /* ← 中身より下 */
  pointer-events: none;
}

.unbias-intro__illustration img {
  display: block;
  width: 100%;
  height: auto;
}

/* =========================================================
  PC（1201px以上）
========================================================= */
@media (min-width: 1201px) {
  .unbias-intro {
    padding: 70px 0 270px;
    /* ← ボタン下を増やしすぎない */
  }

  .unbias-intro__circle {
    width: 320px;
    height: 320px;
  }

  .unbias-intro__circle-text {
    font-size: 18px;
    bottom: 28px;
  }

  .unbias-intro__desc {
    margin-top: 18px;
  }

  .unbias-intro__illustration {
    bottom: -300px;
    width: 820px;
  }
}

/* =========================================================
  SP（750px以下）
========================================================= */
@media (max-width: 750px) {
  .unbias-intro {
    padding: 44px 0 280px;
  }

  .unbias-intro__inner {
    width: min(560px, calc(100% - 28px));
  }

  .unbias-intro__title {
    font-size: 18px;
  }

  .unbias-intro__lead {
    font-size: 20px;
    line-height: 1.45;
  }

  .unbias-intro__grid {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-bottom: 18px;
  }

  .unbias-intro__circle {
    width: 260px;
    height: 260px;
    border-width: 10px;
  }

  .unbias-intro__circle-text {
    font-size: 14px;
    bottom: 20px;
  }

  .unbias-intro__desc {
    font-size: 13px;
    line-height: 1.9;
    margin: 10px auto 14px;
  }

  /* SPは「はみ出し」を弱めて破綻防止 */
  .unbias-intro__illustration {
    left: 0px;
    bottom: -60px;
    width: min(520px, 400px);
  }
}

/* ================================
  円内テキストが枠に被るのを防ぐ（上に移動）
  ※このCSSを既存CSSの「一番下」に追記
================================ */
.unbias-intro__circle-text {
  bottom: 42px;
  /* 26px → 42px（上へ） */
}

@media (min-width: 1201px) {
  .unbias-intro__circle-text {
    bottom: 48px;
    /* 28px → 48px（上へ） */
  }
}

@media (max-width: 750px) {
  .unbias-intro__circle-text {
    bottom: 34px;
    /* 20px → 34px（上へ） */
  }
}

/* =========================================
  サービスの特徴
========================================= */
.service-features,
.service-features * {
  box-sizing: border-box;
}

.service-features {
  background: #fff;
}

.service-features__inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 72px 24px 96px;
}

.service-features__head {
  text-align: center;
}

.service-features__title {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: .06em;
}

.service-features__line {
  display: block;
  width: 240px;
  max-width: 80%;
  height: auto;
  margin: 14px auto 0;
}

/* ===== 各特徴 共通 ===== */
.service-feature {
  margin-top: 72px;
}

.service-feature__badge {
  margin: 0 0 10px;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  color: #002B72;
  letter-spacing: .06em;
}

.service-feature__bar {
  background: #2A9AC1;
  color: #fff;
  font-weight: 800;
  text-align: center;
  padding: 14px 18px;
  font-size: 20px;
  line-height: 1.3;
  max-width: 560px;
  margin: 0 auto 36px;
}

.service-feature__bar--wide {
  max-width: 100%;
  padding: 16px 20px;
  font-size: 22px;
}

.service-feature__bar-highlight {
  color: #FEED87;
  /* カンプの黄色寄せ */
  font-weight: 900;
  font-size: 28px;
}

.service-feature__body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.service-feature__text {
  flex: 1 1 auto;
  min-width: 0;
}

.service-feature__text p {
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 2.0;
  color: #222;
}

.service-feature__text p:last-child {
  margin-bottom: 0;
}

.service-feature__em {
  color: #2F8E92;
  font-weight: 800;
}

/* 画像側 */
.service-feature__figure {
  flex: 0 0 320px;
  margin: 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-feature__img {
  width: 100%;
  max-width: 300px;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

.service-feature__img--office {
  max-width: 330px;
}

/* 特徴① 背景の黄色円 */
.service-feature__figure--circle::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: #FFFBE1;
  /* 指定色 */
  right: -10px;
  bottom: -10px;
  z-index: 0;
}

/* 特徴② 黄色ボックス */
.service-feature__callout {
  background: #FFF2B8;
  border-radius: 8px;
  padding: 12px 14px;
  margin: 14px 0 18px;
}

.service-feature__callout-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-feature__callout-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 24px;
  line-height: 1.8;
  color: #E58A00;
  font-weight: 700;
}

.service-feature__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #F2A100;
  color: #fff;
  font-size: 12px;
  flex: 0 0 20px;
  margin-top: 2px;
}

/* 特徴③ チェック */
.service-feature__checks {
  list-style: none;
  margin: 12px auto 26px;
  padding: 0;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-feature__checks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.7;
  color: #222;
  font-weight: 700;
}

.service-feature__check {
  width: 18px;
  height: 18px;
  border: 2px solid #2F8E92;
  border-radius: 2px;
  position: relative;
  flex: 0 0 18px;
  margin-top: 2px;
}

.service-feature__check::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 6px;
  height: 10px;
  border-right: 2px solid #2F8E92;
  border-bottom: 2px solid #2F8E92;
  transform: rotate(40deg);
}

/* 特徴③ カード */
.service-feature__cards {
  position: relative;
  display: flex;
  gap: 22px;
  align-items: stretch;
}

.service-feature--3 .service-feature__cards::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: #FFFBE1;
  /* 指定色 */
  left: -110px;
  bottom: -140px;
  z-index: 0;
}

.service-card {
  position: relative;
  z-index: 1;
  flex: 1 1 0;
  background: #fff;
  border: 2px solid #2F8E92;
  border-radius: 10px;
  padding: 18px 16px 18px;
  /* 指定：ぼかし5、広がり4、カラー#2F8E92 */
  box-shadow: 0 0 5px 4px #2F8E92;
  max-width: 320px;
}

.service-card__img {
  display: block;
  width: 100%;
  max-width: 160px;
  height: auto;
  margin: 0 auto 12px;
}

.service-card__text {
  margin: 0;
  font-size: 16px;
  line-height: 1.85;
  color: #222;
}

img.service-feature__check-img {
  margin-top: 10px;
}

/* =========================================
  SP
========================================= */
@media (max-width: 767px) {
  .service-features__inner {
    padding: 52px 16px 72px;
  }

  .service-features__title {
    font-size: 20px;
  }

  .service-feature {
    margin-top: 54px;
  }

  .service-feature__bar {
    font-size: 16px;
    max-width: 100%;
    margin-bottom: 24px;
    padding: 12px 14px;
  }

  .service-feature__body {
    flex-direction: column;
    gap: 18px;
  }

  .service-feature__figure {
    flex: 0 0 auto;
    width: 100%;
  }

  .service-feature__img {
    max-width: 280px;
  }

  .service-feature__figure--circle::before {
    width: 240px;
    height: 240px;
    right: 10px;
    bottom: -6px;
  }

  .service-feature__text p {
    font-size: 14px;
    line-height: 2.0;
  }

  .service-feature__checks {
    margin: 10px 0 18px;
  }

  .service-feature__checks li {
    font-size: 15px;
  }

  .service-feature__cards {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }

  .service-feature--3 .service-feature__cards::before {
    width: 300px;
    height: 300px;
    left: -120px;
    bottom: -120px;
  }

  img.service-feature__check-img {
    margin-top: 5px;
  }
}

/* ▼ここ置き換え：タブレット幅で円とgapが縮むようにする */
.unbias-intro__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 54px);
  /* 54px固定 → 可変 */
  align-items: start;
  justify-items: center;
  margin: 0 auto 28px;
}

.unbias-intro__circle {
  width: clamp(220px, 26vw, 300px);
  /* 300px固定 → 可変 */
  height: clamp(220px, 26vw, 300px);
  /* 300px固定 → 可変 */
  border-radius: 50%;
  background: #fff;
  border: clamp(8px, 1.2vw, 12px) solid #2F8E92;
  /* 枠も少しだけ可変 */
  position: relative;
  display: grid;
  place-items: center;
  box-sizing: border-box;
}

/* ▼ここ置き換え：タブレット幅で円とgapが縮むようにする */
.unbias-intro__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 54px);
  /* 54px固定 → 可変 */
  align-items: start;
  justify-items: center;
  margin: 0 auto 28px;
}

.unbias-intro__circle {
  width: clamp(220px, 26vw, 300px);
  /* 300px固定 → 可変 */
  height: clamp(220px, 26vw, 300px);
  /* 300px固定 → 可変 */
  border-radius: 50%;
  background: #fff;
  border: clamp(8px, 1.2vw, 12px) solid #2F8E92;
  /* 枠も少しだけ可変 */
  position: relative;
  display: grid;
  place-items: center;
  box-sizing: border-box;
}

/* ================================
  円内テキスト：白フチ（4px）
  ※既存CSSの一番下に追記（上書き）
================================ */

/* まずは全ブラウザ向けの擬似フチ（text-shadow） */
.unbias-intro__circle-text {
  text-shadow:
    4px 0 0 #fff,
    -4px 0 0 #fff,
    0 4px 0 #fff,
    0 -4px 0 #fff,
    3px 3px 0 #fff,
    -3px 3px 0 #fff,
    3px -3px 0 #fff,
    -3px -3px 0 #fff;
}


/* SP（750px以下）は3つの円を縦並びにする */
@media (max-width: 750px) {
  .unbias-intro__grid {
    grid-template-columns: 1fr !important;
  }

  .service-feature__callout-list li {
    font-size: 16px;
  }

  .service-feature__bar-highlight {
    font-size: 16px;
  }

  .top-cta__art {
    top: 350px;
  }
}

/* =========================
  PC：黒24px／緑28px（特徴①②）
========================= */
@media (min-width: 751px) {
  .service-feature__text p {
    font-size: 22px;
    line-height: 1.9;
  }

  .service-feature__text p .service-feature__em {
    font-size: 28px;
  }

  /* 特徴③：チェック文（黒）も24pxに */
  .service-feature__checks li {
    font-size: 22px;
    line-height: 1.6;
  }

  .service-feature__callout-list li {
    font-size: 24px;
  }

  .service-feature__bar-highlight {
    font-size: 28px;
  }
}

/* =========================================================
  Tablet（751px〜1200px）専用調整
========================================================= */
@media (min-width: 751px) and (max-width: 1200px) {

  /* イラストが食い込む分、下余白も少し確保（必要なら） */
  .unbias-intro {
    padding-bottom: 150px;
    margin-bottom: 200px;
  }

  .worries__bullets li {
    font-size: 20px;
  }

  .service-feature__text p {
    font-size: 20px;
    line-height: 1.5;
  }

  .service-feature__text p .service-feature__em {
    font-size: 24px;
  }

  .unbias-intro__illustration {
    left: -60px;
    /* -90pxだと寄りすぎる場合に */
    bottom: -350px;
    /* タブレットはもう少し下へ */
    width: min(760px, 600px);
    /* 画面幅に合わせて少し大きめ */
  }
}

/* =========================================
  特徴②：①〜③（数字）とテキストの縦ズレ修正
  → flex ではなく grid で揃える
========================================= */
.service-feature__callout-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  /* 左：丸、右：テキスト */
  column-gap: 10px;
  align-items: start;
}

.service-feature__num {
  margin-top: 12px;
  /* 文字サイズが変わっても自然に揃う */
}

/* =========================================
  特徴③：チェックボックスとテキストの縦ズレ修正
  → grid で揃える（大きい文字でも崩れにくい）
========================================= */
.service-feature__checks li {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
}

.service-feature__check {
  margin-top: .22em;
  /* 24px想定でも中央寄りに */
}

/* =========================================================
  企業様の声 / 求職者様の声（TOP）
========================================================= */
.unbias-voices {
  padding: 72px 20px;
  background: #fff;
  overflow: hidden;
}

.unbias-voices__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.unbias-voices__title {
  text-align: center;
  font-weight: 800;
  font-size: 28px;
  line-height: 1.35;
  letter-spacing: .02em;
  margin: 0;
}

.unbias-voices__title-line {
  width: 220px;
  height: 4px;
  background: #2F8E92;
  margin: 14px auto 0;
  border-radius: 999px;
}

.voice-block {
  margin-top: 44px;
}

.voice-block__bar {
  width: 100%;
  text-align: center;
  font-weight: 800;
  font-size: 18px;
  padding: 16px 12px;
  letter-spacing: .04em;
}

.voice-block__bar--company {
  background: #DCEEF6;
  color: #2F8E92;
}

.voice-block__bar--seeker {
  background: #FFF2A8;
  color: #E08A00;
}

/* ===== slider ===== */
.voice-slider {
  position: relative;
  margin-top: 18px;
  --gap: 22px;
}

/* ✅ 影が切れないように「描画余白」を確保（重要） */
.voice-slider__viewport {
  overflow: hidden;
  width: 100%;

}

/* トラック */
.voice-slider__track {
  display: flex;
  gap: var(--gap);
  will-change: transform;
  transition: transform .45s ease;
}

/* perView（JSで付与されるclassで幅を固定計算） */
.voice-slider.is-per3 .voice-card {
  flex: 0 0 calc((100% - (var(--gap) * 2)) / 3);
}

.voice-slider.is-per2 .voice-card {
  flex: 0 0 calc((100% - (var(--gap) * 1)) / 2);
}

.voice-slider.is-per1 .voice-card {
  flex: 0 0 100%;
}

/* 矢印 */
.voice-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: none;
  background: #7BCBC9;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .15);
}

.voice-slider__nav::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: translate(-50%, -50%) rotate(-45deg);
  /* nextの向き */
}

.voice-slider__nav--prev {
  left: -56px;
}

.voice-slider__nav--prev::before {
  transform: translate(-50%, -50%) rotate(135deg);
}

.voice-slider__nav--next {
  right: -56px;
}

@media (max-width: 1212px) {
  .voice-slider__nav--prev {
    left: -10px;
  }

  .voice-slider__nav--next {
    right: -10px;
  }
}

/* カード */
.voice-card {
  background: #fff;
  border: 1px solid #ededed;
  padding: 18px 18px 16px;
  min-height: 190px;
  position: relative;

  /* ✅ カンプ寄せ：柔らかい影（下にしっかり出る） */
  box-shadow:
    0 10px 22px rgba(0, 0, 0, .12),
    0 2px 6px rgba(0, 0, 0, .06);
}

.voice-card__meta {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  color: #2F8E92;
  letter-spacing: .02em;
}

.voice-card__title {
  margin: 6px 0 14px;
  font-size: 18px;
  font-weight: 800;
  color: #222;
  line-height: 1.35;
}

.voice-card__body {
  display: flex;
  align-items: center;
  gap: 16px;
}

.voice-card__avatar {
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background: #D9D9D9;
  position: relative;
  flex: 0 0 auto;
}

.voice-card__avatar::before {
  content: "";
  position: absolute;
  top: 24%;
  left: 50%;
  width: 34%;
  height: 34%;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(255, 255, 255, .95);
}

.voice-card__avatar::after {
  content: "";
  position: absolute;
  top: 56%;
  left: 50%;
  width: 64%;
  height: 36%;
  transform: translateX(-50%);
  border-radius: 999px 999px 10px 10px;
  background: rgba(255, 255, 255, .95);
}

.voice-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: #333;
}

/* more（SPでのみ表示） */
.voice-card__more {
  display: none;
  margin-top: 10px;
  text-align: right;
  font-weight: 700;
  font-size: 12px;
  color: #333;
  text-decoration: none;
}

/* ドット（SPで表示） */
.voice-slider__dots {
  display: none;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
}

.voice-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: #9f9f9f;
  cursor: pointer;
}

.voice-dot.is-active {
  background: #2F8E92;
}

/* =========================================================
  SP
========================================================= */
@media (max-width: 767px) {
  .unbias-voices {
    padding: 56px 16px;
  }

  .unbias-voices__title {
    font-size: 22px;
  }

  .voice-slider {
    --gap: 16px;
  }

  .voice-slider__nav {
    width: 40px;
    height: 40px;
  }

  .voice-slider__nav--prev {
    left: -10px;
  }

  .voice-slider__nav--next {
    right: -10px;
  }

  /* 企業様の声：SPは「アイコン上・テキスト下」 */
  .voice-block--company .voice-card__body {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .voice-block--company .voice-card__avatar {
    width: 120px;
    height: 120px;
    margin: 2px auto 0;
  }

  .voice-block--company .voice-card__text {
    width: 100%;
  }

  /* 求職者様の声：SPはmoreを表示 */
  .voice-card__more {
    display: block;
  }

  .voice-slider__dots {
    display: flex;
  }
}

/* =========================================================
  768px以上はドット非表示
========================================================= */
@media (min-width: 768px) {
  .voice-slider__dots {
    display: none !important;
  }
}


/* =========================
  登録弁護士スライダー（TOP）
========================= */

.lawyer-slider {
  padding: 72px 0 88px;
  background: #fff;
}

.lawyer-slider__inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.lawyer-slider__title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

.lawyer-slider__title-line {
  width: min(520px, 100%);
  height: 4px;
  background: #7FD7D3;
  margin: 18px auto 0;
}

/* ★修正ポイント：スライダーの横幅を絞る（＝1枚あたりが小さくなる） */
.lawyer-slider__wrap {
  position: relative;
  width: min(980px, 100%);
  /* ここで全体幅を絞る */
  margin: 56px auto 0;
}

.lawyer-slider__swiper {
  width: 100%;
}

.lawyer-slider__slide {
  height: auto;
}

/* カード */
.lawyer-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
}

.lawyer-card__figure {
  margin: 0;
  width: 100%;
  aspect-ratio: 3 / 4;
  /* 縦横比は維持 */
  background: #eee;
  overflow: hidden;
}

.lawyer-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lawyer-card__body {
  background: #D9D9D9;
  padding: 16px 18px;
}

.lawyer-card__aff {
  margin: 0 0 6px;
  font-size: 14px;
  line-height: 1.5;
}

.lawyer-card__name {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}

/* 矢印（PCはスライダー幅の外側に配置） */
.lawyer-slider__nav {
  position: absolute;
  top: calc(50% - 28px);
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  background: #7FD7D3;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
  z-index: 2;
}

.lawyer-slider__nav--prev {
  left: -78px;
}

.lawyer-slider__nav--next {
  right: -78px;
}

.lawyer-slider__nav-icon {
  width: 10px;
  height: 10px;
  display: block;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.lawyer-slider__nav-icon--prev {
  transform: rotate(-135deg);
  margin-left: 3px;
}

.lawyer-slider__nav-icon--next {
  transform: rotate(45deg);
  margin-right: 3px;
}

/* ドット */
.lawyer-slider__pagination {
  margin-top: 26px;
  text-align: center;
}

.lawyer-slider__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 10px !important;
  opacity: 1;
  background: #4A4A4A;
}

.lawyer-slider__pagination .swiper-pagination-bullet-active {
  background: #7FD7D3;
}

/* CTA */
.lawyer-slider__cta {
  margin-top: 46px;
  display: flex;
  justify-content: center;
}

.lawyer-slider__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 64px;
  border-radius: 999px;
  background: #2D97BF;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

/* SP */
@media (max-width: 767px) {
  .lawyer-slider {
    padding: 44px 0 64px;
  }

  .lawyer-slider__inner {
    width: min(1080px, calc(100% - 32px));
  }

  .lawyer-slider__title {
    font-size: 20px;
    text-align: left;
  }

  .lawyer-slider__title-line {
    margin: 14px 0 0;
  }

  .lawyer-slider__wrap {
    width: 100%;
    margin-top: 30px;
  }

  /* SPは画面からはみ出さないように内側に寄せる */
  .lawyer-slider__nav--prev {
    left: 0;
  }

  .lawyer-slider__nav--next {
    right: 0;
  }

  .lawyer-card__name {
    font-size: 18px;
  }

  .lawyer-slider__btn {
    width: 100%;
    max-width: 290px;
    padding: 0 24px;
  }
}


/* =========================
   TOP CTA
========================= */
.top-cta {
  position: relative;
  width: 100%;
  overflow: hidden;

  /* グラデーション背景（指定） */
  background: linear-gradient(74deg,
      #80D0C7 0%,
      #40B1D8 60%,
      #0093E9 100%);
}

/* 下部の白い領域（カンプの白帯） */
.top-cta::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 260px;
  /* PCの白帯 */
  background: #fff;
  z-index: 1;
}

.top-cta__inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 92px 120px 320px;
  /* 画像が被らないよう下に余白 */
  text-align: center;
}

.top-cta__lead {
  margin: 0;
  color: #1F5F6D;
  /* カンプの濃い青緑寄せ */
  font-weight: 700;
  font-size: clamp(16px, 1.6vw, 22px);
  line-height: 2.05;
  letter-spacing: 0.02em;
}

.top-cta__sub {
  margin: 24px 0 0;
  color: #1F5F6D;
  font-weight: 700;
  font-size: clamp(13px, 1.2vw, 16px);
  line-height: 1.6;
}

/* ボタン */
.top-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin: 44px auto 0;
  min-height: 60px;
  width: min(520px, 92vw);
  padding: 0 22px;

  background: #F08A00;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;

  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.04em;

  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}

.top-cta__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.14);
}

.top-cta__btn:active {
  transform: translateY(0);
  opacity: .95;
}

/* ボタン文言 PC/SP出し分け */
.top-cta__btn-text--sp {
  display: none;
}

/* 画像配置 */
.top-cta__art {
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: min(4vw, 56px);
  margin: 0;
  pointer-events: none;
}

.top-cta__art img {
  display: block;
  width: min(720px, 46vw);
  height: auto;
}

/* =========================
   SP（〜750px）
========================= */
@media (max-width: 750px) {
  .top-cta::after {
    height: 175px;
    /* SPの白帯 */
  }

  .top-cta__inner {
    padding: 70px 20px 300px;
  }

  .top-cta__sub {
    margin-top: 18px;
  }

  .top-cta__btn {
    margin-top: 28px;
    min-height: 52px;
    width: min(300px, 86vw);
    font-size: 16px;
  }

  .top-cta__btn-text--pc {
    display: none;
  }

  .top-cta__btn-text--sp {
    display: inline;
  }

  .top-cta__art {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: 0;
  }

  .top-cta__art img {
    width: min(420px, 92vw);
  }
}

/* =========================
   TOP CTA
========================= */
.top-cta {
  position: relative;
  width: 100%;
  overflow: hidden;

  /* グラデーション背景（指定） */
  background: linear-gradient(74deg,
      #80D0C7 0%,
      #40B1D8 60%,
      #0093E9 100%);
}

/* 下部の白い領域（カンプの白帯） */
.top-cta::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 260px;
  /* PCの白帯 */
  background: #fff;
  z-index: 1;
}

.top-cta__inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 92px 24px 320px;
  /* 画像が被らないよう下に余白 */
  text-align: center;
}

.top-cta__lead {
  margin: 0;
  color: #1F5F6D;
  /* カンプの濃い青緑寄せ */
  font-weight: 700;
  font-size: clamp(16px, 1.6vw, 22px);
  line-height: 2.05;
  letter-spacing: 0.02em;
}

.top-cta__sub {
  margin: 24px 0 0;
  color: #1F5F6D;
  font-weight: 700;
  font-size: clamp(13px, 1.2vw, 16px);
  line-height: 1.6;
}

/* ボタン */
.top-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin: 44px auto 0;
  min-height: 60px;
  width: min(520px, 92vw);
  padding: 0 22px;

  background: #F08A00;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;

  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.04em;

  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}

.top-cta__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.14);
}

.top-cta__btn:active {
  transform: translateY(0);
  opacity: .95;
}

/* ボタン文言 PC/SP出し分け */
.top-cta__btn-text--sp {
  display: none;
}

/* 画像配置 */
.top-cta__art {
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: min(4vw, 56px);
  margin: 0;
  pointer-events: none;
}

.top-cta__art img {
  display: block;
  width: min(720px, 46vw);
  height: auto;
}

/* =========================
   SP（〜750px）
========================= */
@media (max-width: 750px) {
  .top-cta::after {
    height: 175px;
    /* SPの白帯 */
  }

  .top-cta__inner {
    padding: 70px 20px 300px;
  }

  .top-cta__sub {
    margin-top: 18px;
  }

  .top-cta__btn {
    margin-top: 28px;
    min-height: 52px;
    width: min(300px, 86vw);
    font-size: 16px;
  }

  .top-cta__btn-text--pc {
    display: none;
  }

  .top-cta__btn-text--sp {
    display: inline;
  }

  .top-cta__art {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    bottom: 0;
  }

  .top-cta__art img {
    width: min(420px, 92vw);
  }
}

/* ① グラデーションを逆に（色順を反転） */
.top-cta {
  background: linear-gradient(74deg,
      #0093E9 0%,
      #40B1D8 60%,
      #80D0C7 100%);
}

/* ② 画像が大きすぎるので縮小（位置はそのまま） */
.top-cta__art img {
  width: min(560px, 38vw);
  /* ← ここを小さくしました */
  height: auto;
}

/* SP 側も縮小 */
@media (max-width: 750px) {
  .top-cta__art img {
    width: min(340px, 82vw);
    /* ← ここも小さく */
  }
}

/* =========================================
   新着コラム（TOP）
========================================= */
.top-column {
  padding: 56px 0 72px;
}

.top-column__inner {
  width: min(1100px, calc(100% - 48px));
  margin: 0 auto;
}

.top-column__title {
  text-align: center;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: 0.04em;
  margin: 0 0 34px;
  color: #111;
}

.top-column__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 18px;
}

/* PC：3列、表示は9件（10件目を非表示） */
@media (min-width: 1000px) {
  .top-column__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 36px 34px;
  }

  .top-column__item:nth-child(n + 10) {
    display: none;
  }
}

.top-column__card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.10);
  transform: translateY(0);
  transition: transform .2s ease, box-shadow .2s ease;
}

@media (hover:hover) {
  .top-column__card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
  }
}

/* ★カードの大きさを元に戻す：画像比率を16:9に */
.top-column__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #f2f2f2;
}

.top-column__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* noimage時（必要なら背景画像に差し替えてください） */
.top-column__thumb--noimg {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #eee, #f6f6f6);
}

/* カテゴリーラベル：白枠線、▼なし */
.top-column__tag {
  position: absolute;
  left: 14px;
  bottom: 12px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  border: 2px solid #fff;
  /* 白枠線 */
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.12);
}

/* ▼（三角）は不要 */
.top-column__tag::before,
.top-column__tag::after {
  content: none !important;
}

/* カテゴリー色（仮：column1/column2/column3） */
.top-column__tag--column1 {
  background: #2A9AC1;
}

.top-column__tag--column2 {
  background: #EDBE38;
}

.top-column__tag--column3 {
  background: #75CBCB;
}

.top-column__body {
  padding: 12px 16px 16px;
}

.top-column__date {
  display: block;
  font-size: 13px;
  color: #666;
  margin-bottom: 6px;
}

.top-column__card-title {
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  color: #111;
  line-height: 1.5;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  /* 2行で… */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* CTAボタン */
.top-column__cta {
  text-align: center;
  margin-top: 34px;
}

.top-column__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 999px;
  background: #2FA9C7;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.10);
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

@media (hover:hover) {
  .top-column__btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.14);
  }
}

/* =========================================
   新着コラム（TOP）スマホ調整（<=750px）
   - gap を小さく
   - 画像（カード）を少し大きく見せる（左右余白とgapを詰める）
   - カテゴリー：左下寄せを強制、文字を少し小さく
========================================= */
@media (max-width: 750px) {

  /* 画面端の余白を少し詰めて、カード（＝画像）を大きく見せる */
  .top-column__inner {
    width: calc(100% - 24px);
    /* 12px ずつ */
  }

  /* アイテム間の隙間を小さく */
  .top-column__list {
    gap: 16px 12px;
    /* ←お好みで微調整OK */
  }

  /* カテゴリーラベル：左下寄せ＋文字を少し小さく */
  .top-column__tag {
    left: 10px !important;
    bottom: 10px !important;
    font-size: 12px;
    padding: 5px 10px;
    display: inline-flex;
    /* 念のため中央寄せ崩れ対策 */
    width: auto;
    max-width: calc(100% - 20px);
  }
}

/* Breadcrumb */
.column-breadcrumbbar {
  width: 100%;
  border-top: 1px solid #E6EFF7;
  border-bottom: 1px solid #E6EFF7;
  background: #fff;
}

.column-breadcrumb {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
  font-size: 13px;
  color: #666;
}

.column-breadcrumb__link {
  color: #666;
  text-decoration: none;
  white-space: nowrap;
  /* 改行防止 */
  overflow-wrap: normal;
  /* 変な折り返し防止 */
  word-break: keep-all;
  /* 日本語途中改行しにくく */
}

.column-breadcrumb__home {
  display: inline-flex;
  align-items: center;
  width: auto;
  height: auto;
  padding: 0;
  white-space: nowrap;
}

.column-breadcrumb__sep {
  color: #999;
  white-space: nowrap;
}

.column-breadcrumb__current {
  color: #333;
  font-weight: 700;
}

@media (max-width: 767px) {
  .column-breadcrumb {
    padding: 10px 16px;
    font-size: 12px;
    flex-wrap: wrap;
    /* SPは必要なら折り返しOK */
    gap: 6px;
  }
}

/* =========================================================
  Sidebar (Common) - from archive-column.css
========================================================= */

.column-sidebar {
  width: 320px;
}

/* ===== Sidebar: Banner ===== */
.sb-banner {
  width: 100%;
}

.sb-banner__placeholder {
  width: 100%;
  aspect-ratio: 300 / 250;
  border-radius: 8px;
  background: #E9EEF2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9aa6af;
  font-size: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .06);
}

.sb-banner a {
  display: block;
  text-decoration: none;
}

.sb-banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .10);
}

/* ===== Sidebar: Boxes ===== */
.sb-box {
  margin-top: 16px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
  background: #fff;
}

.sb-box__title {
  margin: 0;
  padding: 10px 14px;
  background: #48999D;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
}

.sb-box__body {
  padding: 12px 12px;
}

/* Category list */
.sb-catlist {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sb-catlist__item {
  border-bottom: 1px solid #EEF2F4;
}

.sb-catlist__item:last-child {
  border-bottom: none;
}

.sb-catlist__item a {
  display: block;
  padding: 10px 6px;
  color: #222;
  text-decoration: none;
  font-size: 13px;
}

.sb-catlist__item a:hover {
  opacity: .85;
}

/* Sidebar posts list */
.sb-posts {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sb-posts__item {
  border-bottom: 1px solid #EEF2F4;
}

.sb-posts__item:last-child {
  border-bottom: none;
}

.sb-posts__link {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  text-decoration: none;
  color: inherit;
}

.sb-posts__thumb {
  width: 72px;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  overflow: hidden;
  background: #E9EEF2;
  flex: 0 0 auto;
}

.sb-posts__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sb-posts__noimg {
  width: 100%;
  height: 100%;
}

.sb-posts__meta {
  min-width: 0;
  flex: 1;
}

.sb-posts__date {
  display: block;
  font-size: 11px;
  color: #888;
  margin-bottom: 4px;
}

.sb-posts__title {
  margin: 0;
  font-size: 12px;
  color: #222;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sb-posts__term {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 18px;
  padding: 0 8px;
  border-radius: 999px;
  border: 1px solid var(--term-color, #888);
  color: var(--term-color, #888);
  font-size: 10px;
  font-weight: 700;
  background: #fff;
}

.sb-empty {
  margin: 10px 0 0;
  color: #777;
  font-size: 13px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .column-sidebar {
    width: 300px;
  }
}

@media (max-width: 900px) {
  .column-sidebar {
    width: 100%;
  }
}

/* =========================
   Review Sidebar (sidebar-review.php)
   ========================= */
.review-sidebar {
  width: 100%;
}

.review-sidebar__block {
  margin: 0 0 24px;
}

.review-sidebar__block:last-child {
  margin-bottom: 0;
}

/* ---- Banner ---- */
.review-sidebar__block--banner {
  margin-bottom: 18px;
}

.review-sidebar__bannerlink {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
  text-decoration: none;
}

.review-sidebar__bannerlink.is-disabled {
  opacity: 0.9;
}

.review-sidebar__bannerimg {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
}

/* ---- Company info ---- */
.review-sidebar__heading {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  color: #111;
}

.review-sidebar__companycard {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  padding: 12px 12px;
}

.review-sidebar__companydl {
  margin: 0;
}

.review-sidebar__row {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.review-sidebar__row:last-child {
  border-bottom: none;
}

.review-sidebar__row dt {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  color: #111;
}

.review-sidebar__row dd {
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: #111;
  min-width: 0;
}

.review-sidebar__urllink {
  color: #0097D7;
  text-decoration: underline;
  text-underline-offset: 2px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.review-sidebar__note {
  margin: 0;
  font-size: 12px;
  color: #666;
}

/* ---- Popular / New blocks (blue header + card) ---- */
.review-sidebar__block--popular,
.review-sidebar__block--new {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.review-sidebar__heading--blue {
  margin: 0;
  padding: 10px 14px;
  background: #48999D;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}

/* ---- List ---- */
.review-sidebar__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.review-sidebar__item+.review-sidebar__item {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.review-sidebar__link {
  display: flex;
  gap: 10px;
  padding: 12px 12px;
  text-decoration: none;
  color: inherit;
  align-items: flex-start;
}

.review-sidebar__link:hover {
  background: rgba(0, 0, 0, 0.02);
}

.review-sidebar__thumb {
  flex: 0 0 84px;
  width: 84px;
  aspect-ratio: 4 / 3;
  border-radius: 6px;
  overflow: hidden;
  background: #eee;
}

.review-sidebar__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-width: none;
}

.review-sidebar__thumb--noimage {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #efefef, #dcdcdc);
}

.review-sidebar__meta {
  flex: 1;
  min-width: 0;
}

.review-sidebar__date {
  font-size: 11px;
  color: #999;
  line-height: 1.2;
  margin: 0 0 4px;
}

.review-sidebar__title {
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.45;
  color: #111;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}

.review-sidebar__cat {
  margin-top: 6px;
}

.review-sidebar__catbadge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.7;
  color: #fff;
  white-space: nowrap;
}

/* ---- Spacing when sidebar drops below (SP) ---- */
@media (max-width: 750px) {
  .review-sidebar {
    margin-top: 22px;
  }

  .review-sidebar__thumb {
    flex-basis: 92px;
    width: 92px;
  }
}

/* =========================================
   企業様の声 / 求職者様の声：スライダー微調整
   - 右端の余白消し
   - ドットを正円に
========================================= */
.voice-slider__viewport {
  overflow: hidden;
}

.voice-slider__track {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  /* 既存のgap指定はそのままでOK（JSが--voice-gapに実測値を入れます） */
  box-sizing: border-box;
  will-change: transform;
}

/* ✅ JSが付与する is-perX に合わせて「合計100%」になるように幅を固定 */
.voice-slider.is-per1 .voice-slider__track>* {
  flex: 0 0 100%;
}

.voice-slider.is-per2 .voice-slider__track>* {
  flex: 0 0 calc((100% - var(--voice-gap, 0px)) / 2);
}

.voice-slider.is-per3 .voice-slider__track>* {
  flex: 0 0 calc((100% - (var(--voice-gap, 0px) * 2)) / 3);
}

/* ✅ ドット：正円固定（iOS/Androidのbutton初期スタイル潰し） */
.voice-slider__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.voice-dot {
  -webkit-appearance: none;
  appearance: none;
  border: 0;
  padding: 0;
  margin: 0;

  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: block;
  flex: 0 0 auto;

  line-height: 0;
  font-size: 0;

  background: #9E9E9E;
  cursor: pointer;
}

.voice-dot.is-active {
  background: #2F8E92;
}

.voice-dot:focus-visible {
  outline: 2px solid #2F8E92;
  outline-offset: 3px;
}

/* =========================================
   FV 簡易フォーム（画像に重ねる）
   ========================================= */

/* 画像の上に重ねるための基準 */
.fv__media {
  position: relative;
  overflow: visible;
}

/* PC：右下に重ねる */
.fv__float {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 5;
  width: 420px;
  max-width: 46%;
  border: 0;
  background: transparent;
  padding: 0;
}

@media (min-width: 1201px) and (max-width: 1300px) {
  .fv__float {
    right: 60px;
    /* 1200px付近で右端にくっつくのを防ぐ余白 */
  }
}

/* SP/Tablet：画像にかぶせて中央に重ねる */
@media (max-width: 1200px) {
  .fv__float {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(92%, 420px);
    max-width: none;
    margin: -80px auto 0;
    /* 重なり量 */
  }

  .fv-wrap {
    padding-bottom: 0px;
    /* 重なった分の逃げ */
  }
}

@media (max-width: 750px) {
  .fv__float {
    margin-top: -80px;
  }
}

/* 外側の枠線・影は消す（枠線二重防止） */
.fv-form {
  border: 0 !important;
  background: transparent;
  padding: 0 !important;
  box-shadow: none !important;
}

/* テーマ側で wpcf7 に枠線/影が当たっていても外す */
.fv-form .wpcf7 {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* 「唯一の枠線」 */
.fv-form .wpcf7 form {
  margin: 0 !important;
  border: 3px solid #1E7BD8;
  border-radius: 18px;
  background: #fff;
  padding: 22px 22px 18px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, .10);
}

/* CF7の余計なpマージンを消す（崩れ防止） */
.fv-form .wpcf7 p {
  margin: 0;
}

/* box-sizing統一 */
.fv-form *,
.fv-form *::before,
.fv-form *::after {
  box-sizing: border-box;
}

/* ===============================
   ここからフォーム中身（カンプ寄せ）
   =============================== */

/* ① 見出し：水色（カンプ通り） */
.fv-form .fv-mini-form__headline {
  margin: 0 0 14px;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  color: #1E7BD8;
  /* ←水色に */
}

/* ② ラベル＋入力を横並び */
.fv-form .fv-mini-form__row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 12px 0;
}

/* ラベル幅を固定（左右揃え） */
.fv-form .fv-mini-form__label {
  flex: 0 0 120px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

/* 入力エリアは同じ幅になるように */
.fv-form .fv-mini-form__control {
  flex: 1 1 auto;
  min-width: 0;
}

/* ③ 入力欄の長さ・高さを統一 */
.fv-form .fv-mini-form__input {
  width: 100% !important;
  height: 44px;
  line-height: 44px;
  border: 2px solid #1E7BD8;
  background: #fff;
  padding: 0 12px;
  font-size: 14px;
  border-radius: 0;
  outline: none;
}

/* CF7のwrapが幅を崩すことがあるので固定 */
.fv-form .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

/* 同意文：改行させない */
.fv-form .fv-mini-form__agree {
  margin-top: 10px;
  font-size: 12px;
  color: #333;
}

.fv-form .wpcf7-acceptance .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.fv-form .wpcf7-acceptance .wpcf7-list-item-label {
  white-space: nowrap;
}

/* 送信ボタン */
.fv-form .fv-mini-form__actions {
  margin-top: 14px;
}

.fv-form .fv-mini-form__submit,
.fv-form input[type="submit"] {
  width: 100%;
  border: none;
  background: #1E7BD8;
  color: #fff;
  font-weight: 700;
  padding: 12px 14px;
  cursor: pointer;
}

/* SPでは縦積みに戻す */
@media (max-width: 750px) {
  .fv-form .fv-mini-form__row {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .fv-form .fv-mini-form__label {
    flex: none;
  }

  .fv-form .fv-mini-form__headline {
    font-size: 16px;
  }

}

/* 代表弁護士メッセージ */
.top-lawyer-message {
  padding: 70px 0;
}

.top-lawyer-message__header {
  text-align: center;
  margin-bottom: 36px;
}

/* 既存の title-line が効かない場合の保険（見た目は添付デザイン寄せ） */
.top-lawyer-message__title-line {
  width: min(560px, 92%);
  height: 3px;
  background: #80D0C7;
  margin: 18px auto 0;
}

.top-lawyer-message__grid {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

.top-lawyer-message__text {
  flex: 1 1 auto;
}

.top-lawyer-message__text p {
  margin: 0 0 22px;
  font-size: 18px;
  /* PC本文サイズ */
  font-weight: 400;
  /* regular */
  line-height: 1.9;
}

.top-lawyer-message__red {
  color: #E60012;
  font-weight: 700;
}

.top-lawyer-message__media {
  flex: 0 0 360px;
  max-width: 360px;
}

.top-lawyer-message__img {
  display: block;
  width: 100%;
  height: auto;
}

.top-lawyer-message__caption {
  margin-top: 12px;
  font-size: 13px;
  line-height: 1.5;
}

.top-lawyer-message__name {
  display: inline-block;
  margin-top: 4px;
  font-size: 16px;
  font-weight: 700;
}

/* SP：画像 → テキスト（縦並び） */
@media (max-width: 750px) {
  .top-lawyer-message {
    padding: 52px 0;
  }

  .top-lawyer-message__grid {
    flex-direction: column;
    gap: 22px;
  }

  .top-lawyer-message__media {
    order: -1;
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
  }

  .top-lawyer-message__text p {
    font-size: 16px;
    margin-bottom: 18px;
  }
}

/* もっと見るのテキスト色変更 */
.unbias-company__review-more,
.review-related__more {
  color: #0097D7;
}