/* Design tokens */
:root {
  /* Colors */
  --c-topbar: rgb(0, 58, 150);
  --c-navy: rgb(0, 29, 75);
  --c-btn-dark: rgb(55, 59, 77);
  --c-blue: rgb(0, 87, 225);
  --c-white: #ffffff;
  --c-black: #000000;
  --c-bg: rgb(250, 250, 250);
  --c-tab: rgb(248, 249, 249);
  --c-form-field: rgb(239, 239, 244);
  --c-form-section: rgb(232, 230, 230);
  --c-border: rgb(227, 227, 227);

  /* CTA gradient (header button) */
  --grad-cta: linear-gradient(90deg, rgb(255, 188, 153) 0%, rgb(255, 223, 201) 100%);

  /* Typography */
  --font-family: 'Helvetica Neue', Helvetica, Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Noto Sans JP', 'Yu Gothic', Meiryo, sans-serif;

  /* Layout */
  --header-height: 151px;
  --header-strip: 32px;
  --container: 1160px;
  --footer-height: 390px;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --dur: 0.3s;
}
