/* ============================================================
   LP 建設転職 — style.css
   対象テンプレート: page-lp.php
   読み込み: header-lp_con.php
============================================================ */

/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
  --green:        #2e9e48;
  --green-dark:   #1c7a35;
  --green-light:  #5ec872;
  --green-pale:   #e8f7ec;
  --green-xpale:  #f3fbf5;
  --white:        #ffffff;
  --off-white:    #f7f8f7;
  --gray-light:   #e3e8e3;
  --gray:         #8a9a8a;
  --text:         #1a211a;
  --text-mid:     #4a5a4a;
  --orange:       #f05a22;
  --orange-dark:  #d44d1a;

  /* spacing scale */
  --sp-xs:  8px;
  --sp-sm:  12px;
  --sp-md:  20px;
  --sp-lg:  32px;
  --sp-xl:  48px;

  /* radius */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
}

/* ============================================================
   RESET & BASE  — mobile first
============================================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.65;
  -webkit-text-size-adjust: 100%;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ============================================================
   UTILITIES
============================================================ */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}
.container {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
}

/* ============================================================
   HEADER  (mobile-first: compact single row)
============================================================ */
.site-header {
  position: sticky;
  top: 0; z-index: 300;
  background: var(--green);
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.site-logo {
  font-size: 17px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 7px;
  line-height: 1;
}
.logo-free {
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
}
.header-cta, .cta-main {
  position: relative;
  overflow: hidden;
}
.header-cta::after, .cta-main::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.35) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-20deg);
  animation: btn-shine 2.4s ease-in-out infinite;
}
.header-cta {
  background: var(--orange);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: var(--r-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.3px;
  transition: background 0.2s;
}
.header-cta:hover { background: var(--orange-dark); }

/* desktop header extras */
@media (min-width: 768px) {
  .site-header { padding: 0 32px; height: 56px; }
  .site-logo { font-size: 20px; }
  .header-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    margin: 0 auto 0 24px;
  }
  .header-trust span {
    display: flex; align-items: center; gap: 5px;
  }
  .header-trust svg { fill: rgba(255,255,255,0.65); width: 13px; height: 13px; }
}
.header-trust { display: none; }

/* ============================================================
   HERO  — always stacked: FV image → form panel
============================================================ */
.hero {
  background: var(--white);
  display: block;
}

/* FV image */
.hero-img-wrap {
  width: 100%;
  line-height: 0;
}
.hero-fv-img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 600px) {
  .hero-img-wrap {
    max-width: 560px;
    margin: 0 auto;
  }
}

/* form panel sits directly below image */
.hero-form-panel {
  background: var(--white);
  padding: 24px 16px 32px;
  max-width: 560px;
  margin: 0 auto;
  width: 100%;
}

@media (min-width: 600px) {
  .hero-form-panel {
    padding: 32px 24px 40px;
  }
}

/* ── form panel internals ── */
.form-panel-head {
  text-align: center;
  margin-bottom: 18px;
}
.free-pill {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green-dark);
  font-size: 13px; font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  border: 1px solid var(--green-light);
  margin-bottom: 8px;
}
.form-panel-head h2 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 19px; font-weight: 700;
  color: var(--text); line-height: 1.55;
  margin-bottom: 3px;
}
.form-panel-head p { font-size: 14px; color: var(--gray); }

/* ── step progress bar ── */
.step-bar {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  margin-bottom: 20px;
}
.step-bar-track {
  position: absolute;
  top: 15px;
  left: calc(16.7% + 14px);
  right: calc(16.7% + 14px);
  height: 2px;
  background: var(--gray-light);
  z-index: 0;
}
.step-bar-fill {
  height: 100%;
  background: var(--green);
  transition: width 0.4s ease;
  width: 0%;
}
.sb-step {
  flex: 1;
  display: flex; flex-direction: column; align-items: center;
  gap: 4px; position: relative; z-index: 1;
}
.sb-circle {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--gray-light);
  border: 2px solid var(--gray-light);
  color: var(--gray);
  font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.sb-circle.active {
  background: var(--green); border-color: var(--green);
  color: #fff; box-shadow: 0 3px 10px rgba(46,158,72,0.4);
}
.sb-circle.done { background: var(--green-dark); border-color: var(--green-dark); color: #fff; }
.sb-label {
  font-size: 12px; color: var(--gray);
  text-align: center; line-height: 1.3;
  white-space: nowrap;
}
.sb-label.active { color: var(--green-dark); font-weight: 700; }

/* ── step panels ── */
.f-step { display: none; }
.f-step.active { display: block; }

.f-step-hd {
  background: var(--green);
  border-radius: var(--r-sm) var(--r-sm) 0 0;
  padding: 10px 14px;
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 16px;
}
.f-step-badge {
  background: rgba(255,255,255,0.22);
  color: #fff; font-size: 12px; font-weight: 700;
  padding: 2px 8px; border-radius: 20px; white-space: nowrap;
}
.f-step-hd h3 { font-size: 15px; font-weight: 700; color: #fff; }

/* choice grids */
.c-label {
  font-size: 14px; font-weight: 700; color: var(--text);
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 5px;
}
.req { background: var(--orange); color: #fff; font-size: 11px; font-weight: 700; padding: 1px 6px; border-radius: 2px; }
.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 14px;
}
.c-item { position: relative; }
.c-item input { position: absolute; opacity: 0; width: 0; height: 0; }
.c-item label {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 11px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--r-sm);
  cursor: pointer;
  font-size: 15px; font-weight: 500; color: var(--text-mid);
  background: var(--off-white);
  transition: all 0.15s;
  user-select: none;
  line-height: 1.3;
  -webkit-tap-highlight-color: transparent;
}
.c-item label::before {
  content: '';
  width: 15px; height: 15px;
  border: 1.5px solid var(--gray-light);
  border-radius: 3px; flex-shrink: 0;
  background: #fff; transition: all 0.15s;
}
.c-item input[type="radio"] + label::before { border-radius: 50%; }
.c-item input:checked + label {
  border-color: var(--green); background: var(--green-pale);
  color: var(--green-dark); font-weight: 700;
}
.c-item input:checked + label::before {
  background: var(--green); border-color: var(--green);
}
.c-item input[type="checkbox"]:checked + label::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 10px; background-repeat: no-repeat; background-position: center;
}
.c-item input[type="radio"]:checked + label::before { box-shadow: inset 0 0 0 3px #fff; }

/* pref choice grid (3-column compact) */
.choice-grid--pref {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 5px;
  margin-bottom: 6px;
}
.choice-grid--pref .c-item label {
  padding: 7px 8px;
  font-size: 12px;
  gap: 5px;
}
.choice-grid--pref .c-item label::before {
  width: 13px; height: 13px;
}
.c-region-label {
  font-size: 11px; font-weight: 700; color: var(--gray);
  margin: 10px 0 4px;
  padding-left: 2px;
  letter-spacing: 0.03em;
}

/* icon choice grid */
.choice-grid--icon {
  grid-template-columns: 1fr 1fr;
}
.choice-grid--icon .c-item label {
  flex-direction: row;
  align-items: center;
  padding: 10px 11px;
  gap: 9px;
  font-size: 15px;
}
.choice-grid--icon .c-item label::before { display: none; }
.c-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 6px;
  background: var(--green-pale);
  color: var(--green-dark);
  flex-shrink: 0;
  transition: all 0.15s;
}
.c-icon { font-size: 18px; line-height: 1; }
.c-icon svg { width: 18px; height: 18px; display: block; }
.c-item input:checked + label .c-icon {
  background: var(--green);
  color: #fff;
}

.f-group { margin-bottom: 14px; }
.f-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.f-label {
  display: flex; align-items: center; gap: 5px;
  font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 6px;
}
.f-select, .f-input {
  width: 100%;
  border: 1.5px solid var(--gray-light);
  padding: 12px 14px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px; /* 16px prevents iOS zoom */
  color: var(--text); background: var(--off-white);
  border-radius: var(--r-sm); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.f-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%238a9a8a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; padding-right: 32px;
}
.f-select:focus, .f-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(46,158,72,0.12);
  background: #fff;
}

/* error states */
.err-msg { display: none; font-size: 13px; color: #c62828; margin-top: 4px; font-weight: 600; }
.has-error .f-select,
.has-error .f-input  { border-color: #e53935; background: #fff5f5; }
.has-error .err-msg  { display: block; }
.show-err            { display: block !important; }

/* buttons */
@keyframes btn-shine {
  0%   { left: -80%; }
  100% { left: 130%; }
}
.btn-next {
  width: 100%;
  background: var(--orange); color: #fff; border: none;
  padding: 15px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 17px; font-weight: 700;
  border-radius: var(--r-sm); cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 4px 14px rgba(240,90,34,0.38);
  transition: all 0.22s;
  letter-spacing: 0.5px;
  margin-top: 4px;
  min-height: 52px;
  -webkit-tap-highlight-color: transparent;
}
.btn-next:hover { background: var(--orange-dark); transform: translateY(-1px); }
.btn-next svg { fill: #fff; width: 16px; height: 16px; position: relative; z-index: 1; }
.btn-back {
  width: 100%; background: transparent; color: var(--gray);
  border: 1.5px solid var(--gray-light); padding: 11px;
  font-family: 'Noto Sans JP', sans-serif; font-size: 15px; font-weight: 500;
  border-radius: var(--r-sm); cursor: pointer;
  margin-top: 8px; transition: all 0.2s;
  min-height: 44px;
}
.btn-back:hover { border-color: var(--gray); color: var(--text); }

/* security note */
.security-note {
  display: flex; align-items: center; justify-content: center; gap: 5px;
  font-size: 13px; color: var(--gray); margin-top: 12px;
}
.security-note svg { fill: var(--gray); width: 12px; height: 12px; }

/* ── complete (hidden — full page takes over) ── */
.f-complete { display: none; }

/* ── CF7 hidden wrapper ── */
#cf7Wrapper { display: none !important; }

/* ============================================================
   THANK-YOU PAGE
============================================================ */
#tyPage { display: none; }
#tyPage.active { display: block; }

.ty-thanks {
  background: var(--off-white);
  padding: 24px 16px;
  text-align: center;
  border-bottom: 2px solid var(--gray-light);
}
.ty-thanks h2 {
  font-size: clamp(16px, 4vw, 20px);
  font-weight: 700; color: var(--text);
  line-height: 1.7; margin-bottom: 18px;
}
.ty-schedule-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: #fff; border: none;
  padding: 14px 28px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 17px; font-weight: 700;
  border-radius: var(--r-sm); cursor: pointer; text-decoration: none;
  box-shadow: 0 4px 14px rgba(240,90,34,0.38);
  transition: all 0.22s; letter-spacing: 0.5px;
  width: 100%; max-width: 360px; justify-content: center;
}
.ty-schedule-btn:hover { background: var(--orange-dark); transform: translateY(-1px); }
.ty-schedule-btn svg { fill: #fff; width: 16px; height: 16px; }

/* Jicoo wrap */
.ty-cal-wrap { padding: 20px 16px 0; max-width: 720px; margin: 0 auto; }
.ty-cal-box {
  border: 1px solid var(--gray-light); border-radius: var(--r-md);
  overflow: hidden; background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  margin-bottom: 28px;
}
.ty-cal-top {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px 8px;
}
.ty-cal-top .jicoo-badge { font-size: 15px; font-weight: 700; color: var(--green-dark); }
.ty-cal-top .dur-pill {
  background: var(--green-pale); color: var(--green-dark);
  font-size: 13px; font-weight: 700; padding: 3px 10px; border-radius: 20px;
}
.ty-cal-title {
  padding: 0 14px 12px;
  border-bottom: 1px solid var(--gray-light);
}
.ty-cal-title h3 {
  font-size: 17px; font-weight: 700; color: var(--green-dark);
  display: flex; align-items: center; gap: 6px;
}
.ty-cal-title h3 svg { fill: var(--green); width: 17px; height: 17px; }
.ty-cal-body { padding: 16px 14px 20px; }
.ty-cal-body p { font-size: 15px; color: var(--text-mid); line-height: 1.8; margin-bottom: 12px; }
.ty-cal-body strong { display: block; font-size: 16px; color: var(--text); margin-bottom: 14px; }

/* Jicoo embed */
#jicooEmbed {
  border-radius: var(--r-sm);
  overflow: hidden;
}
#jicooEmbed iframe {
  display: block;
  width: 100%;
  min-height: 600px;
  border: none;
}

/* after-registration flow */
.ty-flow { padding: 0 16px 40px; max-width: 720px; margin: 0 auto; }
.ty-flow-hd {
  background: var(--green-dark); color: #fff;
  font-size: 16px; font-weight: 700;
  padding: 13px 16px; border-radius: var(--r-sm);
  text-align: center; margin-bottom: 16px; letter-spacing: 0.5px;
}
.ty-fi { margin-bottom: 12px; }
.ty-fi-title {
  font-size: 16px; font-weight: 700; color: var(--text);
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 7px;
}
.ty-fi-title .sno {
  background: var(--green); color: #fff; font-size: 14px; font-weight: 700;
  width: 24px; height: 24px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ty-fi-body {
  background: var(--off-white); border: 1px solid var(--gray-light);
  border-radius: var(--r-sm); padding: 14px 16px;
  font-size: 15px; color: var(--text-mid); line-height: 1.85;
}
.ty-fi-body p + p { margin-top: 6px; }

/* LINE button */
.line-btn {
  display: inline-flex; align-items: center; gap: 9px;
  background: #06C755; color: #fff; border: none;
  padding: 12px 24px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px; font-weight: 700;
  border-radius: var(--r-sm); cursor: pointer; text-decoration: none;
  margin-top: 12px; transition: background 0.2s, transform 0.2s;
  box-shadow: 0 3px 10px rgba(6,199,85,0.28);
  min-height: 48px;
}
.line-btn:hover { background: #05b34c; transform: translateY(-1px); }
.line-icon {
  width: 22px; height: 22px; background: #fff; border-radius: 4px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.line-icon svg { fill: #06C755; width: 15px; height: 15px; }

/* back to top */
.ty-back-top {
  display: flex; align-items: center; justify-content: center;
  width: calc(100% - 32px); max-width: 688px;
  margin: 0 auto 48px;
  background: var(--green-dark); color: #fff; border: none;
  padding: 15px; font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px; font-weight: 700; border-radius: var(--r-sm);
  cursor: pointer; text-decoration: none; transition: background 0.2s;
  min-height: 50px;
}
.ty-back-top:hover { background: #155828; }

/* ============================================================
   BELOW-FOLD SECTIONS
============================================================ */
.sec { padding: 52px 16px; }
.sec-inner { max-width: 960px; margin: 0 auto; }
.sec-head { text-align: center; margin-bottom: 36px; }
.sec-eyebrow {
  font-size: 13px; font-weight: 700; color: var(--green);
  letter-spacing: 3px; text-transform: uppercase;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-bottom: 10px;
}
.sec-eyebrow::before,
.sec-eyebrow::after { content: ''; width: 22px; height: 2px; background: var(--green); }
.sec-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(20px, 4.5vw, 30px);
  font-weight: 700; color: var(--text);
}

/* ── features ── */
.features-sec { background: var(--white); }
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px) { .features-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-card {
  border: 1.5px solid var(--gray-light);
  border-radius: var(--r-md); padding: 24px 20px;
  display: flex; align-items: flex-start; gap: 16px;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
.feature-card:hover {
  box-shadow: 0 6px 24px rgba(46,158,72,0.1);
  transform: translateY(-3px); border-color: var(--green-light);
}
.feature-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--green-pale); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.feature-icon svg { fill: var(--green); width: 24px; height: 24px; }
.feature-card h3 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 6px; line-height: 1.5; }
.feature-card p  { font-size: 15px; color: var(--text-mid); line-height: 1.85; }

@media (min-width: 600px) {
  .feature-card { flex-direction: column; align-items: center; text-align: center; padding: 28px 20px; }
  .feature-icon { width: 56px; height: 56px; }
  .feature-icon svg { width: 28px; height: 28px; }
}

/* ── flow ── */
.flow-sec { background: var(--green-xpale); }
.flow-list {
  display: flex; flex-direction: column; gap: 20px;
  position: relative;
}
.flow-list::before {
  content: '';
  position: absolute;
  top: 28px; bottom: 28px; left: 27px;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom, var(--green-light) 0, var(--green-light) 6px, transparent 6px, transparent 14px
  );
}
.flow-item {
  display: flex; align-items: flex-start; gap: 16px;
  position: relative; z-index: 1;
  min-height: 80px;
}
.flow-num {
  width: 56px; height: 56px; flex-shrink: 0;
  background: var(--green); color: #fff;
  font-size: 20px; font-weight: 900;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(46,158,72,0.28);
}
.flow-item h3 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 4px; margin-top: 8px; }
.flow-item p  { font-size: 13px; color: var(--text-mid); line-height: 1.7; }

@media (min-width: 700px) {
  .flow-list {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }
  .flow-list::before {
    top: 27px; left: calc(10% + 27px); right: calc(10% + 27px);
    bottom: auto; width: auto; height: 2px;
  }
  .flow-item {
    flex: 1; flex-direction: column; align-items: center;
    text-align: center; padding: 0 6px;
  }
  .flow-num { width: 54px; height: 54px; font-size: 20px; }
  .flow-item h3 { margin-top: 14px; }
}

/* ── voices ── */
.voices-sec { background: var(--white); }
.voices-grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media (min-width: 640px) { .voices-grid { grid-template-columns: 1fr 1fr; } }

.voice-card {
  background: var(--off-white);
  border-radius: var(--r-md);
  border-left: 4px solid var(--green);
  padding: 22px 18px;
}
.v-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.v-av {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--green); color: #fff;
  font-size: 15px; font-weight: 900;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.v-name { font-size: 15px; font-weight: 700; color: var(--text); }
.v-role { font-size: 13px; color: var(--gray); margin-top: 2px; }
.v-stars { color: #f5a623; font-size: 15px; margin-bottom: 8px; }
.voice-card p { font-size: 15px; color: var(--text-mid); line-height: 1.85; }

/* ── bottom CTA ── */
.bottom-cta {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  padding: 52px 16px; text-align: center; position: relative; overflow: hidden;
}
.bottom-cta::before {
  content: '';
  position: absolute; right: -80px; top: -80px;
  width: 280px; height: 280px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.bottom-cta h2 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(18px, 4vw, 26px); color: #fff; font-weight: 700;
  margin-bottom: 12px; line-height: 1.55; position: relative;
}
.bottom-cta p {
  font-size: 15px; color: rgba(255,255,255,0.8);
  margin-bottom: 28px; position: relative;
}
.cta-btns {
  display: flex; flex-direction: column; gap: 12px; align-items: center; position: relative;
}
.cta-main {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--orange); color: #fff; border: none;
  padding: 16px 24px; font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px; font-weight: 700; border-radius: var(--r-sm);
  cursor: pointer; text-decoration: none;
  box-shadow: 0 5px 18px rgba(240,90,34,0.42);
  transition: all 0.22s; letter-spacing: 0.5px;
  width: 100%; max-width: 340px; min-height: 54px;
}
.cta-main:hover { background: var(--orange-dark); transform: translateY(-2px); }
.cta-main svg { fill: #fff; width: 16px; height: 16px; }
.cta-tel {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  background: rgba(255,255,255,0.12); color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
  padding: 13px 24px; font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px; font-weight: 700; border-radius: var(--r-sm);
  cursor: pointer; text-decoration: none;
  width: 100%; max-width: 340px; min-height: 50px;
  transition: all 0.2s;
}
.cta-tel:hover { background: rgba(255,255,255,0.2); }
.cta-tel svg { fill: #fff; width: 15px; height: 15px; }

@media (min-width: 640px) {
  .cta-btns { flex-direction: row; justify-content: center; }
  .cta-main, .cta-tel { width: auto; }
}

/* ── footer ── */
.site-footer {
  background: var(--green); padding: 28px 16px; text-align: center;
}
.site-footer p {
  font-size: 11px; color: rgba(255,255,255,0.3); line-height: 2;
}
.site-footer a { color: rgba(255,255,255,0.4); text-decoration: none; }
.site-footer a:hover { color: rgba(255,255,255,0.7); }

/* ── submit loading state ── */
.btn-next.loading {
  opacity: 0.7;
  cursor: not-allowed;
  pointer-events: none;
}

/* ============================================================
   FOOTER（footer-lp_con.php 用 — f_blc / f_logo / f_nav）
   ※ lp/css/style.css の #midcareer スコープを外してコピー
============================================================ */
footer .f_blc {
  padding: 50px 0 30px;
  text-align: center;
}

footer .f_blc .f_logo a {
  max-width: 180px;
  display: block;
  margin: 0 auto 30px;
}

footer .f_blc .f_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
  list-style: none;
  margin-bottom: 30px;
  padding: 0;
}

footer .f_blc .f_nav li {
  position: relative;
}

footer .f_blc .f_nav li:not(:last-child)::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -8px;
  width: 1px;
  height: 60%;
  background: #000;
}

footer .f_blc .f_nav a {
  display: block;
  font-size: 13px;
}

footer .f_blc .f_nav a:hover {
  color: var(--green);
}

footer .f_blc small {
  display: block;
  text-align: center;
  font-size: 11px;
  color: #666;
}
