@charset "utf-8";

/* table of contents */
/* ======================================================
Variables.css（統合版）
==================================================== */
:root {
  /* font size */
  --fs-xs: 0.5rem;  
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-md: 1rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.6rem;
  --fs-xxl: 2rem;
  --fs-xxxl: 3rem;
  --fs-xxxxl: 5rem;

  /* font weight */
  --fw-thin: 100;
  --fw-exlight: 200;
  --fw-light: 300;
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-exbold: 800;
  --fw-heavy: 900;

  /* colors */
  --color-black: #000000;
  --color-white: #ffffff;
  --color-red: #ff0000;
  --color-pink: #bd7a7b;

  /* spacing */
  --space-0: 0;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-xxl: 3rem;
  --space-xxxl: 6rem;  

  /* line-height */
  --lh-tight: 0.8;
  --lh-slim: 1.0;
  --lh-fit: 1.2;
  --lh-snug: 1.4;
  --lh-base: 1.6;
  --lh-loose: 1.8;
  --lh-relax: 2.0;
}