@charset "utf-8";
/* =========================================================
   KOEGURA LP v3 — Figmaカンプ（1440px幅・2026-08-11）の実装
   実測値の出典: Figmaページ 0:1 のフルレンダーからのピクセル計測
   ========================================================= */

/* ---------- トークン ---------- */
:root{
  --ink:            #1f2937;   /* 本文・見出し */
  --ink-logo:       #1d2836;   /* ロゴ・数値 */
  --ink-mute:       #6b7280;   /* 補助文 */
  --ink-faint:      #9ca3af;   /* 出典表記 */
  --gold:           #e1ab68;   /* 行動色。CTAのみ */
  --gold-dark:      #d0964d;
  /* セクションの地は「不透明度つきの膜」。背後の固定アートを透かすための値。
     Figmaの Frame 1 背景を #EBEBEB → 白 に変えた前後の差分から逆算した実測値。 */
  --bg-light:       rgba(247,247,247,.60);  /* 課題・ユースケース・料金・FAQ */
  --bg-mid:         rgba(188,188,188,.15);  /* 声・特長・機能・ステップ・最終CTA */
  --bg-dark:        rgba( 43, 51, 65,.50);  /* 解決（暗面） */
  --bg-footer:      rgba( 43, 51, 65,.75);  /* フッター */
  --paper:          #ffffff;
  --card-tokucho:   rgba(251,251,251,.75);  /* 3特長カード */
  --card-plan:      rgba(254,254,254,.85);  /* 料金カード */
  --card-faq:       rgba(251,251,251,.70);  /* FAQボックス */
  --shadow-card:    0 1px 6px rgba(0,0,0,.10);
  --line:           #dcdcdc;
  --line-dark:      rgba(255,255,255,.35);

  --container:      1040px;
  --gap:            32px;

  --font-mincho:    "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --font-sans:      "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  /* 数値専用。カンプの DIN Alternate は macOS のローカルフォントで全環境に配れないため、
     字幅・ウェイトがほぼ一致する Archivo Narrow 600（Google Fonts）に統一した。
     実物のDINに差し替える場合はこの1行だけ変えればよい。 */
  --font-num:       "Archivo Narrow", "DIN Alternate", "Noto Sans JP", "Hiragino Sans", sans-serif;
  --font-num-weight: 600;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-text-size-adjust:100%; scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-sans);
  font-size:17px;
  line-height:1.65;
  color:var(--ink);
  background:var(--paper);
  font-feature-settings:"palt" 1;
}
img{ max-width:100%; height:auto; display:block; }
a{ color:inherit; }

.container{ width:min(var(--container), calc(100% - 48px)); margin-inline:auto; }
.visually-hidden{
  position:absolute; width:1px; height:1px; margin:-1px; padding:0;
  overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0;
}

/* ---------- 共通の見出し ---------- */
.h-sec{
  font-family:var(--font-mincho);
  font-weight:500;
  font-size:34px;
  line-height:1.45;
  letter-spacing:.04em;
  margin:0;
  color:var(--ink);
}
.h-sec--center{ text-align:center; }
/* 語りの文はすべて明朝。カード内・表・UIラベルはゴシックのまま（カンプの使い分け） */
.lead{ margin:0; font-family:var(--font-mincho); font-size:17px; line-height:28px; letter-spacing:.02em; }
.note{ font-size:13px; line-height:1.8; color:var(--ink-faint); }

/* ---------- CTAボタン ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  width:374px; max-width:100%; height:64px;
  border-radius:4px;
  font-size:17px; font-weight:500; letter-spacing:.04em;
  text-decoration:none;
  transition:background-color .2s ease, border-color .2s ease, color .2s ease;
}
.btn--primary{ background:var(--gold); color:#fff; border:1px solid var(--gold); }
.btn--primary:hover{ background:var(--gold-dark); border-color:var(--gold-dark); }
.btn--ghost{ background:var(--paper); color:var(--ink); border:1px solid #000; }
.btn--ghost:hover{ background:var(--ink); color:#fff; border-color:var(--ink); }
.btn-row{ display:flex; gap:33px; justify-content:center; flex-wrap:wrap; }

.link-arrow{
  position:relative;
  display:inline-flex; align-items:center; gap:8px;
  font-size:16px; letter-spacing:.04em; text-decoration:none;
  padding:4px 2px 6px;
  color:var(--ink);
  transition:color .2s ease;
}
/* 下線は擬似要素にして、ホバーで色と太さが変わるようにする */
.link-arrow::after{
  content:""; position:absolute; left:0; right:0; bottom:0;
  height:1px; background:currentColor;
  transition:height .2s ease, background-color .2s ease;
}
.link-arrow__mark{ transition:transform .2s ease; }
.link-arrow:hover,
.link-arrow:focus-visible{ color:var(--gold-dark); }
.link-arrow:hover::after,
.link-arrow:focus-visible::after{ height:2px; }
.link-arrow:hover .link-arrow__mark,
.link-arrow:focus-visible .link-arrow__mark{ transform:translateX(5px); }

/* ---------- ヘッダー ---------- */
.header{
  position:sticky; top:0; z-index:50;
  height:88px;
  display:flex; align-items:center;
  background:rgba(255,255,255,.55);
  backdrop-filter:saturate(180%) blur(14px);
  border-bottom:1px solid rgba(31,41,55,.05);
}
.header__inner{
  width:100%; padding:0 56px;
  display:flex; align-items:center; gap:40px;
}
.header__logo{ display:block; }
.header__logo img{ height:27px; width:auto; }
.header__nav{ margin-left:auto; display:flex; align-items:center; gap:36px; }
.header__nav a{
  font-size:15px; letter-spacing:.04em; text-decoration:none; color:var(--ink);
}
.header__nav a:hover{ opacity:.65; }
.header__cta{
  width:219px; height:46px; border-radius:4px; font-size:15px;
}
.nav-toggle{ display:none; }

/* ---------- 固定背景（Voice Field） ----------
   ページ全体の背後に敷きっぱなしにする。セクションはこの上に膜として重なる。 */
.field{
  position:fixed; inset:0; z-index:-1;
  pointer-events:none; background:#fff;
}
#voice-field{
  position:absolute; inset:0; width:100%; height:100%;
  -webkit-mask-image:
     linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%),
     linear-gradient(180deg, transparent 0%, #000 11%, #000 100%);
          mask-image:
     linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%),
     linear-gradient(180deg, transparent 0%, #000 11%, #000 100%);
  -webkit-mask-composite:source-in;
          mask-composite:intersect;
}
/* 地平の余韻。奥がわずかに冷たく沈む */
.field__horizon{
  position:absolute; inset:0; z-index:1; pointer-events:none;
  background:
    radial-gradient(120% 62% at 62% 26%, rgba(96,140,255,.055) 0%, rgba(255,255,255,0) 62%),
    radial-gradient(90% 46% at 30% 96%, rgba(255,64,168,.045) 0%, rgba(255,255,255,0) 66%);
}
/* 紙の粒子。白を「無」ではなく「紙」にするための層 */
.field__grain{
  position:absolute; inset:0; z-index:2; pointer-events:none;
  opacity:.042; mix-blend-mode:multiply;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size:180px 180px;
}
.hero{
  position:relative;
  min-height:992px;
  margin-top:-88px; padding-top:88px;
  background:transparent;      /* 塗りを持たない＝アートがそのまま見える */
}
.hero__inner{ position:relative; text-align:center; padding-bottom:103px; }

.hero__h1{
  margin:58px 0 0;
  font-family:var(--font-mincho);
  font-weight:500;
  font-size:22px;
  line-height:1.6;
  letter-spacing:.38em;
  text-indent:.38em;
  color:var(--ink);
}
.hero__kicker{
  margin:62px 0 0;
  font-family:var(--font-mincho);
  font-size:16px;
  letter-spacing:.42em;
  text-indent:.42em;
  color:var(--ink);
}
.hero__wordmark{ margin:24px 0 0; line-height:0; }
.hero__wordmark img{ width:493px; max-width:82%; height:auto; margin-inline:auto; }
.hero__sub{
  margin:66px 0 0;
  font-family:var(--font-mincho);
  font-size:17px;
  line-height:28px;
  letter-spacing:.02em;
}
/* 埋め込み契約（正本: 提案_ウィジェット刷新_2026-07-24 §3・恒久ルール）
   iframe は width=100% / height=固定。標準210px／コンパクト150px／ミニ120px。
   高さを幅に連動させてはならない（中身が210px前提で描画されるため潰れる）。
   角丸はウィジェット側が自前で持つ（14px）ので、こちらでは付けない。 */
.hero__widget{
  width:1040px; max-width:100%;
  height:210px;
  margin:47px auto 0;
}
/* 読み込み中の下敷き。画像を使わずCSSだけで枠を示す（転送量0） */
.hero__widget{
  background:linear-gradient(180deg, rgba(31,41,55,.05), rgba(31,41,55,.02));
  border-radius:14px;
}
.hero__widget iframe{
  width:100%; height:210px; border:0; display:block; border-radius:14px;
}

/* 実ウィジェットは読み込み完了までPNGの裏に隠しておく */
.hero__widget iframe.is-loading{ position:absolute; width:1px; height:1px; opacity:0; pointer-events:none; }
.hero__cta{ margin-top:48px; }

/* ---------- セクション地色 ---------- */
.sec{ padding-block:120px; }
.sec--light{ background:var(--bg-light); }
.sec--mid{   background:var(--bg-mid); }
.sec--dark{  background:var(--bg-dark); color:#fff; }
.sec--dark .h-sec{ color:#fff; }

/* ---------- S2 課題提起 ---------- */
/* ヒーロー（塗りなし）から最初の膜へ、白をグラデーションで立ち上げて境目を消す */
.kadai{
  padding-top:280px; padding-bottom:182px; text-align:center;
  background:linear-gradient(to bottom,
    rgba(247,247,247,0)   0,
    rgba(247,247,247,.42) 150px,
    rgba(247,247,247,.60) 300px);
}
.kadai__body{ margin:216px auto 0; max-width:1040px; }
.stats{
  display:grid; grid-template-columns:repeat(3,1fr); gap:120px;
  margin-top:73px;
}
.stat__disc{
  width:265px; height:265px; margin:0 auto;
  border-radius:50%; background:var(--paper);
  display:flex; align-items:center; justify-content:center;
}
.stat__num{
  display:flex; align-items:baseline; justify-content:center; gap:2px;
  font-weight:700; line-height:1; color:var(--ink-logo);
  white-space:nowrap;          /* 「40%の壁」を絶対に折り返さない */
}
.stat__value{
  font-family:var(--font-num); font-weight:var(--font-num-weight);
  font-size:76px; letter-spacing:.02em;
  font-variant-numeric:tabular-nums;
}
/* 「%」「%の壁」は数字より一段小さく、ベースラインを揃える（カンプ実測） */
.stat__unit{ font-family:var(--font-sans); font-weight:700; font-size:44px; }
.stat__label{ margin:27px 0 0; font-size:16px; font-weight:700; line-height:1.6; }
.stat__src{ margin:5px 0 0; }

/* ---------- S3 声のちから ---------- */
.koe{ padding-top:290px; padding-bottom:292px; }
.koe .h-sec{ margin-bottom:22px; }

/* ---------- S4 解決（暗面） ---------- */
.kaiketsu{ padding-top:196px; padding-bottom:142px; text-align:center; }
.kaiketsu__body{ margin:46px auto 0; }
.definition{
  margin-top:48px; padding:41px 40px;
  text-align:left;
  border:1px solid #fff;
  background:transparent;
  border-radius:4px;
}
.definition__term{ font-weight:700; }
.definition p{ margin:20px 0 0; font-size:16px; line-height:1.9; }

/* ---------- S5 3つの特長 ---------- */
.tokucho{ padding-top:171px; padding-bottom:172px; }
.tokucho .h-sec{ margin-bottom:89px; }
.cards-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:var(--gap); }
.card{
  background:var(--card-tokucho);
  border:0;
  box-shadow:var(--shadow-card);
  border-radius:4px;
  padding:40px 32px 32px;
  min-height:407px;
  text-align:center;
}
.card__icon{ width:64px; height:64px; margin:0 auto 28px; }
.card__title{
  margin:0 0 20px; font-size:19px; font-weight:700; line-height:1.6;
}
.card__text{ margin:0; font-size:14px; line-height:1.9; color:var(--ink-mute); text-align:left; }
.tokucho__cta{
  margin-top:85px;
  display:flex; align-items:center; justify-content:center; gap:112px; flex-wrap:wrap;
}

/* ---------- S6 ユースケース ---------- */
.usecase{ padding-top:171px; padding-bottom:173px; }
.usecase .h-sec{ margin-bottom:62px; }
.uses{ display:grid; grid-template-columns:repeat(2,1fr); gap:33px 61px; }
.use{ display:grid; grid-template-columns:200px 1fr; gap:24px; align-items:start; }
.use__fig{
  width:200px; height:200px; border-radius:50%; overflow:hidden;
  border:1px solid #9c9c9d;
  background:#fefefe;
  display:flex; align-items:center; justify-content:center;
}
.use__fig img{ width:100%; height:100%; object-fit:contain; }
.use__title{ margin:14px 0 12px; font-size:17px; font-weight:700; line-height:1.6; }
.use__text{ margin:0; font-size:14px; line-height:1.9; color:var(--ink-mute); }

/* ---------- S7 主な機能 ---------- */
.kinou{ padding-top:170px; padding-bottom:165px; }
.kinou .h-sec{ margin-bottom:48px; }
.spec{
  background:var(--paper); border-radius:4px;
  width:100%; border-collapse:collapse;
}
.spec th, .spec td{
  padding:27px 28px; text-align:left; vertical-align:middle;
  border-bottom:1px solid var(--line);
}
.spec tr:last-child th, .spec tr:last-child td{ border-bottom:0; }
.spec th{ width:306px; font-size:17px; font-weight:700; }
.spec td{ font-size:14px; line-height:1.8; color:var(--ink-mute); }

/* ---------- S8 料金 ---------- */
.ryokin{ padding-top:171px; padding-bottom:142px; }
.ryokin .h-sec{ margin-bottom:15px; }
.ryokin__lead{ margin-bottom:83px; }
.plans{ display:grid; grid-template-columns:repeat(3,1fr); gap:var(--gap); }
.plan{
  background:var(--card-plan); border:0; box-shadow:var(--shadow-card); border-radius:4px;
  min-height:407px; padding:53px 24px 60px;
  display:flex; flex-direction:column; align-items:center; text-align:center;
}
.plan__name{ margin:0; font-size:17px; font-weight:700; letter-spacing:.04em; }
.plan__price{
  margin:36px 0 0; min-height:76px;
  display:flex; align-items:baseline; justify-content:center; gap:8px;
}
/* ビジネスプランは金額の代わりに「応相談」。行の高さは他カードと揃える */
.plan__price--consult{ align-items:center; }
.plan__consult{
  font-family:var(--font-mincho); font-weight:600; font-size:34px; line-height:1;
  color:var(--ink-logo);
}
.plan__amount{
  font-family:var(--font-num); font-weight:var(--font-num-weight);
  font-size:76px; line-height:1;
  color:var(--ink-logo); letter-spacing:.02em;
  font-variant-numeric:tabular-nums;
}
.plan__per{ position:relative; bottom:8px; font-size:15px; color:var(--ink); }
.plan__spec{ margin:12px 0 0; font-size:14px; line-height:24px; color:var(--ink-mute); }
.plan__btn{ width:290px; height:44px; margin-top:auto; font-size:15px; }
.ryokin__note{ margin-top:80px; }
.ryokin__note p{ margin:0; }

/* ---------- S9 導入までの3ステップ ---------- */
.step{ padding-top:171px; padding-bottom:166px; }
.step .h-sec{ margin-bottom:95px; }
.step-card{
  background:var(--paper); border:0; box-shadow:var(--shadow-card); border-radius:4px;
  min-height:407px; padding:24px 24px 36px; text-align:center;
  display:flex; flex-direction:column;
}
.step-card__fig{ margin-bottom:20px; }
.step-card__fig img{ width:207px; margin-inline:auto; border-radius:4px; }
.step-card__title{ margin:0 0 14px; font-size:17px; font-weight:700; }
.step-card__text{ margin:0; font-size:14px; line-height:1.9; color:var(--ink-mute); text-align:left; }

/* ---------- S10 FAQ ---------- */
.faq{ padding-top:171px; padding-bottom:116px; }
.faq .h-sec{ margin-bottom:63px; }
.faq__list{ background:var(--card-faq); border-radius:4px; padding:24px 65px; }
.faq__item{ border-bottom:1px solid var(--line); }
.faq__item:last-child{ border-bottom:0; }
.faq__item summary{
  list-style:none; cursor:pointer;
  display:grid; grid-template-columns:76px 1fr 24px; align-items:start;
  gap:0; padding:34px 0 0;
  font-size:17px; font-weight:700; line-height:1.6;
}
.faq__item summary::-webkit-details-marker{ display:none; }
.faq__q{ font-family:var(--font-num); font-weight:700; color:var(--ink); }
.faq__mark{ justify-self:end; width:18px; height:18px; position:relative; }
.faq__mark::before, .faq__mark::after{
  content:""; position:absolute; inset:50% 0 auto 0; height:1.5px; background:var(--ink);
  transition:transform .2s ease;
}
.faq__mark::before{ transform:rotate(45deg); }
.faq__mark::after{  transform:rotate(-45deg); }
.faq__item:not([open]) .faq__mark::before{ transform:rotate(0deg); }
.faq__item:not([open]) .faq__mark::after{  transform:rotate(90deg); }
/* 開閉は JS が height を付け替えてアニメーションさせる */
.faq__panel{ overflow:hidden; will-change:height; }
.faq__panel.is-animating{ transition:height .34s cubic-bezier(.33,0,.2,1); }
.faq__a{
  display:grid; grid-template-columns:76px 1fr; gap:0;
  padding:4px 0 22px;
}
.faq__a-label{ font-family:var(--font-num); font-weight:700; color:var(--ink-faint); }
.faq__a p{ margin:0; font-size:15px; line-height:34px; color:var(--ink-mute);
  font-feature-settings:normal; letter-spacing:.01em; }

/* ---------- S11 最終CTA ---------- */
.final{ padding-top:309px; padding-bottom:254px; text-align:center; }
.final__lead{ margin:75px 0 31px; }

/* ---------- フッター ---------- */
.footer{
  background:var(--bg-footer); color:#fff;
  padding:79px 0 24px;
}
.footer__logo{ text-align:center; margin:0 0 85px; }
.footer__logo img{ height:27px; width:auto; margin-inline:auto; filter:brightness(0) invert(1); }
.footer__h{ margin:0 0 22px; font-size:15px; font-weight:700; letter-spacing:.04em; }
.footer__dl{ margin:0; display:grid; grid-template-columns:120px 1fr; gap:8px 0; font-size:13px; line-height:20px; }
.footer__dl dt{ color:rgba(255,255,255,.75); }
.footer__dl dd{ margin:0; }
.footer__links{
  margin:9px 0 0; padding:0; list-style:none;
  display:flex; gap:24px; font-size:13px; flex-wrap:wrap;
}
.footer__links a{ text-decoration:underline; text-underline-offset:3px; }
.footer__copy{ margin:20px 0 0; text-align:center; font-size:13px; color:rgba(255,255,255,.85); }

/* ---------- レスポンシブ（PCカンプの延長。モバイル最終形は要デザイン確認） ---------- */
@media (max-width:1100px){
  .header__inner{ padding:0 24px; gap:20px; }
  .header__nav{ gap:20px; }
}
@media (max-width:900px){
  body{ font-size:16px; }
  .h-sec{ font-size:26px; }
  .header{ height:64px; }
  .header__inner{ padding:0 16px; gap:8px; }
  .header__logo img{ height:22px; }
  .header__nav{ display:none; }
  .header .header__cta{
    width:auto; padding:0 14px; height:38px; font-size:12px;
    letter-spacing:.02em; white-space:nowrap; margin-left:auto;
  }
  /* スマホではCanvasアニメーションを止め、同じ絵の静止画を固定背景にする。
     端末の負荷（CPU/GPU・バッテリー）を避けるため。JS側も同じ幅で描画を開始しない。 */
  .field{
    background-image:url("../img/field-mobile.jpg");
    background-size:cover;
    background-position:center top;
    background-repeat:no-repeat;
  }
  #voice-field,
  .field__horizon,
  .field__grain{ display:none; }

  .hero{ min-height:auto; margin-top:-64px; padding-top:64px; }
  .hero__inner{ padding-bottom:72px; }
  .hero__h1{ margin-top:40px; font-size:16px; letter-spacing:.22em; text-indent:.22em; }
  .hero__kicker{ margin-top:40px; font-size:12px; }
  .hero__wordmark{ font-size:56px; }
  .hero__sub{ margin-top:36px; font-size:15px; line-height:26px; text-align:left; }
  .hero__widget{ margin-top:32px; }
  .hero__cta{ margin-top:32px; }
  .btn{ width:100%; height:56px; font-size:15px; }
  .btn-row{ gap:14px; }
  .sec{ padding-block:72px; }
  .kadai, .koe, .kaiketsu, .tokucho, .usecase, .kinou, .ryokin, .step, .faq, .final{
    padding-top:72px; padding-bottom:72px;
  }
  .kadai__body{ margin-top:40px; }
  .kadai .lead{ text-align:left; }            /* 長い本文だけ左揃え */
  .stats{ grid-template-columns:1fr; gap:32px; margin-top:44px; }
  .stat{ text-align:center; }                 /* ラベル・出典は中央揃え */
  .stat__disc{ width:200px; height:200px; }
  /* 構造変更で .stat__num への指定が効かなくなっていたため付け直す。
     PCの 76/44px と同じ比率を保つ */
  .stat__value{ font-size:48px; }
  .stat__unit{ font-size:28px; }
  /* PC版の改行指定はモバイルでは不要。幅なりに流す。
     見出し（.h-sec / .hero__h1）の改行は文の区切りなので残す */
  .stat__label br,
  .stat__src br,
  .card__title br,
  .lead br,
  .hero__sub br{ display:none; }
  .cards-3{ grid-template-columns:1fr; }
  .card{ min-height:0; }
  .tokucho .h-sec, .usecase .h-sec, .kinou .h-sec, .step .h-sec, .faq .h-sec{ margin-bottom:40px; }
  .tokucho__cta{ margin-top:40px; gap:24px; flex-direction:column; }
  .uses{ grid-template-columns:1fr; gap:32px; }
  .use{ grid-template-columns:120px 1fr; gap:16px; }
  .use__fig{ width:120px; height:120px; }
  /* 円の上端とタイトルの字面の頭を揃える。
     行送り27.2px − 字面17px の半分（約5px）を打ち消す */
  .use__title{ margin-top:-5px; }
  .spec{ display:block; }
  .spec tbody, .spec tr, .spec th, .spec td{ display:block; width:auto; }
  .spec th{ padding:20px 20px 4px; border-bottom:0; }
  .spec td{ padding:0 20px 20px; }
  .plans{ grid-template-columns:1fr; }
  .plan{ min-height:0; }
  .plan__btn{ width:100%; margin-top:28px; }
  .ryokin__lead{ margin-bottom:40px; }
  .ryokin__note{ margin-top:40px; }
  .faq__list{ padding:0 20px; }
  .faq__item summary{ grid-template-columns:32px 1fr 20px; gap:10px; font-size:15px; padding-top:24px; }
  .faq__a{ grid-template-columns:32px 1fr; gap:10px; padding-bottom:24px; }
  .final__lead{ margin:40px 0 24px; }
  .footer__logo{ margin-bottom:44px; }
  .footer__dl{ grid-template-columns:1fr; gap:2px 0; }
  .footer__dl dt{ margin-top:10px; }
}

/* ---------- モーション抑制 ---------- */
@media (prefers-reduced-motion:reduce){
  html{ scroll-behavior:auto; }
  .faq__panel.is-animating{ transition:none; }
  .link-arrow__mark{ transition:none; }
}
