@charset "UTF-8";

/* ============================================================
   7BEE PRICING PAGE CSS — 2026-05-26
============================================================ */


/* ============================================================
   VARIABLES
============================================================ */
:root {
  --pc-green:  #3d9970;
  --pc-purple: #9b72cf;
  --pc-yellow: #BBB90B;
  --pc-blue:   #4a90d9;
}


/* ============================================================
   KEYFRAMES
============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes charaIn {
  from { opacity: 0; transform: translateX(-18px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes charaBob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}


/* ============================================================
   HERO（pricing専用）
============================================================ */
.hero {
  position: relative;
  width: 100%;
  overflow: visible;
  background: transparent;
  padding: 0;
}

.hero-upper {
  position: relative;
  width: 100%;
  overflow: visible;
  padding: 0;
  background: linear-gradient(
    180deg,
    #8ecce8 0%,
    #a8d9ef 35%,
    #c8e8f5 55%,
    transparent 80%
  );
}

.hero-bg-text-wrap {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1360px;
  bottom: -56px;
  pointer-events: none;
  z-index: 2;
}

.hero-bg-text {
  position: absolute;
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 0.88;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  will-change: transform;
}

.hero-bg-text--bottom {
  top: -0.05em;
  left: -0.02em;
  font-size: clamp(83px, 17.4vw, 244px);
  color: rgba(255,255,255,.48);
}

.hero-upper-inner {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: flex-end;
  max-width: 1300px;
  margin: 0 auto;
  padding: 32px 5% 0;
}

.hero-chara-col {
  flex: 0 0 auto;
  width: clamp(200px, 26vw, 340px);
  align-self: flex-end;
  position: relative;
  z-index: 20;
  margin-right: -1%;
  margin-bottom: -2%;
  animation: charaIn .9s var(--ease) .28s both;
}

.hero-chara-img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 20px rgba(0,30,60,.15));
  animation: charaBob 4.2s ease-in-out infinite;
}

.hero-copy-col {
  flex: 1 1 auto;
  min-width: 0;
  position: relative;
  z-index: 10;
  padding-bottom: 24px;
}

.hero-copy-eyebrow {
  display: inline-block;
  font-size: clamp(10px, 1.6vw, 24px);
  font-weight: 700;
  letter-spacing: .18em;
  color: #fff;
  background: #111;
  padding: 3px 10px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  line-height: 2.4;
  transform: rotate(-2deg);
  transform-origin: left center;
  margin-bottom: -14px;
  top: 18px;
  margin-left: -18px;
  position: relative;
  z-index: 2;
}

.hero-h1 {
  font-size: clamp(16px, 4.4vw, 49px);
  font-weight: 900;
  line-height: 1.7;
  letter-spacing: -.04em;
  color: #1a1a1a;
  margin: 3% 0 0;
  position: relative;
  z-index: 1;
}

.hero-h1-inner {
  display: inline;
  background: #fff;
  padding: 4px 10px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.hero-h1-inner span {
  color: #b8a800;
}


/* ============================================================
   SECTION COMMON
============================================================ */
.pricing .container {
  position: relative;
  max-width: 1180px;
  padding: 0;
}

.pricing .section-heading p {
  text-align: center;
}


/* ============================================================
   PRICING BASE
============================================================ */
.pricing {
  padding: 0;
  margin-bottom: 0;
}

.pricing-group {
  max-width: 1110px;
  margin: 0 auto;
  padding: 2.5%;
  background: rgba(255,255,255,.62);
  border-radius: 28px;
  border: 1.5px solid rgba(130,170,210,.28);
  box-shadow:
    0 2px 0 0 rgba(255,255,255,.9) inset,
    0 -1px 0 0 rgba(130,170,210,.15) inset,
    0 24px 64px rgba(40,80,120,.07);
}

.pricing-group .plan-cols,
.pricing-group .pf-block {
  max-width: 100%;
  animation: none;
  opacity: 1;
  transform: none;
}

.pricing-group .plan-cols { margin: 0 0 24px; }
.pricing-group .pf-block  { margin: 36px 0 0; }

.pricing-bridge {
  padding: 1.25rem 0 0;
  margin: 0.5rem 0 56px;
  line-height: 1.7;
  font-size: clamp(100%, 1.5vw, 112%);
  font-weight: 600;
  text-align: center;
  position: relative;
}

.pricing-bridge::before {
  content: "";
  display: block;
  width: 3.125rem;
  height: 3.125rem;
  margin: 0 auto 0.25rem;
  background-color: #000;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 5v14M5 13l7 7 7-7' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;
}


/* ============================================================
   PRICING CATEGORY
============================================================ */
.pricing-category {
  padding: 5% 2.5% 2.5%;
  border-radius: 20px;
}

.pricing-category--green  { background: rgba(61,153,112,.06); }
.pricing-category--purple { background: rgba(155,114,207,.06); }
.pricing-category--yellow { background: rgba(187,185,11,.06); }
.pricing-category--blue   { background: rgba(74,144,217,.06); }

.pricing-category-head {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pricing-category-head .plan-badge {
  font-size: clamp(100%, 1.5vw, 112%);
}

.pricing-category-note {
  margin-top: 0.75rem;
  line-height: 1.7;
  font-size: clamp(100%, 1.5vw, 112%);
  font-weight: 600;
  text-align: center;
}

.addon-note {
  display: inline-block;
  font-weight: 800;
  font-size: 1.2em;
  letter-spacing: .05em;
  padding: .2em 1.2em;
  margin-bottom: .6em;
}

.addon-note::before,
.addon-note::after {
  content: "ー";
  font-weight: 400;
  margin: 0 .4em;
}

.pricing-category--green  .addon-note { color: var(--pc-green); }
.pricing-category--purple .addon-note { color: var(--pc-purple); }


/* ============================================================
   PRICING SECTION LEAD（セクション見出し帯）
============================================================ */
.pricing-section-lead {
  position: relative;
  margin: 3rem 0 1.5rem;
  padding: 1.5rem 2rem;
  border-radius: 16px;
}

.pricing-section-lead--green  { background: var(--pc-green); }
.pricing-section-lead--purple { background: var(--pc-purple); }
.pricing-section-lead--yellow { background: var(--pc-yellow); }
.pricing-section-lead--blue   { background: var(--pc-blue); }

.psl-img {
  position: absolute;
  top: -30%;
  left: 3%;
  width: 24%;
}

.psl-img img {
  width: 100%;
  height: auto;
}

.psl-title {
  font-size: clamp(1.3rem, 3vw, 1.75rem);
  font-weight: 800;
  line-height: 1.4;
  margin: 0 0 0 30%;
  color: #fff;
}

.psl-sub {
  font-size: 0.95rem;
  color: #fff;
  margin: 0 0 0 30%;
  line-height: 1.6;
}


/* ============================================================
   PLAN BADGE
============================================================ */
.plan-badge {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  background: var(--pc-yellow);
  color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
  gap: 1px;
}

.plan-badge--improve { background: #4a7cff; }
.plan-badge--sm      { width: 93px; height: 93px; }

.plan-badge__ja {
  font-size: clamp(100%, 1.5vw, 112%);
  font-weight: 700;
  letter-spacing: .06em;
  line-height: 1.5;
  text-align: center;
}

.plan-badge__en {
  font-size: 70%;
  font-weight: 900;
  letter-spacing: .02em;
  line-height: 1;
  text-align: center;
  font-family: var(--font-ui, "Inter", sans-serif);
}

.pricing-category--green  .pricing-category-head .plan-badge { background: var(--pc-green); }
.pricing-category--purple .pricing-category-head .plan-badge { background: var(--pc-purple); }
.pricing-category--yellow .pricing-category-head .plan-badge { background: var(--pc-yellow); }
.pricing-category--blue   .pricing-category-head .plan-badge { background: var(--pc-blue); }


/* ============================================================
   PLAN COLS
============================================================ */
.plan-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
  align-items: start;
}

.plan-col {
  display: flex;
  flex-direction: column;
  padding: 32px 28px 24px;
  border: 1px solid rgba(var(--border-r),var(--border-g),var(--border-b),.1);
  border-radius: 26px;
  background: rgba(255,255,255,.96);
  box-shadow:
    0 20px 55px rgba(38,76,110,.08),
    inset 0 0 0 1px rgba(255,255,255,.9);
}

.plan-col--build   { border: 2px solid rgba(184,168,0,.60); }
.plan-col--improve { border: 2px solid rgba(74,124,255,.60); }

.pricing-category--green  .plan-col { border-color: rgba(61,153,112,.4)  !important; }
.pricing-category--purple .plan-col { border-color: rgba(155,114,207,.4) !important; }
.pricing-category--yellow .plan-col { border-color: rgba(187,185,11,.4)  !important; }
.pricing-category--blue   .plan-col { border-color: rgba(74,144,217,.4)  !important; }

.plan-col__head { margin-bottom: 20px; }
.plan-col__body { flex: 1; }

.plan-col__title {
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 700;
  letter-spacing: -.045em;
  line-height: 1.3;
  margin: 0 0 8px;
}

.plan-col__lead {
  line-height: 2;
}

.plan-col__price {
  font-size: clamp(44px, 5vw, 64px);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.055em;
  margin: 0 0 20px;
  color: var(--pc-yellow);
}

.plan-col__price .sTxt { font-size: 70%; }

.plan-col__price--build   { color: var(--pc-yellow); }
.plan-col__price--improve { color: #4a7cff; }
.plan-col__price--blue    { color: var(--pc-blue); }

/* テキスト価格（「個別見積」など数字以外） */
.plan-col__price--text {
  font-size: clamp(20px, 2.4vw, 28px);
  letter-spacing: -.02em;
  color: #555;
  font-weight: 700;
}

.plan-col__tax {
  font-size: .32em;
  color: #333;
  font-weight: 800;
  letter-spacing: 0;
}

.plan-col__price-prefix {
  display: inline-block;
  font-size: .35em;
  margin-right: 8px;
  color: #111;
  letter-spacing: 0;
  writing-mode: vertical-rl;
}

.pricing-category--green  .plan-col__price { color: var(--pc-green)  !important; }
.pricing-category--purple .plan-col__price { color: var(--pc-purple) !important; }
.pricing-category--yellow .plan-col__price { color: var(--pc-yellow) !important; }
.pricing-category--blue   .plan-col__price { color: var(--pc-blue)   !important; }


/* ============================================================
   PLAN FEATURES
============================================================ */
.plan-features {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.5;
  color: rgb(var(--text-r),var(--text-g),var(--text-b));
  background: rgba(0,0,0,.04);
  padding: 8px 14px;
  letter-spacing: -.01em;
}

.plan-features li::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  min-width: 16px;
  border-radius: 50%;
  background-color: rgba(0,0,0,.7);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3 8l4 4 6-6' stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 70%;
  flex-shrink: 0;
}

.plan-features--main li    { background: rgba(187,185,11,.07); }
.plan-features--main li::before { background-color: var(--pc-yellow); }
.plan-features--improve li { background: rgba(74,124,255,.06); }
.plan-features--improve li::before { background-color: #4a7cff; }

.pricing-category--green  .plan-features li::before { background-color: var(--pc-green)  !important; }
.pricing-category--purple .plan-features li::before { background-color: var(--pc-purple) !important; }
.pricing-category--yellow .plan-features li::before { background-color: var(--pc-yellow) !important; }
.pricing-category--blue   .plan-features li::before { background-color: var(--pc-blue)   !important; }

.plan-features-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(187,185,11,.8);
  margin: 0 0 10px;
  font-family: var(--font-ui, "Inter", sans-serif);
}

.plan-features-label--improve { color: rgba(74,124,255,.75); }

.pricing-category--green  .plan-features-label { color: var(--pc-green)  !important; }
.pricing-category--purple .plan-features-label { color: var(--pc-purple) !important; }
.pricing-category--yellow .plan-features-label { color: var(--pc-yellow) !important; }
.pricing-category--blue   .plan-features-label { color: var(--pc-blue)   !important; }


/* ============================================================
   PF-BLOCK（大型プランブロック）
============================================================ */
.pf-block {
  max-width: 960px;
  margin: 28px auto 0;
  border: 5px solid rgba(180,180,180,1);
  background: rgba(255,255,255,.98);
  position: relative;
  border-radius: 26px;
  box-shadow:
    0 20px 55px rgba(38,76,110,.08),
    inset 0 0 0 1px rgba(255,255,255,.9);
}

.pricing-category--green  .pf-block { border-color: rgba(61,153,112,1)  !important; background: rgba(255,255,255,.98) !important; }
.pricing-category--purple .pf-block { border-color: rgba(155,114,207,1) !important; background: rgba(255,255,255,.96) !important; }
.pricing-category--yellow .pf-block { border-color: rgba(187,185,11,1)  !important; background: rgba(255,255,255,.98) !important; }
.pricing-category--blue   .pf-block { border-color: rgba(74,144,217,1)  !important; background: rgba(255,255,255,.98) !important; }

.pf-inner {
  padding: 20px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pf-upper {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  align-items: center;
}

.pf-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 2%;
  min-width: 0;
}

.pf-right {
  display: flex;
  align-items: center;
}

.pf-right__body {
  font-weight: 600;
  margin: 0;
  line-height: 2;
}


/* ============================================================
   月額5,000円プラン専用
============================================================ */
.tit5000 {
  display: inline-block;
  font-size: 100%;
  background-color: #000;
  color: #fff;
  border-radius: 500px;
  padding: 0.5em 1em;
  line-height: 1.4;
  margin: 1.25em 0 0.4em;
}

.txt5000 {
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.9;
  padding: 0 0.5em 0.5em;
  margin: 0;
}

.point-txt {
  font-size: 12px;
  color: rgba(17,17,17,.55);
  line-height: 1.75;
  margin: 10px 0 0;
  padding: 8px 12px;
  background: rgba(0,0,0,.03);
  border-radius: 6px;
}


/* ============================================================
   EXTRA（別途費用）
============================================================ */
.extra-inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.extra-label {
  font-weight: 600;
  margin: 0;
  letter-spacing: .01em;
  text-align: center;
}

.extra-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
}

.extra-list li {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.7;
  padding: 5px 1em;
  background-color: #fff;
  border-radius: 100px;
}


/* ============================================================
   CTA バナー
============================================================ */
.pcta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  margin: 20px auto 0;
  padding: 36px 48px;
  background: rgba(140,160,212,.35);
  border-radius: 24px;
}

.pcta__chara {
  position: relative;
  width: 120px;
  flex-shrink: 0;
}

.pcta__chara img {
  width: 140%;
  height: auto;
  display: block;
  position: absolute;
  top: 0;
  left: -60%;
}

.pcta__balloon {
  position: absolute;
  z-index: 2;
  top: -42px;
  left: 16%;
  transform: translateX(-20%);
  background: #fff;
  border: 3px solid #000;
  font-size: clamp(13px, 1.3vw, 16px);
  font-weight: 700;
  line-height: 1.5;
  padding: 7px 12px;
  white-space: nowrap;
  color: #111;
  border-radius: 999px;
}

.pcta__balloon::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 30px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid #000;
}

.pcta__balloon::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 30px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid #fff;
}

.pcta__title {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1.4;
  color: #111;
  margin: 0 0 10px;
}

.pcta__lead {
  font-size: 13px;
  line-height: 1.85;
  margin: 0;
}

.pcta__btn-col {
  flex-shrink: 0;
}


/* ============================================================
   FAQ
============================================================ */
.pricing-faq {
  padding-top: 92px;
  padding-bottom: 90px;
}

.faq-accordion-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 40px;
  align-items: start;
}

.faq-accordion {
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.07);
  border-radius: 14px;
  overflow: hidden;
}

.faq-accordion__q {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  font-size: clamp(13px, 1.3vw, 15px);
  font-weight: 700;
  line-height: 1.5;
  color: #111;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: background .2s ease;
}

.faq-accordion__q::-webkit-details-marker { display: none; }

.faq-accordion__q:hover { background: rgba(74,124,255,.04); }

.faq-accordion__q:hover .faq-plus {
  border-color: rgba(74,124,255,.4);
  color: #4a7cff;
}

.faq-q-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(74,124,255,.12);
  color: #4a7cff;
  font-family: var(--font-ui, "Inter", sans-serif);
  font-size: 13px;
  font-weight: 900;
  flex-shrink: 0;
}

.faq-plus {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(0,0,0,.18);
  border-radius: 50%;
  font-size: 16px;
  font-weight: 300;
  color: rgba(0,0,0,.4);
  margin-left: auto;
  flex-shrink: 0;
  transition: transform .2s ease;
  line-height: 1;
}

.faq-plus::before { content: "+"; }

.faq-accordion[open] .faq-plus { transform: rotate(45deg); }

.faq-accordion__a {
  padding: 14px 20px 18px 60px;
  font-size: 13px;
  line-height: 1.9;
  color: rgba(17,17,17,.65);
  margin: 0;
  border-top: 1px solid rgba(0,0,0,.05);
}

.faq-footer {
  text-align: center;
  font-size: 13px;
  color: rgba(0,0,0,.4);
  margin: 20px 0 0;
  padding-bottom: 20px;
}

@media (max-width: 1100px) {
  .hero-upper-inner { padding: 24px 5% 0; }
  .hero-panel { padding: 72px 5% 36px; }
}

/* ============================================================
   RESPONSIVE — 900px
============================================================ */
@media (max-width: 900px) {

  .pricing-category {
    padding: 7% 3%;
  }

  .pricing-category-note,
  .pricing-bridge { text-align: left; }

  .plan-cols {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .plan-col {
    padding: 10% 5%;
    border-radius: 26px;
  }

  .plan-col--build   { border: 2px solid rgba(184,168,0,.30); }
  .plan-col--improve { border: 2px solid rgba(74,124,255,.24); }

  .plan-badge {
    width: 110px;
    height: 110px;
  }

  .plan-badge--improve {
    box-shadow: 0 10px 24px rgba(74,124,255,.18);
  }

  .plan-features { gap: 9px; }

  .plan-features-label {
    font-size: 13px;
    font-weight: 900;
    margin: 0 0 12px;
  }

  .pf-inner { padding: 10% 5%; }

  .pf-upper { grid-template-columns: 1fr; }

  .pf-left {
    padding-right: 0;
    border-bottom: 1px solid rgba(187,185,11,.2);
    padding-bottom: 24px;
  }

  .pf-right { padding-top: 20px; }

  .extra-label { text-align: left; }

  .extra-list { display: block; }

  .extra-list li { margin-top: 12px; }

  .pcta {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .pcta__chara {
    max-width: 120px;
    width: 36%;
  }

  .pcta__chara img {
    width: 140%;
    position: relative;
    top: inherit;
    left: inherit;
  }

  .addon-note {
    font-size: 100%;
    letter-spacing: -.03em;
  }

  .faq-accordion-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — 767px
============================================================ */
@media (max-width: 767px) {
  .pricing-section-lead {
  }

  .psl-img {
    top: inherit;
    left: -5%;
    width: 60%;
    max-width: 200px;
    position: relative;
    margin: 0 auto 5%;
  }

  .psl-title,
  .psl-sub { margin-left: 0; }

  .pricing { padding-top: 72px; }

  .pricing .section-heading p { text-align: left; }

  .pricing-group {
    padding: 2%;
    border-radius: 18px;
  }

  .plan-col { padding: 24px 20px; }

  .pf-block { margin-top: 20px; }

  .pricing-bridge { text-align: left; margin: 0.5rem 0 15%; }

  .pcta {
    padding: 28px 24px;
    border-radius: 18px;
  }

  .faq-accordion-grid { margin-top: 28px; }

  .pricing-cta-banner { padding: 24px 0; }
	
  .hero-bg-text--top { font-size: 13vw; }
  .hero-bg-text--bottom { font-size: clamp(44px, 15vw, 90px); }

  .hero-upper-inner {
    display: block;
    padding: 16px 4% 0;
    position: relative;
  }

  .hero-chara-col {
    width: 31%;
    margin-right: 0;
    margin-bottom: 0;
    position: absolute;
    top: 11%;
  }

  .hero-copy-col {
    padding: 30% 0 24px;
  }

  .hero-copy-eyebrow {
    font-size: clamp(10px, 4.6vw, 32px);
    margin-bottom: 0;
    top: 27%;
    margin-left: 0;
    position: absolute;
    left: 32%;
  }

  .hero-h1 {
    font-size: clamp(16px, 5.9vw, 40px);
  }

  .hero-panel-wrap {
    padding: 0 4% 40px;
  }

  .hero-panel {
    padding: 52px 24px 28px;
    border-radius: 16px;
  }

  .area-page-hero__lead {
    font-size: 14px;
  }

}


