@charset "utf-8";
/* ============================================================
   株式会社B.D.M 相談導線LP  共通スタイル
   スマホファースト。760px以上でPCレイアウトに切り替わる。
   色・フォント・余白は下の :root だけで大半を調整できる。
   ============================================================ */

:root{
  /* --- ブランドカラー --- */
  --teal:        #007F89;   /* メインカラー */
  --teal-dark:   #00656E;   /* ボタンの押下・濃い見出し */
  --teal-deep:   #01464C;   /* ヒーローの陰影など */
  --teal-tint:   #EAF3F3;   /* 淡い面 */
  --teal-tint-2: #F4F9F9;
  --line-green:  #06C755;   /* LINE公式カラー */
  --line-green-d:#05A948;
  --gold:        #EFA524;   /* ロゴの差し色。ごく少量だけ */

  /* --- 文字・地色 --- */
  --ink:      #21262A;
  --ink-2:    #474E53;
  --muted:    #656C6B;   /* 白/和紙/淡teal のいずれの背景でもコントラスト比4.9以上 */
  --bg:       #FFFFFF;
  --washi:    #F7F5F0;      /* 和紙のような地色 */
  --border:   #E4E0D6;
  --border-2: #EFECE4;

  /* --- 書体 -------------------------------------------------
     Webフォントは読み込んでいません（端末に入っている書体だけで組んでいます）。
     日本語のWebフォントは1書体でも800KB前後あり、QRから開く用途では重すぎるためです。
     Windows=游明朝/游ゴシック、iPhone=ヒラギノ、Android=Noto がそれぞれ使われます。
     ------------------------------------------------------------ */
  --mincho: "Yu Mincho", "YuMincho", "Hiragino Mincho ProN",
            "Noto Serif CJK JP", "Noto Serif JP", "HGS明朝E", "MS PMincho", serif;
  --gothic: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic",
            "Noto Sans CJK JP", "Noto Sans JP", "Meiryo", sans-serif;

  /* --- 寸法 --- */
  --header-h: 58px;
  --pad:      20px;          /* 左右の基本余白（スマホ） */
  --maxw:     1080px;        /* PC時のコンテンツ最大幅 */
  --readw:    620px;         /* 本文の読みやすい最大幅 */
  --radius:   14px;
}

/* ---------- リセット ---------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body{
  margin: 0;
  font-family: var(--gothic);
  font-size: 16px;
  line-height: 1.9;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}
img{ max-width: 100%; height: auto; display: block; }
a{ color: inherit; }
h1,h2,h3,h4,p,ul,ol,figure{ margin: 0; }
ul,ol{ padding: 0; list-style: none; }
button{ font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
:focus-visible{ outline: 3px solid var(--teal); outline-offset: 2px; border-radius: 4px; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

/* ---------- 本文へスキップ（キーボード操作用） ---------- */
.skip-link{
  position: absolute; left: 12px; top: -60px; z-index: 100;
  background: var(--teal); color: #fff; font-size: 14px; font-weight: 700;
  padding: 11px 18px; border-radius: 0 0 10px 10px; text-decoration: none;
  transition: top .18s ease;
}
.skip-link:focus{ top: 0; }

/* ---------- 共通レイアウト ---------- */
.container{ width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }
.readable{ max-width: var(--readw); margin-inline: auto; }
.section{ padding-block: 52px; }
.section--washi{ background: var(--washi); }
.section--tint{ background: var(--teal-tint-2); }
.center{ text-align: center; }

/* 見出し */
.sec-label{
  font-size: 12px; letter-spacing: .22em; color: var(--teal);
  font-weight: 700; margin-bottom: 12px;
}
.sec-title{
  font-family: var(--mincho); font-weight: 600;
  font-size: clamp(21px, 5.6vw, 30px); line-height: 1.62; letter-spacing: .04em;
  color: var(--ink); margin-bottom: 14px;
}
.sec-lead{ font-size: 15px; line-height: 2.0; color: var(--ink-2); }
.rule{ width: 44px; height: 2px; background: var(--teal); border: 0; margin: 0 0 18px; }
.center .rule{ margin-inline: auto; }

/* ============================================================
   ヘッダー
   ============================================================ */
.site-header{
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--border-2);
}
.site-header__inner{
  height: var(--header-h);
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.brand-lockup{ display: flex; align-items: center; gap: 9px; text-decoration: none;
  min-height: 44px; }   /* タップ領域を44px確保 */
.brand-lockup img{ height: 30px; width: auto; }
.brand-lockup__name{
  font-size: 14px; font-weight: 700; letter-spacing: .04em; color: var(--ink); white-space: nowrap;
}
@media (max-width: 359px){ .brand-lockup__name{ display: none; } }

.nav-toggle{
  width: 44px; height: 44px; display: grid; place-items: center; border-radius: 10px;
}
.nav-toggle:hover{ background: var(--teal-tint); }
.nav-toggle span{
  display: block; width: 21px; height: 1.8px; background: var(--ink); border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle span + span{ margin-top: 5px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(6.8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-6.8px) rotate(-45deg); }

/* ドロワー */
.drawer{
  position: fixed; inset: var(--header-h) 0 0; z-index: 55;
  background: rgba(255,255,255,.985);
  padding: 8px var(--pad) 40px;
  overflow-y: auto;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
}
.drawer[data-open="true"]{ opacity: 1; visibility: visible; transform: none; }
.drawer__list{ max-width: var(--maxw); margin-inline: auto; }
.drawer__list a{
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 17px 4px; border-bottom: 1px solid var(--border-2);
  text-decoration: none; font-size: 16px; font-weight: 500;
}
.drawer__list a[aria-current="page"]{ color: var(--teal); font-weight: 700; }
.drawer__list svg{ width: 16px; height: 16px; color: var(--muted); flex: none; }
.drawer__cta{ display: grid; gap: 10px; margin-top: 24px; max-width: var(--maxw); margin-inline: auto; }

/* ============================================================
   ヒーロー
   ============================================================ */
.hero{ position: relative; isolation: isolate; background: var(--teal-deep); }
.hero__media{ position: absolute; inset: 0; z-index: -2; }
.hero__media img{ width: 100%; height: 100%; object-fit: cover; object-position: 50% 46%; }
/* 駐車場ページは「土地」が伝わるよう、地面側を多めに見せる */
.hero--parking .hero__media img{ object-position: 50% 72%; }
.hero::after{
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg,
    rgba(4,26,29,.58) 0%, rgba(4,26,29,.30) 34%,
    rgba(4,26,29,.34) 58%, rgba(4,26,29,.76) 100%);
}
.hero__inner{
  min-height: 62svh; padding-block: 68px 52px;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: #fff;
}
.hero--entry .hero__inner{ min-height: 58svh; justify-content: center; text-align: center; }
.hero--entry::after{
  background: linear-gradient(180deg,
    rgba(4,26,29,.52) 0%, rgba(4,26,29,.40) 26%,
    rgba(4,26,29,.50) 50%, rgba(4,26,29,.42) 72%, rgba(4,26,29,.66) 100%);
}

.hero__kicker{
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mincho); font-size: 14px; letter-spacing: .12em;
  color: rgba(255,255,255,.94); margin-bottom: 14px;
  text-shadow: 0 1px 10px rgba(0,0,0,.5);
}
.hero__badge{
  flex: none; display: grid; place-items: center;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.46);
  color: #fff;
}
.hero__badge svg{ width: 18px; height: 18px; }
.hero__title{
  font-family: var(--mincho); font-weight: 600;
  font-size: clamp(27px, 7.6vw, 44px); line-height: 1.52; letter-spacing: .035em;
  text-shadow: 0 2px 16px rgba(0,0,0,.48);
}
.hero__sub{
  margin-top: 16px; font-size: 15px; line-height: 1.95;
  color: rgba(255,255,255,.94); text-shadow: 0 1px 10px rgba(0,0,0,.5);
}

/* 入口ページ用の縦書きリード（PCのみ） */
.hero__vertical{
  display: none;
  position: absolute; top: 84px; right: 26px; z-index: 1;
  writing-mode: vertical-rl; font-family: var(--mincho);
  font-size: 14px; letter-spacing: .18em; line-height: 2.1;
  color: rgba(255,255,255,.9); text-shadow: 0 1px 10px rgba(0,0,0,.55);
}

/* ============================================================
   入口ページ：3つの相談カード
   ============================================================ */
.choices{ display: grid; gap: 13px; }
.choice{
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 52px 1fr 20px; align-items: center; gap: 14px;
  min-height: 104px; padding: 18px 18px 18px 20px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); text-decoration: none; color: inherit;
  box-shadow: 0 2px 10px rgba(30,40,45,.05);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.choice:hover, .choice:focus-visible{
  transform: translateY(-2px); border-color: var(--teal);
  box-shadow: 0 10px 26px rgba(0,80,88,.13);
}
.choice:active{ transform: translateY(0); }
.choice > *{ position: relative; z-index: 1; }
.choice__photo{ position: absolute; inset: 0 0 0 auto; width: 58%; z-index: 0; }
.choice__photo img{ width: 100%; height: 100%; object-fit: cover; }
.choice__photo::after{
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, #fff 8%, rgba(255,255,255,.90) 42%, rgba(255,255,255,.62) 100%);
}
.choice__icon{
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--teal-tint); color: var(--teal-dark);
}
.choice__icon svg{ width: 26px; height: 26px; }
.choice__title{
  display: block;
  font-family: var(--mincho); font-size: 20px; font-weight: 600; letter-spacing: .04em;
  line-height: 1.5;
}
.choice__desc{
  display: block;
  font-size: 12.5px; line-height: 1.75; color: var(--muted); margin-top: 4px;
}
.choice__arrow{ color: var(--teal); }
.choice__arrow svg{ width: 18px; height: 18px; }

/* 入口ページ下部の連絡導線 */
.quick-contact{
  display: flex; align-items: center; justify-content: center; gap: 16px;
  flex-wrap: wrap; text-align: left;
}
.quick-contact__btns{ display: flex; gap: 12px; }
.icon-btn{
  width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center;
  color: #fff; text-decoration: none; box-shadow: 0 4px 14px rgba(0,0,0,.12);
  transition: transform .18s ease, filter .18s ease;
}
.icon-btn:hover{ transform: translateY(-2px); filter: brightness(1.06); }
.icon-btn svg{ width: 24px; height: 24px; }
.icon-btn--tel{ background: var(--teal); }
.icon-btn--line{ background: var(--line-green); }
.quick-contact__text{ font-size: 14px; line-height: 1.8; color: var(--ink-2); }

/* ============================================================
   悩みリスト
   ============================================================ */
.worries{ display: grid; gap: 11px; }
.worries li{
  display: grid; grid-template-columns: 24px 1fr; gap: 12px; align-items: start;
  padding: 13px 16px; background: #fff;
  border: 1px solid var(--border-2); border-radius: 11px;
  font-size: 15px; line-height: 1.75;
}
.worries li svg{ width: 21px; height: 21px; color: var(--teal); margin-top: 2px; }

/* ============================================================
   守る／改善する／育てる
   ============================================================ */
.pillars{ display: grid; gap: 16px; counter-reset: pillar; }
.pillar{
  position: relative; background: #fff; border: 1px solid var(--border-2);
  border-radius: var(--radius); padding: 24px 22px 22px;
}
.pillar__num{
  width: 34px; height: 34px; border-radius: 50%; background: var(--teal); color: #fff;
  display: grid; place-items: center; font-size: 14px; font-weight: 700;
  font-family: var(--mincho); margin-bottom: 12px;
}
.pillar__icon{ color: var(--teal); margin-bottom: 10px; }
.pillar__icon svg{ width: 30px; height: 30px; }
.pillar__title{
  font-family: var(--mincho); font-size: 21px; font-weight: 600; letter-spacing: .08em;
  margin-bottom: 8px;
}
.pillar__desc{ font-size: 14.5px; line-height: 1.85; color: var(--ink-2); }

/* ============================================================
   対応イメージのタイル
   ============================================================ */
.tiles{ display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.tile{ flex: 0 1 calc((100% - 20px) / 3); min-width: 92px; }
.tile{
  background: #fff; border: 1px solid var(--border-2); border-radius: 12px;
  padding: 16px 8px 14px; text-align: center;
}
.tile__icon{
  width: 42px; height: 42px; margin: 0 auto 9px; border-radius: 50%;
  background: var(--teal-tint); color: var(--teal-dark);
  display: grid; place-items: center;
}
.tile__icon svg{ width: 22px; height: 22px; }
.tile__label{ font-size: 13px; font-weight: 700; line-height: 1.5; letter-spacing: .02em; }

/* ============================================================
   補足メッセージの箱
   ============================================================ */
.note-box{
  display: grid; grid-template-columns: 40px 1fr; gap: 14px; align-items: start;
  background: var(--teal-tint); border-radius: var(--radius);
  padding: 20px 20px; color: var(--ink-2); font-size: 14.5px; line-height: 1.9;
}
.note-box__icon{
  width: 40px; height: 40px; border-radius: 50%; background: #fff; color: var(--teal);
  display: grid; place-items: center;
}
.note-box__icon svg{ width: 21px; height: 21px; }
.note-box strong{ color: var(--teal-dark); font-weight: 700; }

.quiet-note{
  font-size: 13px; line-height: 1.85; color: var(--muted);
  padding-top: 16px; border-top: 1px solid var(--border-2);
}

/* ---------- 管理手数料の補足（大見出しにはしない） ---------- */
.fee-note{
  margin: 26px auto 0; padding: 18px 22px;
  background: #fff; border: 1px solid var(--border-2); border-radius: var(--radius);
  font-size: 14px; line-height: 2.0; color: var(--ink-2);
}
.fee-note b{ color: var(--teal-dark); font-weight: 700; }

/* ---------- CTA直前の一文（相談のハードルを下げる） ---------- */
.cta-ease{
  max-width: var(--readw); margin: 0 auto 26px;
  font-family: var(--mincho); font-size: 15px; line-height: 2.05;
  letter-spacing: .04em; color: var(--ink-2); text-align: center;
}

/* ============================================================
   CTA
   ============================================================ */
.cta-block{ display: grid; gap: 12px; }
.btn{
  display: flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 60px; padding: 12px 20px; border-radius: 12px;
  font-size: 17px; font-weight: 700; letter-spacing: .04em;
  text-decoration: none; color: #fff;
  transition: filter .18s ease, transform .18s ease, box-shadow .18s ease;
}
.btn svg{ width: 21px; height: 21px; flex: none; }
.btn:hover{ filter: brightness(1.07); transform: translateY(-1px); }
.btn:active{ transform: translateY(0); filter: brightness(.96); }
.btn--tel{ background: var(--teal); box-shadow: 0 4px 14px rgba(0,127,137,.24); }
.btn--line{ background: var(--line-green); box-shadow: 0 4px 14px rgba(6,199,85,.24); }
.btn--ghost{
  background: #fff; color: var(--teal-dark);
  border: 1.5px solid var(--teal); box-shadow: none; font-size: 16px; min-height: 54px;
}
.btn--ghost:hover{ background: var(--teal-tint); filter: none; }

.cta-note{ font-size: 13px; line-height: 1.8; color: var(--muted); text-align: center; }
.cta-tel-number{
  font-family: var(--mincho); font-size: 15px; letter-spacing: .06em; color: var(--ink-2);
  text-align: center;
}
.cta-tel-number b{ font-size: 20px; letter-spacing: .04em; }

/* 下部固定CTA（スマホ） */
.sticky-cta{
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 50;
  background: rgba(255,255,255,.97);
  backdrop-filter: saturate(180%) blur(8px);
  border-top: 1px solid var(--border-2);
  box-shadow: 0 -3px 18px rgba(25,35,40,.07);
  /* iPhoneのホームバー分を必ず確保する（未対応環境では 10px のまま） */
  padding: 10px var(--pad) calc(10px + env(safe-area-inset-bottom, 0px));
  transform: translateY(115%); transition: transform .28s ease;
}
.sticky-cta[data-show="true"]{ transform: none; }
.sticky-cta__inner{
  max-width: var(--maxw); margin-inline: auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 9px;
}
.sticky-cta .btn{
  min-height: 52px; border-radius: 10px; box-shadow: none;
  /* 「電話で相談する」が2行に折り返さないよう、この帯だけ余白と字を詰める */
  font-size: 14px; padding: 10px 6px; gap: 6px; white-space: nowrap;
}
.sticky-cta .btn svg{ width: 19px; height: 19px; }
@media (min-width: 760px){ .sticky-cta{ display: none; } }
body:has(.sticky-cta) .site-footer{ padding-bottom: 92px; }
@media (min-width: 760px){ body:has(.sticky-cta) .site-footer{ padding-bottom: 44px; } }

/* ============================================================
   他の相談への導線
   ============================================================ */
.other-links{ display: grid; gap: 10px; }
.other-link{
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 15px 18px; background: #fff;
  border: 1px solid var(--border); border-radius: 11px;
  text-decoration: none; font-size: 15px; font-weight: 500;
  transition: border-color .2s ease, background .2s ease;
}
.other-link:hover{ border-color: var(--teal); background: var(--teal-tint-2); }
.other-link__l{ display: flex; align-items: center; gap: 11px; }
.other-link__l svg{ width: 20px; height: 20px; color: var(--teal); flex: none; }
.other-link > svg{ width: 15px; height: 15px; color: var(--muted); flex: none; }

/* ============================================================
   ブランド帯
   ============================================================ */
.brand-band{
  background: var(--washi);
  padding-block: 44px; text-align: center;
}
.brand-band__slogan{
  font-family: var(--mincho); font-weight: 600;
  font-size: clamp(22px, 6.2vw, 32px); letter-spacing: .06em; color: var(--teal-dark);
  line-height: 1.6;
}
.brand-band__sub{ margin-top: 14px; font-size: 14.5px; line-height: 1.95; color: var(--ink-2); }
.brand-band__three{
  margin-top: 22px; display: flex; justify-content: center; align-items: center;
  gap: 14px; flex-wrap: wrap;
  font-family: var(--mincho); font-size: 17px; letter-spacing: .14em; color: var(--ink);
}
.brand-band__three i{ font-style: normal; color: var(--border); }

/* ============================================================
   フッター
   ============================================================ */
.site-footer{ background: #fff; border-top: 1px solid var(--border-2); padding: 44px 0; }
.site-footer__logo{ height: 46px; width: auto; margin-bottom: 18px; }
.site-footer__name{ font-size: 17px; font-weight: 700; letter-spacing: .04em; margin-bottom: 10px; }
.site-footer__info{ font-size: 14px; line-height: 2.0; color: var(--ink-2); }
.site-footer__info a{ color: var(--teal-dark); text-decoration: none; }
.site-footer__info a:hover{ text-decoration: underline; }
.site-footer__tagline{
  margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--border-2);
  font-family: var(--mincho); font-size: 15px; letter-spacing: .08em; color: var(--ink);
}
.site-footer__tagline small{
  display: block; margin-top: 7px; font-family: var(--gothic);
  font-size: 10.5px; letter-spacing: .18em; color: var(--muted); line-height: 1.7;
}
.site-footer__copy{ margin-top: 22px; font-size: 11.5px; color: var(--muted); letter-spacing: .04em; }

/* ============================================================
   トースト（LINE未設定時の案内）
   ============================================================ */
.toast{
  position: fixed; left: 50%; bottom: 96px; z-index: 90;
  transform: translate(-50%, 16px);
  max-width: min(92vw, 420px);
  background: var(--ink); color: #fff;
  font-size: 14px; line-height: 1.75;
  padding: 14px 18px; border-radius: 11px;
  box-shadow: 0 10px 30px rgba(0,0,0,.24);
  opacity: 0; visibility: hidden;
  transition: opacity .24s ease, transform .24s ease, visibility .24s;
}
.toast[data-show="true"]{ opacity: 1; visibility: visible; transform: translate(-50%, 0); }

/* ============================================================
   スクロール時のふわっとした表示
   ============================================================ */
.reveal{ opacity: 0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in{ opacity: 1; transform: none; }

/* ============================================================
   PCレイアウト
   ============================================================ */
@media (min-width: 760px){
  :root{ --pad: 32px; --header-h: 66px; }
  body{ font-size: 16.5px; }
  .section{ padding-block: 76px; }

  .hero__inner{ min-height: 60vh; padding-block: 96px 72px; }
  .hero--entry .hero__inner{ min-height: 64vh; }
  .hero__vertical{ display: block; }

  /* 悩みリストは 620px だと折り返しが不揃いになるため、この節だけ広げる */
  .readable:has(.worries){ max-width: 820px; }
  .worries{ grid-template-columns: 1fr 1fr; gap: 12px; }
  .pillars{ grid-template-columns: repeat(3, 1fr); }
  .tiles{ gap: 14px; max-width: 640px; margin-inline: auto; }
  .tile{ flex: 0 1 190px; }
  .other-links{ grid-template-columns: repeat(3, 1fr); }
  .cta-block{ grid-template-columns: 1fr 1fr; max-width: 640px; margin-inline: auto; }
  .cta-block .cta-note,
  .cta-block .cta-tel-number{ grid-column: 1 / -1; }
  .note-box{ padding: 26px 28px; }
  .fee-note{ padding: 22px 28px; font-size: 15px; }
  .cta-ease{ font-size: 16px; margin-bottom: 30px; }
  .site-footer__inner{ display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: start; }
  .site-footer__tagline{ border-top: 0; padding-top: 0; margin-top: 0; }
}

/* カードの3カラム化は、窮屈にならない900px以上から */
@media (min-width: 900px){
  .choices{ grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .choice{
    grid-template-columns: 1fr; grid-template-rows: auto auto 1fr auto;
    align-items: start; min-height: 250px; padding: 26px 24px 22px; text-align: left;
  }
  .choice__photo{ inset: 0; width: 100%; }
  .choice__photo::after{
    background: linear-gradient(180deg, rgba(255,255,255,.68) 0%, rgba(255,255,255,.90) 44%, rgba(255,255,255,.99) 100%);
  }
  .choice__arrow{ justify-self: end; }
}

@media (min-width: 1040px){
  .hero__title{ font-size: 46px; }
  .section{ padding-block: 88px; }
}
