@charset "UTF-8";

/* ━━━━━━━━━━ TOKENS ━━━━━━━━━━ */
:root {
  --c-green: #009B57;
  --c-green-deep: #1F3A2E;
  --c-green-pale: #F3FBF7;
  --c-green-light: #E6F4E5;
  --c-green-a05: rgba(0, 155, 87, .05);
  --c-green-a20: rgba(0, 155, 87, .2);
  --c-orange: #FF7B00;
  --c-orange-a10: rgba(254, 143, 1, .1);
  --c-orange-a20: rgba(254, 143, 1, .2);
  --c-white: #FFFFFF;
  --c-gray: #6F7E77;
  --c-line: #D8D8D8;
  --c-gray-bg: #F5F5F5;
  --c-deep-a10: rgba(31, 58, 46, .1);

  --grad-orange: linear-gradient(90deg, rgba(255, 157, 0, 1) 0%, rgba(255, 106, 0, 1) 100%);

  --sh-btn: 0 8px 18px 0 rgba(80, 80, 80, .16);
  --sh-card: 0 0 4px 0 rgba(0, 0, 0, .05);
  --sh-hd: 0 3.902px 8.78px 0 rgba(80, 80, 80, .16);

  --font-jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  --font-en: "Azo Sans", "Montserrat", "Noto Sans JP", sans-serif;

  --lp-w: 390px;
  --hd-h: 50px;
  --pc-scale: 1;
}

/* ━━━━━━━━━━ RESET ━━━━━━━━━━ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-jp);
  color: var(--c-green-deep);
  background: var(--c-green);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, p, ul, figure { margin: 0; }
ul { padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
b, strong, em { font-style: normal; }
button { font: inherit; border: 0; background: none; cursor: pointer; }
input, textarea { font: inherit; }

.is-green { color: var(--c-green); }

/* ━━━━━━━━━━ LAYOUT ━━━━━━━━━━ */
.lp {
  width: var(--lp-w);
  max-width: 100%;
  margin-inline: auto;
  overflow: hidden;
}
.pc-bg, .pc-side { display: none; }

/* ━━━━━━━━━━ HEADER ━━━━━━━━━━ */
.hd {
  position: fixed;
  inset: 0 auto auto 50%;
  transform: translateX(-50%);
  z-index: 50;
  width: var(--lp-w);
  max-width: 100%;
  padding: 8px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--c-white);
}
.hd__logo a, .ft__logo a, .pc-side__logo a { display: block; }
.hd__logo img { width: 130px; height: auto; }
.hd__btn {
  width: 184px;
  padding: 7.805px 11.707px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3.902px;
  background: var(--grad-orange);
  box-shadow: var(--sh-hd);
  color: var(--c-white);
  font-size: 16px;
  font-weight: 900;
  line-height: 18px;
  text-align: center;
}

/* ━━━━━━━━━━ CTA BUTTON ━━━━━━━━━━ */
.cta { display: flex; flex-direction: column; align-items: center; gap: 4px; align-self: stretch; }
.cta__note {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2px;
  color: var(--c-green-deep);
  font-size: 18px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: .1111em;
}
.cta__note em { color: var(--c-green); font-size: 24px; line-height: 1.4; }
.cta__num3 { letter-spacing: .02em; }
.cta__num0 { letter-spacing: .12em; }
.cta__slash { width: 1px; height: 20.6px; margin-bottom: 6px; background: currentColor; }
.cta__slash--l { transform: rotate(-29.05deg); }
.cta__slash--r { transform: rotate(29.05deg); }
.cta--white, .cta--white .cta__note { color: var(--c-white); }
.cta--white .cta__note em { color: var(--c-white); }

.btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 8px 16px 40px;
  border-radius: 8px;
  border: 2px solid var(--c-white);
  background: var(--grad-orange);
  box-shadow: var(--sh-btn);
  color: var(--c-white);
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 22px 0 rgba(80, 80, 80, .24); }
.btn--main { align-self: stretch; }
.btn__txt {
  flex: 1;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: .1111em;
  text-align: center;
}
.btn__arw { width: 24px; height: 24px; flex: none; }
.btn--sub {
  width: 350px;
  max-width: 100%;
  padding: 16px;
  padding-left: 40px;
  border-color: var(--c-green);
  background: var(--c-white);
  color: var(--c-green);
}
.btn--sub .btn__txt { font-weight: 800; }
.btn--sub .btn__arw { filter: brightness(0) saturate(100%) invert(38%) sepia(93%) saturate(1352%) hue-rotate(129deg) brightness(93%) contrast(101%); }
.btn--submit { align-self: center; width: 326px; max-width: 100%; padding: 16px 8px 16px 32px; }

/* ━━━ CTA 光沢アニメーション ━━━ */
.btn--main, .hd__btn { position: relative; overflow: hidden; }
.btn--main::after, .hd__btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, .6) 50%, rgba(255, 255, 255, 0) 75%);
  transform: translateX(-100%) skewX(-15deg);
  animation: shine 3s linear infinite;
  pointer-events: none;
}
@keyframes shine {
  20% { transform: translateX(130%) skewX(-15deg); }
  100% { transform: translateX(130%) skewX(-15deg); }
}

/* ━━━━━━━━━━ SECTION HEAD ━━━━━━━━━━ */
.sec-head { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.sec-head__en {
  width: 210.82px;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--c-green);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: .0833em;
  text-align: center;
}
.sec-head__en span { display: block; }
.sec-head__line {
  display: block;
  width: 184px;
  height: 17.73px;
  margin-top: -7px;
  background: currentColor;
  -webkit-mask: url(../img/svg/deco_line.svg) no-repeat center / contain;
  mask: url(../img/svg/deco_line.svg) no-repeat center / contain;
}
.sec-head__ja {
  width: 360px;
  max-width: 100%;
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  letter-spacing: .0417em;
  text-align: center;
}
.sec-head--white { color: var(--c-white); }
.sec-head--white .sec-head__en { color: var(--c-white); }

/* ━━━━━━━━━━ HERO ━━━━━━━━━━ */
.hero {
  min-height: 665px;
  padding: 78px 20px 13px;
  display: flex;
  background: url(../img/hero_bg.webp) no-repeat center / cover;
}
.hero__inner { width: 350px; max-width: 100%; display: flex; flex-direction: column; gap: 8px; }
.hero__top { display: flex; flex-direction: column; gap: 32px; }
.hero__title { display: flex; flex-direction: column; gap: 10px; }
.hero__ttl-block { width: 277.36px; display: flex; flex-direction: column; }
.hero__ttl-row { display: flex; align-items: flex-end; white-space: nowrap; }
.hero__ttl-row--g4 { gap: 4px; }
.hero__ttl-lines { margin-top: -1px; display: flex; flex-direction: column; }
.hero__ttl-lines .hero__ttl-row + .hero__ttl-row { margin-top: -4px; }

.hero__ttl-l, .hero__ttl-s2, .hero__ttl-s, .hero__ttl-big {
  color: var(--c-green-deep);
  font-weight: 900;
  -webkit-text-stroke: 1px var(--c-white);
  paint-order: stroke fill;
  text-shadow: 0 0 6.28px rgba(255, 255, 255, 1), 0 0 4.19px rgba(255, 255, 255, 1);
}
.hero__ttl-l { font-size: 28px; line-height: 1.4; opacity: .88; }
.hero__ttl-s2 { font-size: 20px; line-height: 28px; }
.hero__ttl-s { font-size: 24px; line-height: 32px; }
.hero__ttl-s--pb { padding-bottom: 4px; }
.hero__ttl-s--ls { letter-spacing: .0833em; }
.hero__ttl-big { font-size: 50px; line-height: 1.4; color: var(--c-green); }
.hero__ttl-big--2 { line-height: 1.3; letter-spacing: .055em; }
.hero__swoosh { margin-top: -1px; padding-left: 68px; display: flex; align-items: flex-end; }
.hero__swoosh img:first-child { width: 87.2px; height: 16.69px; }
.hero__swoosh img:last-child { width: 49.03px; height: 3.68px; }

.hero__lead {
  color: var(--c-green-deep);
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  text-shadow: 0 0 6px #fff, 0 0 4px #fff, 0 0 4px #fff;
}

/* ━━━ hero stats ━━━ */
.stats {
  width: 350px;
  max-width: 100%;
  height: 92px;
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  border-radius: 8px;
  background: var(--c-white);
  box-shadow: var(--sh-card);
}
.stats__row { display: flex; justify-content: center; gap: 8px; }
.stats__col { width: 98px; display: flex; flex-direction: column; align-items: center; gap: 4px; }
.stats__col--w106 { width: 106px; }
.stats__ic {
  width: 40px;
  height: 40px;
  flex: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  background: var(--c-green-light);
  box-shadow: 0 0 0 6px var(--c-white);
}
.stats__ic img { width: 32.65px; height: 32.65px; }
.stats__txt { width: 100%; }
.stats__txt--tight { display: flex; flex-direction: column; }
.stats__txt--tight .stats__line--mid { margin-top: -4px; }
.stats__txt--g2 { display: flex; flex-direction: column; gap: 2px; }
.stats__line { display: flex; justify-content: center; align-items: flex-end; }
.stats__center { text-align: center; }
.stats b { color: var(--c-green); font-size: 16px; font-weight: 700; line-height: 24px; }
.stats small { color: var(--c-green-deep); font-size: 14px; font-weight: 500; line-height: 20px; }
.stats em { color: var(--c-orange); font-size: 16px; font-weight: 800; line-height: 24px; }
.stats__ave { width: 20px; padding-top: 5px; color: var(--c-green-deep); font-size: 10px; font-weight: 700; line-height: 16px; text-align: center; }
.stats__num {
  position: relative;
  top: 3px;
  width: 31px;
  padding-bottom: 2px;
  color: var(--c-orange);
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: -.0417em;
  text-align: center;
}
.stats__sep { padding-top: 24px; display: flex; align-items: flex-end; }
.stats__sep i { display: block; width: 1px; height: 68px; background: var(--c-deep-a10); }

.hero__cta { display: flex; flex-direction: column; align-items: center; gap: 8px; }

/* ━━━━━━━━━━ WORRIES ━━━━━━━━━━ */
.worries { padding: 40px 16px; display: flex; justify-content: center; background: var(--c-green); }
.worries__inner { width: 340px; max-width: 100%; display: flex; flex-direction: column; gap: 24px; }
.worries__ttl { color: var(--c-white); font-size: 24px; font-weight: 700; line-height: 1.5; text-align: center; }
.checks { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.checks__li { width: 332px; max-width: 100%; padding: 0 16px; }
.checks__box {
  display: flex;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--c-white);
  border-radius: 8px;
}
.checks__mark { width: 12px; padding-top: 3px; color: var(--c-white); font-size: 16px; font-weight: 800; line-height: 22px; }
.checks__box p { flex: 1; color: var(--c-white); font-size: 16px; font-weight: 400; line-height: 24px; }
.checks__box b { font-weight: 700; }

/* ━━━━━━━━━━ CAREER CONSULTATION ━━━━━━━━━━ */
.consult-outer { position: relative; background: var(--c-white); }
.consult-outer::before { content: ""; position: absolute; inset: 0 0 200px 0; background: var(--c-green); }
.consult {
  position: relative;
  min-height: 568px;
  padding: 71px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 184px;
  background: var(--c-green-pale);
}
.consult__inner { width: 360px; max-width: 100%; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.consult__ttl { font-size: 24px; line-height: 1.5; letter-spacing: .05em; }
.consult__ttl-em { color: var(--c-orange); font-size: 32px; font-weight: 900; letter-spacing: .05em; }
.consult__ttl-lh { line-height: 1.7; }
.consult__lead { font-size: 16px; font-weight: 400; line-height: 1.8; letter-spacing: .02em; text-align: center; }
.consult__lead b { color: var(--c-green); font-weight: 700; }
.consult__cards { width: 350px; max-width: 100%; display: flex; justify-content: space-between; align-items: center; }
.ccard {
  width: 112px;
  height: 120px;
  padding: 16px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--c-gray);
  border-radius: 16px;
  background: var(--c-white);
}
.ccard__ic {
  width: 40px;
  height: 40px;
  flex: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
  background: var(--c-green-a05);
}
.ccard p { font-size: 14px; font-weight: 600; line-height: 1.4; text-align: center; }
.ccard b { color: var(--c-green); font-weight: 600; }

/* ━━━━━━━━━━ CAREER ADVISER ━━━━━━━━━━ */
.adviser { padding: 40px 0; display: flex; flex-direction: column; align-items: center; gap: 40px; background: var(--c-white); }
.adviser__ttl { line-height: 36px; letter-spacing: .0417em; }
.adviser__ttl .is-green { font-weight: 900; }
.adviser__body { width: 394px; max-width: 100%; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.adviser__photo img { width: 394px; max-width: 100%; height: auto; }
.adviser__info { width: 333px; max-width: 100%; display: flex; flex-direction: column; gap: 16px; }
.adviser__role { font-size: 16px; font-weight: 500; line-height: 1.8; letter-spacing: .02em; text-align: center; }
.adviser__jp { color: var(--c-green); font-size: 24px; font-weight: 700; line-height: 1.8; letter-spacing: .1em; text-align: center; }
.adviser__en { margin-top: -6px; font-size: 12px; font-weight: 500; line-height: 1.8; letter-spacing: .1em; text-align: center; }
.prof { display: flex; flex-direction: column; }
.prof__li {
  padding: 16px 0;
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px dashed var(--c-green-deep);
}
.prof__li i { width: 14px; height: 14px; flex: none; border-radius: 2px; background: var(--c-green); }
.prof__li p { flex: 1; font-size: 16px; font-weight: 500; line-height: 24px; }

/* ━━━━━━━━━━ WHY CHOOSE US ━━━━━━━━━━ */
.why { position: relative; padding: 40px 0; background: var(--c-white); }
.why::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 32px 32px 0 0;
  background: var(--c-green-pale);
}
.why__inner { position: relative; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.why__ttl { line-height: 36px; letter-spacing: .0833em; }
.why__list { width: 100%; display: flex; flex-direction: column; }
.reason { padding-bottom: 32px; display: flex; flex-direction: column; align-items: center; gap: 32px; }
.reason__img { width: 100%; height: 256px; }
.reason__img img { width: 100%; height: 100%; object-fit: cover; }
.reason__body { width: 336px; max-width: 100%; display: flex; flex-direction: column; gap: 16px; }
.reason__head { width: 324px; max-width: 100%; display: flex; gap: 16px; }
.reason__no {
  width: 32px;
  height: 32px;
  flex: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 19.43px;
  background: var(--c-green);
  color: var(--c-white);
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
}
.reason__ttl { width: 280px; max-width: 100%; display: flex; align-items: center; font-size: 20px; font-weight: 700; line-height: 24px; letter-spacing: .1em; }
.reason__txt { font-size: 16px; font-weight: 400; line-height: 32px; }
.reason__txt b { font-weight: 700; }

/* ━━━ CTA BOX ━━━ */
.ctabox {
  width: 360px;
  max-width: 100%;
  padding: 40px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  border: 2px solid var(--c-green);
  border-radius: 16px;
  background: var(--c-white);
}
.ctabox--354 { width: 354px; }
.ctabox__ttl { width: 360px; max-width: 100%; font-size: 24px; font-weight: 700; line-height: 36px; letter-spacing: .0833em; text-align: center; }
.ctabox__lead { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.ctabox__lead p { font-size: 16px; font-weight: 400; line-height: 26px; letter-spacing: .0625em; text-align: center; }
.ctabox__lead b { font-weight: 700; }

/* ━━━━━━━━━━ CAREER CHANGE ━━━━━━━━━━ */
.cases { background: var(--c-green-pale); }
.cases__inner {
  padding: 40px 15px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  border-radius: 0 56px 0 0;
  background: var(--c-green);
}
.cases__ttl { color: var(--c-white); font-size: 32px; line-height: 44px; letter-spacing: .0313em; }
.cases__list { display: flex; flex-direction: column; gap: 32px; }
.case { position: relative; padding: 0 32px 27.49px; }
.case::before {
  content: "";
  position: absolute;
  inset: 19.28px 0 0 0;
  border-radius: 180px 180px 16px 16px / 177px 177px 16px 16px;
  background: var(--c-white);
}
.case__top, .case__body { position: relative; }
.case__top { margin-top: -8px; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.case__ill { width: 124px; height: 120.7px; display: flex; justify-content: center; align-items: flex-end; }
.case__ill img { width: auto; height: 108px; }
.case__meta { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 8px; }
.case__name { font-size: 16px; font-weight: 700; line-height: 24px; letter-spacing: .0625em; }
.tag {
  padding: 3.25px 9px 4.15px;
  border: 1px solid var(--c-gray);
  border-radius: 999px;
  background: var(--c-white);
  color: var(--c-gray);
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
}
.case__body { margin-top: 32px; display: flex; flex-direction: column; gap: 16px; }
.case__badge { display: flex; flex-direction: column; align-items: center; }
.case__badge span {
  position: relative;
  z-index: 1;
  align-self: stretch;
  padding: 4px 48px;
  display: block;
  border-radius: 100px;
  background: var(--c-orange);
  color: var(--c-white);
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: .1em;
  text-align: center;
}
.case__badge::after {
  content: "";
  margin-top: -8px;
  width: 16px;
  height: 13px;
  background: var(--c-orange);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.case__txt { font-size: 16px; font-weight: 400; line-height: 24px; letter-spacing: .125em; }
.case__txt b { color: var(--c-green); font-weight: 700; }
.ba { display: flex; justify-content: center; align-items: center; gap: 10px; }
.ba__box {
  flex: 1;
  padding: 11.5px 6px 11.7px;
  border: 1px solid var(--c-gray);
  border-radius: 8px;
  background: var(--c-gray-bg);
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
}
.ba__box--after { padding: 11.6px 6px 11.79px; border-color: var(--c-orange); background: var(--c-orange-a20); }
.ba__arw { width: 16px; flex: none; color: var(--c-gray); font-size: 16px; font-weight: 800; line-height: 27.2px; text-align: center; }

/* ━━━━━━━━━━ SUPPORT & MERIT ━━━━━━━━━━ */
.merit-wrap { display: flex; flex-direction: column; }
.merit { padding: 64px 0 78px; display: flex; justify-content: center; border-radius: 32px 32px 0 0; background: var(--c-green-pale); }
.merit__inner { width: 360px; max-width: 100%; display: flex; flex-direction: column; gap: 64px; }
.merit__block { display: flex; flex-direction: column; gap: 32px; }
.merit__head { gap: 14px; }
.merit__ttl { line-height: 44px; letter-spacing: .0417em; }
.merit__ttl .is-green { font-weight: 900; }
.merit__sub { font-size: 16px; font-weight: 400; line-height: 32px; letter-spacing: .0625em; text-align: center; }

.cmp { padding: 0 1px; display: flex; justify-content: space-between; align-items: flex-start; }
.cmp__col { width: 180px; display: flex; flex-direction: column; border-radius: 8px; background: var(--c-white); }
.cmp__col--ours { border: 2px solid var(--c-orange); }
.cmp__col--other { border: 2px solid var(--c-line); }
.cmp__head {
  height: 84.39px;
  padding: 17.595px 12px 17.795px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px 8px 0 0;
  color: var(--c-white);
  font-size: 16px;
  font-weight: 800;
  line-height: 24px;
  text-align: center;
}
.cmp__col--ours .cmp__head { background: var(--c-orange); }
.cmp__col--other .cmp__head { background: var(--c-gray); }
.cmp__cell {
  height: 163px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid;
}
.cmp__cell:last-child { border-bottom: 0; border-radius: 0 0 8px 8px; }
.cmp__col--ours .cmp__cell { border-color: var(--c-orange); background: var(--c-orange-a10); }
.cmp__col--other .cmp__cell { border-color: var(--c-line); background: var(--c-white); }
.cmp__t { width: 100%; font-size: 16px; font-weight: 700; line-height: 24px; letter-spacing: .125em; text-align: center; }
.cmp__line { display: block; width: 45px; height: 1px; }
.cmp__col--ours .cmp__line { background: var(--c-orange); }
.cmp__col--other .cmp__line { background: var(--c-gray); }
.cmp__d { width: 100%; font-size: 14px; font-weight: 400; line-height: 24px; }
.cmp__d b { font-weight: 700; }

/* ━━━━━━━━━━ SUPPORT FLOW ━━━━━━━━━━ */
.flow {
  margin-top: -64px;
  padding: 48px 14px;
  display: flex;
  justify-content: center;
  border-radius: 0 56px 0 0;
  background: var(--c-green);
}
.flow__inner { width: 362px; max-width: 100%; display: flex; flex-direction: column; gap: 24px; }
.flow__ttl { color: var(--c-white); font-size: 32px; line-height: 44px; letter-spacing: .0313em; }
.flow__ttl-s { font-size: 24px; }
.flow__list { display: flex; flex-direction: column; gap: 8px; }
.step {
  padding: 8px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--c-green);
  border-radius: 8px;
  background: var(--c-white);
}
.step__no {
  width: 112px;
  padding: 0 16px;
  border-radius: 100px;
  background: var(--c-green);
  color: var(--c-white);
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: .0714em;
  text-align: center;
}
.step__body { width: 100%; display: flex; align-items: center; gap: 16px; }
.step__ic { width: 96px; flex: none; display: flex; justify-content: center; }
.step__ic img { height: 76.8px; width: auto; }
.step__ttl { font-size: 18px; font-weight: 700; line-height: 24px; }

/* ━━━━━━━━━━ Q&A ━━━━━━━━━━ */
.qa { background: var(--c-green); }
.qa__inner { padding: 48px 14px; display: flex; flex-direction: column; gap: 32px; border-radius: 32px 32px 0 0; background: var(--c-white); }
.qa__ttl { line-height: 44px; letter-spacing: .0417em; }
.qa__list { display: flex; flex-direction: column; gap: 16px; }
.faq {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 11.99px;
  border: 1px solid var(--c-green-a20);
  border-radius: 8px;
  background: var(--c-green-light);
}
.faq__q { display: flex; gap: 12px; }
.faq__mark { flex: none; font-family: var(--font-en); font-size: 16px; font-weight: 700; line-height: 27.2px; }
.faq__ttl { flex: 1; font-size: 16px; font-weight: 700; line-height: 24px; letter-spacing: .0625em; }
.faq__a { font-size: 16px; font-weight: 400; line-height: 24px; letter-spacing: .0625em; }

/* ━━━━━━━━━━ OUR ROLE ━━━━━━━━━━ */
.role { display: flex; flex-direction: column; }
.role__head { padding: 40px 0 24px; background: var(--c-white); }
.role__ttl { line-height: 44px; letter-spacing: .0417em; }
.role__ttl .is-green { font-weight: 700; }
.role__img { background: linear-gradient(to bottom, var(--c-white) 0 49%, var(--c-green) 49% 100%); }
.role__img img { width: 100%; height: auto; }
.role__body { padding: 40px 16px; display: flex; flex-direction: column; align-items: center; gap: 8px; background: var(--c-green); }
.role__text { width: 330px; max-width: 100%; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.role__lead { align-self: stretch; color: var(--c-white); }
.role__lead-s { font-size: 16px; font-weight: 700; line-height: 36px; letter-spacing: .0625em; text-align: left; }
.role__lead-l { margin-top: -1px; font-size: 24px; font-weight: 700; line-height: 1.7; letter-spacing: .0417em; text-align: left; }
.role__lead-l span { font-size: 20px; }
.role__line { display: block; align-self: flex-start; width: 112px; height: 1px; background: var(--c-white); }
.role__desc { align-self: stretch; color: var(--c-white); font-size: 16px; font-weight: 500; line-height: 36px; letter-spacing: .0625em; }
.role__desc b { font-weight: 700; }
.role__body .cta { margin-top: 16px; }

/* ━━━━━━━━━━ CONTACT ━━━━━━━━━━ */
.contact { padding: 48px 0; display: flex; justify-content: center; border-radius: 32px; background: var(--c-white); }
.contact__inner { width: 362px; max-width: 100%; display: flex; flex-direction: column; gap: 48px; }
.contact__head { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.contact__ttl { width: 360px; max-width: 100%; font-size: 24px; font-weight: 700; line-height: 36px; letter-spacing: .0833em; text-align: center; }
.contact__lead { font-size: 16px; font-weight: 400; line-height: 26px; letter-spacing: .0625em; text-align: center; }
.form { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.field { width: 326px; max-width: 100%; display: flex; flex-direction: column; gap: 6.69px; }
.field__label { display: flex; align-items: center; gap: 7px; font-size: 16px; font-weight: 400; line-height: 24px; }
.field__req {
  padding: 0 8px;
  border-radius: 2px;
  background: var(--c-orange);
  color: var(--c-white);
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
}
.field__input {
  width: 100%;
  height: 46px;
  padding: 8px 16px;
  border: 1px solid var(--c-line);
  border-radius: 8px;
  background: var(--c-white);
  color: var(--c-green-deep);
  font-size: 16px;
  line-height: 24px;
}
.field__input::placeholder { color: var(--c-line); }
.field__input:focus { outline: 2px solid var(--c-green); outline-offset: -1px; }
.field__input--area { height: 112px; padding: 8px 16px; resize: vertical; }
.agree {
  width: 326px;
  max-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.agree__box {
  width: 20px;
  height: 20px;
  flex: none;
  margin: 0;
  accent-color: var(--c-green);
  cursor: pointer;
}
.agree__label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  line-height: 24px;
  cursor: pointer;
}
.agree__label a {
  color: var(--c-green);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ━━━━━━━━━━ FOOTER ━━━━━━━━━━ */
.ft { padding: 32px 0 8px; display: flex; justify-content: center; background: var(--c-green); }
.ft__inner { width: 219px; max-width: 100%; display: flex; flex-direction: column; align-items: center; gap: 24px; }
.ft__logo { padding: 8.12px 16.24px; border-radius: 2.03px; background: var(--c-white); }
.ft__logo img { width: 167.51px; height: auto; }
.ft__body { width: 100%; display: flex; flex-direction: column; gap: 16px; }
.ft__nav { display: flex; justify-content: center; gap: 10px; color: var(--c-white); font-size: 12px; font-weight: 500; line-height: 16px; }
.ft__nav span { font-weight: 400; }
.ft__meta { display: flex; flex-direction: column; gap: 4px; color: var(--c-white); font-size: 10px; font-weight: 400; line-height: 16px; text-align: center; }

/* ━━━━━━━━━━ ANIMATION ━━━━━━━━━━ */
.js-char { display: inline-block; opacity: 0; transform: translateY(.3em); }
.is-play .js-char { animation: charIn .5s cubic-bezier(.22, 1, .36, 1) forwards; }
@keyframes charIn { to { opacity: 1; transform: translateY(0); } }

.js-fade { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s cubic-bezier(.22, 1, .36, 1); }
.js-fade.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js-char, .js-fade { opacity: 1 !important; transform: none !important; animation: none !important; transition: none !important; }
  .btn--main::after, .hd__btn::after { display: none; }
}

/* ━━━━━━━━━━ タブレット以上：PC背景を適用 ━━━━━━━━━━ */
@media (min-width: 768px) {
  body { background: none; }
  .pc-bg {
    display: block;
    position: fixed;
    inset: 0;
    z-index: -2;
    background: url(../img/pc_bg.webp) no-repeat center / cover;
  }
  .pc-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(225deg, rgba(0, 155, 87, 0) 0%, rgba(0, 155, 87, .5) 100%);
  }
  .lp {
    margin-block: 56px 0;
    background: var(--c-green);
    box-shadow: 0 0 32px 0 rgba(0, 93, 51, .1);
  }
}

/* ━━━━━━━━━━ PC (Figma 1600px フレーム) ━━━━━━━━━━ */
@media (min-width: 1024px) {
  :root { --pc-scale: .64; }
  .pc-side {
    display: flex;
    position: fixed;
    top: 42%;
    left: 10.5vw;
    z-index: 1;
    width: 432px;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    transform: translateY(-50%) scale(var(--pc-scale));
    transform-origin: left center;
  }
  .pc-side__logo { padding: 16px 32px; border-radius: 4px; background: var(--c-white); }
  .pc-side__logo img { width: 330px; height: auto; }
  .pc-side .cta__note--pc {
    color: var(--c-white);
    font-size: 22px;
    line-height: 1.4;
    text-shadow: 0 0 10.48px rgba(1, 112, 81, 1);
  }
  .pc-side .cta__note--pc em { color: var(--c-white); font-size: 32px; }
  .pc-side .cta__slash { height: 25.7px; margin-bottom: 0; }
  .btn--pill {
    padding: 20.03px 10.01px 20.03px 40.06px;
    border-width: 2.5px;
    border-radius: 100px;
    box-shadow: 0 10.01px 22.53px 0 rgba(80, 80, 80, .24);
  }
  .btn--pill .btn__txt { font-size: 22.53px; line-height: 30.04px; }
  .btn--pill .btn__arw { width: 30.04px; height: 30.04px; }

  .hd { display: none; }
  .lp { margin-inline: auto min(19.5vw, 480px); border-radius: 216px 0 0 0; }
  .hero { padding: 110px 20px 0; min-height: 689px; border-radius: 216px 0 0 0; }
  .hero__inner { align-items: center; }
  .hero__title { padding-left: 12px; }
}

@media (min-width: 1280px) { :root { --pc-scale: .8; } }
@media (min-width: 1600px) { :root { --pc-scale: 1; } }

/* ━━━━━━━━━━ 狭幅端末 ━━━━━━━━━━ */
@media (max-width: 389px) {
  .hero, .worries, .consult, .cases__inner, .merit, .flow, .qa__inner, .role__body, .contact { padding-inline: 12px; }
  .consult { border-radius: 47vw; }
}

/* ━━━━━━━━━━ フォームのスパム対策 ━━━━━━━━━━ */
/* 人には見せず、読み上げ・タブ移動からも外す。機械が埋めたら弾く */
.hp {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* ━━━━━━━━━━ 送信完了・エラー画面 ━━━━━━━━━━ */
/* ヘッダー／フッターはLP本体と共通。中身だけこのセクションで組む */
.thanks {
  min-height: 60vh;
  padding: 110px 20px 72px;   /* 上は固定ヘッダーぶんの逃げ */
  display: flex;
  justify-content: center;
  background: var(--c-green-pale);
}
.thanks__inner {
  width: 350px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.thanks__en {
  color: var(--c-green);
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .18em;
}
.thanks__ttl {
  color: var(--c-green-deep);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.7;
}
.thanks__txt {
  font-size: 15px;
  font-weight: 500;
  line-height: 2;
}
.thanks__note {
  color: var(--c-gray);
  font-size: 12px;
  line-height: 1.9;
  text-align: left;
}
.thanks__back {
  margin-top: 8px;
  width: 100%;
}

@media (min-width: 768px) {
  .thanks { padding-top: 130px; }
  .thanks__ttl { font-size: 26px; }
}
