/* =========================================================
   CWCフリーランス（企業向け）LP  -  style.css
   モダン・明るいデザイン / レスポンシブ
   ========================================================= */

:root {
  --primary: #b81d29;
  --primary-dark: #a01621;
  --primary-light: #ffe3e5;
  --accent: #d83643;
  --ink: #2b2b2b;
  --ink-soft: #5f5f5f;
  --line: #e6e6e6;
  --bg: #ffffff;
  --bg-tint: #f4f8f9;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 40px -18px rgba(45, 45, 45, 0.2);
  --shadow-sm: 0 8px 24px -12px rgba(45, 45, 45, 0.18);
  --maxw: 1120px;
  --header-h: 68px;
  --font-jp: "Noto Sans JP", system-ui, sans-serif;
  --font-en: "Montserrat", var(--font-jp);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  font-family: var(--font-jp);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}
.container--narrow { max-width: 820px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-family: var(--font-jp);
  line-height: 1.4;
  padding: 14px 30px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  text-align: center;
}
.btn--primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 12px 26px -10px rgba(160, 22, 33, 0.5);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 18px 32px -10px rgba(160, 22, 33, 0.6); }
.btn--ghost {
  background: transparent;
  border-color: rgba(184, 29, 41, 0.4);
  color: var(--primary-dark);
}
.btn--ghost:hover { background: var(--primary-light); transform: translateY(-3px); }
.btn--white {
  background: #fff;
  color: var(--primary-dark);
  box-shadow: var(--shadow-sm);
}
.btn--white:hover { transform: translateY(-3px); }
.btn--lg { font-size: 1.05rem; padding: 17px 40px; }
.btn--xl { font-size: 1.15rem; padding: 20px 56px; width: 100%; max-width: 460px; }

/* ---------- Header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 100;
  transition: box-shadow .3s ease, background .3s ease;
}
.header.is-scrolled { box-shadow: 0 6px 20px -12px rgba(16, 40, 59, 0.35); }
.header__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }

.brand { display: flex; align-items: center; gap: 6px; font-weight: 800; }
.brand__logo { height: 36px; width: auto; display: block; }
.brand__mark {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: .04em;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 3px 10px;
  border-radius: 8px;
  line-height: 1.2;
}
.brand__mark--light { box-shadow: none; }
.brand__name { font-size: 1.05rem; color: var(--ink); letter-spacing: .02em; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav__link { font-size: .92rem; font-weight: 500; color: var(--ink-soft); position: relative; transition: color .2s; }
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: var(--primary); transition: width .25s ease;
}
.nav__link:hover { color: var(--primary-dark); }
.nav__link:hover::after { width: 100%; }
.nav__cta {
  font-size: .92rem; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 10px 22px; border-radius: 999px;
  box-shadow: 0 10px 22px -12px rgba(160, 22, 33, 0.65);
  transition: transform .2s;
}
.nav__cta:hover { transform: translateY(-2px); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 70px) 0 130px;
  background: linear-gradient(180deg, #ffefef 0%, #ffffff 100%);
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.blob { position: absolute; border-radius: 50%; filter: blur(10px); opacity: .5; }
.blob--1 { width: 420px; height: 420px; top: -120px; right: -90px; background: radial-gradient(circle at 30% 30%, #efb3ba, transparent 70%); }
.blob--2 { width: 340px; height: 340px; bottom: -60px; left: -80px; background: radial-gradient(circle at 30% 30%, #f5c9cd, transparent 70%); }
.blob--3 { width: 260px; height: 260px; top: 40%; left: 50%; background: radial-gradient(circle at 30% 30%, #dbe4e8, transparent 70%); }

.hero__inner { position: relative; z-index: 1; }
.hero__content { max-width: 720px; }
.hero__eyebrow {
  display: inline-block; font-weight: 700; color: var(--primary-dark);
  background: #fff; border: 1px solid var(--primary-light);
  padding: 8px 18px; border-radius: 999px; font-size: .9rem; margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}
.hero__title { font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 900; line-height: 1.2; letter-spacing: .01em; }
.hero__highlight { position: relative; color: var(--primary-dark); }
.hero__highlight::after {
  content: ""; position: absolute; left: -2%; bottom: 6%; width: 104%; height: .32em;
  background: linear-gradient(90deg, rgba(184,29,41,.3), rgba(216,54,67,.3));
  z-index: -1; border-radius: 4px;
}
.hero__lead { margin: 26px 0 34px; font-size: 1.08rem; color: var(--ink-soft); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }

.hero__badges {
  list-style: none; display: flex; flex-wrap: wrap; gap: 30px; margin-top: 46px;
}
.hero__badges li { display: flex; flex-direction: column; }
.hero__badges strong { font-family: var(--font-en); font-size: 2rem; color: var(--primary-dark); line-height: 1.1; }
.hero__badges span { font-size: .85rem; color: var(--ink-soft); }

.hero__wave {
  position: absolute; left: 0; right: 0; bottom: -1px; height: 60px;
  background: #fff;
  -webkit-mask: radial-gradient(80px 60px at 50% 0, transparent 98%, #000) repeat-x;
  mask: radial-gradient(80px 60px at 50% 0, transparent 98%, #000) repeat-x;
  -webkit-mask-size: 160px 60px; mask-size: 160px 60px;
}

/* ---------- Section base ---------- */
.section { padding: 96px 0; }
.section--tint { background: var(--bg-tint); }
.section__head { text-align: center; max-width: 760px; margin: 0 auto 54px; }
.section__label {
  font-family: var(--font-en); font-weight: 700; letter-spacing: .18em;
  color: var(--primary); font-size: .82rem; display: block; margin-bottom: 10px;
}
.section__title { font-size: clamp(1.7rem, 4vw, 2.4rem); font-weight: 900; line-height: 1.35; }
.section__title::after {
  content: ""; display: block; width: 54px; height: 4px; border-radius: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  margin: 18px auto 0;
}
.section__desc { margin-top: 22px; color: var(--ink-soft); font-size: 1.02rem; }
.section__note { margin-top: 14px; color: var(--ink-soft); font-size: .85rem; }
.section__foot { text-align: center; margin-top: 48px; }

/* ---------- Cards grid ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.cards--2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

/* ---------- Job cards ---------- */
.job-card { display: flex; flex-direction: column; }
.job-card__tag {
  display: inline-block; align-self: flex-start; font-weight: 700; font-size: .9rem;
  color: var(--primary-dark); background: var(--primary-light);
  padding: 7px 16px; border-radius: 999px; margin-bottom: 20px;
}
.job-card__body { margin: 0; }
.job-card__body dt {
  font-size: .78rem; font-weight: 700; color: var(--primary); letter-spacing: .04em;
  margin-top: 14px;
}
.job-card__body dt:first-child { margin-top: 0; }
.job-card__body dd { font-size: .93rem; color: var(--ink-soft); margin: 4px 0 0; }
.job-card__salary {
  margin-top: 22px; padding-top: 18px; border-top: 1px dashed var(--line);
  font-size: .9rem; color: var(--ink-soft);
}
.job-card__salary strong { display: block; font-size: 1.35rem; color: var(--ink); font-family: var(--font-en); }

/* ---------- Reason cards ---------- */
.reason-card { position: relative; overflow: hidden; }
.reason-card__num {
  font-family: var(--font-en); font-weight: 800; font-size: 3rem; line-height: 1;
  color: transparent; -webkit-text-stroke: 2px var(--primary-light);
  margin-bottom: 12px;
}
.reason-card__title { font-size: 1.2rem; font-weight: 800; margin-bottom: 12px; }
.reason-card p { color: var(--ink-soft); font-size: .95rem; }

/* ---------- Voice cards ---------- */
.voice-card { position: relative; }
.voice-card::before {
  content: "\201C"; font-family: var(--font-en); font-size: 4rem; font-weight: 800;
  color: var(--primary-light); position: absolute; top: 8px; right: 22px; line-height: 1;
}
.voice-card__lead { font-size: 1.12rem; font-weight: 800; color: var(--primary-dark); margin-bottom: 14px; }
.voice-card__body { color: var(--ink-soft); font-size: .95rem; }
.voice-card__author { margin-top: 18px; font-weight: 700; font-size: .9rem; color: var(--ink); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; position: relative; max-width: 760px; margin-inline: auto; }
.step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 28px; text-align: center; box-shadow: var(--shadow-sm); position: relative;
}
.step__num {
  font-family: var(--font-en); font-weight: 700; font-size: .85rem; letter-spacing: .1em;
  color: #fff; background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  padding: 6px 16px; border-radius: 999px; display: inline-block; margin-bottom: 18px;
}
.step__title { font-size: 1.25rem; font-weight: 800; margin-bottom: 10px; }
.step p { color: var(--ink-soft); font-size: .93rem; }

/* ---------- Message ---------- */
.message { position: relative; padding: 100px 0; color: #fff; overflow: hidden; text-align: center; }
.message__bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, #a01621, #b81d29 55%, #d83643);
}
.message__bg::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,.18), transparent 45%),
              radial-gradient(circle at 10% 90%, rgba(255,255,255,.12), transparent 40%);
}
.message__inner { position: relative; z-index: 1; max-width: 800px; }
.message__title { font-size: clamp(1.5rem, 3.6vw, 2.2rem); font-weight: 900; margin-bottom: 24px; }
.message__body { font-size: 1.02rem; margin-bottom: 18px; opacity: .96; }
.message .btn { margin-top: 20px; }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-item__q {
  width: 100%; display: flex; align-items: center; gap: 16px; text-align: left;
  background: none; border: none; cursor: pointer; padding: 22px 24px; font-family: var(--font-jp);
  font-size: 1rem; font-weight: 700; color: var(--ink);
}
.faq-item__mark {
  flex: none; width: 34px; height: 34px; display: grid; place-items: center;
  font-family: var(--font-en); font-weight: 800; color: #fff; border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}
.faq-item__text { flex: 1; }
.faq-item__icon { flex: none; width: 16px; height: 16px; position: relative; transition: transform .3s; }
.faq-item__icon::before, .faq-item__icon::after {
  content: ""; position: absolute; background: var(--primary-dark); border-radius: 2px;
}
.faq-item__icon::before { left: 0; top: 7px; width: 16px; height: 2px; }
.faq-item__icon::after { left: 7px; top: 0; width: 2px; height: 16px; transition: transform .3s; }
.faq-item.is-open .faq-item__icon::after { transform: scaleY(0); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item__a p { padding: 0 24px 24px 74px; color: var(--ink-soft); font-size: .95rem; }

/* ---------- Entry ---------- */
.entry__box { text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 48px 28px; box-shadow: var(--shadow); }
.entry__desc { font-size: 1rem; color: var(--ink-soft); margin-bottom: 18px; }
.entry__cta { display: inline-block; text-align: left; max-width: 100%; }
.entry__list {
  list-style: none; display: flex; flex-direction: column; gap: 10px;
  text-align: left; margin: 0 0 24px; padding: 0;
}
.entry__cta .btn--xl { width: 100%; max-width: none; }
.entry__list li { position: relative; padding-left: 26px; color: var(--ink); font-weight: 500; }
.entry__list li::before {
  content: ""; position: absolute; left: 0; top: .55em; width: 12px; height: 7px;
  border-left: 2px solid var(--primary); border-bottom: 2px solid var(--primary);
  transform: rotate(-45deg);
}
.entry__note { margin-top: 20px; font-size: .82rem; color: var(--ink-soft); }
.entry__note code { background: var(--bg-tint); padding: 2px 7px; border-radius: 5px; font-size: .85em; color: var(--primary-dark); }

/* ---------- Company table ---------- */
.company-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.company-table th, .company-table td { text-align: left; padding: 18px 22px; border-bottom: 1px solid var(--line); font-size: .95rem; vertical-align: top; }
.company-table tr:last-child th, .company-table tr:last-child td { border-bottom: none; }
.company-table th { width: 34%; background: var(--bg-tint); font-weight: 700; color: var(--ink); }
.company-table td { color: var(--ink-soft); }
.company-table a { color: var(--primary-dark); text-decoration: underline; word-break: break-all; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #cdd8e1; padding: 54px 0 40px; }
.footer__inner { text-align: center; }
.footer__brand { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 22px; }
.footer__logo { height: 40px; width: auto; display: block; background: #fff; padding: 12px 20px; border-radius: 14px; box-shadow: var(--shadow-sm); box-sizing: content-box; }
.footer__brand-name { font-weight: 700; color: #fff; font-size: 1.05rem; }
.footer__addr { font-size: .88rem; line-height: 1.9; margin-bottom: 18px; }
.footer__copy { font-size: .8rem; color: #8a9aab; }

/* ---------- Floating CTA ---------- */
.floating-cta {
  position: fixed; left: 50%; bottom: 18px; transform: translateX(-50%);
  z-index: 90; display: none; font-weight: 700; color: #fff;
  background: linear-gradient(135deg, var(--accent), #ff5f2e);
  padding: 15px 34px; border-radius: 999px;
  box-shadow: 0 14px 30px -10px rgba(255, 95, 46, 0.7);
  animation: floatPulse 2.4s ease-in-out infinite;
}
@keyframes floatPulse { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(-4px); } }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 900px) {
  .cards { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .cards--2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
}

@media (max-width: 768px) {
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; padding: 12px 24px 24px;
    box-shadow: 0 20px 30px -18px rgba(16,40,59,.4);
    transform: translateY(-140%); transition: transform .35s ease; z-index: 99;
  }
  .nav.is-open { transform: translateY(0); }
  .nav__link { padding: 15px 4px; border-bottom: 1px solid var(--line); }
  .nav__link::after { display: none; }
  .nav__cta { text-align: center; margin-top: 14px; }
  .nav-toggle { display: flex; }

  .section { padding: 70px 0; }
  .section__head { margin-bottom: 40px; }
  .hero { padding: calc(var(--header-h) + 46px) 0 100px; }
  .hero__badges { gap: 22px; }
  .hero__badges strong { font-size: 1.7rem; }
  .btn--lg { width: 100%; }
  .hero__actions { flex-direction: column; }

  .floating-cta { display: inline-block; }
  .brand__logo { height: 30px; }
  .company-table th { width: 40%; }
  .company-table th, .company-table td { padding: 14px 16px; font-size: .9rem; }
  .faq-item__a p { padding-left: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .floating-cta { animation: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   企業向けページ 追加スタイル
   ========================================================= */

/* ---- Audience switch (人材を探す / 仕事を探す) ---- */
.audience { display: flex; align-items: center; gap: 8px; margin-right: 20px; }
.audience__link {
  font-size: .82rem; font-weight: 700; color: var(--ink-soft);
  padding: 7px 14px; border-radius: 999px; border: 1px solid var(--line);
  transition: background .2s, color .2s, border-color .2s;
}
.audience__link.is-active {
  color: #fff; border-color: transparent;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}
.audience__link:not(.is-active):hover { border-color: var(--primary); color: var(--primary-dark); }

/* ---- Hero group tag ---- */
.hero__group {
  display: inline-block; font-size: .82rem; font-weight: 700; color: var(--ink-soft);
  margin-bottom: 14px;
}

/* ---- Talent cards ---- */
.talent-card { display: flex; flex-direction: column; }
.talent-card__head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.talent-card__no {
  flex: none; width: 44px; height: 44px; display: grid; place-items: center;
  font-family: var(--font-en); font-weight: 800; font-size: 1.1rem; color: #fff;
  border-radius: 12px; background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}
.talent-card__meta { font-size: .85rem; color: var(--ink-soft); font-weight: 700; }
.talent-card__role {
  display: inline-block; align-self: flex-start; font-weight: 700; font-size: .85rem;
  color: var(--primary-dark); background: var(--primary-light);
  padding: 6px 14px; border-radius: 999px; margin-bottom: 14px;
}
.talent-card__body { list-style: none; margin: 0; padding: 0; }
.talent-card__body li {
  position: relative; padding-left: 18px; font-size: .92rem; color: var(--ink-soft); margin-top: 8px;
}
.talent-card__body li::before {
  content: ""; position: absolute; left: 0; top: .7em; width: 8px; height: 8px;
  border-radius: 50%; background: var(--primary);
}

/* ---- Merit cards ---- */
.merit-card { text-align: center; }
.merit-card__icon {
  width: 60px; height: 60px; margin: 0 auto 18px; display: grid; place-items: center;
  border-radius: 16px; background: var(--primary-light);
  font-family: var(--font-en); font-weight: 800; font-size: 1.5rem; color: var(--primary-dark);
}
.merit-card__title { font-size: 1.15rem; font-weight: 800; margin-bottom: 12px; }
.merit-card p { color: var(--ink-soft); font-size: .94rem; }

/* ---- RPA explanation ---- */
.rpa-def { max-width: 820px; margin: 0 auto; text-align: center; }
.rpa-def p { color: var(--ink-soft); font-size: 1.02rem; }
.rpa-def strong { color: var(--primary-dark); }
.issues { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 44px; }
.issue {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 24px 22px; text-align: center; box-shadow: var(--shadow-sm);
  font-weight: 700; color: var(--ink); font-size: .98rem;
}
.issue__mark {
  display: inline-block; font-family: var(--font-en); font-weight: 800; color: var(--accent);
  font-size: 1.6rem; margin-bottom: 8px;
}

/* ---- Footer contact lines ---- */
.footer__contact { font-size: .86rem; line-height: 1.9; margin-top: 6px; }
.footer__contact a { color: #cdd8e1; text-decoration: underline; }

@media (max-width: 900px) {
  .issues { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
}

@media (max-width: 768px) {
  .audience { display: none; }
  .talent-card__no { width: 40px; height: 40px; }
}

/* =========================================================
   Zoho Forms Lightbox（ポップアップ）
   ========================================================= */
#zf_button_927667 { display: none !important; }

.zf_lB_Dimmer_927667 {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: rgb(0, 0, 0);
    opacity: 0.8;
    z-index: 10000000;
}

.zf_lB_Container_927667 {
	position: fixed;
	background-color: white;
	margin: 0;
	margin-right: 0px;
	padding: 0;
	height: 2002px;
	width:  70%;
	top: 50%;
	left: 50%;
	margin-right: -50%;
	transform: translate(-50%, -50%);
	border: 7px solid none;
	max-height: calc(100% - 60px);
	z-index: 999999;
	transition: height 0.5s ease;
	outline : none;
}

.zf_lB_Wrapper_927667 {
	position: fixed;
    top: 50%;
    left: 50%;
    margin-left: 0;
    margin-top: -180px;
    z-index: 10000001;
}

.zf_main_id_927667 {
	height: calc(100% - 0px);
	display: flex;
	overflow-y: auto;
	overflow-x: hidden;
}

.zf_lb_closeform_927667 {
    position: absolute;
    right: -20px;
    background: #2f2e2e;
    padding: 0;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    top: -15px;
    cursor: pointer;
    border: 2px solid #d9d9d9;
}
.zf_lb_closeform_927667:before, .zf_lb_closeform_927667:after {
    position: absolute;
    left: 50%;
    top: 50%;
    content: ' ';
    height: 18px;
    width: 2px;
    background-color: #f7f7f7;
}
.zf_lb_closeform_927667:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.zf_lb_closeform_927667:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: block !important;
}
@-webkit-keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@media screen and (min-device-width: 10px) and (max-device-width: 380px) {
  .zf_lB_Container_927667 { width: 270px !important; }
}
@media screen and (min-device-width: 360px) and (max-device-width: 480px) {
  .zf_lB_Container_927667 { width: 350px !important; }
}
@media screen and (min-device-width: 440px) and (max-device-width: 500px) {
  .zf_lB_Container_927667 { width: 380px !important; }
}
@media only screen and (min-width:500px) and (max-width:600px) {
  .zf_lB_Container_927667 { width: 450px; }
}
@media only screen and (min-width:601px) and (max-width:700px) {
  .zf_lB_Container_927667 { width: 540px; }
}
@media only screen and (min-width:700px) and (max-width:800px) {
  .zf_lB_Container_927667 { width: 650px; }
}
@media screen and (min-device-width: 801px) and (max-device-width: 1268px) {
  .zf_lB_Container_927667 { width: 750px !important; }
}
