@charset "UTF-8";
/* =========================================================
   現場系職種の自前採用 LP  —  Figma(SP 390 / PC 1440)準拠 リビルド
   モバイルファースト / BEM
========================================================= */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { overflow-x: hidden; }
body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  color: var(--ink);
  background-color: #fdfbf8;
  background-image: url("img/common/texture.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  line-height: 1.7;
  font-size: 14px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

:root {
  --orange: #3fa971;         /* アクセント：柔らかい緑 */
  --orange-light: #7fcaa1;
  --ink: #0e0f0f;
  --cta: #ff7a21;            /* CTA：差し色オレンジ（緑地に映える） */
  --cta-dark: #e2620c;
  --marker: rgba(63, 169, 113, 0.18);
  --wrap: 390px;        /* SPデザイン基準幅 */
}

/* ---------- Layout container ---------- */
.l-inner {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 20px;
}

/* ---------- Header ---------- */
.l-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  box-shadow: 0 4px 4px rgba(14, 15, 15, .25);
}
.l-header__inner {
  height: 60px;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l-header__logo { height: 34px; width: auto; }
.l-header__cta { display: none; }  /* SPでは非表示、PCで表示 */

/* ハンバーガーボタン */
.l-header__menu {
  width: 30px; height: 24px; padding: 0; border: 0; background: none; cursor: pointer;
  display: flex; flex-direction: column; justify-content: space-between; flex: none;
}
.l-header__menu-bar {
  display: block; width: 100%; height: 3px; border-radius: 3px; background: var(--ink);
  transition: transform .25s ease, opacity .2s ease;
}
.l-header.is-open .l-header__menu-bar:nth-child(1) { transform: translateY(10.5px) rotate(45deg); }
.l-header.is-open .l-header__menu-bar:nth-child(2) { opacity: 0; }
.l-header.is-open .l-header__menu-bar:nth-child(3) { transform: translateY(-10.5px) rotate(-45deg); }

/* SPドロワー */
.l-header__nav { display: none; }
@media (max-width: 767px) {
  .l-header__nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; box-shadow: 0 8px 14px rgba(14,15,15,.14);
    border-top: 2px solid var(--orange);
    max-height: 0; overflow: hidden; opacity: 0; visibility: hidden;
    transition: max-height .3s ease, opacity .25s ease, visibility .25s;
  }
  .l-header.is-open .l-header__nav {
    display: flex; max-height: 80vh; opacity: 1; visibility: visible;
  }
  .l-header__nav a {
    padding: 15px 22px; border-bottom: 1px solid #eee;
    font-weight: 700; font-size: 15px; text-align: left; line-height: 1.4;
  }
  .l-header__nav a br { display: none; }
}

/* =========================================================
   Hero (FV)
========================================================= */
.hero {
  position: relative;
  background: #fff;
  overflow: hidden;
  padding-bottom: 28px;
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--wrap);
  margin-inline: auto;
}
.hero__bg { display: none; }

/* リボン */
.hero__ribbon {
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
  transform: skewX(-10deg);
  margin: 12px 8px 0;
  padding: 6px 0;
  box-shadow: 0 1px 3px rgba(0,0,0,.12);
}
.hero__ribbon p {
  transform: skewX(10deg);
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.35;
}
.hero__ribbon b { font-weight: 700; }

/* メインコピー */
.hero__copy {
  text-align: center;
  font-weight: 900;
  letter-spacing: -.02em;
  margin-top: 18px;
  padding-inline: 16px;
}
.hero__industries {
  text-align: center;
  font-size: 17.5px;
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.45;
  color: var(--orange);
  margin-bottom: 10px;
  word-break: keep-all;        /* 「ドライバー」等を語中で折り返さない */
  overflow-wrap: anywhere;
}
.hero__industries-nado { color: var(--ink); font-size: 13px; margin-left: 2px; }
.hero__copy-lead {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  margin-bottom: 8px;
}
.hero__tag {
  display: inline-block;
  border: 2px solid var(--ink);
  color: var(--orange);
  font-size: 26px;
  font-weight: 900;
  padding: 2px 8px;
  line-height: 1.1;
  transform: skewX(-10deg);
}
.hero__tag span { display: inline-block; transform: skewX(10deg); }
.hero__jizen { height: 34px; width: auto; }
.hero__de { font-size: 20px; }
.hero__copy-main {
  font-size: 24px;
  line-height: 1.45;
}
.hero__copy-main .lg { font-size: 28px; }
.hero__copy-main .or { color: var(--orange); }

/* 写真 */
.hero__photo {
  width: 100%;
  aspect-ratio: 390 / 300;
  object-fit: cover;
  object-position: center 22%;
  margin-top: 14px;
  display: block;
}

/* 実績メダル帯 */
.hero__results {
  position: relative;
  z-index: 2;
  background: var(--orange);
  clip-path: polygon(0 30%, 100% 0, 100% 70%, 0 100%);
  padding: 18px 8px 22px;
  margin-top: -74px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
}
.hero__medal {
  position: relative;
  flex: 1;
  max-width: 160px;
  aspect-ratio: 150 / 124;
  display: grid;
  align-items: end;              /* 3つを下端で揃える */
  justify-items: center;
  text-align: center;
  padding-bottom: 14px;
}
.hero__medal::before {
  content: "";
  position: absolute;
  inset: -16% -2% -2%;           /* 桂樹：左右対称・自然な大きさ */
  background: url("img/hero/laurel.webp") center bottom/contain no-repeat;
}
.hero__medal-txt { position: relative; line-height: 1.1; font-weight: 900; color: var(--ink); }
.hero__medal-label { font-size: 17px; }
.hero__medal-big { display: block; margin-top: 2px; }
.hero__medal-big .xl { font-size: 34px; }
.hero__medal-big .sm { font-size: 13px; }
.hero__medal-mid { font-size: 20px; }

/* キャンペーンボックス */
.hero__campaign {
  position: relative;
  margin: 6px 10px 0;
}
.hero__campaign-ttl {
  text-align: center;
  font-size: 22px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.hero__campaign-ttl::before,
.hero__campaign-ttl::after {
  content: "";
  width: 3px;
  height: 26px;
  background: var(--orange);
}
.hero__campaign-ttl::before { transform: rotate(-20deg); }
.hero__campaign-ttl::after { transform: rotate(20deg); }
.hero__campaign-box {
  border: 3px solid var(--orange);
  background: #fff;
  border-radius: 4px;
  padding: 16px 16px 20px;
  position: relative;
}
.hero__campaign-box .lead {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}
.hero__campaign-box .big {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 4px;
}
.hero__campaign-box .big .or { color: var(--orange); }
.hero__campaign-box .big .xl { color: var(--orange); font-size: 34px; }
.hero__campaign-box .big .l { font-size: 30px; }
.hero__campaign-box .mark { background: linear-gradient(transparent 55%, var(--marker) 55%); }
.hero__booklet {
  position: absolute;
  right: 10px;
  top: 12px;
  width: 64px;
  transform: rotate(4deg);
  box-shadow: 2px 2px 4px rgba(0,0,0,.25);
}
.hero__note {
  font-size: 10px;
  line-height: 1.6;
  color: var(--ink);
  margin: 12px 10px 0;
}

/* ---------- 共通CTAボタン ---------- */
.c-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 330px;
  max-width: 100%;
  margin: 16px auto 0;
  height: 56px;
  background: var(--cta);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  border-radius: 28px;
  box-shadow: 0 4px 0 var(--cta-dark);
  transition: background-color .15s, transform .1s, box-shadow .1s, filter .15s;
}
.c-cta__arrow { width: 30px; height: 30px; flex: none; }
.c-cta:hover {
  background: var(--cta-dark);
  filter: brightness(1.06);
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--cta-dark);
}

/* =========================================================
   追従CTA
========================================================= */
.l-fixcta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: rgba(14,15,15,.94);
  border-top: 3px solid var(--orange);
  padding: 8px 12px;
  box-shadow: 0 -4px 14px rgba(0,0,0,.2);
  transition: background-color .2s, border-color .2s;
}
.l-fixcta:hover { background: rgba(14,15,15,.99); border-top-color: var(--orange-light); }
.l-fixcta__inner {
  max-width: var(--wrap);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}
.l-fixcta__txt { color: #fff; line-height: 1.25; }
.l-fixcta__tag {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 1px 8px;
  border-radius: 2px;
}
.l-fixcta__offer { font-size: 13px; font-weight: 700; display: block; }
.l-fixcta__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cta);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 18px;
  border-radius: 24px;
  box-shadow: 0 3px 0 var(--cta-dark);
  white-space: nowrap;
  transition: background-color .15s, transform .1s, box-shadow .1s, filter .15s;
}
.l-fixcta__btn:hover { background: var(--cta-dark); filter: brightness(1.08); transform: translateY(2px); box-shadow: 0 1px 0 var(--cta-dark); }
body { padding-bottom: 78px; }

/* =========================================================
   Footer
========================================================= */
.l-footer {
  background: var(--ink);
  color: #fff;
  text-align: center;
  padding: 26px 20px;
  font-size: 12px;
  line-height: 1.8;
}
.l-footer__corp { font-weight: 700; font-size: 14px; margin-bottom: 6px; }
.l-footer__links { margin-top: 8px; }
.l-footer__links a { color: #ccc; text-decoration: underline; }

/* =========================================================
   お悩み
========================================================= */
.nayami {
  position: relative;
  background: #f4f4f4;
  padding: 38px 0 40px;
  overflow: hidden;
  scroll-margin-top: 64px;
}
.nayami::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 85%;
  height: 78%;
  background: url("img/nayami/man.webp") right bottom/cover no-repeat;
  opacity: .18;
  pointer-events: none;
}
.nayami__inner {
  position: relative;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 20px;
}
.nayami__title {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: -.02em;
  margin-bottom: 22px;
}
.nayami__title .or { color: var(--orange); font-size: 32px; }
.nayami__list { display: flex; flex-direction: column; gap: 18px; }
.nayami__item { display: flex; gap: 12px; align-items: flex-start; }
.nayami__item p { font-size: 16px; line-height: 1.5; }
.nayami__item b { font-weight: 700; }
.nayami__check {
  flex: none;
  width: 25px;
  height: 22px;
  margin-top: 3px;
  position: relative;
  background: var(--orange);
  border-radius: 3px;
}
.nayami__check::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 3px;
  width: 7px;
  height: 13px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

/* =========================================================
   自前採用を一度考えてみてください (kangae)
========================================================= */
.kangae { background: #fff; padding: 40px 0 44px; scroll-margin-top: 64px; }
.kangae__inner { max-width: var(--wrap); margin-inline: auto; padding-inline: 20px; }
.kangae__lead {
  text-align: center; font-weight: 900; font-size: 20px; line-height: 1.5;
  letter-spacing: -.01em; transform: skewX(-10deg);
}
.kangae__lead-line { display: block; }
.kangae__lead-line--jizen { display: inline-flex; align-items: center; justify-content: center; gap: 2px; }
.kangae__jizen { display: inline-block; height: 32px; width: auto; transform: skewX(10deg); }
.kangae__copy {
  text-align: center; font-weight: 900; font-size: 32px; line-height: 1.25;
  letter-spacing: -.02em; color: var(--orange); margin: 18px 0 22px; transform: skewX(-10deg);
}
.kangae__or { color: var(--orange); }
.kangae__body {
  text-align: center; font-size: 16px; font-weight: 500; line-height: 1.5; margin-bottom: 24px;
}
.kangae__body:last-of-type { margin-bottom: 0; }
.kangae__body b { font-weight: 700; }
.kangae__cards { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.kangae__card { background: #fff; box-shadow: 2px 2px 4px rgba(14, 15, 15, .25); padding: 20px 16px; }
.kangae__card-ttl {
  display: flex; align-items: flex-start; gap: 8px; font-weight: 700; font-size: 20px;
  line-height: 1.5; color: var(--orange); margin-bottom: 12px;
}
.kangae__card-txt { font-size: 16px; line-height: 1.5; font-weight: 400; }
.kangae__check {
  flex: none; width: 25px; height: 22px; margin-top: 5px; position: relative;
  background: var(--orange); border-radius: 3px;
}
.kangae__check::after {
  content: ""; position: absolute; left: 8px; top: 3px; width: 7px; height: 13px;
  border: solid #fff; border-width: 0 3px 3px 0; transform: rotate(45deg);
}

/* =========================================================
   求人媒体と自前採用の比較 (hikaku)
========================================================= */
.hikaku { background: #fff; padding: 0 0 44px; scroll-margin-top: 64px; }
.hikaku__inner { max-width: var(--wrap); margin-inline: auto; padding-inline: 20px; }
.hikaku__title { margin-bottom: 24px; text-align: center; }
.hikaku__title-band { display: inline-block; background: var(--orange); padding: 4px 22px; transform: skewX(-10deg); }
.hikaku__title-txt { display: inline-block; transform: skewX(10deg); color: #fff; font-weight: 700; font-size: 20px; line-height: 1.5; }
.hikaku__lg { font-size: 24px; }
.hikaku__scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.hikaku__table { border-collapse: collapse; width: 100%; min-width: 480px; table-layout: fixed; }
.hikaku__table th, .hikaku__table td {
  width: 176px; height: 68px; padding: 8px 12px; font-size: 16px; line-height: 1.5;
  vertical-align: middle; border: 1px solid #8e8e93;
}
.hikaku__th--corner { border-color: transparent; background: transparent; }
.hikaku__th { font-weight: 700; }
.hikaku__th--media { background: #d9d9d9; color: var(--ink); text-align: center; border-bottom: none; }
.hikaku__th--jizen { background: var(--orange); color: #fff; text-align: center; }
.hikaku__rowhead { background: #fff; color: var(--ink); font-weight: 700; text-align: center; }
.hikaku__cell { background: #fff; color: var(--ink); font-weight: 400; text-align: center; }
.hikaku__cell--jizen { background: rgba(63, 169, 113, .1); font-weight: 700; }
.hikaku__cell--jizen b { font-weight: 700; }
.hikaku__slider { position: relative; width: 350px; max-width: 100%; height: 5px; margin: 14px auto 6px; }
.hikaku__slider-track { position: absolute; inset: 0; background: #8e8e93; border-radius: 5px; }
.hikaku__slider-thumb { position: absolute; left: 0; top: 0; width: 100px; height: 5px; background: var(--orange); border-radius: 5px; }
.hikaku__scrollnote { text-align: right; font-size: 10px; line-height: 1.5; margin-bottom: 28px; }
.hikaku__text { text-align: center; font-size: 16px; font-weight: 500; line-height: 1.5; margin-bottom: 24px; }
.hikaku__emph {
  text-align: center; font-size: 20px; font-weight: 700; line-height: 1.5;
  color: var(--orange); margin-bottom: 24px; transform: skewX(-10deg);
}

/* =========================================================
   なぜうまくいかなかった？ (naze)
========================================================= */
.naze { position: relative; width: 100%; background: #fff; overflow: hidden; }
.naze__inner { position: relative; max-width: var(--wrap); margin-inline: auto; padding: 40px 20px 8px; }
.naze__inner::before {
  content: "ロ"; position: absolute; top: 140px; left: 50%; transform: translateX(-50%);
  font-family: "Noto Sans JP", sans-serif; font-weight: 700; font-size: 760px; line-height: 1;
  color: var(--orange); opacity: .06; pointer-events: none; z-index: 0;
}
.naze__head { position: relative; z-index: 1; margin-bottom: 24px; }
.naze__lead { display: inline-block; margin: 0 0 8px; position: relative; font-weight: 700; font-size: 14px; line-height: 1.5; color: var(--orange); }
.naze__lead-line { display: block; position: absolute; left: 0; right: 0; bottom: -4px; height: 3px; border-radius: 2px; background: var(--orange); }
.naze__sub { margin: 0; font-weight: 700; font-size: 14px; line-height: 1.5; color: var(--ink); transform: skewX(-10deg); transform-origin: left; }
.naze__title { margin: 4px 0 0; font-weight: 700; font-size: 28px; line-height: 1.5; color: var(--ink); transform: skewX(-10deg); transform-origin: left; }
.naze__title-or { font-size: 32px; color: var(--orange); }
.naze__photo { position: absolute; top: -14px; right: -20px; width: 200px; height: auto; z-index: -1; }
/* 写真の上でも読めるよう、見出しに細い白フチ */
.naze__lead, .naze__sub, .naze__title {
  text-shadow: -1.5px -1.5px 0 #fff, 1.5px -1.5px 0 #fff, -1.5px 1.5px 0 #fff, 1.5px 1.5px 0 #fff,
               0 0 3px #fff, 0 0 3px #fff;
}
.naze__card {
  position: relative; z-index: 1; background: #fff; border: 2px solid var(--orange);
  border-radius: 2px; padding: 26px 22px 22px; margin-bottom: 20px; overflow: hidden;
}
.naze__badge {
  position: relative; display: inline-block; padding: 4px 16px; margin-bottom: 14px;
  background: var(--orange); color: #fff; font-weight: 700; font-size: 20px; line-height: 1.2; transform: skewX(-10deg);
}
.naze__card-img { position: absolute; top: 4px; right: -18px; width: 170px; height: 170px; object-fit: contain; opacity: 1; pointer-events: none; z-index: 0; }
.naze__card-img--offer { width: 150px; height: 150px; top: 20px; right: -8px; }
.naze__list { position: relative; z-index: 1; list-style: none; margin: 0; padding: 0; max-width: 310px; }
.naze__item { position: relative; padding-left: 16px; margin-bottom: 16px; font-size: 16px; line-height: 1.7; color: var(--ink); }
.naze__item:last-child { margin-bottom: 0; }
.naze__item::before { content: ""; position: absolute; left: 0; top: .65em; width: 10px; height: 10px; border-radius: 50%; background: var(--orange); }
.naze__item b { font-weight: 700; }

/* =========================================================
   選ばれている3つの理由 (riyu)
========================================================= */
.riyu { width: 100%; background: #fff; scroll-margin-top: 64px; }
.riyu__inner { max-width: var(--wrap); margin-inline: auto; padding: 40px 20px 8px; }
.riyu__head { position: relative; margin-bottom: 28px; padding-top: 30px; }
.riyu__watermark { position: absolute; top: -8px; left: 50%; transform: translateX(-50%); font-weight: 900; font-size: 46px; line-height: 1; color: rgba(63, 169, 113, .1); letter-spacing: 1px; white-space: nowrap; }
.riyu__title { position: relative; margin: 0; font-weight: 900; font-size: 24px; line-height: 1.2; color: var(--ink); text-align: center; transform: skewX(-10deg); }
.riyu__num { font-size: 56px; color: var(--orange); vertical-align: -8px; }
.riyu__num-small { font-size: 36px; color: var(--orange); }
.riyu__title-or { font-size: 32px; color: var(--orange); }
.riyu__list { display: flex; flex-direction: column; gap: 40px; }
.riyu__card { position: relative; }
.riyu__media { position: relative; width: 100%; aspect-ratio: 350 / 175; border-radius: 8px; overflow: hidden; margin-bottom: 16px; }
.riyu__img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; display: block; }
.riyu__no {
  position: absolute; top: 0; left: 0; display: flex; align-items: center; justify-content: center;
  width: 62px; height: 52px; background: var(--orange); color: #fff;
  font-family: "DIN Alternate", "Noto Sans JP", sans-serif; font-weight: 700; font-size: 36px; line-height: 1;
  transform: skewX(-10deg); transform-origin: top left;
}
.riyu__lead { margin: 0 0 14px; font-weight: 700; font-size: 24px; line-height: 1.5; color: var(--ink); transform: skewX(-6deg); transform-origin: left; }
.riyu__lead-or { color: var(--orange); }
.riyu__body { margin: 0; }
.riyu__body p { margin: 0 0 12px; font-size: 16px; line-height: 1.5; color: var(--ink); }
.riyu__body p:last-child { margin-bottom: 0; }
.riyu__body b { font-weight: 700; }

/* =========================================================
   6つの特徴 (tokucho)
========================================================= */
.tokucho { position: relative; background: #fff; padding: 40px 0 44px; overflow: hidden; scroll-margin-top: 64px; }
.tokucho__inner { position: relative; max-width: var(--wrap); margin-inline: auto; padding-inline: 20px; }
.tokucho__head { position: relative; text-align: center; margin-bottom: 26px; padding-top: 14px; }
.tokucho__eyebrow { position: absolute; top: -2px; left: 50%; transform: translateX(-50%); font-weight: 900; font-size: 46px; line-height: 1; color: rgba(63, 169, 113, .20); letter-spacing: .02em; white-space: nowrap; pointer-events: none; }
.tokucho__title { position: relative; display: inline-flex; align-items: flex-end; gap: 4px; font-weight: 900; }
.tokucho__title-logo { height: 46px; width: auto; }
.tokucho__title-txt { transform: skewX(-10deg); display: inline-flex; align-items: baseline; }
.tokucho__title-txt span { display: inline-block; }
.tokucho__no { font-size: 24px; color: var(--ink); }
.tokucho__num { font-size: 56px; color: var(--orange); line-height: 1; }
.tokucho__unit { font-size: 36px; color: var(--orange); }
.tokucho__feat { font-size: 36px; color: var(--orange); }
.tokucho__list { display: flex; flex-direction: column; gap: 20px; }
.tokucho__card { position: relative; background: #fff; border: 2px solid var(--orange); padding: 20px 20px 24px; }
.tokucho__badge {
  position: absolute; top: 0; left: 0; width: 62px; height: 52px; background: var(--orange); color: #fff;
  font-family: "DIN Alternate", "Noto Sans JP", sans-serif; font-weight: 700; font-size: 30px;
  display: flex; align-items: center; justify-content: center; transform: skewX(-10deg); transform-origin: top left; font-style: normal;
}
.tokucho__card-ttl { font-size: 20px; font-weight: 700; line-height: 1.5; padding-left: 48px; min-height: 52px; }
.tokucho__card-ttl--2l, .tokucho__card-ttl--3l { padding-left: 46px; }
.tokucho__card-sub { font-size: 14px; font-weight: 700; padding-left: 48px; margin-top: 2px; }
.tokucho__photo { width: 300px; max-width: 100%; height: auto; margin: 16px auto 0; display: block; }
.tokucho__photo--left { width: 320px; }
.tokucho__photo--right { width: 340px; }
.tokucho__photo--contain { width: 300px; max-width: 100%; height: auto; }
.tokucho__card-txt { margin-top: 16px; font-size: 16px; line-height: 1.5; font-weight: 400; }
.tokucho__or { color: var(--orange); font-weight: 700; }
/* リスティング広告運用: 入口→検索→応募→完了が循環するPDCA型の図 */
.tokucho__cycle { position: relative; width: 232px; height: 232px; margin: 16px auto 0; }
.tokucho__cycle::before { content: ""; position: absolute; inset: 24px; border: 2px dashed rgba(63, 169, 113, .3); border-radius: 50%; }
.tokucho__cycle-icon { position: absolute; left: 50%; top: 50%; width: 46px; height: 46px; object-fit: contain; background: #fff; box-shadow: 0 0 0 7px #fff; }
.tokucho__cycle-arrow { position: absolute; left: 50%; top: 50%; width: 14px; height: 20px; }
.tokucho__cycle-icon--1 { transform: translate(-50%, -50%) rotate(0deg) translate(0, -92px) rotate(0deg); }
.tokucho__cycle-icon--2 { transform: translate(-50%, -50%) rotate(90deg) translate(0, -92px) rotate(-90deg); }
.tokucho__cycle-icon--3 { transform: translate(-50%, -50%) rotate(180deg) translate(0, -92px) rotate(-180deg); }
.tokucho__cycle-icon--4 { transform: translate(-50%, -50%) rotate(270deg) translate(0, -92px) rotate(-270deg); }
.tokucho__cycle-arrow--1 { transform: translate(-50%, -50%) rotate(45deg) translate(0, -92px); }
.tokucho__cycle-arrow--2 { transform: translate(-50%, -50%) rotate(135deg) translate(0, -92px); }
.tokucho__cycle-arrow--3 { transform: translate(-50%, -50%) rotate(225deg) translate(0, -92px); }
.tokucho__cycle-arrow--4 { transform: translate(-50%, -50%) rotate(315deg) translate(0, -92px); }
.tokucho__venn { display: flex; justify-content: center; align-items: center; margin: 20px 0 8px; }
.tokucho__venn-circle { width: 150px; height: 150px; border-radius: 50%; display: flex; align-items: center; justify-content: center; text-align: center; font-size: 16px; font-weight: 700; line-height: 1.5; }
.tokucho__venn-circle--a { background: #fff; border: 2px solid var(--orange); color: var(--ink); margin-right: -10px; z-index: 1; }
.tokucho__venn-circle--b { background: var(--orange); color: #fff; }

/* =========================================================
   お客様の決め手 (kimete)
========================================================= */
.kimete { position: relative; background: #fff; scroll-margin-top: 64px; }
.kimete__band {
  position: relative; background: var(--ink); height: 116px; max-width: var(--wrap); margin-inline: auto;
  clip-path: polygon(0 0, 100% 0, 100% 80%, 54% 80%, 50% 100%, 46% 80%, 0 80%);
  display: flex; align-items: center; justify-content: center; padding: 0 86px 18px 20px;
}
.kimete__band::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 16px; height: 23px;
  clip-path: polygon(0 0, 46% 0, 50% 100%, 54% 0, 100% 0, 100% 8%, 54% 8%, 50% 100%, 46% 8%, 0 8%);
  background: var(--orange); pointer-events: none;
}
.kimete__title { display: inline-flex; align-items: baseline; transform: skewX(-10deg); font-weight: 900; }
.kimete__title span { display: inline-block; }
.kimete__title-w { color: #fff; font-size: 36px; }
.kimete__title-no { color: #fff; font-size: 24px; }
.kimete__title-o { color: var(--orange); font-size: 36px; }
.kimete__person { position: absolute; right: 10px; top: -34px; width: 96px; height: auto; z-index: 3; }
.kimete__inner { position: relative; max-width: var(--wrap); margin-inline: auto; padding: 28px 20px 40px; }
.kimete__list { display: flex; flex-direction: column; gap: 28px; }
.kimete__item { display: flex; gap: 8px; align-items: flex-start; }
.kimete__txt { font-size: 18px; font-weight: 500; line-height: 1.5; }
.kimete__txt b { font-weight: 700; }
.kimete__or { color: var(--orange); font-weight: 700; }
.kimete__check { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--cta); position: relative; margin-top: 2px; }
.kimete__check::after { content: ""; position: absolute; left: 11px; top: 7px; width: 7px; height: 13px; border: solid #fff; border-width: 0 3px 3px 0; transform: rotate(45deg); }

/* =========================================================
   お客様の声 (voice)
========================================================= */
.voice { background: #fff; padding: 28px 0 40px; }
.voice__inner { max-width: var(--wrap); margin-inline: auto; padding-inline: 20px; }
.voice__head { position: relative; text-align: center; margin-bottom: 56px; }
.voice__head-en { font-weight: 900; font-size: 46px; line-height: 1; color: rgba(63, 169, 113, .20); letter-spacing: .02em; }
.voice__head-jp { position: absolute; left: 0; right: 0; top: 28px; font-weight: 900; font-size: 36px; line-height: 1; transform: skewX(-10deg); }
.voice__head-jp .voice__head-sm { font-size: 24px; }
.voice__or { color: var(--orange); }
.voice__case { margin-bottom: 64px; }
.voice__photo { position: relative; width: 350px; max-width: 100%; margin: 0 auto; }
.voice__photo > img { width: 100%; aspect-ratio: 350 / 350; object-fit: cover; object-position: center 12%; border-radius: 4px; }
.voice__photo--wide > img { aspect-ratio: 350 / 280; }
.voice__plate { position: absolute; left: 0; bottom: 24px; width: 234px; padding: 8px 28px 8px 16px; background: var(--ink); clip-path: polygon(0 0, 100% 0, 91.5% 100%, 0 100%); color: #fff; }
.voice__plate--sm { padding-block: 6px; }
.voice__plate-name { font-weight: 900; font-size: 20px; line-height: 1.2; }
.voice__plate-name span { font-size: 14px; }
.voice__plate-name--lg { font-size: 20px; }
.voice__plate-role { font-weight: 700; font-size: 14px; line-height: 1.4; }
.voice__plate-biz { font-weight: 700; font-size: 14px; line-height: 1.4; }
.voice__before { position: relative; width: 350px; max-width: 100%; margin: 18px auto 0; background: #d9d9d9; border-radius: 10px; box-shadow: 2px 2px 4px rgba(0,0,0,.25); padding: 14px 16px 14px 56px; }
.voice__before::before { content: "”"; position: absolute; left: 14px; top: 16px; font-family: Georgia, serif; font-size: 56px; line-height: 1; color: var(--orange); transform: rotate(180deg); }
.voice__label { display: inline-block; font-weight: 700; font-style: italic; font-family: "Arial Narrow", Arial, sans-serif; letter-spacing: .02em; }
.voice__label--before { font-size: 18px; color: rgba(14,15,15,.4); }
.voice__before-lead { font-weight: 500; font-size: 14px; line-height: 1.5; transform: skewX(-10deg); }
.voice__before-txt { font-size: 16px; line-height: 1.5; transform: skewX(-10deg); }
.voice__before-txt b { font-weight: 700; font-size: 18px; }
.voice__after { position: relative; width: 350px; max-width: 100%; margin: 22px auto 0; background: rgba(63, 169, 113,.10); border-radius: 10px; box-shadow: 2px 4px 4px rgba(0,0,0,.25); padding: 16px 18px; transform: rotate(-4deg); }
.voice__label--after { display: block; text-align: right; font-size: 36px; color: rgba(63, 169, 113,.4); line-height: 1; margin-bottom: 2px; }
.voice__after p { transform: skewX(-10deg); line-height: 1.5; }
.voice__after-l1 { font-weight: 500; font-size: 16px; }
.voice__after-l1 .voice__num { font-weight: 700; font-size: 30px; }
.voice__after-l1 b { font-weight: 700; font-size: 20px; }
.voice__after-l2 { font-weight: 500; font-size: 20px; }
.voice__after-l2 b { font-weight: 700; font-size: 20px; }
.voice__after-l2 .voice__num--xl { font-size: 42px; }
.voice__after-l2 .voice__num--md { font-size: 26px; }
.voice__after-l3 { font-weight: 700; font-size: 20px; }
.voice__body { width: 330px; max-width: 100%; margin: 28px auto 0; font-size: 14px; line-height: 1.5; }
.voice__reviews { display: flex; flex-direction: column; gap: 20px; }
.voice__card { width: 350px; max-width: 100%; margin: 0 auto; background: rgba(255,255,255,.5); border: 2px solid var(--orange); border-radius: 10px; box-shadow: 2px 2px 4px rgba(0,0,0,.25); padding: 18px 20px; }
.voice__stars { display: flex; align-items: baseline; flex-wrap: wrap; font-weight: 700; font-size: 20px; color: var(--orange); line-height: 1.5; margin-bottom: 8px; }
.voice__score { margin-left: 6px; }
.voice__region { margin-left: auto; font-weight: 500; font-size: 12px; color: var(--ink); align-self: center; }
.voice__card-txt { font-size: 14px; line-height: 1.5; }
.voice__card-txt b { font-weight: 700; }

/* =========================================================
   こんな方には向きません (muki)
========================================================= */
.muki { background: #fff; padding: 28px 0 60px; }
.muki__inner { max-width: var(--wrap); margin-inline: auto; padding-inline: 20px; }
.muki__or { color: var(--orange); }
.muki__head { position: relative; text-align: center; margin-bottom: 40px; }
.muki__head-en { font-weight: 900; font-size: 46px; line-height: 1; color: rgba(63, 169, 113,.20); letter-spacing: .02em; }
.muki__head-jp { position: absolute; left: 0; right: 0; top: 35px; font-weight: 900; font-size: 30px; line-height: 1; transform: skewX(-10deg); white-space: nowrap; }
.muki__head-jp .muki__head-sm { font-size: 24px; }
.muki__head-jp .muki__or { font-size: 36px; }
.muki__head-jp .muki__head-sm2 { font-size: 30px; }
.muki__lead { text-align: center; font-weight: 500; font-size: 16px; line-height: 1.5; margin-bottom: 30px; }
.muki__cards { display: flex; flex-direction: column; gap: 20px; }
.muki__card { position: relative; width: 350px; max-width: 100%; margin: 0 auto; background: #fff; border: 2px solid var(--orange); border-radius: 10px; padding: 12px 20px 24px; overflow: hidden; }
.muki__badge {
  position: absolute; left: 0; top: 0; z-index: 2; width: 62px; height: 52px; background: var(--orange);
  clip-path: polygon(0 0, 100% 0, 84.5% 93.3%, 0 100%); color: #fff; font-weight: 700; font-style: italic;
  font-family: "Arial Narrow", Arial, sans-serif; font-size: 36px; display: flex; align-items: center; justify-content: center;
  padding-bottom: 4px; transform: skewX(-10deg) translateX(3px);
}
.muki__card-ttl { position: relative; z-index: 2; margin-left: 50px; min-height: 70px; font-weight: 700; font-size: 20px; line-height: 1.45; transform: skewX(-10deg); }
.muki__card-ttl .muki__or--lg { font-size: 24px; }
.muki__card-ttl .muki__or--xl { font-size: 26px; }
.muki__card-img { position: relative; z-index: 1; width: 150px; margin: 8px auto 14px; }
.muki__card-img img { width: 100%; height: auto; display: block; }
.muki__card-img--clock { width: 150px; }
.muki__card-txt { position: relative; z-index: 2; font-size: 16px; line-height: 1.5; }
.muki__card-txt b { font-weight: 700; }
.muki__heard { position: relative; left: 50%; transform: translateX(-50%); width: 100vw; max-width: 390px; height: 65px; margin-top: 44px; background: var(--ink); display: flex; align-items: center; justify-content: center; }
.muki__heard::after { content: ""; position: absolute; left: 50%; top: 100%; transform: translateX(-50%); border-left: 47.6px solid transparent; border-right: 47.6px solid transparent; border-top: 12px solid var(--ink); }
.muki__heard-ttl { color: #fff; font-weight: 900; font-size: 30px; line-height: 1.5; transform: skewX(-10deg); }
.muki__qhead { text-align: center; margin-top: 50px; }
.muki__qhead-jp { font-weight: 900; font-size: 30px; line-height: 1.5; transform: skewX(-10deg); display: inline-block; }
.muki__qhead-jp .muki__qhead-sm { font-size: 24px; }
.muki__qhead-jp .muki__or { font-size: 36px; }
.muki__qhead-jp2 { font-weight: 900; font-size: 24px; line-height: 1.5; transform: skewX(-10deg); }
.muki__qphoto { position: relative; left: 50%; transform: translateX(-50%); width: 100vw; max-width: 447px; margin-top: 12px; }
.muki__qphoto img { width: 100%; aspect-ratio: 447 / 298; object-fit: cover; }
.muki__plate { width: 234px; padding: 8px 28px 8px 16px; margin-top: -28px; position: relative; z-index: 2; background: var(--ink); clip-path: polygon(0 0, 100% 0, 91.5% 100%, 0 100%); color: #fff; }
.muki__plate-name { font-weight: 900; font-size: 20px; line-height: 1.2; }
.muki__plate-name span { font-size: 14px; }
.muki__plate-role { font-weight: 700; font-size: 14px; line-height: 1.4; }
.muki__plate-biz { font-weight: 700; font-size: 14px; line-height: 1.4; }
.muki__quote { position: relative; width: 350px; max-width: 100%; margin: 18px auto 0; background: rgba(63, 169, 113,.06); border: 2px solid var(--orange); border-radius: 10px; padding: 30px 20px 20px; }
.muki__quote-icon { position: absolute; left: 16px; top: -15px; width: 39px; height: 30px; }
.muki__quote-txt { font-weight: 500; font-size: 14px; line-height: 1.5; }
.muki__quote-txt b { font-weight: 700; }

/* =========================================================
   代表メッセージ (message)
========================================================= */
.message { position: relative; background: #fff; padding: 40px 0 44px; scroll-margin-top: 64px; }
.message__inner { position: relative; max-width: var(--wrap); margin-inline: auto; padding-inline: 20px; }
.message__head { position: relative; text-align: center; margin-bottom: 24px; padding-top: 24px; }
.message__head-en { position: absolute; top: 0; left: 50%; transform: translateX(-50%); font-size: 46px; font-weight: 900; line-height: 1; color: var(--marker); white-space: nowrap; pointer-events: none; }
.message__head-ja { position: relative; display: inline-block; font-size: 30px; font-weight: 900; line-height: 1.1; transform: skewX(-10deg); }
.message__head-ja > * { display: inline-block; }
.message__or { color: var(--orange); }
.message__photo { position: relative; margin: 0 auto; width: 100%; }
.message__photo-img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 52% 24%; border-radius: 2px; }
.message__plate { position: absolute; left: 0; bottom: 14px; display: flex; flex-direction: column; }
.message__plate-corp { align-self: flex-start; background: var(--ink); color: #fff; font-size: 10px; font-weight: 500; line-height: 1.5; padding: 4px 12px 4px 14px; transform: skewX(-10deg); }
.message__plate-name { align-self: flex-start; background: var(--orange); color: #fff; font-size: 24px; font-weight: 700; line-height: 1.5; padding: 2px 16px 2px 14px; transform: skewX(-10deg); }
.message__plate-corp, .message__plate-name { white-space: nowrap; }
.message__plate-corp > span, .message__plate-name { display: inline-block; }
.message__body { margin-top: 26px; }
.message__body p { font-size: 14px; font-weight: 500; line-height: 1.5; margin-bottom: 1.5em; }
.message__body p:last-child { margin-bottom: 0; }
.message__body b { font-weight: 700; }
.message__mission { margin-bottom: 0 !important; }
.message__mission + .message__mission { margin-top: 1.5em; }

/* =========================================================
   FAQ
========================================================= */
.faq { position: relative; background: #fff; padding: 40px 0 44px; scroll-margin-top: 64px; }
.faq__inner { position: relative; max-width: var(--wrap); margin-inline: auto; padding-inline: 20px; }
.faq__head { position: relative; text-align: center; margin-bottom: 28px; padding-top: 24px; }
.faq__head-en { position: absolute; top: 0; left: 50%; transform: translateX(-50%); font-size: 46px; font-weight: 900; line-height: 1; color: var(--marker); white-space: nowrap; pointer-events: none; }
.faq__head-ja { position: relative; display: inline-block; font-size: 30px; font-weight: 900; line-height: 1.1; transform: skewX(-10deg); }
.faq__list { display: flex; flex-direction: column; gap: 20px; }
.faq__item { border: 1px solid #8e8e93; border-radius: 10px; box-shadow: 0 0 4px rgba(0, 0, 0, .25); background: #fff; overflow: hidden; }
.faq__q { display: flex; align-items: flex-start; gap: 10px; padding: 18px 16px 18px 12px; cursor: pointer; list-style: none; position: relative; }
.faq__q::-webkit-details-marker { display: none; }
.faq__q-num { flex: none; color: var(--orange); font-weight: 700; font-size: 24px; line-height: 1.1; font-family: "DIN Alternate", "Noto Sans JP", sans-serif; transform: skewX(-10deg); }
.faq__q-text { flex: 1; font-size: 18px; font-weight: 700; line-height: 1.3; padding-top: 2px; transform: skewX(-10deg); }
.faq__toggle { flex: none; width: 20px; height: 20px; margin-top: 3px; position: relative; border-radius: 50%; background: var(--orange); }
.faq__toggle::after { content: ""; position: absolute; left: 50%; top: 45%; width: 7px; height: 7px; border-right: 2px solid #fff; border-bottom: 2px solid #fff; transform: translate(-50%, -50%) rotate(45deg); transition: transform .2s; }
.faq__item[open] .faq__toggle::after { transform: translate(-50%, -20%) rotate(-135deg); }
.faq__a { padding: 0 16px 18px 16px; border-top: 1px solid #8e8e93; margin-top: -1px; }
.faq__a:empty { display: none; }
.faq__a p { font-size: 14px; font-weight: 400; line-height: 1.7; margin-top: 14px; }

/* =========================================================
   問い合わせフォーム (form)
========================================================= */
.form { position: relative; background: #fff; padding: 40px 0 44px; scroll-margin-top: 64px; }
.form__inner { position: relative; max-width: var(--wrap); margin-inline: auto; padding-inline: 20px; }
.form__head { position: relative; text-align: center; margin-bottom: 30px; padding-top: 24px; }
.form__head-en { position: absolute; top: 0; left: 50%; transform: translateX(-50%); font-size: 46px; font-weight: 900; line-height: 1; color: var(--marker); white-space: nowrap; pointer-events: none; }
.form__head-ja { position: relative; display: inline-block; font-size: 30px; font-weight: 900; line-height: 1.1; transform: skewX(-10deg); }
.form__radios { display: flex; gap: 48px; margin-bottom: 44px; padding-bottom: 4px; }
.form__radio { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; }
.form__radio input { position: absolute; opacity: 0; width: 0; height: 0; }
.form__radio-mark { width: 20px; height: 20px; border: 1px solid #8e8e93; border-radius: 50%; position: relative; flex: none; }
.form__radio input:checked + .form__radio-mark { border-color: var(--orange); }
.form__radio input:checked + .form__radio-mark::after { content: ""; position: absolute; left: 50%; top: 50%; width: 10px; height: 10px; border-radius: 50%; background: var(--orange); transform: translate(-50%, -50%); }
.form__radio-label { font-size: 14px; font-weight: 500; }
.form__radio input:focus-visible + .form__radio-mark { outline: 2px solid var(--orange); outline-offset: 2px; }
.form__form { display: flex; flex-direction: column; gap: 20px; }
.form__field { display: flex; flex-direction: column; }
.form__label { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; margin-bottom: 6px; }
.form__badge { display: inline-block; color: #fff; font-size: 12px; font-weight: 500; line-height: 1.3; border-radius: 2px; padding: 1px 9px; }
.form__badge--req { background: var(--orange); }
.form__badge--opt { background: #8e8e93; }
.form__input { width: 100%; border: 1px solid #8e8e93; border-radius: 2px; background: #fff; font-family: inherit; font-size: 14px; color: var(--ink); padding: 14px 12px; line-height: 1.5; }
.form__input::placeholder { color: #d9d9d9; }
.form__input--area { min-height: 131px; resize: vertical; }
.form__input:focus { outline: none; border-color: var(--orange); }
.form__input--error { border-color: #e02020; background: #fff6f6; }
.form__error { display: none; color: #e02020; font-size: 12px; font-weight: 500; line-height: 1.4; margin-top: 6px; }
.form__error.is-show { display: block; }
.form__submit { width: 310px; max-width: 100%; height: 51px; margin: 12px auto 0; border: none; border-radius: 2px; background: var(--orange); color: #fff; font-size: 16px; font-weight: 700; font-family: inherit; cursor: pointer; transition: filter .15s, transform .1s; }
.form__submit:hover { filter: brightness(1.06); }
.form__submit:active { transform: translateY(1px); }

/* =========================================================
   背景テクスチャ（kangae以降の全セクション）
========================================================= */
.kangae, .hikaku, .naze, .riyu, .tokucho, .kimete,
.voice, .muki, .message, .faq, .form, .cta-band {
  background: transparent;
}

/* セクション間のCTA帯（オレンジ帯＋白キャンペーン箱） */
.cta-band { background: var(--orange); padding: 28px 16px 34px; text-align: center; }
.cta-band__ttl {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  color: #fff; font-size: 20px; font-weight: 900; margin-bottom: 14px;
}
.cta-band__ttl::before, .cta-band__ttl::after { content: ""; width: 3px; height: 22px; background: #fff; }
.cta-band__ttl::before { transform: rotate(-22deg); }
.cta-band__ttl::after { transform: rotate(22deg); }
.cta-band__box {
  position: relative; background: #fff; border-radius: 8px;
  max-width: 600px; margin: 0 auto; padding: 18px 18px 22px; text-align: left;
}
.cta-band__booklet { position: absolute; right: 12px; top: 16px; width: 82px; transform: rotate(3deg); box-shadow: 2px 2px 4px rgba(0,0,0,.25); }
.cta-band__lead { font-size: 16px; font-weight: 700; line-height: 1.5; }
.cta-band__big { font-size: 21px; font-weight: 700; line-height: 1.5; margin-top: 4px; }
.cta-band__big .xl { color: var(--orange); font-size: 32px; }
.cta-band__big .l { font-size: 28px; }
.cta-band__big .or { color: var(--orange); }
.cta-band__big .mark { background: linear-gradient(transparent 55%, var(--marker) 55%); }
.cta-band__note { font-size: 10px; line-height: 1.6; margin-top: 12px; color: var(--ink); }
.cta-band .c-cta { margin: 16px auto 0; }

/* =========================================================
   ★ PC レスポンシブ (min-width: 768px) — 1440px基準
========================================================= */
@media (min-width: 768px) {

  /* ---------- Header PC ---------- */
  .l-header__inner { height: 80px; max-width: 1440px; padding-inline: 40px; gap: 20px; }
  .l-header__logo { height: 46px; }
  .l-header__menu { display: none; }
  .l-header__nav { display: flex; align-items: center; gap: 18px; font-size: 15px; font-weight: 700; }
  .l-header__nav a { line-height: 1.25; text-align: center; }
  .l-header__nav a:hover { color: var(--orange); }
  .l-header__cta {
    display: inline-flex; align-items: center; gap: 8px; flex: none;
    background: var(--cta); color: #fff; font-weight: 700; font-size: 15px;
    padding: 0 18px; height: 50px; border-radius: 25px; white-space: nowrap;
    transition: background-color .15s, filter .15s;
  }
  .l-header__cta-arrow { width: 26px; height: 26px; }
  .l-header__cta:hover { background: var(--cta-dark); filter: brightness(1.06); }

  /* ---------- Hero PC (左:白 / 右:斜めオレンジゾーン) ---------- */
  .hero { padding-bottom: 0; }
  .hero__bg {
    display: block; position: absolute; top: 0; bottom: 0; right: 0;
    width: 53%; background: var(--orange);
    clip-path: polygon(9% 0, 100% 0, 100% 100%, 0 100%); z-index: 0;
  }
  .hero__inner {
    display: grid; grid-template-columns: 1fr 1.06fr; column-gap: 36px;
    max-width: 1200px; margin-inline: auto; padding: 26px 24px 40px; align-items: start;
  }
  .hero__ribbon { grid-column: 1; grid-row: 1; margin: 0 0 20px; padding: 7px 0; }
  .hero__ribbon p { font-size: 19px; }
  .hero__copy { grid-column: 1; grid-row: 2; text-align: left; margin-top: 0; padding-inline: 0; }
  .hero__industries { text-align: left; font-size: 22px; margin-bottom: 12px; }
  .hero__industries-nado { font-size: 16px; }
  .hero__copy-lead { justify-content: flex-start; }
  .hero__tag { font-size: 40px; }
  .hero__jizen { height: 52px; }
  .hero__de { font-size: 30px; }
  .hero__copy-main { font-size: 36px; line-height: 1.55; text-align: right; }  /* 3行とも右端そろえ */
  .hero__copy-main .lg { font-size: 42px; }
  .hero__last { display: block; }
  /* 写真は右カラム上部。左辺をオレンジ傾斜に合わせて斜めクリップ */
  .hero__photo {
    grid-column: 2; grid-row: 1 / 4; align-self: start;
    aspect-ratio: 7 / 5; height: auto; width: 100%; object-fit: cover;
    object-position: center 20%; margin: 6px 0 0 22px;
    clip-path: polygon(6% 0, 100% 0, 100% 100%, 0 100%);
  }
  /* メダルは左カラム下・オレンジゾーンの左（CTAの左側）に寄せる、大きめ */
  .hero__results {
    grid-column: 1; grid-row: 3 / 6; align-self: end;   /* 左カラム下端に落として白い空白を埋める */
    background: transparent; clip-path: none;
    padding: 0; margin: 32px 0 56px; justify-content: flex-start; gap: 14px;  /* 下は追従CTA分あける */
  }
  .hero__medal { max-width: 196px; padding-bottom: 16px; }
  .hero__medal-label { font-size: 25px; }
  .hero__medal-big .xl { font-size: 56px; }
  .hero__medal-big .sm { font-size: 16px; }
  .hero__medal-mid { font-size: 28px; }
  /* 6月末・キャンペーンは右カラム、斜めオレンジの上(透明背景)。左辺を傾斜に合わせる */
  .hero__campaign-ttl {
    grid-column: 2; grid-row: 4; margin: 4px 0 0 -4px; font-size: 24px;
    color: #fff; background: transparent; padding: 0 18px;
  }
  .hero__campaign-ttl::before, .hero__campaign-ttl::after { background: #fff; }
  .hero__campaign { grid-column: 2; grid-row: 5; margin: 12px 0 0 -4px; background: transparent; padding: 0 18px; }
  .hero__campaign-box { border: none; box-shadow: 0 6px 16px rgba(0,0,0,.12); }
  .hero__campaign-box .lead { font-size: 18px; }
  .hero__campaign-box .big { font-size: 22px; }
  .hero__campaign-box .big .xl { font-size: 38px; }
  .hero__booklet { width: 108px; }
  .hero__note { margin: 12px 2px 0; color: #fff; }

  /* ヘッダーロゴ拡大 */
  .l-header__logo { height: 46px; }
  /* CTA帯 PC */
  .cta-band { padding: 44px 24px 52px; }
  .cta-band__ttl { font-size: 26px; gap: 16px; }
  .cta-band__ttl::before, .cta-band__ttl::after { height: 28px; }
  .cta-band__box { max-width: 720px; padding: 26px 30px 28px; }
  .cta-band__booklet { width: 120px; right: 24px; top: 22px; }
  .cta-band__lead { font-size: 18px; }
  .cta-band__big { font-size: 24px; }
  .cta-band__big .xl { font-size: 38px; }
  .cta-band__big .l { font-size: 30px; }

  /* ---------- お悩み PC ---------- */
  .nayami { padding: 70px 0 84px; }
  .nayami__inner { max-width: 1100px; padding-inline: 40px; }
  .nayami::before { width: 50%; height: 90%; }
  .nayami__title { text-align: center; font-size: 32px; }
  .nayami__title .or { font-size: 46px; }
  .nayami__title br { display: none; }
  .nayami__list { max-width: 700px; margin: 0 auto; }

  /* ---------- 追従CTAはPCで非表示 ---------- */
  /* 追従CTAはPCでも表示 */
  .l-fixcta { padding: 10px 24px; }
  .l-fixcta__inner { max-width: 1100px; }
  .l-fixcta__tag { font-size: 12px; }
  .l-fixcta__offer { font-size: 16px; }
  .l-fixcta__offer br { display: none; }
  .l-fixcta__btn { font-size: 16px; padding: 13px 28px; }
  body { padding-bottom: 86px; }

  /* ===== 自前採用を一度考えて (kangae) ===== */
  .kangae { padding: 80px 0 90px; }
  .kangae__inner { max-width: 1100px; padding-inline: 40px; }
  .kangae__lead { font-size: 24px; }
  .kangae__lead-line { display: inline; }
  .kangae__lead-line--jizen { display: inline-flex; vertical-align: middle; }
  .kangae__jizen { height: 44px; }
  .kangae__copy { font-size: 32px; margin: 28px 0 36px; }
  .kangae__copy br { display: none; }
  .kangae__body { font-size: 20px; }
  .kangae__cards { gap: 24px; margin-top: 56px; flex-direction: column; max-width: 800px; margin-inline: auto; }
  .kangae__card { padding: 26px 40px 28px; }
  .kangae__card-ttl { font-size: 20px; align-items: flex-start; gap: 10px; margin-bottom: 8px; }
  .kangae__card-txt { font-size: 16px; }

  /* ===== 比較 (hikaku) ===== */
  .hikaku { padding: 80px 0 90px; }
  .hikaku__inner { max-width: 1000px; padding-inline: 40px; }
  .hikaku__title { margin-bottom: 40px; }
  .hikaku__title-band { padding: 6px 34px; }
  .hikaku__title-txt { font-size: 24px; }
  .hikaku__lg { font-size: 32px; }
  .hikaku__scroll { overflow-x: visible; }
  .hikaku__table { min-width: auto; width: 100%; }
  .hikaku__table th, .hikaku__table td { width: 33.33%; height: 84px; font-size: 20px; padding: 0 16px; }
  .hikaku__th--media, .hikaku__th--jizen { font-size: 20px; }
  .hikaku__slider, .hikaku__scrollnote { display: none; }
  .hikaku__text { font-size: 20px; margin-top: 24px; }
  .hikaku__text br { display: none; }
  .hikaku__emph { font-size: 24px; }
  .hikaku__emph br { display: none; }

  /* ===== なぜうまくいかなかった (naze) ===== */
  .naze__inner { max-width: 1100px; padding: 80px 40px 40px; }
  .naze__head { position: relative; min-height: 300px; margin-bottom: 48px; }
  .naze__sub, .naze__title { max-width: 560px; }   /* タイトルは左寄せのまま写真と被らない幅に */
  .naze__lead, .naze__sub { padding-right: 0; }     /* SP専用のpadding-rightをPCで解除 */
  .naze__lead { font-size: 24px; margin-bottom: 14px; }
  .naze__lead-line { height: 3px; }
  .naze__lead-line::before, .naze__lead-line::after { height: 16px; width: 10px; }
  .naze__sub { font-size: 24px; }
  .naze__title { margin-top: 10px; font-size: 46px; line-height: 1.5; }
  .naze__title-or { font-size: 52px; }
  .naze__photo { top: 0; right: 0; width: 494px; z-index: 0; }
  .naze__card { width: 800px; max-width: 100%; margin: 0 auto 36px; padding: 36px 64px 32px; border-radius: 5px; }
  .naze__card:last-child { margin-bottom: 0; }
  .naze__badge { font-size: 24px; padding: 6px 24px; margin-bottom: 22px; }
  .naze__card-img { top: 50%; right: 24px; transform: translateY(-50%); width: 150px; height: 150px; opacity: 1; }
  .naze__card-img--offer { top: 50%; right: 24px; transform: translateY(-50%); width: 150px; height: 150px; }
  .naze__list { max-width: 540px; }
  .naze__item { font-size: 16px; line-height: 1.6; margin-bottom: 14px; padding-left: 22px; }

  /* ===== 3つの理由 (riyu) ===== */
  .riyu__inner { max-width: 1100px; padding: 80px 40px 40px; }
  .riyu__head { margin-bottom: 56px; padding-top: 40px; }
  .riyu__watermark { top: 0; font-size: 46px; }
  .riyu__title { font-size: 36px; }
  .riyu__num { font-size: 56px; }
  .riyu__num-small { font-size: 36px; }
  .riyu__title-or { font-size: 46px; }
  .riyu__list { gap: 64px; }
  .riyu__card { display: grid; grid-template-columns: 400px 1fr; column-gap: 40px; align-items: start; }
  .riyu__media { grid-row: 1 / span 2; width: 400px; aspect-ratio: 400 / 200; margin-bottom: 0; margin-top: 6px; }
  .riyu__no { width: 62px; height: 52px; font-size: 36px; }
  .riyu__lead { grid-column: 2; margin: 0 0 16px; font-size: 24px; line-height: 1.6; }
  .riyu__body { grid-column: 2; }
  .riyu__body p { font-size: 16px; line-height: 1.6; margin-bottom: 0; }

  /* ===== 6つの特徴 (tokucho) ===== */
  .tokucho { padding: 80px 0 90px; }
  .tokucho__inner { max-width: 1080px; padding-inline: 40px; }
  .tokucho__head { margin-bottom: 48px; padding-top: 26px; }
  .tokucho__eyebrow { top: -8px; font-size: 60px; }
  .tokucho__title { gap: 8px; }
  .tokucho__title-logo { height: 64px; }
  .tokucho__no { font-size: 34px; }
  .tokucho__num { font-size: 72px; }
  .tokucho__unit { font-size: 46px; }
  .tokucho__feat { font-size: 50px; }
  .tokucho__list { display: grid; grid-template-columns: repeat(2, 1fr); column-gap: 30px; row-gap: 32px; }
  .tokucho__card { padding: 0 26px 24px; display: flex; flex-direction: column; }
  .tokucho__badge { width: 62px; height: 52px; font-size: 30px; }
  .tokucho__card-ttl { font-size: 20px; line-height: 1.5; padding-left: 78px; min-height: 52px; display: flex; align-items: center; padding-top: 4px; }
  .tokucho__card-ttl--2l, .tokucho__card-ttl--3l { padding-left: 78px; }
  .tokucho__card-sub { font-size: 14px; padding-left: 78px; margin-top: 0; }
  .tokucho__photo { width: 300px; max-width: 100%; height: auto; margin: 16px auto 0; }
  .tokucho__photo--left { width: 320px; }
  .tokucho__photo--right { width: 340px; }
  .tokucho__photo--contain { width: 300px; max-width: 100%; height: auto; margin-top: 16px; }
  .tokucho__card-txt { margin-top: 0; padding-top: 18px; font-size: 16px; line-height: 1.5; }
  /* 画像・アイコンはタイトル直下に詰め、余白はカード下部に逃がす */
  .tokucho__photo, .tokucho__venn { margin-top: 16px; margin-bottom: 0; }
  .tokucho__cycle { width: 248px; height: 248px; margin: 16px auto 0; }
  .tokucho__cycle::before { inset: 32px; }
  .tokucho__cycle-icon { width: 64px; height: 64px; }
  .tokucho__cycle-arrow { width: 17px; height: 24px; }
  .tokucho__cycle-icon--1 { transform: translate(-50%, -50%) rotate(0deg) translate(0, -92px) rotate(0deg); }
  .tokucho__cycle-icon--2 { transform: translate(-50%, -50%) rotate(90deg) translate(0, -92px) rotate(-90deg); }
  .tokucho__cycle-icon--3 { transform: translate(-50%, -50%) rotate(180deg) translate(0, -92px) rotate(-180deg); }
  .tokucho__cycle-icon--4 { transform: translate(-50%, -50%) rotate(270deg) translate(0, -92px) rotate(-270deg); }
  .tokucho__cycle-arrow--1 { transform: translate(-50%, -50%) rotate(45deg) translate(0, -92px); }
  .tokucho__cycle-arrow--2 { transform: translate(-50%, -50%) rotate(135deg) translate(0, -92px); }
  .tokucho__cycle-arrow--3 { transform: translate(-50%, -50%) rotate(225deg) translate(0, -92px); }
  .tokucho__cycle-arrow--4 { transform: translate(-50%, -50%) rotate(315deg) translate(0, -92px); }
  .tokucho__venn { margin: 16px 0 0; min-height: 200px; }
  .tokucho__venn-circle { width: 150px; height: 150px; font-size: 16px; }
  .tokucho__venn-circle--a { margin-right: -16px; }

  /* ===== 決め手 (kimete) ===== */
  .kimete__band { max-width: 1000px; height: 176px; padding: 0 20px; align-items: center; justify-content: center; clip-path: polygon(0 0, 100% 0, 100% 78%, 52% 78%, 50% 100%, 48% 78%, 0 78%); }
  .kimete__band::after { bottom: 28px; height: 30px; }
  .kimete__title-w { font-size: 56px; }
  .kimete__title-no { font-size: 38px; }
  .kimete__title-o { font-size: 56px; }
  .kimete__person { right: max(12px, calc(50% - 488px)); top: -20px; width: 150px; }
  .kimete__inner { max-width: 1000px; padding: 44px 20px 60px; }
  .kimete__list { gap: 40px; }
  .kimete__item { gap: 16px; align-items: flex-start; }
  .kimete__txt { font-size: 18px; line-height: 1.6; }
  .kimete__check { background: var(--orange); }

  /* ===== お客様の声 (voice) ===== */
  .voice { padding: 72px 0 100px; }
  .voice__inner { max-width: 1040px; padding-inline: 24px; }
  .voice__head { margin-bottom: 72px; }
  .voice__head-en { font-size: 80px; }
  .voice__head-jp { top: 44px; font-size: 56px; }
  .voice__head-jp .voice__head-sm { font-size: 36px; }
  .voice__case { display: grid; grid-template-columns: 420px 1fr; column-gap: 48px; align-items: start; margin-bottom: 88px; }
  .voice__photo { width: 420px; max-width: 100%; margin: 0; grid-row: span 2; }
  .voice__photo > img { aspect-ratio: 420 / 420; }
  .voice__photo--wide > img { aspect-ratio: 420 / 336; }
  .voice__plate { width: 260px; bottom: 28px; }
  .voice__plate-name { font-size: 22px; }
  .voice__plate-name--lg { font-size: 24px; }
  .voice__before { width: 100%; margin: 0; padding: 18px 22px 18px 64px; }
  .voice__before-lead { font-size: 16px; }
  .voice__before-txt { font-size: 18px; }
  .voice__before-txt b { font-size: 20px; }
  .voice__after { width: 100%; margin: 26px 0 0; padding: 20px 24px; }
  .voice__after-l1 { font-size: 18px; }
  .voice__after-l1 .voice__num { font-size: 34px; }
  .voice__after-l2 { font-size: 22px; }
  .voice__after-l2 .voice__num--xl { font-size: 48px; }
  .voice__after-l2 .voice__num--md { font-size: 30px; }
  .voice__after-l3 { font-size: 22px; }
  .voice__body { grid-column: 1 / -1; width: 100%; max-width: 100%; margin: 28px 0 0; font-size: 16px; line-height: 1.7; }
  .voice__reviews { display: grid; grid-template-columns: 1fr; gap: 22px; max-width: 760px; margin-inline: auto; }
  .voice__card { width: 100%; max-width: 100%; margin: 0; padding: 22px 26px; }
  .voice__stars { font-size: 22px; }
  .voice__card-txt { font-size: 15px; line-height: 1.7; }

  /* ===== 向きません (muki) ===== */
  .muki { padding: 72px 0 110px; }
  .muki__inner { max-width: 1040px; padding-inline: 24px; }
  .muki__head { margin-bottom: 48px; }
  .muki__head-en { font-size: 80px; }
  .muki__head-jp { top: 50px; font-size: 48px; }
  .muki__head-jp .muki__head-sm { font-size: 34px; }
  .muki__head-jp .muki__or { font-size: 56px; }
  .muki__head-jp .muki__head-sm2 { font-size: 48px; }
  .muki__lead { font-size: 18px; margin-bottom: 48px; }
  .muki__cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; align-items: stretch; }
  .muki__card { width: 100%; max-width: 100%; margin: 0; display: flex; flex-direction: column; padding: 16px 26px 28px; }
  .muki__card-ttl { font-size: 22px; min-height: 70px; }
  .muki__card-ttl .muki__or--lg { font-size: 26px; }
  .muki__card-ttl .muki__or--xl { font-size: 28px; }
  .muki__card-img { width: 170px; margin: 10px auto 0; }
  .muki__card-txt { font-size: 16px; line-height: 1.7; margin-top: 0; padding-top: 16px; }
  .muki__heard { width: 100vw; max-width: 100vw; height: 88px; margin-top: 72px; }
  .muki__heard::after { border-left-width: 60px; border-right-width: 60px; border-top-width: 14px; }
  .muki__heard-ttl { font-size: 40px; }
  .muki__qhead { margin-top: 64px; }
  .muki__qhead-jp { font-size: 44px; }
  .muki__qhead-jp .muki__qhead-sm { font-size: 34px; }
  .muki__qhead-jp .muki__or { font-size: 52px; }
  .muki__qhead-jp2 { font-size: 36px; }
  .muki__qphoto { left: auto; transform: none; width: 440px; max-width: 440px; float: left; clear: left; margin: 32px 48px 0 0; }
  .muki__qphoto img { aspect-ratio: 440 / 300; }
  .muki__plate { float: left; clear: left; width: 260px; margin: -64px 48px 0 0; position: relative; z-index: 2; }
  .muki__plate-name { font-size: 22px; }
  .muki__quote { width: auto; max-width: none; margin: 32px 0 0; overflow: hidden; min-height: 300px; padding: 34px 28px 24px; }
  .muki__quote-txt { font-size: 16px; line-height: 1.8; }
  .muki__inner::after { content: ""; display: block; clear: both; }

  /* ===== 代表メッセージ (message) — gridで写真左/本文右 ===== */
  .message { padding: 80px 0 96px; }
  .message__inner { max-width: 1120px; padding-inline: 40px; display: grid; grid-template-columns: 350px 1fr; column-gap: 56px; align-items: start; }
  .message__head { grid-column: 1 / -1; margin-bottom: 40px; padding-top: 34px; }
  .message__head-en { font-size: 72px; }
  .message__head-ja { font-size: 46px; }
  .message__photo { grid-column: 1; margin: 0; width: 350px; align-self: start; }
  .message__photo-img { aspect-ratio: 4 / 5; object-position: 52% 24%; }
  .message__body { grid-column: 2; display: block; margin-top: 0; }
  .message__body p { font-size: 15px; line-height: 1.9; margin-bottom: 1.5em; }
  .message__plate { bottom: 18px; }
  .message__plate-corp { font-size: 11px; padding: 4px 14px 4px 16px; }
  .message__plate-name { font-size: 26px; padding: 3px 18px 3px 16px; }

  /* ===== FAQ ===== */
  .faq { padding: 80px 0 96px; }
  .faq__inner { max-width: 880px; padding-inline: 40px; }
  .faq__head { margin-bottom: 48px; padding-top: 32px; }
  .faq__head-en { font-size: 72px; }
  .faq__head-ja { font-size: 36px; }
  .faq__list { gap: 16px; }
  .faq__q { gap: 16px; padding: 24px 30px; }
  .faq__q-num { font-size: 24px; }
  .faq__q-text { font-size: 18px; line-height: 1.4; padding-top: 1px; }
  .faq__q-text br { display: none; }
  .faq__toggle { width: 20px; height: 20px; margin-top: 4px; }
  .faq__a { padding: 0 30px 22px; }
  .faq__a p { font-size: 14px; line-height: 1.8; margin-top: 18px; }

  /* ===== 問い合わせフォーム (form) ===== */
  .form { padding: 80px 0 96px; }
  .form__inner { max-width: 880px; padding-inline: 40px; }
  .form__head { margin-bottom: 48px; padding-top: 32px; }
  .form__head-en { font-size: 72px; }
  .form__head-ja { font-size: 36px; }
  .form__radios { gap: 64px; margin-bottom: 36px; }
  .form__radio-label { font-size: 15px; }
  .form__form { gap: 24px; }
  .form__label { font-size: 15px; margin-bottom: 10px; }
  .form__input { font-size: 15px; padding: 14px 16px; }
  .form__submit { width: 310px; margin-top: 20px; }
}
